File size: 571 Bytes
4b5b766 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh
# Testing making per-residue inferences
rm -f scripts/tests/outputs/mean_b6f8b4d2f6602ee040278b1d64ab7cf588baa33d74a126030e252fd91ac00601.pt
rm -f scripts/tests/outputs/per_res_b6f8b4d2f6602ee040278b1d64ab7cf588baa33d74a126030e252fd91ac00601.pt
python scripts/temstapro -f scripts/tests/data/long_sequence.fasta -e './scripts/tests/outputs/' \
-d './ProtTrans/' --mean-output scripts/tests/outputs/011_mean.tmp \
--per-res-output scripts/tests/outputs/011_per_res.tmp
rm -f ./scripts/tests/outputs/011_mean.tmp scripts/tests/outputs/011_per_res.tmp
|