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

htsjdk.samtools.fastq.FastqWriter Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package htsjdk.samtools.fastq;

import htsjdk.io.Writer;

import java.io.Closeable;

/**
 * Simple interface for a class that can write out fastq records.
 *
 * @author Tim Fennell
 */
public interface FastqWriter extends Closeable, Writer {
    void write(final FastqRecord rec);

    @Override
    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy