1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![crate_name = "needletail"]
extern crate memchr;

#[cfg(feature = "gz")]
extern crate flate2;

pub mod fastx;
pub mod kmer;
pub mod bitkmer;
pub mod seq;
mod buffer;