extern crate rand;
#[macro_use]
extern crate lazy_static;
pub mod base;
pub mod aautils;
pub mod statutils;
pub mod io;
pub mod parsearg;
pub mod sketcharg;
pub mod groups;
pub mod quality;
pub mod hashed;
pub mod nohasher;
pub mod sketching;
pub mod anchor;
pub mod redisbase;
pub mod prelude;
lazy_static! {
#[allow(dead_code)]
pub static ref LOG: u64 = {
init_log()
};
}
fn init_log() -> u64 {
env_logger::Builder::from_default_env().init();
println!("\n ************** initializing logger from env *****************\n");
1
}