use of com.github.lindenb.jvarkit.tools.onesamplevcf.VcfMultiToOne in project jvarkit by lindenb.
the class TestNg01 method testVcfMultiToOne.
@Test
public void testVcfMultiToOne() throws IOException {
final File output = new File(TEST_RESULTS_DIR, "jeter.vcf");
Assert.assertEquals(0, new VcfMultiToOne().instanceMain(new String[] { "-o", output.getPath(), VCF01 }));
Assert.assertTrue(output.delete());
}
Aggregations