diff --git a/java/src/org/broadinstitute/sting/utils/BAQ.java b/java/src/org/broadinstitute/sting/utils/BAQ.java index ad6d074c8..7b9a46ba9 100644 --- a/java/src/org/broadinstitute/sting/utils/BAQ.java +++ b/java/src/org/broadinstitute/sting/utils/BAQ.java @@ -463,6 +463,8 @@ public class BAQ { if ( DEBUG ) System.out.printf("BAQ %s read %s%n", calculationType, read.getReadName()); if ( calculationType == Mode.NONE ) { // we don't want to do anything ; // just fall though + } else if ( read.getReadUnmappedFlag() ) { + ; // just fall through } else if ( calculationType == Mode.USE_TAG_ONLY ) { calcBAQFromTag(read, true, true); } else {