-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlog2script.py
executable file
·68 lines (40 loc) · 1.33 KB
/
log2script.py
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
import argparse
import os
import re
import sys
def parse(file):
"""docstring for main"""
logfile = open(file , 'r')
log = logfile.read()
pattern = re.compile('\[job (\w+)\]([^\[]+)\[job \w+\] completed (\w+)', re.DOTALL)
print(log)
jobs = pattern.findall(log)
# print(jobs)
# print("LIST")
for entry in jobs:
# print(entry)
command = re.sub(r'\\\n', ' ', entry[1])
command = re.sub(r'\/[\w\/]+\$' , '' , command )
command = re.sub(r'^\W+' , '' , command )
command = re.sub(r'\s+' , ' ' , command )
print("# " + entry[0])
if (args.no_strip_dir) :
print(command)
else:
short = re.sub(r'\/[\w\/-]+\/' , '.../' , command )
print(short)
print()
def main():
"""docstring for main"""
if (not os.path.exists(args.cwl_run_log)) :
print("No file" + args.cwl_run_log + "\n" , file=sys.stderr)
steps = parse(args.cwl_run_log)
# Setup
parser = argparse.ArgumentParser()
parser.add_argument("cwl_run_log", type=str , help="log file from cwl-run")
parser.add_argument("-v" , "--verbose", action="store_true", help="increase output verbosity")
parser.add_argument("-n" , "--no-strip-dir", action="store_true", help="increase output verbosity")
args = parser.parse_args()
if __name__ == "__main__":
main()