noodles_csi/lib.rs
1//! **noodles-csi** handles the reading and writing of the coordinate-sorted index (CSI) format.
2
3#[cfg(feature = "async")]
4pub mod r#async;
5
6pub mod binning_index;
7pub mod fs;
8pub mod io;
9
10pub use self::binning_index::BinningIndex;
11use self::binning_index::index::reference_sequence::index::BinnedIndex;
12
13/// A coordinate-sorted index (CSI).
14pub type Index = binning_index::Index<BinnedIndex>;