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