adding Validate Variants integration test with a deletion
This commit is contained in:
parent
91c949db74
commit
354529bff3
|
|
@ -113,4 +113,16 @@ public class ValidateVariantsIntegrationTest extends WalkerTest {
|
||||||
|
|
||||||
executeTest("test bad alt allele", spec);
|
executeTest("test bad alt allele", spec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testBadAllele2() {
|
||||||
|
WalkerTestSpec spec = new WalkerTestSpec(
|
||||||
|
baseTestString("validationExampleBad3.vcf", "ALLELES"),
|
||||||
|
0,
|
||||||
|
UserException.MalformedFile.class
|
||||||
|
);
|
||||||
|
|
||||||
|
executeTest("test bad alt allele", spec);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue