Skip to content
Snippets Groups Projects
Commit b4ae9ac1 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'rf/fast-wrapper' into 'master'

Rf/fast wrapper

See merge request fsl/fslpy!227
parents 5792f491 581b147c
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,18 @@ This document contains the ``fslpy`` release history in reverse chronological
order.
3.1.0 (Under development)
-------------------------
Fixed
^^^^^
* Updated the :func:`.fast` wrapper to support some single-character
command-line flags.
3.0.1 (Wednesday 15th April 2020)
---------------------------------
......
......@@ -34,10 +34,18 @@ def fast(imgs, out='fast', **kwargs):
asrt.assertIsNifti(*imgs)
valmap = {
'nobias' : wutils.SHOW_IF_TRUE,
'verbose' : wutils.SHOW_IF_TRUE,
'Prior' : wutils.SHOW_IF_TRUE,
'nobias' : wutils.SHOW_IF_TRUE,
'N' : wutils.SHOW_IF_TRUE,
'verbose' : wutils.SHOW_IF_TRUE,
'v' : wutils.SHOW_IF_TRUE,
'Prior' : wutils.SHOW_IF_TRUE,
'P' : wutils.SHOW_IF_TRUE,
'segments' : wutils.SHOW_IF_TRUE,
'nopve' : wutils.SHOW_IF_TRUE,
'g' : wutils.SHOW_IF_TRUE,
'b' : wutils.SHOW_IF_TRUE,
'B' : wutils.SHOW_IF_TRUE,
'p' : wutils.SHOW_IF_TRUE,
}
argmap = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment