rsomics-fastq-downsample 0.1.2

Deterministic random downsampling of FASTQ to a target read count or fraction
Documentation
[package]
name = "rsomics-fastq-downsample"
version = "0.1.2"
readme = "README.md"
description = "Deterministic random downsampling of FASTQ to a target read count or fraction"
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
repository = "https://github.com/omics-rust/rsomics-world"
authors = ["Zane Leong <efd@live.com>"]

[[bin]]
name = "rsomics-fastq-downsample"
path = "src/main.rs"

[lib]
name = "rsomics_fastq_downsample"
path = "src/lib.rs"

doctest = false
[dependencies]
rsomics-common = { version = "0.6" }
rsomics-help = { version = "0.3" }
clap = { version = "4", features = ["derive"] }
needletail = { version = "0.7", default-features = false, features = ["compression"] }
rand = "0.8"

[dev-dependencies]
criterion = { version = "0.7", default-features = false, features = ["cargo_bench_support"] }

[[bench]]
name = "bench"
harness = false