Skip to content

Commit

Permalink
Fix node creation typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jun 14, 2017
1 parent 672252f commit 28dd4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qipipe/pipeline/modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def _create_airc_workflow(self, **opts):
node_name = "copy_%s" % out_fld
out_base_name = "%s.nii.gz" % out_fld
copy_xfc = Copy(out_base_name=out_base_name)
copy = pe.node(copy_xfc, name=node_name)
copy = pe.Node(copy_xfc, name=node_name)
workflow.connect(fastfit, fastfit_fld, copy, 'in_file')
workflow.connect(copy, 'out_file', output_spec, out_fld)
# Collect the other fastfit outputs.
Expand Down

0 comments on commit 28dd4e9

Please sign in to comment.