Skip to content

Commit 7153693

Browse files
author
Erik Ziegler
committed
Fix for Parcellation outputs
1 parent f378ec9 commit 7153693

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

nipype/interfaces/cmtk/parcellation.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,11 @@ class ParcellateInputSpec(BaseInterfaceInputSpec):
360360

361361
class ParcellateOutputSpec(TraitedSpec):
362362
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')
363368

364369
class Parcellate(BaseInterface):
365370
"""Subdivides segmented ROI file into smaller subregions
@@ -404,7 +409,7 @@ def _list_outputs(self):
404409
outputs['cc_unknown_file'] = op.abspath('cc_unknown.nii.gz')
405410
outputs['ribbon_file'] = op.abspath('ribbon.nii.gz')
406411
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')
408413
return outputs
409414

410415
def _gen_outfilename(self, ext, prefix='ROI'):

0 commit comments

Comments
 (0)