[package]
edition = "2018"
name = "rasusa"
version = "5.0.1"
authors = ["Michael Hall <michael@mbh.sh>"]
build = false
exclude = ["tests/cases/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Randomly subsample reads or alignments"
homepage = "https://github.com/mbhall88/rasusa"
readme = "README.md"
keywords = [
"bioinformatics",
"subsampling",
"fastq",
"alignment",
"coverage",
]
categories = [
"science",
"command-line-utilities",
]
license-file = "LICENSE"
repository = "https://github.com/mbhall88/rasusa"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "rasusa"
path = "src/lib.rs"
[[bin]]
name = "rasusa"
path = "src/main.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[[test]]
name = "reproducibility"
path = "tests/reproducibility.rs"
[[bench]]
name = "subsample"
path = "benches/subsample.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.env_logger]
version = "0.11.9"
[dependencies.log]
version = "0.4"
[dependencies.needletail]
version = "0.5.1"
features = ["compression"]
[dependencies.niffler]
version = "2.5"
[dependencies.noodles]
version = "0.112.0"
features = [
"bam",
"cram",
"core",
"sam",
]
[dependencies.noodles-bgzf]
version = "0.48.0"
features = ["libdeflate"]
[dependencies.noodles-util]
version = "0.81.0"
features = ["alignment"]
[dependencies.rand]
version = "0.10.1"
[dependencies.rand_pcg]
version = "0.10.1"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.12.3"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.assert_cmd]
version = "2.2.0"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"
[profile.profiling]
debug = 2
inherits = "release"
strip = false
[profile.release]
lto = true
debug = 0
strip = true