generated from nipype/pydra-tasks-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from nipype/auto-gen
Auto generated interfaces from MRtrix3 source code
- Loading branch information
Showing
54 changed files
with
2,294 additions
and
3,036 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,3 +133,8 @@ dmypy.json | |
|
||
# VS Code | ||
.vscode/ | ||
|
||
# Hatchling | ||
_version.py | ||
|
||
/pydra/tasks/mrtrix3/v3_0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
============================== | ||
Pydra task package for mrtrix3 | ||
============================== | ||
|
||
.. image:: https://github.com/nipype/pydra-mrtrix3/actions/workflows/pythonpackage.yaml/badge.svg | ||
:target: https://github.com/nipype/pydra-mrtrix3/actions/workflows/pythonpackage.yaml | ||
.. image:: https://codecov.io/gh/nipype/pydra-mrtrix3/branch/main/graph/badge.svg?token=UIS0OGPST7 | ||
:target: https://codecov.io/gh/nipype/pydra-mrtrix3 | ||
.. image:: https://img.shields.io/pypi/pyversions/pydra-mrtrix3.svg | ||
:target: https://pypi.python.org/pypi/pydra-mrtrix3/ | ||
:alt: Supported Python versions | ||
.. image:: https://img.shields.io/pypi/v/pydra-mrtrix3.svg | ||
:target: https://pypi.python.org/pypi/pydra-mrtrix3/ | ||
:alt: Latest Version | ||
|
||
|
||
This package contains a collection of Pydra task interfaces for the mrtrix3 toolkit. | ||
|
||
|
||
Generation of interfaces | ||
------------------------ | ||
|
||
Task interfaces are automatically generated from the MRtrix3 source code using the | ||
`generate.py` script, with the exception of a few interfaces that are manually | ||
written. | ||
|
||
Developer installation | ||
---------------------- | ||
|
||
First install the package in editable mode | ||
|
||
.. code-block:: | ||
$ pip install -e .[test] | ||
Then generate the automic interfaces using | ||
|
||
.. code-block:: | ||
$ python3 generate.py | ||
This package comes with a battery of automatically generated test modules. They can be launched using | ||
|
||
.. code-block:: | ||
$ pytest --doctest-modules pydra/tasks/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
black >=22.12.0 | ||
click >=8.1.3 | ||
tqdm | ||
attrs >=23.1.0 | ||
fileformats >= 0.8 | ||
fileformats-extras >= 0.2.1 | ||
fileformats-medimage >= 0.4.4 | ||
fileformats-medimage-extras >= 0.1.5 | ||
fileformats-medimage-mrtrix3 | ||
fileformats-medimage-mrtrix3-extras |
Oops, something went wrong.