Skip to content

Commit

Permalink
filter out cases with no sequencing
Browse files Browse the repository at this point in the history
  • Loading branch information
grapigeau committed Oct 9, 2024
1 parent 2e852b9 commit 9e2ff4e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public Set<ShesmuCase> getShesmuCases() {

public Set<ShesmuDetailedCase> getShesmuDetailedCases() {
return caseData.getCases().stream()
.filter(kase -> !getSequencingForShesmuCase(kase).isEmpty())
.map(kase -> convertCaseToShesmuDetailedCase(kase))
.collect(Collectors.toSet());
}
Expand Down

0 comments on commit 9e2ff4e

Please sign in to comment.