noodles_bcf/lib.rs
1#![warn(missing_docs)]
2
3//! **noodles-bcf** handles the reading and writing of the BCF format.
4
5#[cfg(feature = "async")]
6pub mod r#async;
7
8pub mod fs;
9pub mod io;
10pub mod record;
11
12pub use self::record::Record;
13
14#[cfg(feature = "async")]
15pub use self::r#async::io::{Reader as AsyncReader, Writer as AsyncWriter};
16
17const MAGIC_NUMBER: [u8; 3] = *b"BCF";