Skip to content

Commit

Permalink
fix a legacy clinical data binning issue for certain study view filters
Browse files Browse the repository at this point in the history
  • Loading branch information
onursumer committed Sep 20, 2024
1 parent 37c79cc commit 4d7623e
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,16 @@ public boolean shouldSkipFilterForClinicalDataBins(StudyViewFilter filter) {
return (
filter != null &&
filter.getClinicalDataFilters() == null &&
filter.getClinicalEventFilters() == null &&
filter.getMutationDataFilters() == null &&
filter.getStructuralVariantFilters() == null &&
filter.getGeneFilters() == null &&
filter.getSampleTreatmentFilters() == null &&
filter.getPatientTreatmentFilters() == null &&
filter.getPatientTreatmentGroupFilters() == null &&
filter.getSampleTreatmentGroupFilters() == null &&
filter.getPatientTreatmentTargetFilters() == null &&
filter.getSampleTreatmentTargetFilters() == null &&
filter.getGenomicProfiles() == null &&
filter.getGenomicDataFilters() == null &&
filter.getGenericAssayDataFilters() == null &&
Expand Down

0 comments on commit 4d7623e

Please sign in to comment.