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;
11
12#[cfg(feature = "async")]
13pub use self::r#async::io::{Reader as AsyncReader, Writer as AsyncWriter};
14
15const MAGIC_NUMBER: [u8; 3] = *b"BCF";