File: seaview_align.sh

package info (click to toggle)
seaview 20021127-4
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 620 kB
  • ctags: 685
  • sloc: cpp: 11,644; makefile: 59; sh: 19
file content (20 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
arg1=$1
shift 1
args=$*
if [ $# -gt 4 ]; then
	shift 4
	echo used clustalw options: $*
fi
clustalw $args
echo ' '
echo ' '
echo ' '
echo 'Program clustalw terminated.'
echo -n 'Load new alignment? [(y)/n] '
read rep
if [ "$rep" = "n" ]; then
        echo aborted > $arg1.status
else
        echo success > $arg1.status
fi