@@ -39,15 +39,15 @@ def main(argv=None):
39
39
parse_args (argv )
40
40
41
41
if config .execution .pdb :
42
- from mriqc .utils .debug import setup_exceptionhook
42
+ from niworkflows .utils .debug import setup_exceptionhook
43
43
44
44
setup_exceptionhook ()
45
45
config .nipype .plugin = "Linear"
46
46
47
47
# CRITICAL Save the config to a file. This is necessary because the execution graph
48
48
# is built as a separate process to keep the memory footprint low. The most
49
49
# straightforward way to communicate with the child process is via the filesystem.
50
- # The config file name needs to be unique, otherwise multiple mriqc instances
50
+ # The config file name needs to be unique, otherwise multiple sdcflows instances
51
51
# will create write conflicts.
52
52
config_file = mktemp (
53
53
dir = config .execution .work_dir , prefix = ".sdcflows." , suffix = ".toml"
@@ -133,7 +133,7 @@ def main(argv=None):
133
133
134
134
# CRITICAL Load the config from the file. This is necessary because the ``build_workflow``
135
135
# function executed constrained in a process may change the config (and thus the global
136
- # state of MRIQC ).
136
+ # state of SDCFlows ).
137
137
config .load (config_file )
138
138
139
139
exitcode = exitcode or (sdcflows_wf is None ) * os .EX_SOFTWARE
@@ -164,10 +164,10 @@ def main(argv=None):
164
164
165
165
# Clean up master process before running workflow, which may create forks
166
166
gc .collect ()
167
- # run MRIQC
167
+ # run SDCFlows
168
168
_plugin = config .nipype .get_plugin ()
169
169
if _pool :
170
- from mriqc .engine .plugin import MultiProcPlugin
170
+ from niworkflows .engine .plugin import MultiProcPlugin
171
171
172
172
_plugin = {
173
173
"plugin" : MultiProcPlugin (
0 commit comments