dryice-bio 0.3.0

High-throughput transient container for read-like genomic records
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Async reader and writer types for the `dryice` format.
//!
//! This module is available behind the `async` feature flag and provides
//! async versions of the reader and writer that work with
//! `tokio::io::AsyncRead` and `tokio::io::AsyncWrite`.

mod format;
mod reader;
mod writer;

pub use reader::AsyncDryIceReader;
pub use writer::AsyncDryIceWriter;