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

DOC: Fixes/updates in apidoc

parent 4f0ced70
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ Fixed ...@@ -34,7 +34,7 @@ Fixed
^^^^^ ^^^^^
* Minor fixes to some :mod:`.filetree` tree definitions. * Minor fixes to some :mod:`.filetree.filetree` tree definitions.
Deprecated Deprecated
...@@ -477,7 +477,7 @@ Changed ...@@ -477,7 +477,7 @@ Changed
* :meth:`.MGHImage` objects now have a :meth:`.MGHImage.save` method. * :meth:`.MGHImage` objects now have a :meth:`.MGHImage.save` method.
* Adjustments to the ``conda`` package build and deployment process. * Adjustments to the ``conda`` package build and deployment process.
* The :func:`.ImageWrapper.canonicalShape` function has been moved * The :func:`.ImageWrapper.canonicalShape` function has been moved
to the :mod:`.image` class. to the :mod:`.data.image` class.
* The :func:`.ImageWrapper.naninfrange` function has been moved * The :func:`.ImageWrapper.naninfrange` function has been moved
into its own :mod:`.naninfrange` module. into its own :mod:`.naninfrange` module.
...@@ -493,7 +493,7 @@ Deprecated ...@@ -493,7 +493,7 @@ Deprecated
^^^^^^^^^^ ^^^^^^^^^^
* :func:`.ImageWrapper.canonicalShape` (moved to the :mod:`.image` module) * :func:`.ImageWrapper.canonicalShape` (moved to the :mod:`.data.image` module)
* :func:`.ImageWrapper.naninfrange` function (moved to the :mod:`.naninfrange` * :func:`.ImageWrapper.naninfrange` function (moved to the :mod:`.naninfrange`
module) module)
......
``fsl.scripts.resample_image``
==============================
.. automodule:: fsl.scripts.resample_image
:members:
:undoc-members:
:show-inheritance:
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
fsl.scripts.imcp fsl.scripts.imcp
fsl.scripts.imglob fsl.scripts.imglob
fsl.scripts.immv fsl.scripts.immv
fsl.scripts.resample_image
.. automodule:: fsl.scripts .. automodule:: fsl.scripts
:members: :members:
......
``fsl.utils.image.resample``
============================
.. automodule:: fsl.utils.image.resample
:members:
:undoc-members:
:show-inheritance:
``fsl.utils.image``
===================
.. toctree::
:hidden:
fsl.utils.image.resample
.. automodule:: fsl.utils.image
:members:
:undoc-members:
:show-inheritance:
``fsl.utils.parse_data``
========================
.. automodule:: fsl.utils.parse_data
:members:
:undoc-members:
:show-inheritance:
...@@ -12,11 +12,13 @@ ...@@ -12,11 +12,13 @@
fsl.utils.fslsub fsl.utils.fslsub
fsl.utils.idle fsl.utils.idle
fsl.utils.imcp fsl.utils.imcp
fsl.utils.image
fsl.utils.memoize fsl.utils.memoize
fsl.utils.meta fsl.utils.meta
fsl.utils.naninfrange fsl.utils.naninfrange
fsl.utils.notifier fsl.utils.notifier
fsl.utils.path fsl.utils.path
fsl.utils.parse_data
fsl.utils.platform fsl.utils.platform
fsl.utils.run fsl.utils.run
fsl.utils.settings fsl.utils.settings
......
...@@ -41,8 +41,8 @@ class FileTreeQuery(object): ...@@ -41,8 +41,8 @@ class FileTreeQuery(object):
a directory for files which match a specific query. a directory for files which match a specific query.
A ``FileTreeQuery`` scans the contents of a directory which is described A ``FileTreeQuery`` scans the contents of a directory which is described
by a :class:`.FileTree`, and identifies all file types (a.k.a. _templates_ by a :class:`.FileTree`, and identifies all file types (a.k.a. *templates*
or _short names_) that are present, and the values of variables within each or *short names*) that are present, and the values of variables within each
short name that are present. The :meth:`query` method can be used to short name that are present. The :meth:`query` method can be used to
retrieve files which match a specific short name, and variable values. retrieve files which match a specific short name, and variable values.
...@@ -327,7 +327,7 @@ def allVariables( ...@@ -327,7 +327,7 @@ def allVariables(
"""Identifies the ``FileTree`` variables which are actually represented """Identifies the ``FileTree`` variables which are actually represented
in files in the directory. in files in the directory.
:arg filetree: The ``FileTree``object :arg filetree: The ``FileTree`` object
:arg matches: list of ``Match`` objects (e.g. as returned by :func:`scan`) :arg matches: list of ``Match`` objects (e.g. as returned by :func:`scan`)
:returns: a tuple containing two dicts: :returns: a tuple containing two dicts:
......
...@@ -9,7 +9,7 @@ manipulating and working with :class:`.Image` objects. ...@@ -9,7 +9,7 @@ manipulating and working with :class:`.Image` objects.
The following modules are available: The following modules are available:
.. autosumary:: .. autosummary::
:nosignature :nosignature
.image.resample .image.resample
......
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