File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -560,6 +560,7 @@ class CorticalThicknessInputSpec(ANTSCommandInputSpec):
560560
561561class CorticalThicknessOutputSpec (TraitedSpec ):
562562 BrainExtractionMask = File (exists = True , desc = 'brain extraction mask' )
563+ ExtractedBrainN4 = File (exists = True , desc = 'extracted brain from N4 image' )
563564 BrainSegmentation = File (exists = True , desc = 'brain segmentaion image' )
564565 BrainSegmentationN4 = File (exists = True , desc = 'N4 corrected image' )
565566 BrainSegmentationPosteriors = OutputMultiPath (
@@ -645,6 +646,9 @@ def _list_outputs(self):
645646 outputs ['BrainExtractionMask' ] = os .path .join (
646647 os .getcwd (), self .inputs .out_prefix + 'BrainExtractionMask.' +
647648 self .inputs .image_suffix )
649+ outputs ['ExtractedBrainN4' ] = os .path .join (
650+ os .getcwd (), self .inputs .out_prefix + 'ExtractedBrain0N4.' +
651+ self .inputs .image_suffix )
648652 outputs ['BrainSegmentation' ] = os .path .join (
649653 os .getcwd (), self .inputs .out_prefix + 'BrainSegmentation.' +
650654 self .inputs .image_suffix )
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ def test_CorticalThickness_outputs():
7575 BrainVolumes = dict (),
7676 CorticalThickness = dict (),
7777 CorticalThicknessNormedToTemplate = dict (),
78+ ExtractedBrainN4 = dict (),
7879 SubjectToTemplate0GenericAffine = dict (),
7980 SubjectToTemplate1Warp = dict (),
8081 SubjectToTemplateLogJacobian = dict (),
You can’t perform that action at this time.
0 commit comments