use of com.github.lindenb.jvarkit.tools.bam2graphics.LowResBam2Raster in project jvarkit by lindenb.
the class TestNg01 method testLowResBamToRaster.
@Test
public void testLowResBamToRaster() throws IOException {
File tmp = new File(TEST_RESULTS_DIR, "jeter.png");
Assert.assertEquals(0, new LowResBam2Raster().instanceMain(new String[] { "-o", tmp.getPath(), "-R", TOY_FA, "-r", "ref:1-100", TOY_BAM }));
Assert.assertTrue(tmp.exists());
}
Aggregations