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):
560
560
561
561
class CorticalThicknessOutputSpec (TraitedSpec ):
562
562
BrainExtractionMask = File (exists = True , desc = 'brain extraction mask' )
563
+ ExtractedBrainN4 = File (exists = True , desc = 'extracted brain from N4 image' )
563
564
BrainSegmentation = File (exists = True , desc = 'brain segmentaion image' )
564
565
BrainSegmentationN4 = File (exists = True , desc = 'N4 corrected image' )
565
566
BrainSegmentationPosteriors = OutputMultiPath (
@@ -645,6 +646,9 @@ def _list_outputs(self):
645
646
outputs ['BrainExtractionMask' ] = os .path .join (
646
647
os .getcwd (), self .inputs .out_prefix + 'BrainExtractionMask.' +
647
648
self .inputs .image_suffix )
649
+ outputs ['ExtractedBrainN4' ] = os .path .join (
650
+ os .getcwd (), self .inputs .out_prefix + 'ExtractedBrain0N4.' +
651
+ self .inputs .image_suffix )
648
652
outputs ['BrainSegmentation' ] = os .path .join (
649
653
os .getcwd (), self .inputs .out_prefix + 'BrainSegmentation.' +
650
654
self .inputs .image_suffix )
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ def test_CorticalThickness_outputs():
75
75
BrainVolumes = dict (),
76
76
CorticalThickness = dict (),
77
77
CorticalThicknessNormedToTemplate = dict (),
78
+ ExtractedBrainN4 = dict (),
78
79
SubjectToTemplate0GenericAffine = dict (),
79
80
SubjectToTemplate1Warp = dict (),
80
81
SubjectToTemplateLogJacobian = dict (),
You can’t perform that action at this time.
0 commit comments