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

DOC: Various fixes

parent 1ca2a7bb
No related branches found
No related tags found
No related merge requests found
``fsl.utils.temdir`` ``fsl.utils.tempdir``
==================== =====================
.. automodule:: fsl.utils.tempdir .. automodule:: fsl.utils.tempdir
:members: :members:
......
``fsl.wrappers.fsl_anat``
=========================
.. automodule:: fsl.wrappers.fsl_anat
:members:
:undoc-members:
:show-inheritance:
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
fsl.wrappers.flirt fsl.wrappers.flirt
fsl.wrappers.fnirt fsl.wrappers.fnirt
fsl.wrappers.fslmaths fsl.wrappers.fslmaths
fsl.wrappers.fsl_anat
fsl.wrappers.fugue fsl.wrappers.fugue
fsl.wrappers.melodic fsl.wrappers.melodic
fsl.wrappers.misc fsl.wrappers.misc
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
functions. functions.
The :func:`cmdwrapper` and :func:`fslwrapper` functions are conenience The :func:`cmdwrapper` and :func:`fslwrapper` functions are convenience
decorators which allow you to write your wrapper function such that it simply decorators which allow you to write your wrapper function such that it simply
generates the command-line needed to respectively run a standard shell generates the command-line needed to respectively run a standard shell
command or a FSL command. For example:: command or a FSL command. For example::
...@@ -39,7 +39,7 @@ patterns. For example:: ...@@ -39,7 +39,7 @@ patterns. For example::
The :func:`fileOrImage` and :func:`fileOrArray` functions can be used to The :func:`fileOrImage` and :func:`fileOrArray` functions can be used to
decorate a wrapper function such that in-memory ``nibabel`` images or Numpy decorate a wrapper function such that in-memory ``nibabel`` images or Numpy
arrays can be passed in as arguments - they will be automatically saved out to arrays can be passed in as arguments - they will be automatically saved out to
files, and then the file names passed into the wrapper function. For exmaple:: files, and then the file names passed into the wrapper function. For example::
@fileOrImage('src', 'ref') @fileOrImage('src', 'ref')
...@@ -225,18 +225,18 @@ def applyArgStyle(style, ...@@ -225,18 +225,18 @@ def applyArgStyle(style,
========= ========== =========================== ========= ========== ===========================
``style`` ``valsep`` Result ``style`` ``valsep`` Result
========= ========== =========================== ========= ========== ===========================
``'-'`` ' ' ``-name val1 val2 val3`` ``'-'`` ``' '`` ``-name val1 val2 val3``
``'-'`` '"' ``-name "val1 val2 val3"`` ``'-'`` ``'"'`` ``-name "val1 val2 val3"``
``'-'`` ',' ``-name val1,val2,val3`` ``'-'`` ``','`` ``-name val1,val2,val3``
``'--'`` ' ' ``--name val1 val2 val3`` ``'--'`` ``' '`` ``--name val1 val2 val3``
``'--'`` '"' ``--name "val1 val2 val3"`` ``'--'`` ``'"'`` ``--name "val1 val2 val3"``
``'--'`` ',' ``--name val1,val2,val3`` ``'--'`` ``','`` ``--name val1,val2,val3``
``'-='`` ' ' Not supported ``'-='`` ``' '`` Not supported
``'-='`` '"' ``-name="val1 val2 val3"`` ``'-='`` ``'"'`` ``-name="val1 val2 val3"``
``'-='`` ',' ``-name=val1,val2,val3`` ``'-='`` ``','`` ``-name=val1,val2,val3``
``'--='`` ' ' Not supported ``'--='`` ``' '`` Not supported
``'--='`` '"' ``--name="val1 val2 val3"`` ``'--='`` ``'"'`` ``--name="val1 val2 val3"``
``'--='`` ',' ``--name=val1,val2,val3`` ``'--='`` ``','`` ``--name=val1,val2,val3``
========= ========== =========================== ========= ========== ===========================
......
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