/usr/share/doc/probalign/run-unit-test is in probalign 1.4-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh -e
pkg=probalign
if [ "$ADTTMP" = "" ] ; then
ADTTMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
trap "rm -rf $ADTTMP" 0 INT QUIT ABRT PIPE TERM
fi
cd $ADTTMP
cp -a /usr/share/doc/${pkg}/test_data* .
gunzip -r *
probalign -T 5 test_data_p.fas
probalign -nuc test_data_n.fas
probalign -v -go 20 test_data_p.fas
probalign -nuc -a -ge 0.75 test_data_n.fas
|