We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This should be FALSE instead of TRUE:
solvebio-r/R/dataset.R
Line 126 in 4c68494
This works but is really ugly:
filters = list( list(and=list( list(or=list( list(and=list(list("significance", "known"), list("allelefreq__gt", 0.01))), list(and=list(list("significance", "likely"), list("allelefreq__gt", 0.2))) )), list(not=list("sample__in", c("X", "Y"))) )) )
The equivalent JSON is this, but does not work:
filters = '[ {"and": [ {"or": [ {"and": [["significance", "known"], ["allelefreq__gt", 0.01]]}, {"and": [["significance", "likely"], ["allelefreq__gt", 0.2]]} ]}, {"not": ["sample__in", ["X", "Y"]]} ]} ]'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This should be FALSE instead of TRUE:
solvebio-r/R/dataset.R
Line 126 in 4c68494
This works but is really ugly:
The equivalent JSON is this, but does not work:
The text was updated successfully, but these errors were encountered: