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

pub struct Record { /* fields omitted */ }

A GFF record

Methods

impl Record
[src]

Create a new GFF record.

Sequence name of the feature.

Source of the feature.

Type of the feature.

Start position of feature (1-based).

End position of feature (1-based, not included).

Score of feature

Strand of the feature.

Frame of the feature.

Attribute of feature

Get mutable reference on seqname of feature.

Get mutable reference on source of feature.

Get mutable reference on type of feature.

Get mutable reference on start of feature.

Get mutable reference on end of feature.

Get mutable reference on score of feature.

Get mutable reference on strand of feature.

Get mutable reference on attributes of feature.

Trait Implementations

impl Encodable for Record
[src]

impl Default for Record
[src]

Returns the "default value" for a type. Read more