noodles_gtf/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(missing_docs)]

//! **noodles-gtf** handles the reading and writing of the Gene Transfer Format (GTF).

pub mod io;
pub mod line;
pub mod record;

pub use self::{line::Line, record::Record};

#[deprecated(since = "0.32.0", note = "Use `noodles_gtf::io::Reader` instead.")]
pub use self::io::Reader;

#[deprecated(since = "0.32.0", note = "Use `noodles_gtf::io::Writer` instead.")]
pub use self::io::Writer;