Support finding samples with multiple parent matches #5120
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rationale
We are adding a new "Equals all of" filter type for sample finder's parent cards to allow finding samples with multiple ancestors. The values in "Equals all of" filter is used to generate an array of inexpdescendantsof filters to find the matched results. We additionally allow a second (AND) filter for each field. When a negative (neq, not in) type filter is used in combination with "Equals all of" filter, we would want to make sure "notinexpdescendantsof" instead of "inexpdescendantsof" for the second filter to correctly further filter the multi-value field.
The scenario would be:
Patient Equals All Of ("Mouse-1", "Mouse-2)
AND Patient <> "Mouse-3"
The expected filter array should be
Instead of
Related Pull Requests
Changes