Struct bio::io::bed::Record

source ·
pub struct Record { /* private fields */ }
Expand description

A BED record as defined by BEDtools (http://bedtools.readthedocs.org/en/latest/content/general-usage.html)

Implementations

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

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more

Returns a Contig annotation for the BED record.

use bio::io::bed;
use bio_types::strand::Strand;
use bio_types::annot::contig::Contig;
let example = b"chr1\t5\t5000\tname1\t0.5";
let mut reader = bed::Reader::new(&example[..]);
let rec = reader.records().next().ok_or("No record available!")??;
let loc = Contig::from(&rec);
assert_eq!(loc.to_string(), "chr1:5-5000");

Generate a BED format Record for the location.

As created, it will have an empty name.

Converts to this type from the input type.

Generate a BED format Record for an annotation position.

This record will have length 1, and when created it will have an empty name.

Converts to this type from the input type.

Generate a BED format Record for the position.

Splicing information will be represented with the 12-column BED format, using columns 10 through 12 (blockCount, blockSizes, and blockStarts) for exons.

As created, it will have an empty name and default to using the overall start & end (columns 1 and 2) for the start and end of the “thick” region (columns 7 and 8).

use bio_types::strand::ReqStrand;
use bio_types::annot::AnnotError;
use bio_types::annot::spliced::{Spliced,SplicingError};
use bio::io::bed;
let tad3 = Spliced::with_lengths_starts("chrXII".to_owned(), 765265,
                                        &vec![808,52,109], &vec![0,864,984],
                                        ReqStrand::Reverse)?;
assert_eq!(tad3.to_string(), "chrXII:765265-766073;766129-766181;766249-766358(-)");
let tad3_exons = tad3.exon_contigs();
assert_eq!(tad3_exons.len(), 3);
assert_eq!(tad3_exons[0].to_string(), "chrXII:766249-766358(-)");
assert_eq!(tad3_exons[1].to_string(), "chrXII:766129-766181(-)");
assert_eq!(tad3_exons[2].to_string(), "chrXII:765265-766073(-)");
let mut buf = Vec::new();
{
    let mut writer = bed::Writer::new(&mut buf);
    let mut tad3_bed = bed::Record::from(tad3);
    tad3_bed.set_name("YLR316C");
    writer.write(&tad3_bed).ok().unwrap();
}
assert_eq!("chrXII\t765265\t766358\tYLR316C\t0\t-\t765265\t766358\t0\t3\t808,52,109,\t0,864,984,\n",
           String::from_utf8(buf).unwrap_or_else(|_| "???".to_owned()).as_str());
Converts to this type from the input type.
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.