Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
fslpy
Commits
020826d6
Commit
020826d6
authored
Jun 29, 2022
by
Paul McCarthy
🚵
Browse files
MNT: make eddy function available at fsl.wrappers package level
parent
65f8b018
Changes
2
Hide whitespace changes
Inline
Side-by-side
fsl/wrappers/__init__.py
View file @
020826d6
...
...
@@ -100,7 +100,8 @@ decorators.
from
fsl.wrappers.wrapperutils
import
(
LOAD
,)
from
fsl.wrappers.bet
import
(
bet
,
robustfov
)
from
fsl.wrappers.eddy
import
(
eddy_cuda
,
from
fsl.wrappers.eddy
import
(
eddy
,
eddy_cuda
,
topup
,
applytopup
)
from
fsl.wrappers.fast
import
(
fast
,)
...
...
fsl/wrappers/flirt.py
View file @
020826d6
...
...
@@ -61,7 +61,10 @@ def flirt(src, ref, **kwargs):
def
applyxfm
(
src
,
ref
,
mat
,
out
,
interp
=
'spline'
,
**
kwargs
):
"""Convenience function which runs ``flirt -applyxfm ...``."""
"""Convenience function which runs ``flirt -applyxfm ...``.
Note that the default value for ``-interp`` is ``spline``,
which differs from the command-line default.
"""
return
flirt
(
src
,
ref
,
out
=
out
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment