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 void
close()
void
write(FastqRecord rec)
-
-
-
Method Detail
-
write
void write(FastqRecord rec)
-
close
void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
-