├── .git_archival.txt ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── cffconvert.yml │ ├── python_build.yml │ ├── python_tests.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ └── style.css ├── _templates │ ├── autosummary │ │ ├── class.rst │ │ └── function.rst │ └── layout.html ├── api.rst ├── authors.rst ├── changelog.rst ├── conf.py ├── examples.rst ├── index.rst ├── matlab_differences.rst └── sphinxext │ └── gh_substitutions.py ├── examples ├── README.rst ├── matlab_results │ ├── EEG.mat │ ├── EEGNew.mat │ ├── EEG_raw.mat │ ├── EEGinterp.mat │ └── EEGref.mat ├── run_full_prep.py └── run_ransac.py ├── pyprep ├── __init__.py ├── find_noisy_channels.py ├── prep_pipeline.py ├── ransac.py ├── reference.py ├── removeTrend.py └── utils.py ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── test_find_noisy_channels.py ├── test_matprep_compare.py ├── test_prep_pipeline.py ├── test_reference.py ├── test_removeTrend.py └── test_utils.py /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cffconvert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/workflows/cffconvert.yml -------------------------------------------------------------------------------- /.github/workflows/python_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/workflows/python_build.yml -------------------------------------------------------------------------------- /.github/workflows/python_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/workflows/python_tests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/_static/style.css -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/_templates/autosummary/function.rst -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- 1 | .. include:: auto_examples/index.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/matlab_differences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/matlab_differences.rst -------------------------------------------------------------------------------- /docs/sphinxext/gh_substitutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/docs/sphinxext/gh_substitutions.py -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/matlab_results/EEG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/matlab_results/EEG.mat -------------------------------------------------------------------------------- /examples/matlab_results/EEGNew.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/matlab_results/EEGNew.mat -------------------------------------------------------------------------------- /examples/matlab_results/EEG_raw.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/matlab_results/EEG_raw.mat -------------------------------------------------------------------------------- /examples/matlab_results/EEGinterp.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/matlab_results/EEGinterp.mat -------------------------------------------------------------------------------- /examples/matlab_results/EEGref.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/matlab_results/EEGref.mat -------------------------------------------------------------------------------- /examples/run_full_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/run_full_prep.py -------------------------------------------------------------------------------- /examples/run_ransac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/examples/run_ransac.py -------------------------------------------------------------------------------- /pyprep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/__init__.py -------------------------------------------------------------------------------- /pyprep/find_noisy_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/find_noisy_channels.py -------------------------------------------------------------------------------- /pyprep/prep_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/prep_pipeline.py -------------------------------------------------------------------------------- /pyprep/ransac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/ransac.py -------------------------------------------------------------------------------- /pyprep/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/reference.py -------------------------------------------------------------------------------- /pyprep/removeTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/removeTrend.py -------------------------------------------------------------------------------- /pyprep/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyprep/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_find_noisy_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_find_noisy_channels.py -------------------------------------------------------------------------------- /tests/test_matprep_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_matprep_compare.py -------------------------------------------------------------------------------- /tests/test_prep_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_prep_pipeline.py -------------------------------------------------------------------------------- /tests/test_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_reference.py -------------------------------------------------------------------------------- /tests/test_removeTrend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_removeTrend.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sappelhoff/pyprep/HEAD/tests/test_utils.py --------------------------------------------------------------------------------