File tree 2 files changed +9
-2
lines changed
nipype/interfaces/freesurfer 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ class LongReconAll(CommandLine):
387
387
>>> longrecon.inputs.directive = "all"
388
388
>>> longrecon.inputs.subjects_dir = "."
389
389
>>> longrecon.cmdline
390
- 'recon-all -all -long ses-1 -base sub-template -sd .'
390
+ 'recon-all -all -long ses-1 sub-template -sd .'
391
391
"""
392
392
393
393
_cmd = "recon-all"
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ def test_LongReconAll_inputs():
20
20
args = dict (
21
21
argstr = "%s" ,
22
22
),
23
+ base_id = dict (
24
+ argstr = "%s" ,
25
+ position = 2 ,
26
+ requires = ["long_id" ],
27
+ ),
23
28
big_ventricles = dict (
24
29
argstr = "-bigventricles" ,
25
30
),
@@ -58,7 +63,9 @@ def test_LongReconAll_inputs():
58
63
min_ver = "6.0.0" ,
59
64
),
60
65
long_id = dict (
61
- argstr = "-long %s %s" ,
66
+ argstr = "-long %s" ,
67
+ position = 1 ,
68
+ requires = ["base_id" ],
62
69
xor = ["subject_id" ],
63
70
),
64
71
mprage = dict (
You can’t perform that action at this time.
0 commit comments