py-neuromodulation 0.0.2__py3-none-any.whl → 0.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docs/build/_downloads/09df217f95985497f45d69e2d4bdc5b1/plot_2_example_add_feature.py +68 -0
- docs/build/_downloads/3b4900a2b2818ff30362215b76f7d5eb/plot_1_example_BIDS.py +233 -0
- docs/build/_downloads/7e92dd2e6cc86b239d14cafad972ae4f/plot_3_example_sharpwave_analysis.py +219 -0
- docs/build/_downloads/c2db0bf2b334d541b00662b991682256/plot_6_real_time_demo.py +97 -0
- docs/build/_downloads/ce3914826f782cbd1ea8fd024eaf0ac3/plot_5_example_rmap_computing.py +64 -0
- docs/build/_downloads/da36848a41e6a3235d91fb7cfb6d59b4/plot_0_first_demo.py +192 -0
- docs/build/_downloads/eaa4305c75b19a1e2eea941f742a6331/plot_4_example_gridPointProjection.py +210 -0
- docs/build/html/_downloads/09df217f95985497f45d69e2d4bdc5b1/plot_2_example_add_feature.py +68 -0
- docs/build/html/_downloads/3b4900a2b2818ff30362215b76f7d5eb/plot_1_example_BIDS.py +239 -0
- docs/build/html/_downloads/7e92dd2e6cc86b239d14cafad972ae4f/plot_3_example_sharpwave_analysis.py +219 -0
- docs/build/html/_downloads/c2db0bf2b334d541b00662b991682256/plot_6_real_time_demo.py +97 -0
- docs/build/html/_downloads/ce3914826f782cbd1ea8fd024eaf0ac3/plot_5_example_rmap_computing.py +64 -0
- docs/build/html/_downloads/da36848a41e6a3235d91fb7cfb6d59b4/plot_0_first_demo.py +192 -0
- docs/build/html/_downloads/eaa4305c75b19a1e2eea941f742a6331/plot_4_example_gridPointProjection.py +210 -0
- docs/source/_build/html/_downloads/09df217f95985497f45d69e2d4bdc5b1/plot_2_example_add_feature.py +76 -0
- docs/source/_build/html/_downloads/0d0d0a76e8f648d5d3cbc47da6351932/plot_real_time_demo.py +97 -0
- docs/source/_build/html/_downloads/3b4900a2b2818ff30362215b76f7d5eb/plot_1_example_BIDS.py +240 -0
- docs/source/_build/html/_downloads/5d73cadc59a8805c47e3b84063afc157/plot_example_BIDS.py +233 -0
- docs/source/_build/html/_downloads/7660317fa5a6bfbd12fcca9961457fc4/plot_example_rmap_computing.py +63 -0
- docs/source/_build/html/_downloads/7e92dd2e6cc86b239d14cafad972ae4f/plot_3_example_sharpwave_analysis.py +219 -0
- docs/source/_build/html/_downloads/839e5b319379f7fd9e867deb00fd797f/plot_example_gridPointProjection.py +210 -0
- docs/source/_build/html/_downloads/ae8be19afe5e559f011fc9b138968ba0/plot_first_demo.py +192 -0
- docs/source/_build/html/_downloads/b8b06cacc17969d3725a0b6f1d7741c5/plot_example_sharpwave_analysis.py +219 -0
- docs/source/_build/html/_downloads/c2db0bf2b334d541b00662b991682256/plot_6_real_time_demo.py +121 -0
- docs/source/_build/html/_downloads/c31a86c0b68cb4167d968091ace8080d/plot_example_add_feature.py +68 -0
- docs/source/_build/html/_downloads/ce3914826f782cbd1ea8fd024eaf0ac3/plot_5_example_rmap_computing.py +64 -0
- docs/source/_build/html/_downloads/da36848a41e6a3235d91fb7cfb6d59b4/plot_0_first_demo.py +189 -0
- docs/source/_build/html/_downloads/eaa4305c75b19a1e2eea941f742a6331/plot_4_example_gridPointProjection.py +210 -0
- docs/source/auto_examples/plot_0_first_demo.py +189 -0
- docs/source/auto_examples/plot_1_example_BIDS.py +240 -0
- docs/source/auto_examples/plot_2_example_add_feature.py +76 -0
- docs/source/auto_examples/plot_3_example_sharpwave_analysis.py +219 -0
- docs/source/auto_examples/plot_4_example_gridPointProjection.py +210 -0
- docs/source/auto_examples/plot_5_example_rmap_computing.py +64 -0
- docs/source/auto_examples/plot_6_real_time_demo.py +121 -0
- docs/source/conf.py +105 -0
- examples/plot_0_first_demo.py +189 -0
- examples/plot_1_example_BIDS.py +240 -0
- examples/plot_2_example_add_feature.py +76 -0
- examples/plot_3_example_sharpwave_analysis.py +219 -0
- examples/plot_4_example_gridPointProjection.py +210 -0
- examples/plot_5_example_rmap_computing.py +64 -0
- examples/plot_6_real_time_demo.py +121 -0
- packages/realtime_decoding/build/lib/realtime_decoding/__init__.py +4 -0
- packages/realtime_decoding/build/lib/realtime_decoding/decoder.py +104 -0
- packages/realtime_decoding/build/lib/realtime_decoding/features.py +163 -0
- packages/realtime_decoding/build/lib/realtime_decoding/helpers.py +15 -0
- packages/realtime_decoding/build/lib/realtime_decoding/run_decoding.py +345 -0
- packages/realtime_decoding/build/lib/realtime_decoding/trainer.py +54 -0
- packages/tmsi/build/lib/TMSiFileFormats/__init__.py +37 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_formats/__init__.py +36 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_formats/lsl_stream_writer.py +200 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_formats/poly5_file_writer.py +496 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_formats/poly5_to_edf_converter.py +236 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_formats/xdf_file_writer.py +977 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_readers/__init__.py +35 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_readers/edf_reader.py +116 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_readers/poly5reader.py +294 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_readers/xdf_reader.py +229 -0
- packages/tmsi/build/lib/TMSiFileFormats/file_writer.py +102 -0
- packages/tmsi/build/lib/TMSiPlotters/__init__.py +2 -0
- packages/tmsi/build/lib/TMSiPlotters/gui/__init__.py +39 -0
- packages/tmsi/build/lib/TMSiPlotters/gui/_plotter_gui.py +234 -0
- packages/tmsi/build/lib/TMSiPlotters/gui/plotting_gui.py +440 -0
- packages/tmsi/build/lib/TMSiPlotters/plotters/__init__.py +44 -0
- packages/tmsi/build/lib/TMSiPlotters/plotters/hd_emg_plotter.py +446 -0
- packages/tmsi/build/lib/TMSiPlotters/plotters/impedance_plotter.py +589 -0
- packages/tmsi/build/lib/TMSiPlotters/plotters/signal_plotter.py +1326 -0
- packages/tmsi/build/lib/TMSiSDK/__init__.py +54 -0
- packages/tmsi/build/lib/TMSiSDK/device.py +588 -0
- packages/tmsi/build/lib/TMSiSDK/devices/__init__.py +34 -0
- packages/tmsi/build/lib/TMSiSDK/devices/saga/TMSi_Device_API.py +1764 -0
- packages/tmsi/build/lib/TMSiSDK/devices/saga/__init__.py +34 -0
- packages/tmsi/build/lib/TMSiSDK/devices/saga/saga_device.py +1366 -0
- packages/tmsi/build/lib/TMSiSDK/devices/saga/saga_types.py +520 -0
- packages/tmsi/build/lib/TMSiSDK/devices/saga/xml_saga_config.py +165 -0
- packages/tmsi/build/lib/TMSiSDK/error.py +95 -0
- packages/tmsi/build/lib/TMSiSDK/sample_data.py +63 -0
- packages/tmsi/build/lib/TMSiSDK/sample_data_server.py +99 -0
- packages/tmsi/build/lib/TMSiSDK/settings.py +45 -0
- packages/tmsi/build/lib/TMSiSDK/tmsi_device.py +111 -0
- packages/tmsi/build/lib/__init__.py +4 -0
- packages/tmsi/build/lib/apex_sdk/__init__.py +34 -0
- packages/tmsi/build/lib/apex_sdk/device/__init__.py +41 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_API.py +1009 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_API_enums.py +239 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_API_structures.py +668 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_device.py +1611 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_dongle.py +38 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_event_reader.py +57 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/apex_channel.py +44 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/apex_config.py +150 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/apex_const.py +36 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/apex_impedance_channel.py +48 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/apex_info.py +108 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/apex_structures/dongle_info.py +39 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/measurements/download_measurement.py +77 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/measurements/eeg_measurement.py +150 -0
- packages/tmsi/build/lib/apex_sdk/device/devices/apex/measurements/impedance_measurement.py +129 -0
- packages/tmsi/build/lib/apex_sdk/device/threads/conversion_thread.py +59 -0
- packages/tmsi/build/lib/apex_sdk/device/threads/sampling_thread.py +57 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_channel.py +83 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_device.py +201 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_device_enums.py +103 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_dongle.py +43 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_event_reader.py +50 -0
- packages/tmsi/build/lib/apex_sdk/device/tmsi_measurement.py +118 -0
- packages/tmsi/build/lib/apex_sdk/sample_data_server/__init__.py +33 -0
- packages/tmsi/build/lib/apex_sdk/sample_data_server/event_data.py +44 -0
- packages/tmsi/build/lib/apex_sdk/sample_data_server/sample_data.py +50 -0
- packages/tmsi/build/lib/apex_sdk/sample_data_server/sample_data_server.py +136 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_errors/error.py +126 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_sdk.py +113 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/apex/apex_structure_generator.py +134 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/decorators.py +60 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/logger_filter.py +42 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/singleton.py +42 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/support_functions.py +72 -0
- packages/tmsi/build/lib/apex_sdk/tmsi_utilities/tmsi_logger.py +98 -0
- py_neuromodulation/{helper.py → _write_example_dataset_helper.py} +1 -1
- py_neuromodulation/nm_EpochStream.py +2 -3
- py_neuromodulation/nm_IO.py +43 -70
- py_neuromodulation/nm_RMAP.py +308 -11
- py_neuromodulation/nm_analysis.py +1 -1
- py_neuromodulation/nm_artifacts.py +25 -0
- py_neuromodulation/nm_bispectra.py +64 -29
- py_neuromodulation/nm_bursts.py +44 -30
- py_neuromodulation/nm_coherence.py +2 -1
- py_neuromodulation/nm_features.py +4 -2
- py_neuromodulation/nm_filter.py +63 -32
- py_neuromodulation/nm_filter_preprocessing.py +91 -0
- py_neuromodulation/nm_fooof.py +47 -29
- py_neuromodulation/nm_mne_connectivity.py +1 -1
- py_neuromodulation/nm_normalization.py +50 -74
- py_neuromodulation/nm_oscillatory.py +151 -31
- py_neuromodulation/nm_plots.py +13 -10
- py_neuromodulation/nm_rereference.py +10 -8
- py_neuromodulation/nm_run_analysis.py +28 -13
- py_neuromodulation/nm_sharpwaves.py +103 -136
- py_neuromodulation/nm_stats.py +44 -30
- py_neuromodulation/nm_stream_abc.py +18 -10
- py_neuromodulation/nm_stream_offline.py +181 -40
- py_neuromodulation/utils/_logging.py +24 -0
- {py_neuromodulation-0.0.2.dist-info → py_neuromodulation-0.0.3.dist-info}/METADATA +182 -142
- py_neuromodulation-0.0.3.dist-info/RECORD +188 -0
- {py_neuromodulation-0.0.2.dist-info → py_neuromodulation-0.0.3.dist-info}/WHEEL +2 -1
- py_neuromodulation-0.0.3.dist-info/top_level.txt +5 -0
- tests/__init__.py +0 -0
- tests/conftest.py +117 -0
- tests/test_all_examples.py +10 -0
- tests/test_all_features.py +63 -0
- tests/test_bispectra.py +70 -0
- tests/test_bursts.py +105 -0
- tests/test_feature_sampling_rates.py +143 -0
- tests/test_fooof.py +16 -0
- tests/test_initalization_offline_stream.py +41 -0
- tests/test_multiprocessing.py +58 -0
- tests/test_nan_values.py +29 -0
- tests/test_nm_filter.py +95 -0
- tests/test_nm_resample.py +63 -0
- tests/test_normalization_settings.py +146 -0
- tests/test_notch_filter.py +31 -0
- tests/test_osc_features.py +424 -0
- tests/test_preprocessing_filter.py +151 -0
- tests/test_rereference.py +171 -0
- tests/test_sampling.py +57 -0
- tests/test_settings_change_after_init.py +76 -0
- tests/test_sharpwave.py +165 -0
- tests/test_target_channel_add.py +100 -0
- tests/test_timing.py +80 -0
- py_neuromodulation/data/README +0 -6
- py_neuromodulation/data/dataset_description.json +0 -8
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/MOV_aligned_features_ch_ECOG_RIGHT_0_all.png +0 -0
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/all_feature_plt.pdf +0 -0
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_FEATURES.csv +0 -182
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_LM_ML_RES.p +0 -0
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_SETTINGS.json +0 -273
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_SIDECAR.json +0 -6
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_decoding_performance.png +0 -0
- py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_nm_channels.csv +0 -11
- py_neuromodulation/data/participants.json +0 -32
- py_neuromodulation/data/participants.tsv +0 -2
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_space-mni_coordsystem.json +0 -5
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_space-mni_electrodes.tsv +0 -11
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_channels.tsv +0 -11
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.eeg +0 -0
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.json +0 -18
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.vhdr +0 -35
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.vmrk +0 -13
- py_neuromodulation/data/sub-testsub/ses-EphysMedOff/sub-testsub_ses-EphysMedOff_scans.tsv +0 -2
- py_neuromodulation/grid_cortex.tsv +0 -40
- py_neuromodulation/grid_subcortex.tsv +0 -1429
- py_neuromodulation/nm_settings.json +0 -290
- py_neuromodulation/plots/STN_surf.mat +0 -0
- py_neuromodulation/plots/Vertices.mat +0 -0
- py_neuromodulation/plots/faces.mat +0 -0
- py_neuromodulation/plots/grid.mat +0 -0
- py_neuromodulation/py_neuromodulation.egg-info/PKG-INFO +0 -104
- py_neuromodulation/py_neuromodulation.egg-info/dependency_links.txt +0 -1
- py_neuromodulation/py_neuromodulation.egg-info/requires.txt +0 -26
- py_neuromodulation/py_neuromodulation.egg-info/top_level.txt +0 -1
- py_neuromodulation-0.0.2.dist-info/RECORD +0 -73
- /py_neuromodulation/{py_neuromodulation.egg-info/SOURCES.txt → utils/__init__.py} +0 -0
- {py_neuromodulation-0.0.2.dist-info → py_neuromodulation-0.0.3.dist-info}/LICENSE +0 -0
|
Binary file
|
|
@@ -1,273 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"sampling_rate_features_hz": 10,
|
|
3
|
-
"segment_length_features_ms": 1000,
|
|
4
|
-
"preprocessing": [
|
|
5
|
-
"raw_resampling",
|
|
6
|
-
"notch_filter",
|
|
7
|
-
"re_referencing"
|
|
8
|
-
],
|
|
9
|
-
"documentation_preprocessing_options": [
|
|
10
|
-
"raw_resampling",
|
|
11
|
-
"notch_filter",
|
|
12
|
-
"re_referencing",
|
|
13
|
-
"raw_normalization"
|
|
14
|
-
],
|
|
15
|
-
"features": {
|
|
16
|
-
"raw_hjorth": false,
|
|
17
|
-
"return_raw": false,
|
|
18
|
-
"bandpass_filter": false,
|
|
19
|
-
"stft": false,
|
|
20
|
-
"fft": true,
|
|
21
|
-
"sharpwave_analysis": false,
|
|
22
|
-
"fooof": false,
|
|
23
|
-
"bursts": false,
|
|
24
|
-
"linelength": false,
|
|
25
|
-
"coherence": false,
|
|
26
|
-
"nolds": false,
|
|
27
|
-
"mne_connectivity": false
|
|
28
|
-
},
|
|
29
|
-
"postprocessing": {
|
|
30
|
-
"feature_normalization": true,
|
|
31
|
-
"project_cortex": false,
|
|
32
|
-
"project_subcortex": false
|
|
33
|
-
},
|
|
34
|
-
"raw_resampling_settings": {
|
|
35
|
-
"resample_freq_hz": 1000
|
|
36
|
-
},
|
|
37
|
-
"documentation_normalization_options": [
|
|
38
|
-
"mean",
|
|
39
|
-
"median",
|
|
40
|
-
"zscore",
|
|
41
|
-
"zscore-median",
|
|
42
|
-
"quantile",
|
|
43
|
-
"power",
|
|
44
|
-
"robust",
|
|
45
|
-
"minmax"
|
|
46
|
-
],
|
|
47
|
-
"raw_normalization_settings": {
|
|
48
|
-
"normalization_time_s": 30,
|
|
49
|
-
"normalization_method": "zscore",
|
|
50
|
-
"clip": 3
|
|
51
|
-
},
|
|
52
|
-
"feature_normalization_settings": {
|
|
53
|
-
"normalization_time_s": 30,
|
|
54
|
-
"normalization_method": "zscore",
|
|
55
|
-
"clip": 3
|
|
56
|
-
},
|
|
57
|
-
"frequency_ranges_hz": {
|
|
58
|
-
"theta": [
|
|
59
|
-
4,
|
|
60
|
-
8
|
|
61
|
-
],
|
|
62
|
-
"alpha": [
|
|
63
|
-
8,
|
|
64
|
-
12
|
|
65
|
-
],
|
|
66
|
-
"low beta": [
|
|
67
|
-
13,
|
|
68
|
-
20
|
|
69
|
-
],
|
|
70
|
-
"high beta": [
|
|
71
|
-
20,
|
|
72
|
-
35
|
|
73
|
-
],
|
|
74
|
-
"low gamma": [
|
|
75
|
-
60,
|
|
76
|
-
80
|
|
77
|
-
],
|
|
78
|
-
"high gamma": [
|
|
79
|
-
90,
|
|
80
|
-
200
|
|
81
|
-
],
|
|
82
|
-
"HFA": [
|
|
83
|
-
200,
|
|
84
|
-
400
|
|
85
|
-
]
|
|
86
|
-
},
|
|
87
|
-
"fft_settings": {
|
|
88
|
-
"windowlength_ms": 1000,
|
|
89
|
-
"log_transform": true,
|
|
90
|
-
"kalman_filter": false
|
|
91
|
-
},
|
|
92
|
-
"stft_settings": {
|
|
93
|
-
"windowlength_ms": 500,
|
|
94
|
-
"log_transform": true,
|
|
95
|
-
"kalman_filter": false
|
|
96
|
-
},
|
|
97
|
-
"bandpass_filter_settings": {
|
|
98
|
-
"segment_lengths_ms": {
|
|
99
|
-
"theta": 1000,
|
|
100
|
-
"alpha": 500,
|
|
101
|
-
"low beta": 333,
|
|
102
|
-
"high beta": 333,
|
|
103
|
-
"low gamma": 100,
|
|
104
|
-
"high gamma": 100,
|
|
105
|
-
"HFA": 100
|
|
106
|
-
},
|
|
107
|
-
"bandpower_features": {
|
|
108
|
-
"activity": true,
|
|
109
|
-
"mobility": false,
|
|
110
|
-
"complexity": false
|
|
111
|
-
},
|
|
112
|
-
"log_transform": true,
|
|
113
|
-
"kalman_filter": false
|
|
114
|
-
},
|
|
115
|
-
"kalman_filter_settings": {
|
|
116
|
-
"Tp": 0.1,
|
|
117
|
-
"sigma_w": 0.7,
|
|
118
|
-
"sigma_v": 1,
|
|
119
|
-
"frequency_bands": [
|
|
120
|
-
"theta",
|
|
121
|
-
"alpha",
|
|
122
|
-
"low beta",
|
|
123
|
-
"high beta",
|
|
124
|
-
"low gamma",
|
|
125
|
-
"high gamma",
|
|
126
|
-
"HFA"
|
|
127
|
-
]
|
|
128
|
-
},
|
|
129
|
-
"burst_settings": {
|
|
130
|
-
"threshold": 75,
|
|
131
|
-
"time_duration_s": 30,
|
|
132
|
-
"frequency_bands": [
|
|
133
|
-
"low beta",
|
|
134
|
-
"high beta",
|
|
135
|
-
"low gamma"
|
|
136
|
-
],
|
|
137
|
-
"burst_features": {
|
|
138
|
-
"duration": true,
|
|
139
|
-
"amplitude": true,
|
|
140
|
-
"burst_rate_per_s": true,
|
|
141
|
-
"in_burst": true
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
"sharpwave_analysis_settings": {
|
|
145
|
-
"sharpwave_features": {
|
|
146
|
-
"peak_left": true,
|
|
147
|
-
"peak_right": true,
|
|
148
|
-
"trough": true,
|
|
149
|
-
"width": true,
|
|
150
|
-
"prominence": true,
|
|
151
|
-
"interval": true,
|
|
152
|
-
"decay_time": true,
|
|
153
|
-
"rise_time": true,
|
|
154
|
-
"sharpness": true,
|
|
155
|
-
"rise_steepness": true,
|
|
156
|
-
"decay_steepness": true,
|
|
157
|
-
"slope_ratio": true
|
|
158
|
-
},
|
|
159
|
-
"filter_ranges_hz": [
|
|
160
|
-
[
|
|
161
|
-
5,
|
|
162
|
-
80
|
|
163
|
-
],
|
|
164
|
-
[
|
|
165
|
-
5,
|
|
166
|
-
30
|
|
167
|
-
]
|
|
168
|
-
],
|
|
169
|
-
"detect_troughs": {
|
|
170
|
-
"estimate": true,
|
|
171
|
-
"distance_troughs_ms": 10,
|
|
172
|
-
"distance_peaks_ms": 5
|
|
173
|
-
},
|
|
174
|
-
"detect_peaks": {
|
|
175
|
-
"estimate": true,
|
|
176
|
-
"distance_troughs_ms": 5,
|
|
177
|
-
"distance_peaks_ms": 10
|
|
178
|
-
},
|
|
179
|
-
"estimator": {
|
|
180
|
-
"mean": [
|
|
181
|
-
"peak_left",
|
|
182
|
-
"peak_right",
|
|
183
|
-
"trough",
|
|
184
|
-
"width",
|
|
185
|
-
"prominence",
|
|
186
|
-
"interval",
|
|
187
|
-
"decay_time",
|
|
188
|
-
"rise_time",
|
|
189
|
-
"sharpness",
|
|
190
|
-
"rise_steepness",
|
|
191
|
-
"decay_steepness",
|
|
192
|
-
"slope_ratio"
|
|
193
|
-
],
|
|
194
|
-
"median": null,
|
|
195
|
-
"max": [
|
|
196
|
-
"prominence",
|
|
197
|
-
"sharpness"
|
|
198
|
-
],
|
|
199
|
-
"min": null,
|
|
200
|
-
"var": null
|
|
201
|
-
},
|
|
202
|
-
"apply_estimator_between_peaks_and_troughs": true
|
|
203
|
-
},
|
|
204
|
-
"project_cortex_settings": {
|
|
205
|
-
"max_dist_mm": 20
|
|
206
|
-
},
|
|
207
|
-
"project_subcortex_settings": {
|
|
208
|
-
"max_dist_mm": 5
|
|
209
|
-
},
|
|
210
|
-
"coherence": {
|
|
211
|
-
"channels": [
|
|
212
|
-
[
|
|
213
|
-
"LFP_RIGHT_0",
|
|
214
|
-
"ECOG_RIGHT_0"
|
|
215
|
-
]
|
|
216
|
-
],
|
|
217
|
-
"frequency_bands": [
|
|
218
|
-
"high beta",
|
|
219
|
-
"low gamma"
|
|
220
|
-
],
|
|
221
|
-
"features": {
|
|
222
|
-
"mean_fband": true,
|
|
223
|
-
"max_fband": true,
|
|
224
|
-
"max_allfbands": true
|
|
225
|
-
},
|
|
226
|
-
"method": {
|
|
227
|
-
"coh": true,
|
|
228
|
-
"icoh": true
|
|
229
|
-
}
|
|
230
|
-
},
|
|
231
|
-
"fooof": {
|
|
232
|
-
"aperiodic": {
|
|
233
|
-
"exponent": true,
|
|
234
|
-
"offset": true,
|
|
235
|
-
"knee": true
|
|
236
|
-
},
|
|
237
|
-
"periodic": {
|
|
238
|
-
"center_frequency": false,
|
|
239
|
-
"band_width": false,
|
|
240
|
-
"height_over_ap": false
|
|
241
|
-
},
|
|
242
|
-
"windowlength_ms": 800,
|
|
243
|
-
"peak_width_limits": [
|
|
244
|
-
0.5,
|
|
245
|
-
12
|
|
246
|
-
],
|
|
247
|
-
"max_n_peaks": 3,
|
|
248
|
-
"min_peak_height": 0,
|
|
249
|
-
"peak_threshold": 2,
|
|
250
|
-
"freq_range_hz": [
|
|
251
|
-
2,
|
|
252
|
-
40
|
|
253
|
-
],
|
|
254
|
-
"knee": true
|
|
255
|
-
},
|
|
256
|
-
"nolds_features": {
|
|
257
|
-
"sample_entropy": false,
|
|
258
|
-
"correlation_dimension": false,
|
|
259
|
-
"lyapunov_exponent": true,
|
|
260
|
-
"hurst_exponent": false,
|
|
261
|
-
"detrended_fluctutaion_analysis": false,
|
|
262
|
-
"data": {
|
|
263
|
-
"raw": true,
|
|
264
|
-
"frequency_bands": [
|
|
265
|
-
"low beta"
|
|
266
|
-
]
|
|
267
|
-
}
|
|
268
|
-
},
|
|
269
|
-
"mne_connectiviy": {
|
|
270
|
-
"method": "plv",
|
|
271
|
-
"mode": "multitaper"
|
|
272
|
-
}
|
|
273
|
-
}
|
|
Binary file
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
,name,rereference,used,target,type,status,new_name
|
|
2
|
-
0,LFP_RIGHT_0,LFP_RIGHT_2,1,0,dbs,good,LFP_RIGHT_0-LFP_RIGHT_2
|
|
3
|
-
1,LFP_RIGHT_1,LFP_RIGHT_0,1,0,dbs,good,LFP_RIGHT_1-LFP_RIGHT_0
|
|
4
|
-
2,LFP_RIGHT_2,LFP_RIGHT_1,1,0,dbs,good,LFP_RIGHT_2-LFP_RIGHT_1
|
|
5
|
-
3,ECOG_RIGHT_0,average,1,0,ecog,good,ECOG_RIGHT_0-avgref
|
|
6
|
-
4,ECOG_RIGHT_1,average,1,0,ecog,good,ECOG_RIGHT_1-avgref
|
|
7
|
-
5,ECOG_RIGHT_2,average,1,0,ecog,good,ECOG_RIGHT_2-avgref
|
|
8
|
-
6,ECOG_RIGHT_3,average,1,0,ecog,good,ECOG_RIGHT_3-avgref
|
|
9
|
-
7,ECOG_RIGHT_4,average,1,0,ecog,good,ECOG_RIGHT_4-avgref
|
|
10
|
-
8,ECOG_RIGHT_5,average,1,0,ecog,good,ECOG_RIGHT_5-avgref
|
|
11
|
-
9,MOV_RIGHT,None,0,1,misc,good,MOV_RIGHT
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"participant_id": {
|
|
3
|
-
"Description": "Unique participant identifier"
|
|
4
|
-
},
|
|
5
|
-
"age": {
|
|
6
|
-
"Description": "Age of the participant at time of testing",
|
|
7
|
-
"Units": "years"
|
|
8
|
-
},
|
|
9
|
-
"sex": {
|
|
10
|
-
"Description": "Biological sex of the participant",
|
|
11
|
-
"Levels": {
|
|
12
|
-
"F": "female",
|
|
13
|
-
"M": "male"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"hand": {
|
|
17
|
-
"Description": "Handedness of the participant",
|
|
18
|
-
"Levels": {
|
|
19
|
-
"R": "right",
|
|
20
|
-
"L": "left",
|
|
21
|
-
"A": "ambidextrous"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"weight": {
|
|
25
|
-
"Description": "Body weight of the participant",
|
|
26
|
-
"Units": "kg"
|
|
27
|
-
},
|
|
28
|
-
"height": {
|
|
29
|
-
"Description": "Body height of the participant",
|
|
30
|
-
"Units": "m"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
name x y z size impedance
|
|
2
|
-
LFP_RIGHT_0 0.0118280802308701 -0.0151597482742092 -0.00776909845640809 n/a n/a
|
|
3
|
-
LFP_RIGHT_1 0.0123908351968705 -0.0142925082817827 -0.0059367986990887 n/a n/a
|
|
4
|
-
LFP_RIGHT_2 0.012930849148285701 -0.0134128499400548 -0.00409165661961333 n/a n/a
|
|
5
|
-
ECOG_RIGHT_0 0.037318173999999996 -0.048610126639999994 0.06179765474 n/a n/a
|
|
6
|
-
ECOG_RIGHT_1 0.0401598943 -0.037315929830000004 0.06431171618 n/a n/a
|
|
7
|
-
ECOG_RIGHT_2 0.040943035780000005 -0.02721778456 0.06409518407999999 n/a n/a
|
|
8
|
-
ECOG_RIGHT_3 0.03978395522 -0.01700523081 0.06386618136 n/a n/a
|
|
9
|
-
ECOG_RIGHT_4 0.03968813641 -0.005528024572 0.06168254254 n/a n/a
|
|
10
|
-
ECOG_RIGHT_5 0.03751915924 0.004304913414 0.060541263549999995 n/a n/a
|
|
11
|
-
MOV_RIGHT n/a n/a n/a n/a n/a
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
name type units low_cutoff high_cutoff description sampling_frequency status status_description
|
|
2
|
-
LFP_RIGHT_0 DBS µV 0.0 500.0 Deep Brain Stimulation 1000.0 good n/a
|
|
3
|
-
LFP_RIGHT_1 DBS µV 0.0 500.0 Deep Brain Stimulation 1000.0 good n/a
|
|
4
|
-
LFP_RIGHT_2 DBS µV 0.0 500.0 Deep Brain Stimulation 1000.0 good n/a
|
|
5
|
-
ECOG_RIGHT_0 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
6
|
-
ECOG_RIGHT_1 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
7
|
-
ECOG_RIGHT_2 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
8
|
-
ECOG_RIGHT_3 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
9
|
-
ECOG_RIGHT_4 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
10
|
-
ECOG_RIGHT_5 ECOG µV 0.0 500.0 Electrocorticography 1000.0 good n/a
|
|
11
|
-
MOV_RIGHT MISC µV 0.0 500.0 Miscellaneous 1000.0 good n/a
|
|
Binary file
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"TaskName": "gripforce",
|
|
3
|
-
"Manufacturer": "Brain Products",
|
|
4
|
-
"PowerLineFrequency": 60.0,
|
|
5
|
-
"SamplingFrequency": 1000.0,
|
|
6
|
-
"SoftwareFilters": "n/a",
|
|
7
|
-
"RecordingDuration": 19.0,
|
|
8
|
-
"RecordingType": "continuous",
|
|
9
|
-
"iEEGReference": "n/a",
|
|
10
|
-
"ECOGChannelCount": 6,
|
|
11
|
-
"SEEGChannelCount": 3,
|
|
12
|
-
"EEGChannelCount": 0,
|
|
13
|
-
"EOGChannelCount": 0,
|
|
14
|
-
"ECGChannelCount": 0,
|
|
15
|
-
"EMGChannelCount": 0,
|
|
16
|
-
"MiscChannelCount": 1,
|
|
17
|
-
"TriggerChannelCount": 0
|
|
18
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
Brain Vision Data Exchange Header File Version 1.0
|
|
2
|
-
; Written using pybv 0.7.5
|
|
3
|
-
|
|
4
|
-
[Common Infos]
|
|
5
|
-
Codepage=UTF-8
|
|
6
|
-
DataFile=sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.eeg
|
|
7
|
-
MarkerFile=sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.vmrk
|
|
8
|
-
DataFormat=BINARY
|
|
9
|
-
; Data orientation: MULTIPLEXED=ch1,pt1, ch2,pt1 ...
|
|
10
|
-
DataOrientation=MULTIPLEXED
|
|
11
|
-
NumberOfChannels=10
|
|
12
|
-
; Sampling interval in microseconds
|
|
13
|
-
SamplingInterval=1000.0
|
|
14
|
-
|
|
15
|
-
[Binary Infos]
|
|
16
|
-
BinaryFormat=IEEE_FLOAT_32
|
|
17
|
-
|
|
18
|
-
[Channel Infos]
|
|
19
|
-
; Each entry: Ch<Channel number>=<Name>,<Reference channel name>,
|
|
20
|
-
; <Resolution in "Unit">,<Unit>, Future extensions..
|
|
21
|
-
; Fields are delimited by commas, some fields might be omitted (empty).
|
|
22
|
-
; Commas in channel names are coded as "\1".
|
|
23
|
-
Ch1=LFP_RIGHT_0,,0.1,µV
|
|
24
|
-
Ch2=LFP_RIGHT_1,,0.1,µV
|
|
25
|
-
Ch3=LFP_RIGHT_2,,0.1,µV
|
|
26
|
-
Ch4=ECOG_RIGHT_0,,0.1,µV
|
|
27
|
-
Ch5=ECOG_RIGHT_1,,0.1,µV
|
|
28
|
-
Ch6=ECOG_RIGHT_2,,0.1,µV
|
|
29
|
-
Ch7=ECOG_RIGHT_3,,0.1,µV
|
|
30
|
-
Ch8=ECOG_RIGHT_4,,0.1,µV
|
|
31
|
-
Ch9=ECOG_RIGHT_5,,0.1,µV
|
|
32
|
-
Ch10=MOV_RIGHT,,0.1,µV
|
|
33
|
-
|
|
34
|
-
[Comment]
|
|
35
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
Brain Vision Data Exchange Marker File, Version 1.0
|
|
2
|
-
; Exported using pybv 0.7.5
|
|
3
|
-
|
|
4
|
-
[Common Infos]
|
|
5
|
-
Codepage=UTF-8
|
|
6
|
-
DataFile=sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.eeg
|
|
7
|
-
|
|
8
|
-
[Marker Infos]
|
|
9
|
-
; Each entry: Mk<Marker number>=<Type>,<Description>,<Position in data points>,
|
|
10
|
-
; <Size in data points>, <Channel number (0 = marker is related to all channels)>
|
|
11
|
-
; <Date (YYYYMMDDhhmmssuuuuuu)>
|
|
12
|
-
; Fields are delimited by commas, some fields might be omitted (empty).
|
|
13
|
-
; Commas in type or description text are coded as "\1".
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
x y z
|
|
2
|
-
-13.1 -67.7 69.1
|
|
3
|
-
-35.5 -60.0 66.0
|
|
4
|
-
-48.3 -55.1 58.2
|
|
5
|
-
-60.0 -51.8 48.0
|
|
6
|
-
-16.9 -51.6 78.0
|
|
7
|
-
-34.8 -49.3 71.7
|
|
8
|
-
-67.5 -47.1 31.0
|
|
9
|
-
-46.1 -43.7 61.1
|
|
10
|
-
-59.8 -39.6 53.3
|
|
11
|
-
-14.2 -39.1 81.1
|
|
12
|
-
-28.3 -31.2 76.0
|
|
13
|
-
-42.3 -30.7 70.2
|
|
14
|
-
-67.6 -30.1 41.2
|
|
15
|
-
-50.5 -24.4 64.4
|
|
16
|
-
-14.6 -22.7 80.2
|
|
17
|
-
-60.9 -18.7 50.9
|
|
18
|
-
-31.6 -16.9 75.2
|
|
19
|
-
-5.1 -12.6 77.3
|
|
20
|
-
-65.6 -10.8 37.8
|
|
21
|
-
-41.8 -10.2 67.0
|
|
22
|
-
-55.1 -4.01 53.2
|
|
23
|
-
-22.7 1.2 72.0
|
|
24
|
-
-5.8 2.8 74.8
|
|
25
|
-
-49.2 3.7 54.7
|
|
26
|
-
-34.5 3.9 66.5
|
|
27
|
-
-61.55 6.2 35.9
|
|
28
|
-
-63.6 8.3 25.7
|
|
29
|
-
-40.4 11.8 60.7
|
|
30
|
-
-48.7 14.5 50.5
|
|
31
|
-
-21.8 16.0 68.9
|
|
32
|
-
-58.2 18.2 27.3
|
|
33
|
-
-7.0 18.4 70.3
|
|
34
|
-
-36.3 19.9 59.6
|
|
35
|
-
-48.1 24.6 44.0
|
|
36
|
-
-56.8 28.52 20.8
|
|
37
|
-
-7.3 33.8 61.7
|
|
38
|
-
-22.2 35.0 57.2
|
|
39
|
-
-36.8 35.4 47.0
|
|
40
|
-
-46.8 35.6 36.0
|