Welcome to the IEEG_Pipelines Documentation¶
This is the main page of the IEEG_Pipelines documentation. Here you will find the table of contents and links to other important resources.
API Reference:
Developer Information
Useful Links
IEEG_Pipelines¶
A repo of current preprocessing pipelines for the Cogan Lab
Documentation¶
Pipeline Functionality¶
Installation¶
MATLAB¶
Install MATLAB
Clone this repository into your userpath (
Documents/MATLABby default)Run commands:
path = fullfile(userpath, 'IEEG_Pipelines', 'MATLAB'); addpath(genpath(path));
Python¶
Version 3.10 - 3.13 supported
Conda¶
Install Anaconda
Create an anaconda environment with python and pip packages installed
conda create -n <YOUR_NAME> python<3.14 pip
Activate the environment
conda activate <YOUR_NAME>
Run
pip install ieeg
Pip¶
Install Python
Run:
python -m venv <PATH TO VENV>/<YOUR_NAME> source activate <PATH TO VENV>/<YOUR_NAME> python -m pip install ieeg
Usage¶
MATLAB (INCOMPLETE)¶
Load
.datfile using convert_OpenE_rec2mat.mCreate the ieeg data structure from the ieegStructClass.m
TBD
Python (INCOMPLETE)¶
Load BIDS files from BIDS directory using
pybidsfrom bids import BIDSLayout import ieeg layout = BIDSLayout(<BIDS_root>) data = ieeg.io.raw_from_layout(layout)
Indices and Tables¶
Thank you for using IEEG_Pipelines!
