rype 1.0.0-rc.1

High-performance genomic sequence classification using minimizer-based k-mer sketching in RY space
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Command-line interface definitions and helpers for the rype CLI.

pub mod args;
pub mod classify;
pub mod helpers;
pub mod index;
pub mod inspect;

pub use args::{ClassifyCommands, Cli, Commands, IndexCommands, InspectCommands};
pub use classify::{
    run_aggregate, run_classify, run_log_ratio, ClassifyAggregateArgs, ClassifyLogRatioArgs,
    ClassifyRunArgs, CommonClassifyArgs,
};
pub use helpers::{load_index_metadata, resolve_bucket_id};
pub use index::{build_parquet_index_from_config, create_parquet_index_from_refs};
pub use inspect::inspect_matches;