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
An important part of InterMine querying is the ability to set OR logic for constraints, as well as the default AND logic.
This code throws an error, because neither code nor constraintLogic are permissible arguments in setConstraints:
setConstraints
pancreasConstraint2 = setConstraints( paths = c("Gene", "Gene.proteinAtlasExpression.level", "Gene.proteinAtlasExpression.level", "Gene.proteinAtlasExpression.tissue.name"), operators = c("IN", rep("=", 2), "="), values = list("PL_DiabetesGenes", "Medium", "High", "Pancreas"), code = c("A", "B", "C", "D"), constraintLogic = "A and (B or C) and D" )
remove the invalid (but needed) code and constraintLogic arguments and it all works fine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An important part of InterMine querying is the ability to set OR logic for constraints, as well as the default AND logic.
This code throws an error, because neither code nor constraintLogic are permissible arguments in
setConstraints
:remove the invalid (but needed) code and constraintLogic arguments and it all works fine.
The text was updated successfully, but these errors were encountered: