1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![warn(missing_docs)] #![allow(clippy::iter_nth_zero)] //! Read and write minimap2 PAF files. //! Lines are internally stored as struct [PAFLine]. /// The data structures storing PAF lines. pub mod data; /// Error handling types. pub mod error; /// Read PAF lines. pub mod input; /// Output PAF lines. pub mod output; #[cfg(test)] mod tests;