E
ela
As I have written a perl script so no need to reinvent the wheel but can
anybody suggest me how to interface?
#!/bin/sh
for (( i = 1 ; i <= 19; i++ ))
do
ref=$i;
while [ "$*" != "" ]
do
input="$input $indir/$1/sff/*.sff ";
shift
done
runprog $ref $input
#
based on the generated file & takes the statistics on it
$numarray="perl $ref.output";
done
#
print the statistics into a file
print OUTFP $numarray;
e.g.
file 1
66\t38\n
61\t33\n
87\t20\n
file 2
....
then I'll use excel to plot a graph
#
anybody suggest me how to interface?
#!/bin/sh
for (( i = 1 ; i <= 19; i++ ))
do
ref=$i;
while [ "$*" != "" ]
do
input="$input $indir/$1/sff/*.sff ";
shift
done
runprog $ref $input
#
based on the generated file & takes the statistics on it
$numarray="perl $ref.output";
done
#
print the statistics into a file
print OUTFP $numarray;
e.g.
file 1
66\t38\n
61\t33\n
87\t20\n
file 2
....
then I'll use excel to plot a graph
#