Extracts streaming entropy logic and sliding-window frequency tracking from obiskbuilder into a dedicated obikentropy crate. Introduces an EntropyTracker accumulator for O(1) per-base normalized Shannon entropy, replaces inline rolling statistics with delegated state management, and updates workspace dependencies across obikindex, obikpartitionner, and obiskbuilder. Adds criterion benchmarks to validate the refactored pipeline throughput.
11 lines
197 B
TOML
11 lines
197 B
TOML
[package]
|
|
name = "obikentropy"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikseq = { path = "../obikseq" }
|
|
|
|
[dev-dependencies]
|
|
obikseq = { path = "../obikseq", features = ["test-utils"] }
|