File: run_benchmark_01_plain.sh

package info (click to toggle)
golang-github-shenwei356-bio 0.13.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 792 kB
  • sloc: perl: 114; sh: 58; makefile: 21
file content (49 lines) | stat: -rwxr-xr-x 969 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh

echo Test: Plain text
echo Output sequences of all apps are not wrapped to fixed length.


echo -en "\n============================================\n";

for f in dataset_*.f{a,q}; do

    echo read file once with cat
    cat $f > /dev/null;
    
    
    echo -en "\n------------------------------------\n";    
    
    echo == seqkit
    echo data: $f;
    
    memusg -t -H seqkit seq $f -w 0 > $f.seqkit.fx;    
    
    md5sum $f.seqkit.fx;    
    /bin/rm $f.seqkit.fx;
    
    
    
    echo -en "\n------------------------------------\n";    
    
    echo == seqkit_t1
    echo data: $f;
    
    memusg -t -H seqkit seq $f -w 0 -j 1 > $f.seqkit.fx;    
    
    md5sum $f.seqkit.fx;    
    /bin/rm $f.seqkit.fx;
    
    
    
    echo -en "\n------------------------------------\n";  
    
    echo == seqtk
    echo data: $f;

    memusg -t -H seqtk seq $f > $f.seqtk.fx;
    
    md5sum $f.seqtk.fx;    
    /bin/rm $f.seqtk.fx;        
done