a4b57a96de
Introduce the `obiread` crate with a streaming byte normalizer that processes FASTA, FASTQ, and GenBank files using a 64 KiB ring buffer for O(1) memory usage. Integrate this crate into `obiskbuilder` to provide `SuperKmerStreamIter`, enabling memory-efficient superkmer traversal with rolling entropy and minimizer-based cut conditions.
14 lines
290 B
TOML
14 lines
290 B
TOML
[package]
|
|
name = "obiskbuilder"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
obikseq = { path = "../obikseq" }
|
|
obikrope = { path = "../obikrope" }
|
|
obiread = { path = "../obiread" }
|
|
lazy_static = "1.5.0"
|
|
|
|
[dev-dependencies]
|
|
obikseq = { path = "../obikseq", features = ["test-utils"] }
|