Subversion Repositories wimsdev

Rev

Rev 4257 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
795 bpr 1
#! /bin/sh
8537 bpr 2
##Script to use some programs for a bioinfo module.
795 bpr 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
4257 bpr 12
grep -q "C_etat_civil" $tmp_dir/test
795 bpr 13
if [ $? -eq $SUCCES ]
14
then
8537 bpr 15
   ./bin/wrap..exec ../other/bin/C_etat_civil $a
795 bpr 16
fi
17
SUCCES=0
4257 bpr 18
grep -q "test_cond" $tmp_dir/test
795 bpr 19
if [ $? -eq $SUCCES ]
20
then
8537 bpr 21
   ./bin/wrap..exec ../other/bin/test_cond $a
795 bpr 22
fi
23
SUCCES=0
4257 bpr 24
grep -q "tab1d" $tmp_dir/test
795 bpr 25
if [ $? -eq $SUCCES ]
26
then
8537 bpr 27
   ./bin/wrap..exec ../other/bin/tab1d $a
795 bpr 28
fi
29
 
30
SUCCES=0
4257 bpr 31
grep -q "tab2d" $tmp_dir/test
795 bpr 32
if [ $? -eq $SUCCES ]
33
then
8537 bpr 34
   ./bin/wrap..exec ../other/bin/tab2d $a
795 bpr 35
fi
36