1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/bin/sh
# Description:
# Test loading of match segments from a separate file
#
# Results:
# The match segment "seg_match" should appear in the alignment list
# with coordinates 3->30 and score 20.0. Its sequence is
# WLPLHTLinsertAACGEFYLVDSLLKH, starting at column 3.
RC=0
test_name=`basename $0`
test_dir=`dirname $0`
data_dir=$test_dir/../../../data
belvu -T i -m $data_dir/PF02171_seed.segs $data_dir/PF02171_seed.stock
# If there was an error, set RC
if [ $? -ne 0 ]
then
RC=1
fi
exit $RC
|