rustkmer 0.5.2

High-performance k-mer counting tool in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CLI command implementations
//!
//! Contains the implementation of all rustkmer subcommands.

pub mod args;
pub mod count;
pub mod dump;
pub mod fuzzy;
pub mod merge;
pub mod prefix;
pub mod query;
pub mod stats;