File tree Expand file tree Collapse file tree 5 files changed +15
-15
lines changed
nipype/interfaces/dtitk/tests Expand file tree Collapse file tree 5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def test_BinThreshTask_inputs():
12
12
ignore_exception = dict (nohash = True ,
13
13
usedefault = True ,
14
14
),
15
- in_image = dict (argstr = '%s' ,
15
+ in_file = dict (argstr = '%s' ,
16
16
exists = True ,
17
17
mandatory = False ,
18
18
position = 0 ,
Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ def test_SVAdjustVoxSpTask_inputs():
12
12
ignore_exception = dict (nohash = True ,
13
13
usedefault = True ,
14
14
),
15
+ in_file = dict (argstr = '-in %s' ,
16
+ exists = True ,
17
+ mandatory = True ,
18
+ position = 0 ,
19
+ ),
15
20
in_target = dict (argstr = '-target %s' ,
16
21
exists = True ,
17
22
mandatory = False ,
18
23
position = 2 ,
19
24
),
20
- in_volume = dict (argstr = '-in %s' ,
21
- exists = True ,
22
- mandatory = True ,
23
- position = 0 ,
24
- ),
25
25
in_voxsz = dict (argstr = '-vsize %s' ,
26
26
exists = True ,
27
27
mandatory = False ,
@@ -35,7 +35,7 @@ def test_SVAdjustVoxSpTask_inputs():
35
35
out_path = dict (argstr = '-out %s' ,
36
36
exists = True ,
37
37
mandatory = False ,
38
- name_source = 'in_volume ' ,
38
+ name_source = 'in_file ' ,
39
39
name_template = '%s_origmvd.nii.gz' ,
40
40
position = 1 ,
41
41
),
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def test_SVResampleTask_inputs():
17
17
mandatory = False ,
18
18
position = 1 ,
19
19
),
20
- in_volume = dict (argstr = '-in %s' ,
20
+ in_file = dict (argstr = '-in %s' ,
21
21
exists = True ,
22
22
mandatory = True ,
23
23
position = 0 ,
@@ -30,7 +30,7 @@ def test_SVResampleTask_inputs():
30
30
out_path = dict (argstr = '-out %s' ,
31
31
exists = True ,
32
32
mandatory = False ,
33
- name_source = 'in_volume ' ,
33
+ name_source = 'in_file ' ,
34
34
name_template = '%s_resampled.nii.gz' ,
35
35
position = 3 ,
36
36
),
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def test_TVResampleTask_inputs():
17
17
mandatory = False ,
18
18
position = 1 ,
19
19
),
20
- in_tensor = dict (argstr = '-in %s' ,
20
+ in_file = dict (argstr = '-in %s' ,
21
21
exists = True ,
22
22
mandatory = True ,
23
23
position = 0 ,
@@ -30,7 +30,7 @@ def test_TVResampleTask_inputs():
30
30
out_path = dict (argstr = '-out %s' ,
31
31
exists = True ,
32
32
mandatory = False ,
33
- name_source = 'in_volume ' ,
33
+ name_source = 'in_file ' ,
34
34
name_template = '%s_resampled.nii.gz' ,
35
35
position = 3 ,
36
36
),
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ def test_TVtoolTask_inputs():
12
12
ignore_exception = dict (nohash = True ,
13
13
usedefault = True ,
14
14
),
15
- in_flag = dict (argstr = '-%s' ,
15
+ in_file = dict (argstr = '-in %s' ,
16
16
exists = True ,
17
17
mandatory = False ,
18
- position = 1 ,
18
+ position = 0 ,
19
19
),
20
- in_tensor = dict (argstr = '-in %s' ,
20
+ in_flag = dict (argstr = '-%s' ,
21
21
exists = True ,
22
22
mandatory = False ,
23
- position = 0 ,
23
+ position = 1 ,
24
24
),
25
25
terminal_output = dict (nohash = True ,
26
26
),
You can’t perform that action at this time.
0 commit comments