[][src]Struct rust_htslib::bcf::IndexedReader

pub struct IndexedReader { /* fields omitted */ }

An indexed VCF/BCF reader.

Methods

impl IndexedReader[src]

pub fn from_path<P: AsRef<Path>>(
    path: P
) -> Result<Self, IndexedReaderPathError>
[src]

Create a new IndexedReader from path.

Arguments

  • path - the path to open.

pub fn from_url(url: &Url) -> Result<Self, IndexedReaderError>[src]

Create a new IndexedReader from an URL.

pub fn fetch(
    &mut self,
    rid: u32,
    start: u32,
    end: u32
) -> Result<(), FetchError>
[src]

Jump to the given region.

Arguments

  • rid - numeric ID of the reference to jump to; use HeaderView::name2rid for resolving contig name to ID.
  • start - 0-based start coordinate of region on reference.
  • end - 0-based end coordinate of region on reference.

Trait Implementations

impl Read for IndexedReader[src]

impl Drop for IndexedReader[src]

impl Send for IndexedReader[src]

impl Debug for IndexedReader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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