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