├── .build_pyqt5.sh ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── codecov.yml ├── demonstrations ├── synthesize_data │ ├── send_eeg_data.py │ └── send_markers.py └── tasks │ ├── checkerboard.py │ └── eyes_open_closed.py ├── requirements.txt └── rteeg ├── __init__.py ├── analysis.py ├── base.py ├── default_predicates.py ├── stream.py ├── tests ├── __init__.py ├── test_analysis.py ├── test_base.py ├── test_stream.py └── utils.py └── utils.py /.build_pyqt5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/.build_pyqt5.sh -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/codecov.yml -------------------------------------------------------------------------------- /demonstrations/synthesize_data/send_eeg_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/demonstrations/synthesize_data/send_eeg_data.py -------------------------------------------------------------------------------- /demonstrations/synthesize_data/send_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/demonstrations/synthesize_data/send_markers.py -------------------------------------------------------------------------------- /demonstrations/tasks/checkerboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/demonstrations/tasks/checkerboard.py -------------------------------------------------------------------------------- /demonstrations/tasks/eyes_open_closed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/demonstrations/tasks/eyes_open_closed.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/requirements.txt -------------------------------------------------------------------------------- /rteeg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/__init__.py -------------------------------------------------------------------------------- /rteeg/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/analysis.py -------------------------------------------------------------------------------- /rteeg/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/base.py -------------------------------------------------------------------------------- /rteeg/default_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/default_predicates.py -------------------------------------------------------------------------------- /rteeg/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/stream.py -------------------------------------------------------------------------------- /rteeg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rteeg/tests/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/tests/test_analysis.py -------------------------------------------------------------------------------- /rteeg/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/tests/test_base.py -------------------------------------------------------------------------------- /rteeg/tests/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/tests/test_stream.py -------------------------------------------------------------------------------- /rteeg/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/tests/utils.py -------------------------------------------------------------------------------- /rteeg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaczmarj/rteeg/HEAD/rteeg/utils.py --------------------------------------------------------------------------------