├── .gitignore ├── AUTHORS.rst ├── LICENSE.txt ├── README.rst ├── cleaner ├── __init__.py ├── applier.py ├── io.py ├── report.py └── utils.py ├── examples └── clean_eeg.py ├── pyproject.toml ├── scripts ├── 1_clean_raw.py ├── 2_clean_epochs.py └── 3_clean_ica.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/README.rst -------------------------------------------------------------------------------- /cleaner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/cleaner/__init__.py -------------------------------------------------------------------------------- /cleaner/applier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/cleaner/applier.py -------------------------------------------------------------------------------- /cleaner/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/cleaner/io.py -------------------------------------------------------------------------------- /cleaner/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/cleaner/report.py -------------------------------------------------------------------------------- /cleaner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/cleaner/utils.py -------------------------------------------------------------------------------- /examples/clean_eeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/examples/clean_eeg.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/1_clean_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/scripts/1_clean_raw.py -------------------------------------------------------------------------------- /scripts/2_clean_epochs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/scripts/2_clean_epochs.py -------------------------------------------------------------------------------- /scripts/3_clean_ica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/scripts/3_clean_ica.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fraimondo/eeg_cleaner/HEAD/setup.py --------------------------------------------------------------------------------