Skip to content

Commit

Permalink
Fix Immutable List to Mutable List (cBioPortal#10639)
Browse files Browse the repository at this point in the history
  • Loading branch information
JREastonMarks authored and alisman committed Feb 16, 2024
1 parent a337c33 commit 6124402
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 6124402

Please sign in to comment.