This repo provides a template for creating Neurodata Extensions (NDX) for the Neurodata Without Borders: Neurophysiology data standard.
We currently support creating Neurodata Extensions only using Python. MATLAB support is in development.
- Clone this repository.
- Install cookiecutter, a Python-based command-line utility that creates projects from templates:
python -m pip install cookiecutter
- Run cookiecutter on your local cloned ndx-template directory:
cookiecutter ndx-template
- Answer the prompts, which will be used to fill in the blanks throughout the
template automatically. You will be prompted for:
namespace
- The name of the namespace for your NDX. This could be a description of the extension (e.g. "ndx-cortical-surface") or the name of your lab or group (e.g. "ndx-allen-institute")- Namespaces should generally follow the following naming conventions:
- Use only lower-case ASCII letters (no special characters)
- Use "-" to separate different parts of the name (no spaces allowed)
- Use the naming schema "ndx-myname", e.g., "ndx-cortical-surface"
- Use short and descriptive names
- Namespaces should generally follow the following naming conventions:
description
- A description of your extension in simple termsdev_language
- Language for developing your extension (Python, MATLAB, Neither)- If you want to include custom classes and functionality with your extension, please select the language in whcich those classes are written.
- If you intend your extension to be loaded without custom classes, select Neither.
author
- Your nameemail
- Your email addressgithub_name
- Your username on GitHubcopyright
- Copyright statement, if desiredversion
- Version of your extension. Versioning should start at 0.1.0.release
- Release category, e.g. alpha, beta, official
- A new directory with the same name as your entered
namespace
will be created. SeeNEXTSTEPS.md
in that directory for the next steps in creating your awesome new Neurodata Extension.
When you are done creating your extension, we encourage you to follow the steps to publish your Neurodata Extension for the benefit of the greater neuroscience community! :)