Skip to content

Commit

Permalink
Fix the downsize node interface variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed May 26, 2017
1 parent bdd0b1e commit 4f0dce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qipipe/pipeline/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def _create_realignment_workflow(self, **opts):
apply_xfm, 'transforms')
# Downsize the data type to a signed short int.
downsize_xfc = fsl.maths.ChangeDataType(output_datatype='short')
downsize = pe.Node(downsize, name='downsize')
downsize = pe.Node(downsize_xfc, name='downsize')
realign_wf.connect(apply_xfm, 'output_image', downsize, 'in_file')
# Copy the meta-data.
realign_wf.connect(downsize, 'out_file', copy_meta, 'dest_file')
Expand Down

0 comments on commit 4f0dce9

Please sign in to comment.