forked from APPIAN-PET/APPIAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroupLevel.py
executable file
·37 lines (31 loc) · 1.23 KB
/
groupLevel.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
import os
import sys
import Results_Report.results as results
import Quality_Control.qc as qc
import Test.test_group_qc as tqc
import Quality_Control.dashboard as dash
def run_group_level(opts,args):
#List of group level commands that can be run
default=(opts,args)
#List of tuples containing info about group level workflows to run
# 1) module that we are loading
# 2) function to call
# 3) arguments to pass to the function. default = (opts, args)
# 4) run flag
args_list=[
(qc, qc.group_level_qc, default, opts.group_qc, 1 ),
(tqc, tqc.test_group_qc_groupLevel,default, opts.test_group_qc, 1 ),
(results,results.group_level_descriptive_statistics, default ,opts.group_stats, 1 ),
(qc,dash.groupLevel_dashboard, default, opts.dashboard, 0)
]
for module, command, fargs, run_flag, min_args in args_list:
print(command, run_flag)
if run_flag and len(args) > min_args :
try :
command(*fargs)
except KeyboardInterrupt:
raise
except:
pass
elif len(args) < min_args :
print( "Warning: only one subject, cannot run group level analysis.")