Skip to content

Commit 53187f5

Browse files
committed
fixed typo in randomize parameters
1 parent 1523210 commit 53187f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nipype/interfaces/fsl/model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1403,15 +1403,15 @@ def _format_arg(self, name, spec, value):
14031403
class RandomiseInputSpec(FSLCommandInputSpec):
14041404
in_file = File(exists=True, desc='4D input file', argstr='-i %s', position=0, mandatory=True)
14051405
base_name = traits.Str('tbss_', desc='the rootname that all generated files will have',
1406-
argstr='-o %s', position=1, usedefault=True)
1407-
design_mat = File(exists=True, desc='design matrix file', argstr='-d %s', position=2, mandatory=True)
1408-
tcon = File(exists=True, desc='t contrasts file', argstr='-t %s', position=3, mandatory=True)
1406+
argstr='-o "%s"', position=1, usedefault=True)
1407+
design_mat = File(exists=True, desc='design matrix file', argstr='-d %s', position=2)
1408+
tcon = File(exists=True, desc='t contrasts file', argstr='-t %s', position=3)
14091409
fcon = File(exists=True, desc='f contrasts file', argstr='-f %s')
14101410
mask = File(exists=True, desc='mask image', argstr='-m %s')
14111411
x_block_labels = File(exists=True, desc='exchangeability block labels file', argstr='-e %s')
14121412
demean = traits.Bool(desc='demean data temporally before model fitting', argstr='-D')
14131413
one_sample_group_mean = traits.Bool(desc='perform 1-sample group-mean test instead of generic permutation test',
1414-
argstr='-l')
1414+
argstr='-1')
14151415
show_total_perms = traits.Bool(desc='print out how many unique permutations would be generated and exit',
14161416
argstr='-q')
14171417
show_info_parallel_mode = traits.Bool(desc='print out information required for parallel mode and exit',

0 commit comments

Comments
 (0)