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