1//! **noodles-bed** handles the reading and writing of the BED (Browser Extensible Data) format. 2 3pub mod feature; 4pub mod fs; 5pub mod io; 6mod record; 7 8pub use self::record::Record;