ci.yml / build (pull_request) Successful in 3m49s
Restructure the benchmark pipeline to direct all simulated data, indices, statistics, and query outputs into a unified `run/` directory. Update Makefile targets, shell scripts, and Python utilities to resolve paths relative to this new base. Adjust documentation and dependency tracking to match the revised layout, and remove outdated temporary artifacts.
14 lines
516 B
Bash
Executable File
14 lines
516 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)"
|
|
RUN_DIR="${SCRIPT_DIR}/run"
|
|
|
|
for genome_file in "${RUN_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
|