noodles_bed/
lib.rs

1#![warn(missing_docs)]
2
3//! **noodles-bed** handles the reading and writing of the BED (Browser Extensible Data) format.
4
5pub mod feature;
6pub mod fs;
7pub mod io;
8mod record;
9
10pub use self::record::Record;
11
12#[deprecated(since = "0.14.0", note = "Use `noodles_bed::io::Reader` instead.")]
13pub use self::io::Reader;
14
15#[deprecated(since = "0.14.0", note = "Use `noodles_bed::io::Writer` instead.")]
16pub use self::io::Writer;