pub trait FastxRead: Iterator {
    fn next_record(&mut self) -> Result<Option<Record>>;
}
Expand description

A trait for Fasta and Fastq readers

Required Methods

Returns the next fastx Record in the iterator.

Implementors