File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
nipype/workflows/smri/freesurfer Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -570,12 +570,12 @@ def minimizeSizeOfImage(outlabels):
570
570
def create_recoding_wf (in_file , out_file = None ):
571
571
wf = pe .Workflow (name = "RecodeLabels" )
572
572
573
- inputspec = nipype . pipeline . Node (nipype .IdentityInterface (['labelmap' ,
574
- 'recode_file' ]),
575
- name = "inputspec" )
573
+ inputspec = pe . Node (niu .IdentityInterface (['labelmap' ,
574
+ 'recode_file' ]),
575
+ name = "inputspec" )
576
576
inputspec .inputs .recode_file = in_file
577
577
578
- convert_labelmap = nipype . pipeline .Node (fs .MRIConvert (), name = "ConvertLabelMap" )
578
+ convert_labelmap = pe .Node (fs .MRIConvert (), name = "ConvertLabelMap" )
579
579
convert_labelmap .inputs .in_type = 'mgz'
580
580
convert_labelmap .inputs .out_type = 'nii'
581
581
convert_labelmap .inputs .out_orientation = 'RAS'
You can’t perform that action at this time.
0 commit comments