noodles_tabix/async.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
//! Async tabix.
pub mod io;
#[deprecated(
since = "0.45.0",
note = "Use `noodles_tabix::r#async::io::Reader` instead."
)]
pub use self::io::Reader;
#[deprecated(
since = "0.45.0",
note = "Use `noodles_tabix::r#async::io::Reader` instead."
)]
pub use self::io::Writer;
use std::path::Path;
use tokio::fs::File;
use super::Index;
/// Reads the entire contents of a tabix index.
///
/// This is a convenience function and is equivalent to opening the file at the given path and
/// reading the index.
///
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() -> std::io::Result<()> {
/// use noodles_tabix as tabix;
/// let index = tabix::r#async::read("sample.vcf.gz.tbi").await?;
/// # Ok(())
/// # }
/// ```
pub async fn read<P>(src: P) -> tokio::io::Result<Index>
where
P: AsRef<Path>,
{
let mut reader = File::open(src).await.map(Reader::new)?;
reader.read_index().await
}
/// Writes a tabix index to a file.
///
/// This is a convenience function and is equivalent to creating a file at the given path and
/// writing the index.
///
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() -> std::io::Result<()> {
/// use noodles_csi::binning_index::index::Header;
/// use noodles_tabix as tabix;
///
/// let index = tabix::Index::builder().set_header(Header::default()).build();
/// tabix::r#async::write("sample.vcf.gz.tbi", &index).await?;
/// # Ok(())
/// # }
/// ```
pub async fn write<P>(dst: P, index: &Index) -> tokio::io::Result<()>
where
P: AsRef<Path>,
{
let mut writer = File::create(dst).await.map(Writer::new)?;
writer.write_index(index).await?;
writer.shutdown().await?;
Ok(())
}