Rev 795 | Rev 4257 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
795 | bpr | 1 | #! /bin/sh |
2 | ##Script to use some programs for a bioinfo module. |
||
3 | |||
4 | echo "$wims_exec_parm" > $tmp_dir/test |
||
5 | |||
6 | [ -s $tmp_dir/test ] || exit |
||
7 | |||
8 | ulimit -f 64 |
||
9 | a="$wims_exec_parm" |
||
10 | |||
11 | SUCCES=0 |
||
12 | grep -q "C_etat_civil.o" $tmp_dir/test |
||
13 | if [ $? -eq $SUCCES ] |
||
14 | then |
||
3877 | bpr | 15 | ./bin/wrap..exec C_etat_civil.o $a |
795 | bpr | 16 | fi |
17 | SUCCES=0 |
||
18 | grep -q "test_cond.o" $tmp_dir/test |
||
19 | if [ $? -eq $SUCCES ] |
||
20 | then |
||
3877 | bpr | 21 | ./bin/wrap..exec test_cond.o $a |
795 | bpr | 22 | fi |
23 | SUCCES=0 |
||
24 | grep -q "tab1d.o" $tmp_dir/test |
||
25 | if [ $? -eq $SUCCES ] |
||
26 | then |
||
3877 | bpr | 27 | ./bin/wrap..exec tab1d.o $a |
795 | bpr | 28 | fi |
29 | |||
30 | SUCCES=0 |
||
31 | grep -q "tab2d.o" $tmp_dir/test |
||
32 | if [ $? -eq $SUCCES ] |
||
33 | then |
||
3877 | bpr | 34 | ./bin/wrap..exec tab2d.o $a |
795 | bpr | 35 | fi |
36 |