Skip to content

Commit 6a294be

Browse files
committed
Forgot check-before-commit. Update LongReconAll docstring.
1 parent 0b51c54 commit 6a294be

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

nipype/interfaces/freesurfer/longitudinal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

nipype/interfaces/freesurfer/tests/test_auto_LongReconAll.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)