NWB conversion scripts for Kind lab data to the Neurodata Without Borders data format.
You can install the latest release of the package with pip:
pip install kind-lab-to-nwb
We recommend that you install the package inside a [virtual environment](https://docs.python.org/3/tutorial/venv.
html). A simple way of doing this is to use a [conda environment](https://docs.conda.
io/projects/conda/en/latest/user-guide/concepts/environments.html) from the conda
package manager (installation
instructions). Detailed instructions on how to use conda
environments can be found in their documentation.
Once you have installed the package with pip, you can run any of the conversion scripts in a notebook or a python file:
https://github.com/catalystneuro/kind-lab-to-nwb//tree/main/src/arc_ecephys_2024/convert_session.py
Copy or download this file run the script with the following command:
python convert_session.py
Another option is to install the package directly from GitHub. This option has the advantage that the source code
can be modified if you need to amend some of the code we originally provided to adapt to future experimental
differences. To install the conversion from GitHub you will need to use git
([installation instructions] (https://github.com/git-guides/install-git)).
We also recommend the installation of conda
(installation instructions) as it contains all the required
machinery in a single and simple install.
From a terminal (note that conda should install one in your system) you can do the following:
git clone https://github.com/catalystneuro/kind-lab-to-nwb
cd kind-lab-to-nwb
conda env create --file make_env.yml
conda activate kind_lab_to_nwb_env
This creates a conda environment which isolates the conversion code from your system libraries. We recommend that you run all your conversion related tasks and analysis from the created environment in order to minimize issues related to package dependencies.
Alternatively, if you want to avoid conda altogether (for example if you use another virtual environment tool) you can install the repository with the following commands using only pip:
git clone https://github.com/catalystneuro/kind-lab-to-nwb
cd kind-lab-to-nwb
pip install --editable .
Note: both of the methods above install the repository in editable mode.
If the project has more than one conversion, you can install the requirements for a specific conversion with the following command:
pip install --editable .[arc_ecephys_2024]
You can run a specific conversion with the following command:
python src/kind_lab_to_nwb/arc_ecephys_2024/convert_session.py
Each conversion is organized in a directory of its own in the src
directory:
kind-lab-to-nwb/
├── LICENSE
├── make_env.yml
├── pyproject.toml
├── README.md
├── requirements.txt
├── setup.py
└── src
├── kind_lab_to_nwb
│ └── arc_ecephys_2024
│ ├── notes.md
│ ├── behaviorinterface.py
│ ├── convert_session.py
│ ├── metadata.yml
│ ├── nwbconverter.py
│ ├── notes.md
│ └── __init__.py
│ ├── conversion_directory_b
└── __init__.py
For example, for the conversion arc_ecephys_2024
you can find a directory located in src/kind-lab-to-nwb/arc_ecephys_2024
.
Inside each conversion directory you can find the following files:
convert_sesion.py
: this script defines the function to convert one full session of the conversion.metadata.yml
: metadata in yaml format for this specific conversion.behaviorinterface.py
: the behavior interface. Usually ad-hoc for each conversion.nwbconverter.py
: the place where theNWBConverter
class is defined.notes.md
: notes and comments concerning this specific conversion.
The directory might contain other files that are necessary for the conversion but those are the central ones.