noodles_gtf/
lib.rs

1//! **noodles-gtf** handles the reading and writing of the Gene Transfer Format (GTF).
2
3pub mod io;
4pub mod line;
5mod line_buf;
6pub mod record;
7
8pub use self::{line::Line, line_buf::LineBuf, record::Record};