[package]
edition = "2024"
rust-version = "1.91"
name = "rsomics-seqstats"
version = "0.2.0"
authors = ["Zane Leong <efd@live.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Format-agnostic sequence statistics primitives (length distribution: N50/L50/Nx + quartiles, base composition, alphabet guess). Layer-A, shared verbatim by the rsomics-* *-stats tools so output byte-agrees with `seqkit stats -a`."
readme = "README.md"
keywords = [
"bioinformatics",
"n50",
"statistics",
"gc-content",
"seqkit",
]
categories = ["science"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Bengerthelorf/rsomics-world"
[lib]
name = "rsomics_seqstats"
path = "src/lib.rs"
[dependencies.bytecount]
version = "0.6"
features = ["runtime-dispatch-simd"]
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"