![JAR search and dependency download from the Maven repository](/logo.png)
htsjdk.samtools.fastq.FastqWriter Maven / Gradle / Ivy
package htsjdk.samtools.fastq;
import java.io.Closeable;
/**
* Simple interface for a class that can write out fastq records.
*
* @author Tim Fennell
*/
public interface FastqWriter extends Closeable {
void write(final FastqRecord rec);
@Override
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy