Skip to content

Commit

Permalink
ALS-4978: Fix case where patient set was being ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Oct 26, 2023
1 parent 0279cab commit 16ec41d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ public BigInteger getPatientMaskForVariantInfoFilters(DistributableQuery distrib
BigInteger patientMask = null;
if (intersectionOfInfoFilters != null ){
patientMask = patientVariantJoinHandler.getPatientIdsForIntersectionOfVariantSets(distributableQuery.getPatientIds(), intersectionOfInfoFilters);
} else {
patientMask = createMaskForPatientSet(distributableQuery.getPatientIds());
}


Expand Down

0 comments on commit 16ec41d

Please sign in to comment.