Skip to main content

k2tools_lib/report/
mod.rs

1pub mod kraken_report;
2/// Parsing and representation of kraken2 report files.
3///
4/// Kraken2 reports are tab-delimited files with one row per taxon, encoding a taxonomy
5/// tree via DFS order and indentation. This module supports both the standard 6-column
6/// format and the extended 8-column format (with minimizer data).
7pub mod rank;
8pub mod row;
9
10pub use kraken_report::KrakenReport;
11pub use rank::{Rank, TaxonomicRank};
12pub use row::ReportRow;