30
30
]
31
31
32
32
33
- def init_mcribs_surface_recon_wf (* , mcribs_dir = None , name = "mcribs_surface_recon_wf" ):
33
+ def init_mcribs_surface_recon_wf (* , use_aseg , mcribs_dir = None , name = "mcribs_surface_recon_wf" ):
34
+ """
35
+ Reconstruct cortical surfaces using the M-CRIB-S pipeline.
36
+
37
+ This workflow injects a precomputed segmentation into the M-CRIB-S pipeline, bypassing the
38
+ DrawEM segmentation step that is normally performed.
39
+ """
34
40
from niworkflows .interfaces .nibabel import MapLabels , ReorientImage
35
41
36
42
from ...interfaces .mcribs import MCRIBReconAll
@@ -136,6 +142,7 @@ def init_mcribs_surface_recon_wf(*, mcribs_dir=None, name="mcribs_surface_recon_
136
142
# fmt:on
137
143
return wf
138
144
145
+
139
146
from nipype .interfaces import fsl
140
147
from nipype .interfaces import utility as niu
141
148
from nipype .pipeline import engine as pe
@@ -144,7 +151,9 @@ def init_mcribs_surface_recon_wf(*, mcribs_dir=None, name="mcribs_surface_recon_
144
151
from ...interfaces .workbench import CreateSignedDistanceVolume
145
152
146
153
147
- def init_infant_surface_recon_wf (* , age_months , use_aseg = False , name = "infant_surface_recon_wf" ):
154
+ def init_infantfs_surface_recon_wf (
155
+ * , age_months , use_aseg = False , name = "infantfs_surface_recon_wf"
156
+ ):
148
157
from nibabies .interfaces .freesurfer import InfantReconAll
149
158
150
159
# Synchronized inputs to smriprep.workflows.surfaces.init_surface_recon_wf
0 commit comments