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