pub 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;
let index = bai::Index::default();
bai::write("sample.bam.bai", &index)?;