pub fn index<P>(src: P) -> Result<Index>
Expand description
Indexes a BAM file.
The input must be coordinate-sorted and marked as such in the SAM header, i.e.,
SO:coordinate
.
See also bai::fs::write
to write the resulting bai::Index
to a file.
ยงExamples
use noodles_bam as bam;
let _index = bam::fs::index("sample.bam")?;