Package htsjdk.samtools.fastq
Class FastqWriterFactory
- java.lang.Object
-
- htsjdk.samtools.fastq.FastqWriterFactory
-
public class FastqWriterFactory extends Object
Factory class for creating FastqWriter objects.
-
-
Constructor Summary
Constructors Constructor Description FastqWriterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FastqWriter
newWriter(File out)
void
setCreateMd5(boolean createMd5)
If true, compute MD5 and write appropriately-named file when file is closed.void
setUseAsyncIo(boolean useAsyncIo)
Sets whether or not to use async io (i.e.
-
-
-
Method Detail
-
setUseAsyncIo
public void setUseAsyncIo(boolean useAsyncIo)
Sets whether or not to use async io (i.e. a dedicated thread per writer.
-
setCreateMd5
public void setCreateMd5(boolean createMd5)
If true, compute MD5 and write appropriately-named file when file is closed.
-
newWriter
public FastqWriter newWriter(File out)
-
-