Package htsjdk.samtools.fastq
Interface FastqWriter
-
- All Superinterfaces:
AutoCloseable,Closeable,Writer<FastqRecord>
- All Known Implementing Classes:
AsyncFastqWriter,BasicFastqWriter
public interface FastqWriter extends Closeable, Writer<FastqRecord>
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)Writes one item.
-
-
-
Method Detail
-
write
void write(FastqRecord rec)
Description copied from interface:WriterWrites one item.- Specified by:
writein interfaceWriter<FastqRecord>- Parameters:
rec- the item to write.
-
close
void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
-