use of com.github.lindenb.jvarkit.tools.misc.PadEmptyFastq in project jvarkit by lindenb.
the class TestNg01 method testPad.
@Test
public void testPad() throws IOException {
final File output = new File(TEST_RESULTS_DIR, "jeter.fq.gz");
Assert.assertEquals(0, new PadEmptyFastq().instanceMain(new String[] { "-o", output.getPath(), "./src/test/resources/SAMPLE1_GATGAATC_L002_R1_001.fastq.gz" }));
Assert.assertTrue(output.delete());
}
Aggregations