use of com.github.lindenb.jvarkit.tools.misc.GoUtils in project jvarkit by lindenb.
the class TestNg01 method testGoUtils.
@Test
public void testGoUtils() throws IOException {
final File output = new File(TEST_RESULTS_DIR, "jeter0.txt");
Assert.assertEquals(0, new GoUtils().instanceMain(new String[] { "-A", "GO:0005216", "-go-relations", "is_a", "-o", output.getPath() }));
assertTableIsConsitent(output, null);
Assert.assertTrue(output.delete());
}