1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! Kmer File Format Rust parser and writer

#![warn(missing_docs)]

/* std use */

/* crate use */

/* project use */

/* mod declaration */

pub mod error;
pub mod iterator;
pub mod kff;
pub mod section;
pub mod utils;

pub use self::kff::Kff;
pub use iterator::KmerIterator;
pub use utils::*;