Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC/FIX: Fix wrong name, should be al_ea #3629

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nipype/interfaces/afni/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
>>> al_ea.cmdline # doctest: +ELLIPSIS
'python2 ...align_epi_anat.py -anat structural.nii -epi_base 0 -epi_strip 3dAutomask -epi \
functional.nii -save_skullstrip -suffix _al -tshift off -volreg off'
>>> res = allineate.run() # doctest: +SKIP
>>> res = al_ea.run() # doctest: +SKIP

See Also
--------
Expand Down Expand Up @@ -4156,9 +4156,9 @@
"match the base volume, then use this option to have the output"
"WARP dataset(s) truncated.",
argstr="-nopadWARP",
xor=["allsave", "expad"],

Check failure on line 4159 in nipype/interfaces/afni/preprocess.py

View workflow job for this annotation

GitHub Actions / Check for spelling errors

expad ==> expand, expat
)
expad = traits.Int(

Check failure on line 4161 in nipype/interfaces/afni/preprocess.py

View workflow job for this annotation

GitHub Actions / Check for spelling errors

expad ==> expand, expat
desc="This option instructs the program to pad the warp by an extra"
"'EE' voxels (and then 3dQwarp starts optimizing it)."
"This option is seldom needed, but can be useful if you"
Expand Down
Loading