diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/indels/IndelRealigner.java b/java/src/org/broadinstitute/sting/gatk/walkers/indels/IndelRealigner.java index cf8712b3a..4b38d76eb 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/indels/IndelRealigner.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/indels/IndelRealigner.java @@ -592,6 +592,9 @@ public class IndelRealigner extends ReadWalker { read.setAttribute("NM", SequenceUtil.calculateSamNmTag(read, reference, (int)leftmostIndex-1)); if ( read.getAttribute(SAMTag.UQ.name()) != null ) read.setAttribute("UQ", SequenceUtil.sumQualitiesOfMismatches(read, reference, (int)leftmostIndex-1)); + // TODO -- this is only temporary until Tim adds code to recalculate this value + if ( read.getAttribute(SAMTag.MD.name()) != null ) + read.setAttribute("MD", null); } } }