-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
heudiconv 0.5.4 * tag 'v0.5.4': (56 commits) rel: 0.5.4 bump: dcm2niix to latest release fix: avoid relative import in nipype node fix: remove print statement fix: minimize processing before batch submission fix: imports, outdated argument help fix: revert to explicit relative imports, use heudiconv executable for queue submissions fix: better support for queue args rf: move to absolute import ENH: manually fixed up already existing MD links to contain empty trailing [] Updated link_issues_CHANGELOG with new version from datalad 0.12.0rc2-125-gc350b96e fix: utils api link fix: batch example doc: finalize rtd doc: install all project dependencies on rtd fix: extension name doc: doc-building dependencies sty: whitespace + sphinx argparser sty+enh: try new style, add more content update dcm2niix to v1.0.20181125 ...
- Loading branch information
Showing
38 changed files
with
1,163 additions
and
142 deletions.
There are no files selected for viewing
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 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 |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
.coverage | ||
*.egg-info/ | ||
.idea/ | ||
venvs/ | ||
_build/ |
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 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 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 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,35 @@ | ||
============= | ||
**HeuDiConv** | ||
============= | ||
|
||
`a heuristic-centric DICOM converter` | ||
|
||
.. image:: https://img.shields.io/badge/docker-nipy/heudiconv:unstable-brightgreen.svg?logo=docker&style=flat | ||
:target: https://hub.docker.com/r/nipy/heudiconv/tags/ | ||
:alt: Our Docker image | ||
|
||
.. image:: https://travis-ci.org/nipy/heudiconv.svg?branch=master | ||
:target: https://travis-ci.org/nipy/heudiconv | ||
:alt: TravisCI | ||
|
||
.. image:: https://codecov.io/gh/nipy/heudiconv/branch/master/graph/badge.svg | ||
:target: https://codecov.io/gh/nipy/heudiconv | ||
:alt: CodeCoverage | ||
|
||
.. image:: https://readthedocs.org/projects/heudiconv/badge/?version=latest | ||
:target: http://heudiconv.readthedocs.io/en/latest/?badge=latest | ||
:alt: Readthedocs | ||
|
||
About | ||
----- | ||
|
||
``heudiconv`` is a flexible DICOM converter for organizing brain imaging data | ||
into structured directory layouts. | ||
|
||
- it allows flexible directory layouts and naming schemes through customizable heuristics implementations | ||
- it only converts the necessary DICOMs, not everything in a directory | ||
- you can keep links to DICOM files in the participant layout | ||
- using dcm2niix under the hood, it's fast | ||
- it can track the provenance of the conversion from DICOM to NIfTI in W3C PROV format | ||
- it provides assistance in converting to `BIDS <http://bids.neuroimaging.io/>`_. | ||
- it integrates with `DataLad <https://www.datalad.org/>`_ to place converted and original data under git/git-annex version control, while automatically annotating files with sensitive information (e.g., non-defaced anatomicals, etc) |
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,19 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SOURCEDIR = . | ||
BUILDDIR = _build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
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,13 @@ | ||
============= | ||
API Reference | ||
============= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
api/bids | ||
api/convert | ||
api/dicoms | ||
api/parser | ||
api/queue | ||
api/utils |
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,5 @@ | ||
==== | ||
BIDS | ||
==== | ||
|
||
.. automodule:: heudiconv.bids |
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,5 @@ | ||
========== | ||
Conversion | ||
========== | ||
|
||
.. automodule:: heudiconv.convert |
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,5 @@ | ||
====== | ||
DICOMS | ||
====== | ||
|
||
.. automodule:: heudiconv.dicoms |
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,5 @@ | ||
======= | ||
Parsing | ||
======= | ||
|
||
.. automodule:: heudiconv.parser |
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,5 @@ | ||
============= | ||
Batch Queuing | ||
============= | ||
|
||
.. automodule:: heudiconv.queue |
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,5 @@ | ||
======= | ||
Utility | ||
======= | ||
|
||
.. automodule:: heudiconv.utils |
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,5 @@ | ||
======= | ||
Changes | ||
======= | ||
|
||
.. mdinclude:: ../CHANGELOG.md |
Oops, something went wrong.