File: timing.sh

package info (click to toggle)
toppic 1.8.0%2Brepack1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 111,368 kB
  • sloc: cpp: 62,240; xml: 8,121; javascript: 1,356; python: 755; sh: 108; makefile: 22
file content (7 lines) | stat: -rwxr-xr-x 206 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#!/bin/bash
start=`date +%s`

./test_graph -i mass_graph_mods.txt -k -p 0 -j 20 H4.fasta 071210_070610His0Gy070210H4_H061010A_msdeconv.msalign

end=`date +%s`
echo "Runnig time: " $((end-start)) " seconds"