adding Validate Variants integration test with a deletion

This commit is contained in:
Ryan Poplin 2011-09-09 13:15:24 -04:00
parent 91c949db74
commit 354529bff3
1 changed files with 12 additions and 0 deletions

View File

@ -113,4 +113,16 @@ public class ValidateVariantsIntegrationTest extends WalkerTest {
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);
}
}