Struct rust_htslib::bcf::record::Record [] [src]

pub struct Record {
    pub inner: *mut bcf1_t,
    pub header: *mut bcf_hdr_t,
    // some fields omitted
}

Fields

Methods

impl Record
[src]

Get the value of the given info tag.

Get genotypes as vector of one Genotype per sample.

Get the value of the given format tag for each sample.

Add an integer format tag. Data is a flattened two-dimensional array. The first dimension contains one array for each sample. Returns error if tag is not present in header.

Add a float format tag. Data is a flattened two-dimensional array. The first dimension contains one array for each sample. Returns error if tag is not present in header.

Add an integer info tag.

Add a float info tag.

Add an info tag.

Remove unused alleles.

Trait Implementations

impl Drop for Record
[src]

A method called when the value goes out of scope. Read more

impl Send for Record
[src]

impl Sync for Record
[src]