Skip to content

Commit

Permalink
unfix minor thing in RampedHaplotypeCallerEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
lbergelson committed Dec 6, 2023
1 parent 1df4aa2 commit fdca109
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private void assemble(final CallRegionContext context) {

if (assemblyDebugOutStream != null) {
assemblyDebugOutStream.write("\nThere were " + untrimmedAssemblyResult.getHaplotypeList().size() + " haplotypes found. Here they are:");
for (final String haplotype : untrimmedAssemblyResult.getHaplotypeList().stream().map(Haplotype::toString).sorted().toList()) {
for (final String haplotype : untrimmedAssemblyResult.getHaplotypeList().stream().map(Haplotype::toString).sorted().collect(Collectors.toList())) {
assemblyDebugOutStream.write(haplotype);
}
}
Expand Down

0 comments on commit fdca109

Please sign in to comment.