Skip to content
GitLab
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
2089ed11
Commit
2089ed11
authored
Feb 14, 2022
by
Paul McCarthy
🚵
Browse files
Merge branch 'rel/3.8.2' into 'v3.8'
Rel/3.8.2 See merge request fsl/fslpy!326
parents
3c8f078f
77b6c93b
Pipeline
#13094
passed with stages
in 2 minutes and 11 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
2089ed11
...
...
@@ -2,6 +2,17 @@ This document contains the ``fslpy`` release history in reverse chronological
order.
3.8.2 (Tuesday 15th February 2022)
----------------------------------
Fixed
^^^^^
* The the :func:`.topup` wrapper function now allows multiple file names to
be passed to the ``--imain``argument (!324).
3.8.1 (Tuesday 28th December 2021)
----------------------------------
...
...
fsl/version.py
View file @
2089ed11
...
...
@@ -47,7 +47,7 @@ import re
import
string
__version__
=
'3.8.
1
'
__version__
=
'3.8.
2
'
"""Current version number, as a string. """
...
...
fsl/wrappers/eddy.py
View file @
2089ed11
...
...
@@ -92,7 +92,8 @@ def applytopup(imain, datain, index, **kwargs):
}
asrt
.
assertFileExists
(
datain
)
asrt
.
assertIsNifti
(
imain
)
for
fn
in
imain
.
split
(
','
):
asrt
.
assertIsNifti
(
fn
)
cmd
=
[
'applytopup'
,
'--imain={}'
.
format
(
imain
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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