Skip to content

Commit edb7faf

Browse files
committed
fix missing connections
1 parent 5fef712 commit edb7faf

File tree

1 file changed

+3
-1
lines changed
  • nipype/workflows/dmri/fsl

1 file changed

+3
-1
lines changed

nipype/workflows/dmri/fsl/dti.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,10 @@ def bedpostx_parallel(name='bedpostx_parallel',
188188
('bvals', 'bvals')]),
189189
(inputnode, mrg_dyads, [('mask', 'in_reference')]),
190190
(xfibres, mrg_dyads, [(('dyads', transpose), 'in_files')]),
191-
(xfibres, mrg_fsamp, [(('mean_fsamples', transpose), 'in_files')]),
192191
(slice_dwi, mrg_dyads, [('out_index', 'in_index')]),
192+
(inputnode, mrg_fsamp, [('mask', 'in_reference')]),
193+
(xfibres, mrg_fsamp, [(('mean_fsamples', transpose), 'in_files')]),
194+
(slice_dwi, mrg_fsamp, [('out_index', 'in_index')]),
193195
(mrg_dyads, outputnode, [('merged_file', 'dyads')]),
194196
(mrg_fsamp, outputnode, [('merged_file', 'mean_fsamples')])
195197
])

0 commit comments

Comments
 (0)