Struct noodles_bcf::async::io::Reader
source · pub struct Reader<R> { /* private fields */ }
Expand description
An async BCF reader.
§Examples
use futures::TryStreamExt;
use noodles_bcf as bcf;
use tokio::fs::File;
let mut reader = File::open("sample.bcf").await.map(bcf::r#async::io::Reader::new)?;
reader.read_header().await?;
let mut records = reader.records();
while let Some(record) = records.try_next().await? {
// ...
}
Implementations§
source§impl<R> Reader<R>
impl<R> Reader<R>
sourcepub fn get_ref(&self) -> &R
pub fn get_ref(&self) -> &R
Returns a reference to the underlying reader.
§Examples
use noodles_bcf as bcf;
let data = [];
let reader = bcf::r#async::io::Reader::from(&data[..]);
assert!(reader.get_ref().is_empty());
sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
Returns a mutable reference to the underlying reader.
§Examples
use noodles_bcf as bcf;
let data = [];
let mut reader = bcf::r#async::io::Reader::from(&data[..]);
assert!(reader.get_mut().is_empty());
sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Returns the underlying reader.
§Examples
use noodles_bcf as bcf;
let data = [];
let reader = bcf::r#async::io::Reader::from(&data[..]);
assert!(reader.into_inner().is_empty());
sourcepub async fn read_header(&mut self) -> Result<Header>
pub async fn read_header(&mut self) -> Result<Header>
Reads the VCF header.
The BCF magic number is checked, and the file format version is discarded.
The position of the stream is expected to be at the start.
§Examples
use noodles_bcf as bcf;
use tokio::fs::File;
let mut reader = File::open("sample.bcf").await.map(bcf::r#async::io::Reader::new)?;
let header = reader.read_header().await?;
sourcepub async fn read_record(&mut self, record: &mut Record) -> Result<usize>
pub async fn read_record(&mut self, record: &mut Record) -> Result<usize>
Reads a single record without decoding (most of) its feilds.
The stream is expected to be directly after the header or at the start of another record.
It is more ergonomic to read records using a stream (see Self::records
), but using
this method directly allows the reuse of a single Record
buffer.
If successful, the record size is returned. If a record size of 0 is returned, the stream reached EOF.
use noodles_bcf as bcf;
use tokio::fs::File;
let mut reader = File::open("sample.bcf").await.map(bcf::r#async::io::Reader::new)?;
reader.read_header().await?;
let mut record = bcf::Record::default();
reader.read_record(&mut record).await?;
sourcepub fn records(&mut self) -> impl Stream<Item = Result<Record>> + '_
pub fn records(&mut self) -> impl Stream<Item = Result<Record>> + '_
Returns an (async) stream over lazy records starting from the current (input) stream position.
The (input) stream is expected to be directly after the header or at the start of another record.
§Examples
use futures::TryStreamExt;
use noodles_bcf as bcf;
use tokio::fs::File;
let mut reader = File::open("sample.bcf").await.map(bcf::r#async::io::Reader::new)?;
reader.read_header().await?;
let mut records = reader.records();
while let Some(record) = records.try_next().await? {
// ...
}
source§impl<R> Reader<AsyncReader<R>>
impl<R> Reader<AsyncReader<R>>
source§impl<R> Reader<AsyncReader<R>>
impl<R> Reader<AsyncReader<R>>
sourcepub fn query<I>(
&mut self,
header: &Header,
index: &I,
region: &Region,
) -> Result<impl Stream<Item = Result<Record>> + '_>where
I: BinningIndex,
pub fn query<I>(
&mut self,
header: &Header,
index: &I,
region: &Region,
) -> Result<impl Stream<Item = Result<Record>> + '_>where
I: BinningIndex,
Returns a stream over records that intersect the given region.
§Examples
use futures::TryStreamExt;
use noodles_bcf as bcf;
use noodles_core::Region;
use noodles_csi as csi;
use tokio::fs::File;
let mut reader = File::open("sample.bcf").await.map(bcf::r#async::io::Reader::new)?;
let header = reader.read_header().await?;
let index = csi::r#async::read("sample.bcf.csi").await?;
let region = "sq0:8-13".parse()?;
let mut query = reader.query(&header, &index, ®ion)?;
while let Some(record) = query.try_next().await? {
// ...
}