File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
nipype/interfaces/freesurfer Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ class LongReconAll(CommandLine):
387387 >>> longrecon.inputs.directive = "all"
388388 >>> longrecon.inputs.subjects_dir = "."
389389 >>> longrecon.cmdline
390- 'recon-all -all -long ses-1 -base sub-template -sd .'
390+ 'recon-all -all -long ses-1 sub-template -sd .'
391391 """
392392
393393 _cmd = "recon-all"
Original file line number Diff line number Diff line change @@ -20,6 +20,11 @@ def test_LongReconAll_inputs():
2020 args = dict (
2121 argstr = "%s" ,
2222 ),
23+ base_id = dict (
24+ argstr = "%s" ,
25+ position = 2 ,
26+ requires = ["long_id" ],
27+ ),
2328 big_ventricles = dict (
2429 argstr = "-bigventricles" ,
2530 ),
@@ -58,7 +63,9 @@ def test_LongReconAll_inputs():
5863 min_ver = "6.0.0" ,
5964 ),
6065 long_id = dict (
61- argstr = "-long %s %s" ,
66+ argstr = "-long %s" ,
67+ position = 1 ,
68+ requires = ["base_id" ],
6269 xor = ["subject_id" ],
6370 ),
6471 mprage = dict (
You can’t perform that action at this time.
0 commit comments