noodles_csi/
io.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! CSI I/O.

mod filter_by_region;
mod indexed_reader;
mod indexed_record;
mod indexed_records;
mod query;
pub mod reader;
pub(crate) mod writer;

pub use self::{
    filter_by_region::FilterByRegion, indexed_reader::IndexedReader, indexed_record::IndexedRecord,
    indexed_records::IndexedRecords, query::Query, reader::Reader, writer::Writer,
};

pub(crate) static MAGIC_NUMBER: &[u8] = b"CSI\x01";