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

19 lines
274 B
Bash
Raw Normal View History

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