1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Contains the implementation of several programs used by the
//! [Unipept pipeline](http://unipept.ugent.be/).

#![doc(html_logo_url = "http://unipept.ugent.be/logo.png",
       html_favicon_url = "http://unipept.ugent.be/favicon.ico")]
#![deny(missing_docs)]
#![recursion_limit = "128"]

#[macro_use]
extern crate error_chain;

#[macro_use]
extern crate lazy_static;

#[cfg(test)]
#[macro_use]
extern crate assert_matches;

#[macro_use]
extern crate structopt;

extern crate clap;

extern crate regex;

extern crate strum;

#[macro_use]
extern crate strum_macros;

pub mod agg;
pub mod args;
pub mod dna;
pub mod errors;
pub mod io;
pub mod rank;
pub mod rmq;
pub mod taxon;
pub mod tree;
pub mod utils;

#[cfg(test)]
pub mod fixtures;

/// The current version
pub const PKG_VERSION: &'static str = env!("CARGO_PKG_VERSION");
/// The package name
pub const PKG_NAME: &'static str = env!("CARGO_PKG_NAME");
/// The authors
pub const PKG_AUTHORS: &'static str = env!("CARGO_PKG_AUTHORS");