Skip to content

Commit

Permalink
Fix Immutable List to Mutable List (#10639)
Browse files Browse the repository at this point in the history
  • Loading branch information
JREastonMarks authored Feb 16, 2024
1 parent 7aa6afa commit 3e987e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public List<GenomicDataCountItem> getCNAAlterationCountsByGeneSpecific(List<Stri
genomicDataCount.setCount(count);

return genomicDataCount;
}).toList();
}).collect(Collectors.toList());

int totalCount = genomicDataCounts.stream().mapToInt(GenomicDataCount::getCount).sum();
int naCount = sampleIds.size() - totalCount;
Expand Down

0 comments on commit 3e987e5

Please sign in to comment.