Struct rust_htslib::bcf::header::HeaderView

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

Fields§

§inner: *mut bcf_hdr_t

Implementations§

source§

impl HeaderView

source

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

source

pub fn sample_count(&self) -> u32

Get the number of samples defined in the header.

source

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

Get vector of sample names defined in the header.

source

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

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

source

pub fn contig_count(&self) -> u32

Get the number of contigs defined in the header.

source

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

source

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

Retrieve the (internal) chromosome identifier

§Examples
use rust_htslib::bcf::header::Header;
use rust_htslib::bcf::{Format, Writer};

let mut header = Header::new();
let contig_field = br#"##contig=<ID=foo,length=10>"#;
header.push_record(contig_field);
let mut vcf = Writer::from_stdout(&header, true, Format::Vcf).unwrap();
let header_view = vcf.header();
let rid = header_view.name2rid(b"foo").unwrap();
assert_eq!(rid, 0);
// try and retrieve a contig not in the header
let result = header_view.name2rid(b"bar");
assert!(result.is_err())
§Errors

If name does not match a chromosome currently in the VCF header, returns Error::BcfUnknownContig

source

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

source

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

source

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

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

source

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

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

source

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

Convert string sample name to its numeric identifier.

source

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

Convert integer representing an contig to its name.

source

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

Return structured HeaderRecords.

Trait Implementations§

source§

impl Clone for HeaderView

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for HeaderView

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for HeaderView

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.