Skip to content

Commit

Permalink
fix errors in last changes
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Jan 19, 2016
1 parent 331a5e2 commit 8579892
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mriqc/workflows/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _merge_dicts(qc_spatial, qc_temporal):
('session_id', 'session_id'),
('scan_id', 'scan_id')]),
(plot_mean, mvmean, [('out_file', 'in_file')]),
(mvmean, dsmean, [('out_file', '@mosaic')])])
(mvmean, dsmean, [('out_file', '@mosaic')])
])

# Save tSNR mosaic to well-formed path
Expand All @@ -193,7 +193,7 @@ def _merge_dicts(qc_spatial, qc_temporal):
('session_id', 'session_id'),
('scan_id', 'scan_id')]),
(plot_tsnr, mvtsnr, [('out_file', 'in_file')]),
(mvtsnr, dstsnr, [('out_file', '@mosaic')])])
(mvtsnr, dstsnr, [('out_file', '@mosaic')])
])

# Save FD plot to well-formed path
Expand All @@ -208,7 +208,7 @@ def _merge_dicts(qc_spatial, qc_temporal):
('session_id', 'session_id'),
('scan_id', 'scan_id')]),
(plot_fd, mvfd, [('out_file', 'in_file')]),
(mvfd, dsfd, [('out_file', '@mosaic')])])
(mvfd, dsfd, [('out_file', '@mosaic')])
])

return workflow, out_csv
Expand Down

0 comments on commit 8579892

Please sign in to comment.