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
//! Hash table and counting functionality
//!
//! Provides concurrent hash table implementation for efficient k-mer counting
//! with support for overflow storage and memory optimization.

pub mod filtering;
pub mod matrix;
pub mod overflow;
pub mod table;

pub use filtering::{CountFilter, CountFilterConfig, FilteringResult};
pub use table::KmerCounter;