Skip to content

Commit 89d828c

Browse files
authored
Merge pull request #3325 from henrymj/master
[FIX] change fsl interface randomise --f_only to --fonly for #3322
2 parents 6c06030 + fe4cf08 commit 89d828c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nipype/interfaces/fsl/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2245,7 +2245,7 @@ class RandomiseInputSpec(FSLCommandInputSpec):
22452245
desc=("carry out Threshold-Free Cluster Enhancement with 2D " "optimisation"),
22462246
argstr="--T2",
22472247
)
2248-
f_only = traits.Bool(desc="calculate f-statistics only", argstr="--f_only")
2248+
f_only = traits.Bool(desc="calculate f-statistics only", argstr="--fonly")
22492249
raw_stats_imgs = traits.Bool(
22502250
desc="output raw ( unpermuted ) statistic images", argstr="-R"
22512251
)

nipype/interfaces/fsl/tests/test_auto_Randomise.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_Randomise_inputs():
3737
argstr="-S %.2f",
3838
),
3939
f_only=dict(
40-
argstr="--f_only",
40+
argstr="--fonly",
4141
),
4242
fcon=dict(
4343
argstr="-f %s",

0 commit comments

Comments
 (0)