c694e1f2b0
Introduces a Make-based orchestration for simulating, indexing, merging, filtering, and verifying k-mer counts and presence. Exposes internal builder and iterator APIs publicly, enforces mandatory leading slashes for predicate patterns, registers the `obitaxonomy` crate, and updates tooling configurations alongside documentation.
13 lines
491 B
Bash
Executable File
13 lines
491 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Simulate all genomes. Delegates to simulate_one.sh per genome.
|
|
# Prefer running via `gmake simulate` which handles individual dependencies.
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
for genome_file in "${SCRIPT_DIR}"/genomes/*.fna.gz; do
|
|
out_dir=$("${SCRIPT_DIR}/../.venv/bin/python3" "${SCRIPT_DIR}/make_deps.py" \
|
|
--dir-for "${genome_file}")
|
|
bash "${SCRIPT_DIR}/simulate_one.sh" "${genome_file}" "${out_dir}"
|
|
done
|