Struct gfautil::variants::vcf::VCFRecord[][src]

pub struct VCFRecord {
    pub chromosome: BString,
    pub position: i64,
    pub id: Option<BString>,
    pub reference: BString,
    pub alternate: Option<BString>,
    pub quality: Option<i32>,
    pub filter: Option<BString>,
    pub info: Option<BString>,
    pub format: Option<BString>,
    pub sample_name: Option<BString>,
}

A struct that holds Variants, as defined in the VCF format

Fields

chromosome: BStringposition: i64id: Option<BString>reference: BStringalternate: Option<BString>quality: Option<i32>filter: Option<BString>info: Option<BString>format: Option<BString>sample_name: Option<BString>

Implementations

impl VCFRecord[src]

pub fn vcf_cmp(&self, other: &VCFRecord) -> Ordering[src]

Trait Implementations

impl Debug for VCFRecord[src]

impl Display for VCFRecord[src]

impl PartialEq<VCFRecord> for VCFRecord[src]

impl StructuralPartialEq for VCFRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.