This repository holds code to conduct ephys analysis on data files that come from trodes and phy files. It also has code to extract behavior data from Boris and ECU data and some tools to manipulate behavioral epochs.
pip install synapticsyncClone this repository and create a new branch for your changes.
The following commands will set up the environment you need to contribute.
cd <path/to/cloned/repository/SynapticSync>
# this takes you to the root directory of project
conda env create -f environment.yml
conda activate synapticsync
poetry config virtualenvs.create false --local
poetry install
poetry run pre-commit installTo add a new dependency for the SynapticSync package use:
poetry add <new-package-name>To add a new development specific package use:
poetry add --group dev <new-package-name>