-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation changes after Empenn Hackathon (#176)
* [BUG] inside unit_tests workflow * [DOC] fix some broken links * [DOC] adding template for pipeline testing * [DOC] adding template for pipeline testing * About implemented_pipelines * Deal with test template * [DOC] new readme for the doc * Changes in README.md * [DOC] slight changes to docs/README.md * Add links to past events * Changes in readme.md * fMRI trail * Adding trail description in contribution guide * Separate trails in contribution guide * [TEST] Solving pytest issues with template test * Changing docker image in use * FSL template correction * [DOC] writing test files * Codespell * First step in writing documentation about NARPS * [DOC] completing doc about narps * [DOC] completing doc about narps * [DOC] completing doc about narps * [DATALAD] change results url * [DOC] reference to the github project for reproduction mgmt * [DOC] adding team id choices for narps open runner * [DOC] list of available team ids in command tools documentation * [DOC] configuration info inside INSTALL.md * [DOC] configuration info inside INSTALL.md * NARPS Exclusion comments * Empenn hackathon names * Data documentation (datalad get recursive * Adjusting correlation thresholds inside testing configuration, after U26C results * Update dataset size * Freeze versions
- Loading branch information
Showing
7 changed files
with
57 additions
and
20 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
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,30 @@ | ||
#!/usr/bin/python | ||
# coding: utf-8 | ||
|
||
""" Provide a command-line interface for the package narps_open.pipelines """ | ||
|
||
from argparse import ArgumentParser | ||
|
||
from narps_open.pipelines import get_implemented_pipelines | ||
|
||
def main(): | ||
""" Entry-point for the command line tool narps_open_pipeline """ | ||
|
||
# Parse arguments | ||
parser = ArgumentParser(description='Get description of a NARPS pipeline.') | ||
parser.add_argument('-v', '--verbose', action='store_true', | ||
help='verbose mode') | ||
arguments = parser.parse_args() | ||
|
||
# Print header | ||
print('NARPS Open Pipelines') | ||
|
||
# Print general information about NARS Open Pipelines | ||
print('A codebase reproducing the 70 pipelines of the NARPS study (Botvinik-Nezer et al., 2020) shared as an open resource for the community.') | ||
|
||
# Print pipelines | ||
implemented_pipelines = get_implemented_pipelines() | ||
print(f'There are currently {len(implemented_pipelines)} implemented pipelines: {implemented_pipelines}') | ||
|
||
if __name__ == '__main__': | ||
main() |
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