Struct vcf_rider::fasta::Fasta [] [src]

pub struct Fasta {
    pub id: String,
    pub sequence: Vec<u8>,
    pub background: Vec<f64>,
}

Struct representing a fasta: its id, then the sequence (encoded by a vector of u8, with ACGTN -> 01234) and the background frequencies of nucleotides (needed to compute TBA values)

Fields

The id of this fasta

The u8 encoded sequence

Background frequencies of ACGT in this fasta

Trait Implementations

impl Debug for Fasta
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Fasta

impl Sync for Fasta