[][src]Struct rust_htslib::bam::Reader

pub struct Reader { /* fields omitted */ }

A BAM reader.

Methods

impl Reader[src]

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

Create a new Reader from path.

Arguments

  • path - the path to open.

pub fn from_stdin() -> Result<Self, BGZFError>[src]

Create a new Reader from STDIN.

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

Create a new Reader from URL.

Important traits for ChunkIterator<'a, R>
pub fn iter_chunk(
    &mut self,
    start: Option<i64>,
    end: Option<i64>
) -> ChunkIterator<Self>
[src]

Iterator over the records between the (optional) virtual offsets start and end

Arguments

  • start - Optional starting virtual offset to seek to. Throws an error if it is not a valid virtual offset.

  • end - Read until the virtual offset is less than end

pub fn set_reference<P: AsRef<Path>>(
    &mut self,
    path: P
) -> Result<(), ReferencePathError>
[src]

Set the reference path for reading CRAM files.

Arguments

  • path - path to the FASTA reference

Trait Implementations

impl Read for Reader[src]

Important traits for Records<'a, R>
fn records(&mut self) -> Records<Self>[src]

Iterator over the records of the fetched region. Note that, while being convenient, this is less efficient than pre-allocating a Record and reading into it with the read method, since every iteration involves the allocation of a new Record.

fn seek(&mut self, offset: i64) -> Result<(), SeekError>[src]

Seek to the given virtual offset in the file

fn tell(&self) -> i64[src]

Report the current virtual offset

fn set_threads(&mut self, n_threads: usize) -> Result<(), ThreadingError>[src]

Activate multi-threaded BAM read support in htslib. This should permit faster reading of large BAM files. Read more

impl Drop for Reader[src]

impl Send for Reader[src]

impl Debug for Reader[src]

Auto Trait Implementations

impl !Sync for Reader

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]