Skip to content

Commit

Permalink
Set the output_]spec node name.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jul 13, 2017
1 parent 28136d0 commit 09e16a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qipipe/pipeline/roi.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ def _create_workflow(self, **opts):
workflow.connect(merge, 'out_file', upload_roi, 'in_files')

# The output is the 3D ROI overlay.
output_spec = pe.Node(StickyIdentityInterface(fields=['out_file']))
output_xfc = StickyIdentityInterface(fields=['out_file'])
output_spec = pe.Node(output_xfc, name='output_spec')
workflow.connect(merge, 'out_file', output_spec, 'out_file')

self._configure_nodes(workflow)
Expand Down

0 comments on commit 09e16a4

Please sign in to comment.