Add test case for fix
This commit is contained in:
parent
31fc64f82c
commit
9ffdfeccd5
|
|
@ -210,7 +210,7 @@ public abstract class GenotypingEngine<Config extends StandardCallerArgumentColl
|
|||
* @param vc Input VC
|
||||
* @param model GL calculation model
|
||||
* @param inheritAttributesFromInputVC Output VC will contain attributes inherited from input vc
|
||||
* @return VC with assigned genotypes
|
||||
* @return VC with assigned genotypes (may be null if QUAL<emit threshold or MLEAF==0)
|
||||
*/
|
||||
protected VariantCallContext calculateGenotypes(final RefMetaDataTracker tracker, final ReferenceContext refContext,
|
||||
final AlignmentContext rawContext, Map<String, AlignmentContext> stratifiedContexts,
|
||||
|
|
|
|||
|
|
@ -612,6 +612,15 @@ public class GenotypeGVCFsIntegrationTest extends WalkerTest {
|
|||
executeTest("testAlleleSpecificAnnotations_elevenSamples", spec);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMonomorphicVCwithAlt() {
|
||||
final String cmd = "-T GenotypeGVCFs -R " + b37KGReference + " -G AS_Standard -o %s --no_cmdline_in_header --disableDithering -V "
|
||||
+ privateTestDir + "monomorphicGVCwithAlt.vcf";
|
||||
final WalkerTestSpec spec = new WalkerTestSpec(cmd, 1, Collections.singletonList("080951cdb5d4903dd58b1e753b9378d5"));
|
||||
spec.disableShadowBCF();
|
||||
executeTest("testAlleleSpecificAnnotations", spec);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFractionInformativeReads() {
|
||||
final String cmd = "-T GenotypeGVCFs -R " + b37KGReference + " -G AS_Standard -o %s --no_cmdline_in_header -A FractionInformativeReads --disableDithering -V "
|
||||
|
|
|
|||
Loading…
Reference in New Issue