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 void
close()
void
write(FastqRecord rec)
Writes one item.
-
-
-
Method Detail
-
write
void write(FastqRecord rec)
Description copied from interface:Writer
Writes one item.- Specified by:
write
in interfaceWriter<FastqRecord>
- Parameters:
rec
- the item to write.
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
-