use of com.github.lindenb.jvarkit.tools.vcfcmp.VcfCompareCallers in project jvarkit by lindenb.
the class TestNg01 method testVcfCompareCallers.
@Test
public void testVcfCompareCallers() throws IOException {
final File output = new File(TEST_RESULTS_DIR, "jeter.zip");
Assert.assertEquals(0, new VcfCompareCallers().instanceMain(new String[] { "-o", output.getPath(), "-vcf1", "VCF1", "-vcf2", "VCF2", "--prefix", "pfx", TOY_VCF_GZ, TOY_VCF_GZ }));
Assert.assertTrue(output.delete());
}
Aggregations