Skip to main content

A modular framework for automated EEG data processing, built on MNE-Python

Project description

AutoClean EEG

Python License Code style: black

A modular framework for automated EEG data processing, built on MNE-Python.

Features

  • Framework for automated EEG preprocessing with "lego block" modularity
  • Support for multiple EEG paradigms (ASSR, Chirp, MMN, Resting State)
  • BIDS-compatible data organization and comprehensive quality control
  • Extensible plugin system for file formats, montages, and event processing
  • Research-focused workflow: single file testing → parameter tuning → batch processing
  • Detailed output: logs, stage files, metadata, and quality control visualizations

Installation

pip install autoclean-eeg

For development installation:

git clone https://github.com/cincibrainlab/autoclean_pipeline.git
cd autoclean-eeg
uv tool install -e --upgrade ".[dev]"

Quick Start

AutoClean EEG offers two approaches for building custom EEG processing workflows:

Option 1: Python Task Files (Recommended for New Users)

Create simple Python files that combine configuration and processing logic:

# my_task.py
from typing import Any, Dict
from autoclean.core.task import Task

# Embedded configuration
config = {
    'resample_step': {'enabled': True, 'value': 250},
    'filtering': {'enabled': True, 'value': {'l_freq': 1, 'h_freq': 100}},
    'ICA': {'enabled': True, 'value': {'method': 'picard'}},
    'epoch_settings': {'enabled': True, 'value': {'tmin': -1, 'tmax': 1}}
}

class MyRestingTask(Task):
    def __init__(self, config: Dict[str, Any]):
        self.settings = globals()['config']
        super().__init__(config)
    
    def run(self) -> None:
        self.import_raw()
        self.run_basic_steps(export=True)
        self.run_ica(export=True)
        self.create_regular_epochs(export=True)
# Use your custom task
from autoclean import Pipeline

pipeline = Pipeline(output_dir="/path/to/output")
pipeline.add_task("my_task.py")
pipeline.process_file("/path/to/data.raw", task="MyRestingTask")

Option 2: Traditional YAML Configuration

For complex workflows or when you prefer separate config files:

from autoclean import Pipeline

# Initialize pipeline with YAML configuration
pipeline = Pipeline(
    output_dir="/path/to/output"
)

# Process using built-in tasks
pipeline.process_file(
    file_path="/path/to/test_data.raw", 
    task="rest_eyesopen"
)

Typical Research Workflow

  1. Test single file to validate task and tune parameters
  2. Review results in output directories and adjust as needed
  3. Process full dataset using batch processing
# Batch processing (works with both approaches)
pipeline.process_directory(
    directory="/path/to/dataset",
    task="MyRestingTask",  # or built-in task name
    pattern="*.raw"
)

Key Benefits of Python Task Files:

  • Simpler: No separate YAML files to manage
  • Self-contained: Configuration and logic in one file
  • Flexible: Optional export=True parameters control file outputs
  • Intuitive: Pandas-like API with sensible defaults

Documentation

Full documentation is available at https://cincibrainlab.github.io/autoclean_pipeline/

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Citation

If you use this software in your research, please cite:

@software{autoclean_eeg,
  author = {Gammoh, Gavin, Pedapati, Ernest, and Grace Westerkamp},
  title = {AutoClean EEG: Automated EEG Processing Pipeline},
  year = {2024},
  publisher = {GitHub},
  url = {[https://github.com/yourusername/autoclean-eeg](https://github.com/cincibrainlab/autoclean_pipeline/)}
}

Acknowledgments

  • Cincinnati Children's Hospital Medical Center
  • Built with MNE-Python

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autoclean_eeg-2.0.4.tar.gz (339.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

autoclean_eeg-2.0.4-py3-none-any.whl (272.8 kB view details)

Uploaded Python 3

File details

Details for the file autoclean_eeg-2.0.4.tar.gz.

File metadata

  • Download URL: autoclean_eeg-2.0.4.tar.gz
  • Upload date:
  • Size: 339.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.2

File hashes

Hashes for autoclean_eeg-2.0.4.tar.gz
Algorithm Hash digest
SHA256 37c6e0e1af3728ca171cfa510e4a0bb3c5c60a69bdc1fc9a24de9acacc933f7d
MD5 9c9f5a89f4ec5e8ad7f0b1675467ca46
BLAKE2b-256 a37acc8e4ed4dc3519d78be8961145725ac076baddddba5c6352a706b0f14664

See more details on using hashes here.

File details

Details for the file autoclean_eeg-2.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for autoclean_eeg-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c8014686916afa543de92ae639659983a69bd79283c258ebcc9d1d8f45e53e7d
MD5 27e3e1a7e239e71e378e3354a3cf4a46
BLAKE2b-256 b7db6879912ef802d2c1b336d53b53339e5cf9a2d42a83b8e9b434519a247235

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page