diff --git a/protected/java/src/org/broadinstitute/sting/gatk/walkers/haplotypecaller/LikelihoodCalculationEngine.java b/protected/java/src/org/broadinstitute/sting/gatk/walkers/haplotypecaller/LikelihoodCalculationEngine.java index 8e90285d9..e416b489b 100644 --- a/protected/java/src/org/broadinstitute/sting/gatk/walkers/haplotypecaller/LikelihoodCalculationEngine.java +++ b/protected/java/src/org/broadinstitute/sting/gatk/walkers/haplotypecaller/LikelihoodCalculationEngine.java @@ -124,8 +124,8 @@ public class LikelihoodCalculationEngine { final Haplotype haplotype = haplotypes.get(jjj); // TODO -- need to test against a reference/position with non-standard bases - if ( !Allele.acceptableAlleleBases(haplotype.getBases(), false) ) - continue; + //if ( !Allele.acceptableAlleleBases(haplotype.getBases(), false) ) + // continue; final int haplotypeStart = ( previousHaplotypeSeen == null ? 0 : computeFirstDifferingPosition(haplotype.getBases(), previousHaplotypeSeen.getBases()) ); previousHaplotypeSeen = haplotype;