Skip to content

Commit 56e9613

Browse files
committed
make specs
1 parent edece6e commit 56e9613

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

nipype/interfaces/freesurfer/tests/test_auto_ReconAll.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44

55

66
def test_ReconAll_inputs():
7-
input_map = dict(T1_files=dict(argstr='-i %s...',
7+
input_map = dict(FLAIR_file=dict(argstr='-FLAIR %s',
8+
min_ver='5.3.0',
9+
xor=['T2_file'],
10+
),
11+
T1_files=dict(argstr='-i %s...',
812
),
913
T2_file=dict(argstr='-T2 %s',
1014
min_ver='5.3.0',
15+
xor=['FLAIR_file'],
1116
),
1217
args=dict(argstr='%s',
1318
),
@@ -108,8 +113,13 @@ def test_ReconAll_inputs():
108113
terminal_output=dict(deprecated='1.0.0',
109114
nohash=True,
110115
),
116+
use_FLAIR=dict(argstr='-FLAIRpial',
117+
min_ver='5.3.0',
118+
xor=['use_T2'],
119+
),
111120
use_T2=dict(argstr='-T2pial',
112121
min_ver='5.3.0',
122+
xor=['use_FLAIR'],
113123
),
114124
xopts=dict(argstr='-xopts-%s',
115125
),

0 commit comments

Comments
 (0)