File: test3

package info (click to toggle)
seqtools 4.44.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 28,492 kB
  • sloc: cpp: 53,636; sh: 12,232; makefile: 386
file content (24 lines) | stat: -rwxr-xr-x 380 bytes parent folder | download | duplicates (4)
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 reading a file without stripping coordinates
#   from the sequence names
#
# Results:
#   The sequence names should include the coordinates

RC=0

test_name=`basename $0`
test_dir=`dirname $0`
data_dir=$test_dir/../../../data

belvu -Ti -R $data_dir/PF02171_seed.stock

# If there was an error, set RC
if [ $? -ne 0 ] 
then
  RC=1
fi

exit $RC