Skip to content

Commit

Permalink
fix: missing formatting interpolation placement in interface input
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Oct 22, 2021
1 parent 9eed5bc commit 7fc382e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fmriprep/interfaces/multiecho.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ class T2SMapInputSpec(CommandLineInputSpec):
mandatory=True,
minlen=3,
desc='echo times')
mask_file = File(argstr='--mask',
mask_file = File(argstr='--mask %s',
position=3,
mandatory=False,
desc='mask file',
exists=True)
fittype = traits.Enum('curvefit', 'loglin',
Expand Down Expand Up @@ -95,6 +94,7 @@ class T2SMap(CommandLine):
>>> t2smap.cmdline # doctest: +ELLIPSIS
't2smap -d sub-01_run-01_echo-1_bold.nii.gz sub-01_run-01_echo-2_bold.nii.gz \
sub-01_run-01_echo-3_bold.nii.gz -e 13.0 27.0 43.0 --fittype curvefit'
"""
_cmd = 't2smap'
input_spec = T2SMapInputSpec
Expand Down

0 comments on commit 7fc382e

Please sign in to comment.