Files
annotate/detectors/trna/test/go_test.sh

19 lines
274 B
Bash
Raw Normal View History

#!/bin/csh -f
echo "+ [testing tRNA]"
../bin/go_trna.sh test.fst > test.bak
diff -q test.bak test.ref >& /dev/null
set stat = $status
if ($stat == 0) then
echo '+ tRNA test Ok'
\rm -r test.bak
else
echo '+ tRNA test Failure'
endif
exit $stat