Dino Tools is a small workspace for standalone Rust tools.
There is no umbrella dino command. Each tool owns its own package, binary,
README, tests, and release surface. The root workspace exists only so local
development can build and test the checked-in tools together.
crates/dino-seq: FASTQ/FASTA streaming parser and ingest CLI.crates/dino-quant: TurboQuant-inspired DNA sketch compression experiments.dna/: nucleotide terminal animations (DNACLI).CHANGELOG.md: reviewable history for workspace-level changes only.
Keep tools isolated unless shared code proves it is worth extracting. Prefer a little duplication over a framework layer that couples unrelated tools.
cargo install --path crates/dino-seq
cargo install --path dnacargo run -p dino-seq -- stats --help
cargo run -p dino-quant -- demo
cargo run -p dna --bin DNA -- --help
scripts/quant-lab init
scripts/quant-lab acquire all
scripts/quant-lab prepare all
scripts/quant-lab run-suite smoke
scripts/quant-lab run quant_minimap2_assisted_cached_bundle_scale_ecoli
scripts/quant-lab run quant_minimap2_assisted_bundle_optimizer_ecoli
scripts/quant-lab run quant_minimap2_assisted_bundle_cold_warm_ecoli
scripts/quant-lab summarize
cargo test --workspace