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 cbd08ec commit fab7966Copy full SHA for fab7966
smriprep/workflows/outputs.py
@@ -724,15 +724,11 @@ def init_ds_surfaces_wf(
724
run_without_submitting=True,
725
)
726
if surf.startswith('sphere_reg'):
727
- if surf == 'sphere_reg_msm':
728
- ds_surf.inputs.desc = 'msmsulc'
+ ds_surf.inputs.space, ds_surf.inputs.desc = 'fsaverage', 'reg' # Default
+ if surf == 'sphere_reg_fsLR':
729
ds_surf.inputs.space = 'fsLR'
730
- else:
731
- ds_surf.inputs.desc = 'reg'
732
- if surf == 'sphere_reg_fsLR':
733
- ds_surf.inputs.space = 'fsLR'
734
- elif surf == 'sphere_reg':
735
- ds_surf.inputs.space = 'fsaverage'
+ elif surf == 'sphere_reg_msm':
+ ds_surf.inputs.space, ds_surf.inputs.desc = 'fsLR', 'msmsulc'
736
737
# fmt:off
738
workflow.connect([
0 commit comments