Struct noodles_fasta::fai::AsyncReader
source · pub struct AsyncReader<R> { /* private fields */ }
Expand description
An async FASTA index reader.
Implementations§
source§impl<R> Reader<R>where
R: AsyncBufRead + Unpin,
impl<R> Reader<R>where R: AsyncBufRead + Unpin,
sourcepub fn new(inner: R) -> Self
pub fn new(inner: R) -> Self
Creates an async FASTA index reader.
Examples
use noodles_fasta::fai;
let data = [];
let mut reader = fai::AsyncReader::new(&data[..]);
sourcepub async fn read_index(&mut self) -> Result<Index>
pub async fn read_index(&mut self) -> Result<Index>
Reads a FASTA index.
The position of the stream is expected to be at the start or at the start of a record.
Examples
use noodles_fasta::fai;
let data = b"sq0\t13\t5\t80\t81\nsq1\t21\t19\t80\t81\n";
let mut reader = fai::AsyncReader::new(&data[..]);
let index = reader.read_index().await?;
assert_eq!(index, vec![
fai::Record::new(String::from("sq0"), 13, 5, 80, 81),
fai::Record::new(String::from("sq1"), 21, 19, 80, 81),
]);