All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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