Skip to main content

GenomicReader

Trait GenomicReader 

Source
pub trait GenomicReader: GenomicRecordIterator {
    type Metadata;

    // Required method
    fn metadata(&self) -> &Self::Metadata;
}
Expand description

Trait for genomic file readers with metadata access

Required Associated Types§

Source

type Metadata

Metadata type for this reader

Required Methods§

Source

fn metadata(&self) -> &Self::Metadata

Get metadata about the genomic data (headers, contigs, etc.)

Implementors§