Package htsjdk.samtools.fastq
Interface FastqWriter
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
AsyncFastqWriter,BasicFastqWriter
public interface FastqWriter extends Closeable
Simple interface for a class that can write out fastq records.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()voidwrite(FastqRecord rec)
-
-
-
Method Detail
-
write
void write(FastqRecord rec)
-
close
void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
-