use of com.github.lindenb.jvarkit.tools.misc.VcfRemoveUnusedAlt in project jvarkit by lindenb.
the class TestNg01 method testVcfRemoveUnusedAlt.
@Test(dataProvider = "all_vcfs")
public void testVcfRemoveUnusedAlt(final String vcfPath) throws IOException {
File tmp = new File(TEST_RESULTS_DIR, "tmp.vcf");
Assert.assertEquals(0, new VcfRemoveUnusedAlt().instanceMain(new String[] { "-o", tmp.getPath(), vcfPath }));
assertIsVcf(tmp);
Assert.assertTrue(tmp.delete());
}
Aggregations