logo

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::annot::contig::Contig;
use bio_types::strand::Strand;
let example = b"chr1\t5\t5000\tname1\t0.5";
let mut reader = bed::Reader::new(&example[..]);
let rec = reader
    .records()
    .next()
    .expect("Found no bed record.")
    .expect("Got a csv::Error");
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.

Performs the conversion.

Generate a BED format Record for an annotation position.

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

Performs the conversion.

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::io::bed;
use bio_types::annot::spliced::{Spliced, SplicingError};
use bio_types::annot::AnnotError;
use bio_types::strand::ReqStrand;
let tad3 = Spliced::with_lengths_starts(
    "chrXII".to_owned(),
    765265,
    &vec![808, 52, 109],
    &vec![0, 864, 984],
    ReqStrand::Reverse,
)
.expect("Encountered a bio_types::annot::spliced::SplicingError.");
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).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()
);

Performs the conversion.

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

Performs the conversion.

Performs the conversion.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.