use of com.github.lindenb.jvarkit.tools.vcf2rdf.VcfToRdf in project jvarkit by lindenb.
the class TestNg01 method testVcfToRdf.
@Test(dataProvider = "all_vcfs")
public void testVcfToRdf(final String path) throws IOException {
final File outvcf = new File(TEST_RESULTS_DIR, "jeter.vcf");
Assert.assertEquals(0, new VcfToRdf().instanceMain(new String[] { "-o", outvcf.getPath(), path }));
Assert.assertTrue(outvcf.delete());
}