-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor converters (unfinished) * some fixes * some more fixes * some more fixes 2 * some improvements * some improvements 2 * try fixing oasis issues * try fixing oasis issues again * fix adni to bids and simplify genfi to bids * work on API * make API more uniform * fix remaining bugs and continue uniformizing API * finish refactoring * fix call to find_image_path in adni_fmap * warn when n_procs or subjects options are not implemented * continue refactoring * fix bad merge * refine adni converter interface * post rebase fixes * fix bad rebase * fix errors introduced while rebasing * expose convert
- Loading branch information
1 parent
b94af6c
commit 1a8508e
Showing
77 changed files
with
4,534 additions
and
4,141 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,3 @@ | ||
from .factory import convert | ||
|
||
__all__ = ["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,3 @@ | ||
from .adni_to_bids import convert | ||
|
||
__all__ = ["convert"] |
Oops, something went wrong.