Function noodles_bam::bai::async::write
source · pub async fn write<P>(dst: P, index: &Index) -> Result<()>
Expand description
Writes a BAM index to a file.
This is a convenience function and is equivalent to creating a file at the given path, writing the header, and writing the index.
§Examples
use noodles_bam::bai;
use noodles_csi as csi;
let index = bai::Index::default();
bai::r#async::write("sample.bam.bai", &index).await?;