Skip to content

Commit

Permalink
Fix the scan_ts variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jun 20, 2017
1 parent 2dec8e1 commit 510cc1a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions qipipe/pipeline/qipipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,8 @@ def _create_workflow(self, subject, session, scan, actions, **opts):
exec_wf.connect(input_spec, 'scan', dl_scan_ts, 'scan')
# Rename the download out_file to time_series.
scan_ts_xfc = IdentityInterface(fields=['time_series'])
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')
scan_ts = pe.Node(scan_ts_xfc, name='scan_time_series')
exec_wf.connect(dl_scan_ts, 'out_file', scan_ts, 'time_series')

# Registration and the scan time series require a staged
# node scan with output 'images'. If staging is enabled,
Expand Down

0 comments on commit 510cc1a

Please sign in to comment.