File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,17 @@ class T2SMap(CommandLine):
63
63
64
64
Example
65
65
=======
66
- >>> from fmriprep .interfaces import multiecho
66
+ >>> from nibabies .interfaces import multiecho
67
67
>>> t2smap = multiecho.T2SMap()
68
- >>> t2smap.inputs.in_files = ['sub-01_run-01_echo-1_bold.nii.gz', \
69
- 'sub-01_run-01_echo-2_bold.nii.gz', \
70
- 'sub-01_run-01_echo-3_bold.nii.gz']
68
+ >>> t2smap.inputs.in_files = [
69
+ ... data_dir / 'sub-01_run-01_echo-1_bold.nii.gz',
70
+ ... data_dir / 'sub-01_run-01_echo-2_bold.nii.gz',
71
+ ... data_dir / 'sub-01_run-01_echo-3_bold.nii.gz']
71
72
>>> t2smap.inputs.echo_times = [0.013, 0.027, 0.043]
72
- >>> t2smap.cmdline # doctest: +ELLIPSIS
73
- 't2smap -d sub-01_run-01_echo-1_bold.nii.gz sub-01_run-01_echo-2_bold.nii.gz \
74
- sub-01_run-01_echo-3_bold.nii.gz -e 13.0 27.0 43.0 --fittype curvefit'
73
+ >>> t2smap.cmdline # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
74
+ 't2smap -d .../sub-01_run-01_echo-1_bold.nii.gz \
75
+ .../sub-01_run-01_echo-2_bold.nii.gz \
76
+ .../sub-01_run-01_echo-3_bold.nii.gz -e 13.0 27.0 43.0 --fittype curvefit'
75
77
"""
76
78
_cmd = 't2smap'
77
79
input_spec = T2SMapInputSpec
You can’t perform that action at this time.
0 commit comments