kira_cdh_compat_cluster 0.1.0

Greedy clustering engine compatible with CD-HIT-like pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Greedy clustering engine for CD-HIT-like workflows.
//!
//! - Input: LSH index, fixed-length MinHash/KMV signatures, optional sequence lengths.
//! - Similarity: MinHash-based Jaccard estimate.
//! - Optional coverage gating (CD-HIT-like -aS/-aL) derived from Jaccard + lengths + k.
//!
//! This crate aims to keep the API small, deterministic, and well-documented.

pub mod greedy;

pub use greedy::{ClusterOptions, ClusterResult, GreedyClusterer, jaccard_minhash};