Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kalletlak committed Aug 8, 2023
1 parent 276534c commit 5b9bafa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ private boolean extractAttributesFromGenomicDataCountFilter(HttpServletRequest r
request.setAttribute("involvedCancerStudies", cancerStudyIdCollection);
}
} catch (Exception e) {
LOG.error("exception thrown during extraction of genomicDataBinCountFilter: " + e);
LOG.error("exception thrown during extraction of genomicDataCountFilter: " + e);
return false;
}
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ public <S extends DataFilter> List<SampleIdentifier> filterExpressionData(

List<SampleIdentifier> newSampleIdentifiers = new ArrayList<>();
for (SampleIdentifier sampleIdentifier : sampleIdentifiers) {
int count = clinicalDataFilterApplier.apply(attributes, clinicalDataMap,
int count = clinicalDataFilterApplier.apply(attributes, clinicalDataMap,
sampleIdentifier.getSampleId(), sampleIdentifier.getStudyId(), negateFilters);

if (count == attributes.size()) {
Expand Down

0 comments on commit 5b9bafa

Please sign in to comment.