[−][src]Struct rust_htslib::bcf::IndexedReader
An indexed VCF/BCF reader.
Methods
impl IndexedReader
[src]
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<Self>
[src]
pub fn from_url(url: &Url) -> Result<Self>
[src]
Create a new IndexedReader
from an URL.
pub fn fetch(&mut self, rid: u32, start: u64, end: u64) -> Result<()>
[src]
Jump to the given region.
Arguments
rid
- numeric ID of the reference to jump to; useHeaderView::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 Debug for IndexedReader
[src]
impl Drop for IndexedReader
[src]
impl Read for IndexedReader
[src]
fn read(&mut self, record: &mut Record) -> Result<bool>
[src]
fn records(&mut self) -> Records<Self>
[src]
fn set_threads(&mut self, n_threads: usize) -> Result<()>
[src]
fn header(&self) -> &HeaderView
[src]
fn empty_record(&self) -> Record
[src]
impl Send for IndexedReader
[src]
Auto Trait Implementations
impl !RefUnwindSafe for IndexedReader
impl !Sync for IndexedReader
impl Unpin for IndexedReader
impl UnwindSafe for IndexedReader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> 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<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,