Skip to content

Commit

Permalink
Name the download time series node.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jun 20, 2017
1 parent ef9b189 commit b89ac6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qipipe/pipeline/qipipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,9 +825,9 @@ def _create_workflow(self, subject, session, scan, actions, **opts):
exec_wf.connect(input_spec, 'subject', dl_scan_ts, 'subject')
exec_wf.connect(input_spec, 'session', dl_scan_ts, 'session')
exec_wf.connect(input_spec, 'scan', dl_scan_ts, 'scan')
# Rename the download out_file to volume_files.
# Rename the download out_file to time_series.
scan_ts_xfc = IdentityInterface(fields=['time_series'])
scan_ts_xfc = pe.Node(scan_ts_xfc)
scan_ts_xfc = pe.Node(scan_ts_xfc, name='scan_time_series')
exec_wf.connect(dl_scan_ts, 'out_file',
scan_ts_xfc, 'time_series')

Expand Down

0 comments on commit b89ac6d

Please sign in to comment.