File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,11 @@ class ParcellateInputSpec(BaseInterfaceInputSpec):
360
360
361
361
class ParcellateOutputSpec (TraitedSpec ):
362
362
roi_file = File (desc = 'Region of Interest file for connectivity mapping' )
363
+ white_matter_mask_file = File (desc = 'White matter mask file' )
364
+ cc_unknown_file = File (desc = 'Image file with regions labelled as unknown cortical structures' )
365
+ ribbon_file = File (desc = 'Image file detailing the cortical ribbon' )
366
+ aseg_file = File (desc = 'Automated segmentation file converted from Freesurfer "subjects" directory' )
367
+ roi_file_in_structural_space = File (desc = 'ROI image resliced to the dimensions of the original structural image' )
363
368
364
369
class Parcellate (BaseInterface ):
365
370
"""Subdivides segmented ROI file into smaller subregions
@@ -404,7 +409,7 @@ def _list_outputs(self):
404
409
outputs ['cc_unknown_file' ] = op .abspath ('cc_unknown.nii.gz' )
405
410
outputs ['ribbon_file' ] = op .abspath ('ribbon.nii.gz' )
406
411
outputs ['aseg_file' ] = op .abspath ('aseg.nii.gz' )
407
- outputs ['ROI_HR_th_file ' ] = op .abspath ('ROI_HR_th.nii.gz' )
412
+ outputs ['roi_file_in_structural_space ' ] = op .abspath ('ROI_HR_th.nii.gz' )
408
413
return outputs
409
414
410
415
def _gen_outfilename (self , ext , prefix = 'ROI' ):
You can’t perform that action at this time.
0 commit comments