diff --git a/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCaller.java b/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCaller.java index 25edd49ef..994ba209d 100644 --- a/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCaller.java +++ b/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCaller.java @@ -385,8 +385,8 @@ public class HaplotypeCaller extends ActiveRegionWalker, In * from another location in the genome. Suppose a read has many mismatches from the reference, say like 5, but * has a very high mapping quality of 60. Without this parameter, the read would contribute 5 * Q30 evidence * in favor of its 5 mismatch haplotype compared to reference, potentially enough to make a call off that single - * read for all of these events. With this parameter set to Q30, though, the maximum evidence against the reference - * that this (and any) read could contribute against reference is Q30. + * read for all of these events. With this parameter set to Q30, though, the maximum evidence against any haplotype + * that this (and any) read could contribute is Q30. * * Set this term to any negative number to turn off the global mapping rate */ diff --git a/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCallerGenotypingEngine.java b/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCallerGenotypingEngine.java index 5818cc1e2..90dda170e 100644 --- a/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCallerGenotypingEngine.java +++ b/protected/gatk-tools-protected/src/main/java/org/broadinstitute/gatk/tools/walkers/haplotypecaller/HaplotypeCallerGenotypingEngine.java @@ -74,6 +74,7 @@ import java.util.*; public class HaplotypeCallerGenotypingEngine extends GenotypingEngine { private final static List NO_CALL = Collections.singletonList(Allele.NO_CALL); + private final static int ALLELE_EXTENSION = 2; private MergeVariantsAcrossHaplotypes crossHaplotypeEventMerger; @@ -170,7 +171,7 @@ public class HaplotypeCallerGenotypingEngine extends GenotypingEngine alternative allele to the result variation contexts. * * @return A CalledHaplotypes object containing a list of VC's with genotyped events and called haplotypes * @@ -249,7 +250,7 @@ public class HaplotypeCallerGenotypingEngine extends GenotypingEngine tests = new ArrayList<>(); for ( final int nct : Arrays.asList(1, 2, 4) ) { - tests.add(new Object[]{nct, "31a7bb9fb5bc512120b88c5ecdd81139"}); + tests.add(new Object[]{nct, "a2718251ffae9db885b7f74b33dd5b57"}); } return tests.toArray(new Object[][]{});