@@ -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