-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatistic.py
56 lines (49 loc) · 2.03 KB
/
statistic.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
import os
def statistic_res(dir_name, files):
with open(os.path.join(dir_name,'res_best.txt'), 'a') as fw:
for file in files:
with open(os.path.join(dir_name,file), 'r') as fr:
lines = fr.readlines()
try:
if len(lines[-2].strip().split(' ')) == 14:
fw.write(file+'\t'+'\t'.join(lines[-2].strip().split(' '))+'\n')
elif len(lines[-2].strip().split('\t')) == 7:
line = lines[-2].strip().split('\t')
line_ = ''
for i in line:
line_ += i.split(' ')[0]+'\t'+i.split(' ')[1]+'\t'
# breakpoint()
fw.write(file+'\t'+line_.strip()+'\n')
else:
print(file)
continue
except:
print(file)
continue
with open(os.path.join(dir_name,'res_final.txt'), 'a') as fw:
for file in files:
with open(os.path.join(dir_name,file), 'r') as fr:
lines = fr.readlines()
try:
if len(lines[-1].strip().split(' ')) == 14:
fw.write(file+'\t'+'\t'.join(lines[-1].strip().split(' '))+'\n')
elif len(lines[-1].strip().split('\t')) == 7:
line = lines[-1].strip().split('\t')
line_ = ''
for i in line:
line_ += i.split(' ')[0]+'\t'+i.split(' ')[1]+'\t'
# breakpoint()
fw.write(file+'\t'+line_.strip()+'\n')
else:
print(file)
continue
except:
print(file)
continue
if __name__ == '__main__':
""""""
import sys
dir_name = sys.argv[1]
files = os.listdir(dir_name)
files.sort()
statistic_res(dir_name, files)