Metadata-Version: 2.1
Name: eeg-preprocessing
Version: 0.2.3
Summary: Semiautomatic framework for preprocessing EEG data
Home-page: https://github.com/weiglszonja/eeg-preprocessing
Author: Szonja Weigl
Author-email: weigl.anna.szonja@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: mne
Requires-Dist: PyQt5
Requires-Dist: scipy
Requires-Dist: pandas
Requires-Dist: autoreject
Requires-Dist: jupyter
Requires-Dist: joblib
Requires-Dist: sklearn
Requires-Dist: matplotlib
Requires-Dist: ipyfilechooser

# eeg-preprocessing
A semiautomatic framework for preprocessing EEG data.

# Setup
Clone the repository and setup a conda environment:
```bash
$ git clone https://github.com/weiglszonja/eeg-preprocessing.git
$ conda env create -f eeg-preprocessing/make_conda_env.yml
$ source activate eeg_preprocessing
```
Alternatively, install into an existing environment:
```bash
$ pip install eeg_preprocessing
```

# Usage
If you cloned the repository, there is a jupyter notebook with a pipeline setup 
that can be used for preprocessing data:
```bash
$ jupyter notebook notebooks/run_preprocessing.ipynb
```
Or you can import the methods into your own project and setup the pipeline for your own needs:
```python
from eeg_preprocessing import preprocessing
```


