[][src]Struct rust_htslib::bcf::header::HeaderView

pub struct HeaderView {
    pub inner: *mut bcf_hdr_t,
}

Fields

inner: *mut bcf_hdr_t

Methods

impl HeaderView[src]

pub fn new(inner: *mut bcf_hdr_t) -> Self[src]

pub fn sample_count(&self) -> u32[src]

Get the number of samples defined in the header.

pub fn samples(&self) -> Vec<&[u8]>[src]

Get vector of sample names defined in the header.

pub fn sample_id(&self, sample: &[u8]) -> Option<usize>[src]

Obtain id (column index) of given sample. Returns None if sample is not present in header.

pub fn contig_count(&self) -> u32[src]

Get the number of contigs defined in the header.

pub fn rid2name(&self, rid: u32) -> Result<&[u8]>[src]

pub fn name2rid(&self, name: &[u8]) -> Result<u32>[src]

pub fn info_type(&self, tag: &[u8]) -> Result<(TagType, TagLength)>[src]

pub fn format_type(&self, tag: &[u8]) -> Result<(TagType, TagLength)>[src]

pub fn name_to_id(&self, id: &[u8]) -> Result<Id>[src]

Convert string ID (e.g., for a FILTER value) to its numeric identifier.

pub fn id_to_name(&self, id: Id) -> Vec<u8>[src]

Convert integer representing an identifier (e.g., a FILTER value) to its string name.bam.

pub fn sample_to_id(&self, id: &[u8]) -> Result<Id>[src]

Convert string sample name to its numeric identifier.

pub fn id_to_sample(&self, id: Id) -> Vec<u8>[src]

Convert integer representing an contig to its name.

pub fn header_records(&self) -> Vec<HeaderRecord>[src]

Return structured HeaderRecords.

Trait Implementations

impl Clone for HeaderView[src]

impl Debug for HeaderView[src]

impl Drop for HeaderView[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.