-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 9bd2a1029333c7b74905f9b3a416cc2c | ||
config: e6beb00300722bb26eaea39b2c2c79c8 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.cli.parser module | ||
============================ | ||
|
||
.. automodule:: eddymotion.cli.parser | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
eddymotion.cli package | ||
====================== | ||
|
||
.. automodule:: eddymotion.cli | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Submodules | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
eddymotion.cli.parser | ||
eddymotion.cli.run |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.cli.run module | ||
========================= | ||
|
||
.. automodule:: eddymotion.cli.run | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.data.dmri module | ||
=========================== | ||
|
||
.. automodule:: eddymotion.data.dmri | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.data.pet module | ||
========================== | ||
|
||
.. automodule:: eddymotion.data.pet | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
eddymotion.data package | ||
======================= | ||
|
||
.. automodule:: eddymotion.data | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Submodules | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
eddymotion.data.dmri | ||
eddymotion.data.pet | ||
eddymotion.data.splitting | ||
eddymotion.data.utils |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.data.splitting module | ||
================================ | ||
|
||
.. automodule:: eddymotion.data.splitting | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.data.utils module | ||
============================ | ||
|
||
.. automodule:: eddymotion.data.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.model.base module | ||
============================ | ||
|
||
.. automodule:: eddymotion.model.base | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
eddymotion.model module | ||
======================= | ||
eddymotion.model package | ||
======================== | ||
|
||
.. automodule:: eddymotion.model | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Submodules | ||
---------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
eddymotion.model.base |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
eddymotion.utils module | ||
======================= | ||
|
||
.. automodule:: eddymotion.utils | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
For developers | ||
============== | ||
Contributing | ||
------------ | ||
*Eddymotion* is a project of the *NiPreps Community*, `which specifies the contributing guidelines <https://www.nipreps.org/community/>`__. | ||
Before delving into the code, please make sure you have read all the guidelines offered online. | ||
|
||
Documentation | ||
------------- | ||
Documentation sources are found under the ``docs/`` folder, and builds are archived in the `gh-pages <https://github.com/nipreps/eddymotion/tree/gh-pages>`__ branch of the repository. | ||
With GitHub Pages, the documentation is posted under https://www.nipreps.org/eddymotion. | ||
We maintain versioned documentation, by storing git tags under ``<major>.<minor>/`` folders, i.e., we do not archive every patch release, but only every minor release. | ||
In other words, folder ``0.1/`` of the documentation tree contains the documents for the latest release within the *0.1.x* series. | ||
With every commit (or merge commit) to ``main``, the *development* version of the documentation under the folder ``main/`` is updated too. | ||
The ``gh-pages`` branch is automatically maintained with `a GitHub Action <https://github.com/nipreps/eddymotion/blob/main/.github/workflows/docs-build-update.yml>`__. | ||
Please, do not commit manually to ``gh-pages``. | ||
|
||
To build the documentation locally, you first need to make sure that ``setuptools_scm[toml] >= 6.2`` is installed in your environment and then:: | ||
|
||
$ cd <eddymotion-repository>/ | ||
$ python -m setuptools_scm # This will generate ``src/eddymotion/_version.py`` | ||
$ make -C docs/ html | ||
|
||
Library API (application program interface) | ||
------------------------------------------- | ||
Information on specific functions, classes, and methods. | ||
|
||
.. toctree:: | ||
:glob: | ||
|
||
api/eddymotion.cli | ||
api/eddymotion.data | ||
api/eddymotion.data.dmri | ||
api/eddymotion.estimator | ||
api/eddymotion.model | ||
api/eddymotion.utils | ||
api/eddymotion.viz |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
.. include:: links.rst | ||
.. include:: ../README.rst | ||
:end-line: 29 | ||
.. include:: ../README.rst | ||
:start-line: 34 | ||
|
||
|
||
.. image:: _static/eddymotion-flowchart.svg | ||
:alt: The eddymotion flowchart | ||
|
||
Contents | ||
-------- | ||
.. toctree:: | ||
:maxdepth: 3 | ||
|
||
installation | ||
api | ||
running | ||
developers | ||
changes |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.. _running_eddymotion: | ||
|
||
Running *Eddymotion* | ||
******************** | ||
Command line interface | ||
---------------------- | ||
.. argparse:: | ||
:ref: eddymotion.cli.parser._build_parser | ||
:prog: eddymotion | ||
:nodefault: | ||
:nodefaultconst: |