noodles_bcf/
lib.rs

1//! **noodles-bcf** handles the reading and writing of the BCF format.
2
3#[cfg(feature = "async")]
4pub mod r#async;
5
6pub mod fs;
7pub mod io;
8pub mod record;
9
10pub use self::record::Record;