[−][src]Struct rust_htslib::bam::IndexedReader
Methods
impl IndexedReader[src]
pub fn from_path<P: AsRef<Path>>(
path: P
) -> Result<Self, IndexedReaderPathError>[src]
path: P
) -> Result<Self, IndexedReaderPathError>
pub fn from_path_and_index<P: AsRef<Path>>(
path: P,
index_path: P
) -> Result<Self, IndexedReaderPathError>[src]
path: P,
index_path: P
) -> Result<Self, IndexedReaderPathError>
pub fn from_url(url: &Url) -> Result<Self, IndexedReaderError>[src]
pub fn fetch(&mut self, tid: u32, beg: u32, end: u32) -> Result<(), FetchError>[src]
pub fn set_reference<P: AsRef<Path>>(
&mut self,
path: P
) -> Result<(), ReferencePathError>[src]
&mut self,
path: P
) -> Result<(), ReferencePathError>
Trait Implementations
impl Read for IndexedReader[src]
fn read(&mut self, record: &mut Record) -> Result<(), ReadError>[src]
ⓘImportant traits for Records<'a, R>fn records(&mut self) -> Records<Self>[src]
ⓘImportant traits for Records<'a, R>
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.
ⓘImportant traits for Pileups<'a, R>fn pileup(&mut self) -> Pileups<Self>[src]
ⓘImportant traits for Pileups<'a, R>
fn htsfile(&self) -> *mut htsFile[src]
fn header(&self) -> &HeaderView[src]
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 IndexedReader[src]
impl Send for IndexedReader[src]
impl Debug for IndexedReader[src]
Auto Trait Implementations
impl !Sync for IndexedReader
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,