-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_matrices.py
executable file
·48 lines (36 loc) · 1.26 KB
/
gen_matrices.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
# gen_matrices.py
#
# Generate all channel matrices for the given results hierarchy.
#
# This code is experimental, and error-handling is primitive.
#
# Copyright 2013, NICTA. See COPYRIGHT for license details.
#!/usr/bin/env python
import os.path
from subprocess import Popen, PIPE
import sys
dataroot= sys.argv[1]
scriptroot= os.path.dirname(sys.argv[0])
filter_samples= os.path.join(scriptroot, "filter_samples")
channel_matrix= os.path.join(scriptroot, "channel_matrix")
pipes= []
stats= file(os.path.join(dataroot, "analysis", "stats"))
for l in stats:
bits= l.strip().split(' ')
chip, chan, cm, ts, cmin, cmax, rmin, rmax= bits[0:8]
min_count= bits[-1]
output= os.path.join(dataroot, "matrices", \
"%s.%s.%s.%s.cm" % (chip, chan, cm, ts))
print "Generating %s\n" % output
cmdline= 'find %s/%s/%s/%s/TS_%s -name "*.xz" | ' % \
(dataroot, chip, chan, cm, ts ) + \
'xargs xzcat | ' + \
'%s %s %s %s %s | ' % \
(filter_samples, cmin, cmax, rmin, rmax) + \
'%s %s %s %s %s > /dev/null 2>&1' % \
(channel_matrix, output, cmin, cmax, min_count)
p= Popen(cmdline, shell=True, stdout=PIPE)
pipes.append(p)
for p in pipes:
p.communicate()
stats.close()