rustkmer 0.5.2

High-performance k-mer counting tool in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Memory Management Module
//!
//! Provides memory-efficient operations for large genomic datasets,
//! including memory mapping, pagination, and streaming interfaces.

pub mod efficiency;

pub use efficiency::{
    MemoryConfig, MemoryEfficiencyReport, MemoryManager, MemoryStats, PageIterator,
    DEFAULT_MEMORY_LIMIT, DEFAULT_PAGE_SIZE, MMAP_THRESHOLD,
};