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

pub struct Record { /* fields omitted */ }

Methods

impl Record
[src]

Create a new BED record.

Chromosome of the feature.

Start position of feature (0-based).

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

Name of the feature.

Score of the feature.

Strand of the feature.

Access auxilliary fields after the strand field by index (counting first field (chromosome) as 0).

Set chromosome.

Set start of feature.

Set end of feature.

Set name.

Set score.

Add auxilliary field. This has to happen after name and score have been set.

Trait Implementations

impl Encodable for Record
[src]

Serialize a value using an Encoder.

impl Default for Record
[src]

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