diff --git a/java/src/org/broadinstitute/sting/utils/pileup/ExtendedEventPileupElement.java b/java/src/org/broadinstitute/sting/utils/pileup/ExtendedEventPileupElement.java index 1e519d1e7..21b7aad11 100644 --- a/java/src/org/broadinstitute/sting/utils/pileup/ExtendedEventPileupElement.java +++ b/java/src/org/broadinstitute/sting/utils/pileup/ExtendedEventPileupElement.java @@ -57,7 +57,7 @@ public class ExtendedEventPileupElement extends PileupElement { if ( length <= 0 ) type = Type.NOEVENT; else { if ( eventBases != null ) { - this.eventBases = new String(eventBases); + this.eventBases = new String(eventBases).toUpperCase(); type = Type.INSERTION; } else { type = Type.DELETION;