Syncopy aims to be a user-friendly toolkit for large-scale electrophysiology data-analysis in Python. We strive to achieve the following goals:
- Syncopy is a fully open source Python environment for electrophysiology data analysis.
- Syncopy is scalable and built for very large datasets. It automatically makes use of available computing resources and is developed with built-in parallelism in mind.
- Syncopy is compatible with FieldTrip. Data and results can be loaded into MATLAB and Python, parameter names and function call syntax are as similar as possible
Syncopy is developed at the Ernst Strüngmann Institute (ESI) gGmbH for Neuroscience in Cooperation with Max Planck Society and released free of charge under the BSD 3-Clause "New" or "Revised" License.
To report bugs or ask questions please use our GitHub issue tracker. For general inquiries please contact syncopy (at) esi-frankfurt.de.
We recommend to install SynCoPy into a new conda environment:
- Install the Anaconda Distribution for your Operating System if you do not yet have it.
- Start a new terminal.
- You can do this by starting
`Anaconda navigator`
, selecting`Environments`
in the left tab, selecting the`base (root)`
environment, and clicking the green play button and then`Open Terminal`
. - Alternatively, under Linux, you can just type
`bash`
in your active terminal to start a new session.
- You can do this by starting
You should see a terminal with a command prompt that starts with `(base)`
, indicating that you are
in the conda `base`
environment.
Now we create a new environment named `syncopy`
and install syncopy into this environment:
conda create -y --name syncopy python=3.8
conda activate syncopy
conda install -y -c conda-forge esi-syncopy
To check which version of SynCoPy you have installed in the current environment, run:
conda activate syncopy
python -c "import syncopy; print(syncopy.__version__)"
Please visit our online documentation.
To get the latest development version, please clone our GitHub repository:
git clone https://github.com/esi-neuroscience/syncopy.git
cd syncopy/
pip install -e .