File size: 403 Bytes
6dd9839 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/env bash
# Smoke test: protein + RNA → binding_prob.
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT"
if [[ ! -f configs/paths.env ]]; then
echo "First run: cp configs/paths.env.example configs/paths.env and set VESM paths."
exit 1
fi
SEQ="${1:-MSKSLYKVL}"
RNA="${2:-AUGCAUGCAUGCAUGCAUGC}"
python api/score_binding.py --protein "$SEQ" --rna "$RNA" --p-id DemoSmoke
|