File tree 1 file changed +9
-5
lines changed
nipype/interfaces/ants/tests
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ def test_LaplacianThickness_inputs():
7
7
input_map = dict (
8
8
args = dict (argstr = '%s' , ),
9
9
dT = dict (
10
- argstr = '%f ' ,
10
+ argstr = '%s ' ,
11
11
position = 6 ,
12
+ requires = ['prior_thickness' ],
12
13
),
13
14
environ = dict (
14
15
nohash = True ,
@@ -39,20 +40,23 @@ def test_LaplacianThickness_inputs():
39
40
position = 3 ,
40
41
),
41
42
prior_thickness = dict (
42
- argstr = '%f ' ,
43
+ argstr = '%s ' ,
43
44
position = 5 ,
45
+ requires = ['smooth_param' ],
44
46
),
45
47
smooth_param = dict (
46
- argstr = '%f ' ,
48
+ argstr = '%s ' ,
47
49
position = 4 ,
48
50
),
49
51
sulcus_prior = dict (
50
- argstr = '%f ' ,
52
+ argstr = '%s ' ,
51
53
position = 7 ,
54
+ requires = ['dT' ],
52
55
),
53
56
tolerance = dict (
54
- argstr = '%f ' ,
57
+ argstr = '%s ' ,
55
58
position = 8 ,
59
+ requires = ['sulcus_prior' ],
56
60
),
57
61
)
58
62
inputs = LaplacianThickness .input_spec ()
You can’t perform that action at this time.
0 commit comments