fastqc_rust/lib.rs
1pub mod config;
2pub mod modules;
3pub mod report;
4pub mod runner;
5pub mod sequence;
6pub mod utils;
7
8// match Java FastQC version string for byte-identical output
9pub const VERSION: &str = "0.12.1";
10
11pub const RUST_VERSION: &str = env!("CARGO_PKG_VERSION");
12
13pub const VERSION_BANNER: &str =
14 concat!("0.12.1\nFastQC-Rust rewrite v", env!("CARGO_PKG_VERSION"));