File size: 1,113 Bytes
4b5b766 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh
# Testing making per-residue inferences and plotting
rm -f scripts/tests/outputs/mean_519c2e9a42194ade71c697d64ed3bced3175a6324803a940ebdf69bb65f301ec.pt
rm -f scripts/tests/outputs/per_res_519c2e9a42194ade71c697d64ed3bced3175a6324803a940ebdf69bb65f301ec.pt
rm -f scripts/tests/outputs/mean_7bdb2d9587a23bb7f744bcffba509cc7adf8c69667a9d954c3be1a4aa09f7c0a.pt
rm -f scripts/tests/outputs/per_res_7bdb2d9587a23bb7f744bcffba509cc7adf8c69667a9d954c3be1a4aa09f7c0a.pt
rm -f scripts/tests/outputs/mean_d2a3c93ce60d9c7ed923bda5def8fa46267df336f7310cc3e951a20f092df979.pt
rm -f scripts/tests/outputs/per_res_d2a3c93ce60d9c7ed923bda5def8fa46267df336f7310cc3e951a20f092df979.pt
python scripts/temstapro -f scripts/tests/data/multiple_short_sequences.fasta \
-e './scripts/tests/outputs/' -d './ProtTrans/' \
-p './scripts/tests/outputs/' --mean-output ./scripts/tests/outputs/010_mean.tmp \
--per-res-output ./scripts/tests/outputs/010_per_res.tmp
rm -f ./scripts/tests/outputs/short_seq_?_per_residue_plot_?.svg
rm -f ./scripts/tests/outputs/010_mean.tmp ./scripts/tests/outputs/010_per_res.tmp
|