We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d92bfe commit 5903b80Copy full SHA for 5903b80
mriqc/workflows/functional/base.py
@@ -74,6 +74,7 @@ def fmri_qc_workflow(name='funcMRIQC'):
74
75
from mriqc.interfaces.functional import SelectEcho
76
from mriqc.messages import BUILDING_WORKFLOW
77
+ from mriqc.utils.misc import _flatten_list as flatten
78
79
workflow = pe.Workflow(name=name)
80
@@ -116,7 +117,7 @@ def fmri_qc_workflow(name='funcMRIQC'):
116
117
)
118
config.loggers.workflow.info(message)
119
- if set(dataset) - set(full_files):
120
+ if set(flatten(dataset)) - set(flatten(full_files)):
121
config.workflow.inputs['bold'] = full_files
122
config.to_filename()
123
0 commit comments