@@ -35,12 +35,13 @@ def all_fmb_pipeline(name='hmc_sdc_ecc', fugue_params=dict(smooth3d=2.0)):
35
35
>>> allcorr.inputs.inputnode.in_bvec = 'diffusion.bvec'
36
36
>>> allcorr.inputs.inputnode.bmap_mag = 'magnitude.nii'
37
37
>>> allcorr.inputs.inputnode.bmap_pha = 'phase.nii'
38
+ >>> allcorr.inputs.inputnode.epi_param = 'epi_param.txt'
38
39
>>> allcorr.run() # doctest: +SKIP
39
40
40
41
"""
41
42
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' )
44
45
45
46
outputnode = pe .Node (niu .IdentityInterface (
46
47
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)):
75
76
(bet_dwi0 , sdc , [('mask_file' , 'inputnode.in_mask' )]),
76
77
(inputnode , sdc , [('in_bval' , 'inputnode.in_bval' ),
77
78
('bmap_pha' , 'inputnode.bmap_pha' ),
78
- ('bmap_mag' , 'inputnode.bmap_mag' )]),
79
+ ('bmap_mag' , 'inputnode.bmap_mag' ),
80
+ ('epi_param' , 'inputnode.settings' )]),
79
81
(hmc , ecc , [
80
82
('outputnode.out_xfms' , 'inputnode.in_xfms' )]),
81
83
(inputnode , ecc , [('in_file' , 'inputnode.in_file' ),
0 commit comments