Trait fxread::fastx::FastxRead

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

A trait for Fasta and Fastq readers

Required Methods§

source

fn next_record(&mut self) -> Result<Option<Record>>

Returns the next fastx Record in the iterator.

Implementors§