Skip to content

Commit 93b7c20

Browse files
committed
finish with sdc_fmb. close #1019
1 parent 7a32445 commit 93b7c20

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

nipype/workflows/dmri/fsl/artifacts.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,13 @@ def all_fmb_pipeline(name='hmc_sdc_ecc', fugue_params=dict(smooth3d=2.0)):
3535
>>> allcorr.inputs.inputnode.in_bvec = 'diffusion.bvec'
3636
>>> allcorr.inputs.inputnode.bmap_mag = 'magnitude.nii'
3737
>>> allcorr.inputs.inputnode.bmap_pha = 'phase.nii'
38+
>>> allcorr.inputs.inputnode.epi_param = 'epi_param.txt'
3839
>>> allcorr.run() # doctest: +SKIP
3940
4041
"""
4142
inputnode = pe.Node(niu.IdentityInterface(
42-
fields=['in_file', 'in_bvec', 'in_bval', 'bmap_pha', 'bmap_mag']),
43-
name='inputnode')
43+
fields=['in_file', 'in_bvec', 'in_bval', 'bmap_pha', 'bmap_mag',
44+
'epi_param']), name='inputnode')
4445

4546
outputnode = pe.Node(niu.IdentityInterface(
4647
fields=['out_file', 'out_mask', 'out_bvec']), name='outputnode')
@@ -75,7 +76,8 @@ def all_fmb_pipeline(name='hmc_sdc_ecc', fugue_params=dict(smooth3d=2.0)):
7576
(bet_dwi0, sdc, [('mask_file', 'inputnode.in_mask')]),
7677
(inputnode, sdc, [('in_bval', 'inputnode.in_bval'),
7778
('bmap_pha', 'inputnode.bmap_pha'),
78-
('bmap_mag', 'inputnode.bmap_mag')]),
79+
('bmap_mag', 'inputnode.bmap_mag'),
80+
('epi_param', 'inputnode.settings')]),
7981
(hmc, ecc, [
8082
('outputnode.out_xfms', 'inputnode.in_xfms')]),
8183
(inputnode, ecc, [('in_file', 'inputnode.in_file'),

0 commit comments

Comments
 (0)