diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/indels/MismatchIntervalWalker.java b/java/src/org/broadinstitute/sting/gatk/walkers/indels/MismatchIntervalWalker.java index 4817e05df..af226c9ae 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/indels/MismatchIntervalWalker.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/indels/MismatchIntervalWalker.java @@ -71,6 +71,7 @@ public class MismatchIntervalWalker extends LocusWalker public Pair, GenomeLoc> reduce(Pair value, Pair, GenomeLoc> sum) { // if we hit a new contig, clear the list if ( sum.second != null && sum.second.getContigIndex() != value.first.getContigIndex() ) { + out.println(sum.second); sum.first.clear(); sum.second = null; }