File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
nipype/interfaces/fsl/tests Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ def test_Eddy_inputs():
8
8
environ = dict (nohash = True ,
9
9
usedefault = True ,
10
10
),
11
+ field = dict (argstr = '--field=%s' ,
12
+ ),
13
+ field_mat = dict (argstr = '--field_mat=%s' ,
14
+ ),
11
15
flm = dict (argstr = '--flm=%s' ,
12
16
),
13
17
fwhm = dict (argstr = '--fwhm=%s' ,
@@ -34,9 +38,11 @@ def test_Eddy_inputs():
34
38
mandatory = True ,
35
39
),
36
40
in_topup_fieldcoef = dict (argstr = '--topup=%s' ,
37
- requires = [u'in_topup_movpar' ],
41
+ requires = ['in_topup_movpar' ],
42
+ ),
43
+ in_topup_movpar = dict (requires = ['in_topup_fieldcoef' ],
38
44
),
39
- in_topup_movpar = dict (requires = [ u'in_topup_fieldcoef' ] ,
45
+ is_shelled = dict (argstr = '--data_is_shelled' ,
40
46
),
41
47
method = dict (argstr = '--resamp=%s' ,
42
48
),
@@ -55,6 +61,7 @@ def test_Eddy_inputs():
55
61
),
56
62
terminal_output = dict (nohash = True ,
57
63
),
64
+ use_cuda = dict (),
58
65
)
59
66
inputs = Eddy .input_spec ()
60
67
You can’t perform that action at this time.
0 commit comments