File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
nipype/workflows/dmri/preprocess Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 12
12
from .utils import *
13
13
14
14
15
- def all_fmb_pipeline (name = 'hmc_sdc_ecc' ):
15
+ def all_fmb_pipeline (name = 'hmc_sdc_ecc' ,
16
+ fugue_params = dict (smooth3d = 2.0 ),
17
+ bmap_params = dict (delta_te = 2.46e-3 ),
18
+ epi_params = dict (echospacing = 0.77e-3 ,
19
+ acc_factor = 3 ,
20
+ enc_dir = 'y-' )):
16
21
"""
17
22
Builds a pipeline including three artifact corrections: head-motion correction (HMC),
18
23
susceptibility-derived distortion correction (SDC), and Eddy currents-derived distortion
@@ -40,7 +45,8 @@ def all_fmb_pipeline(name='hmc_sdc_ecc'):
40
45
bet_dwi1 = pe .Node (fsl .BET (frac = 0.3 , mask = True , robust = True ), name = 'bet_dwi_post' )
41
46
42
47
hmc = hmc_pipeline ()
43
- sdc = sdc_fmb ()
48
+ sdc = sdc_fmb (fugue_params = fugue_params , bmap_params = bmap_params ,
49
+ epi_params = epi_params )
44
50
ecc = ecc_pipeline ()
45
51
unwarp = apply_all_corrections ()
46
52
You can’t perform that action at this time.
0 commit comments