Struct bio::io::gff::Reader [] [src]

pub struct Reader<R: Read> {
    // some fields omitted
}

A GFF reader.

Methods

impl Reader<File>
[src]

fn from_file<P: AsRef<Path>>(path: P, fileformat: GffType) -> Result<Self>

Read GFF from given file path in given format.

impl<R: Read> Reader<R>
[src]

fn new(reader: R, fileformat: GffType) -> Self

Create a new GFF reader given an instance of io::Read, in given format.

fn records(&mut self) -> Records<R>

Iterate over all records.