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
|
@@ -1,290 +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": true,
|
|
17
|
-
"return_raw": true,
|
|
18
|
-
"bandpass_filter": false,
|
|
19
|
-
"stft": false,
|
|
20
|
-
"fft": true,
|
|
21
|
-
"sharpwave_analysis": true,
|
|
22
|
-
"fooof": false,
|
|
23
|
-
"bursts": true,
|
|
24
|
-
"linelength": true,
|
|
25
|
-
"coherence": false,
|
|
26
|
-
"nolds": false,
|
|
27
|
-
"mne_connectivity": false,
|
|
28
|
-
"bispectrum": false
|
|
29
|
-
},
|
|
30
|
-
"postprocessing": {
|
|
31
|
-
"feature_normalization": true,
|
|
32
|
-
"project_cortex": false,
|
|
33
|
-
"project_subcortex": false
|
|
34
|
-
},
|
|
35
|
-
"raw_resampling_settings": {
|
|
36
|
-
"resample_freq_hz": 1000
|
|
37
|
-
},
|
|
38
|
-
"documentation_normalization_options": [
|
|
39
|
-
"mean",
|
|
40
|
-
"median",
|
|
41
|
-
"zscore",
|
|
42
|
-
"zscore-median",
|
|
43
|
-
"quantile",
|
|
44
|
-
"power",
|
|
45
|
-
"robust",
|
|
46
|
-
"minmax"
|
|
47
|
-
],
|
|
48
|
-
"raw_normalization_settings": {
|
|
49
|
-
"normalization_time_s": 30,
|
|
50
|
-
"normalization_method": "zscore",
|
|
51
|
-
"clip": 3
|
|
52
|
-
},
|
|
53
|
-
"feature_normalization_settings": {
|
|
54
|
-
"normalization_time_s": 30,
|
|
55
|
-
"normalization_method": "zscore",
|
|
56
|
-
"clip": 3
|
|
57
|
-
},
|
|
58
|
-
"frequency_ranges_hz": {
|
|
59
|
-
"theta": [
|
|
60
|
-
4,
|
|
61
|
-
8
|
|
62
|
-
],
|
|
63
|
-
"alpha": [
|
|
64
|
-
8,
|
|
65
|
-
12
|
|
66
|
-
],
|
|
67
|
-
"low beta": [
|
|
68
|
-
13,
|
|
69
|
-
20
|
|
70
|
-
],
|
|
71
|
-
"high beta": [
|
|
72
|
-
20,
|
|
73
|
-
35
|
|
74
|
-
],
|
|
75
|
-
"low gamma": [
|
|
76
|
-
60,
|
|
77
|
-
80
|
|
78
|
-
],
|
|
79
|
-
"high gamma": [
|
|
80
|
-
90,
|
|
81
|
-
200
|
|
82
|
-
],
|
|
83
|
-
"HFA": [
|
|
84
|
-
200,
|
|
85
|
-
400
|
|
86
|
-
]
|
|
87
|
-
},
|
|
88
|
-
"fft_settings": {
|
|
89
|
-
"windowlength_ms": 1000,
|
|
90
|
-
"log_transform": true,
|
|
91
|
-
"kalman_filter": false
|
|
92
|
-
},
|
|
93
|
-
"stft_settings": {
|
|
94
|
-
"windowlength_ms": 500,
|
|
95
|
-
"log_transform": true,
|
|
96
|
-
"kalman_filter": false
|
|
97
|
-
},
|
|
98
|
-
"bandpass_filter_settings": {
|
|
99
|
-
"segment_lengths_ms": {
|
|
100
|
-
"theta": 1000,
|
|
101
|
-
"alpha": 500,
|
|
102
|
-
"low beta": 333,
|
|
103
|
-
"high beta": 333,
|
|
104
|
-
"low gamma": 100,
|
|
105
|
-
"high gamma": 100,
|
|
106
|
-
"HFA": 100
|
|
107
|
-
},
|
|
108
|
-
"bandpower_features": {
|
|
109
|
-
"activity": true,
|
|
110
|
-
"mobility": false,
|
|
111
|
-
"complexity": false
|
|
112
|
-
},
|
|
113
|
-
"log_transform": true,
|
|
114
|
-
"kalman_filter": false
|
|
115
|
-
},
|
|
116
|
-
"kalman_filter_settings": {
|
|
117
|
-
"Tp": 0.1,
|
|
118
|
-
"sigma_w": 0.7,
|
|
119
|
-
"sigma_v": 1,
|
|
120
|
-
"frequency_bands": [
|
|
121
|
-
"theta",
|
|
122
|
-
"alpha",
|
|
123
|
-
"low beta",
|
|
124
|
-
"high beta",
|
|
125
|
-
"low gamma",
|
|
126
|
-
"high gamma",
|
|
127
|
-
"HFA"
|
|
128
|
-
]
|
|
129
|
-
},
|
|
130
|
-
"burst_settings": {
|
|
131
|
-
"threshold": 75,
|
|
132
|
-
"time_duration_s": 30,
|
|
133
|
-
"frequency_bands": [
|
|
134
|
-
"low beta",
|
|
135
|
-
"high beta",
|
|
136
|
-
"low gamma"
|
|
137
|
-
],
|
|
138
|
-
"burst_features": {
|
|
139
|
-
"duration": true,
|
|
140
|
-
"amplitude": true,
|
|
141
|
-
"burst_rate_per_s": true,
|
|
142
|
-
"in_burst": true
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"sharpwave_analysis_settings": {
|
|
146
|
-
"sharpwave_features": {
|
|
147
|
-
"peak_left": false,
|
|
148
|
-
"peak_right": false,
|
|
149
|
-
"trough": false,
|
|
150
|
-
"width": false,
|
|
151
|
-
"prominence": true,
|
|
152
|
-
"interval": true,
|
|
153
|
-
"decay_time": false,
|
|
154
|
-
"rise_time": false,
|
|
155
|
-
"sharpness": true,
|
|
156
|
-
"rise_steepness": false,
|
|
157
|
-
"decay_steepness": false,
|
|
158
|
-
"slope_ratio": false
|
|
159
|
-
},
|
|
160
|
-
"filter_ranges_hz": [
|
|
161
|
-
[
|
|
162
|
-
5,
|
|
163
|
-
80
|
|
164
|
-
],
|
|
165
|
-
[
|
|
166
|
-
5,
|
|
167
|
-
30
|
|
168
|
-
]
|
|
169
|
-
],
|
|
170
|
-
"detect_troughs": {
|
|
171
|
-
"estimate": true,
|
|
172
|
-
"distance_troughs_ms": 10,
|
|
173
|
-
"distance_peaks_ms": 5
|
|
174
|
-
},
|
|
175
|
-
"detect_peaks": {
|
|
176
|
-
"estimate": true,
|
|
177
|
-
"distance_troughs_ms": 5,
|
|
178
|
-
"distance_peaks_ms": 10
|
|
179
|
-
},
|
|
180
|
-
"estimator": {
|
|
181
|
-
"mean": [
|
|
182
|
-
"interval"
|
|
183
|
-
],
|
|
184
|
-
"median": null,
|
|
185
|
-
"max": [
|
|
186
|
-
"prominence",
|
|
187
|
-
"sharpness"
|
|
188
|
-
],
|
|
189
|
-
"min": null,
|
|
190
|
-
"var": null
|
|
191
|
-
},
|
|
192
|
-
"apply_estimator_between_peaks_and_troughs": true
|
|
193
|
-
},
|
|
194
|
-
"project_cortex_settings": {
|
|
195
|
-
"max_dist_mm": 20
|
|
196
|
-
},
|
|
197
|
-
"project_subcortex_settings": {
|
|
198
|
-
"max_dist_mm": 5
|
|
199
|
-
},
|
|
200
|
-
"coherence": {
|
|
201
|
-
"channels": [
|
|
202
|
-
[
|
|
203
|
-
"STN_RIGHT_0",
|
|
204
|
-
"ECOG_RIGHT_0"
|
|
205
|
-
]
|
|
206
|
-
],
|
|
207
|
-
"frequency_bands": [
|
|
208
|
-
"high beta"
|
|
209
|
-
],
|
|
210
|
-
"features": {
|
|
211
|
-
"mean_fband": true,
|
|
212
|
-
"max_fband": true,
|
|
213
|
-
"max_allfbands": true
|
|
214
|
-
},
|
|
215
|
-
"method": {
|
|
216
|
-
"coh": true,
|
|
217
|
-
"icoh": true
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
"fooof": {
|
|
221
|
-
"aperiodic": {
|
|
222
|
-
"exponent": true,
|
|
223
|
-
"offset": true,
|
|
224
|
-
"knee": true
|
|
225
|
-
},
|
|
226
|
-
"periodic": {
|
|
227
|
-
"center_frequency": false,
|
|
228
|
-
"band_width": false,
|
|
229
|
-
"height_over_ap": false
|
|
230
|
-
},
|
|
231
|
-
"windowlength_ms": 800,
|
|
232
|
-
"peak_width_limits": [
|
|
233
|
-
0.5,
|
|
234
|
-
12
|
|
235
|
-
],
|
|
236
|
-
"max_n_peaks": 3,
|
|
237
|
-
"min_peak_height": 0,
|
|
238
|
-
"peak_threshold": 2,
|
|
239
|
-
"freq_range_hz": [
|
|
240
|
-
2,
|
|
241
|
-
40
|
|
242
|
-
],
|
|
243
|
-
"knee": true
|
|
244
|
-
},
|
|
245
|
-
"nolds_features": {
|
|
246
|
-
"sample_entropy": false,
|
|
247
|
-
"correlation_dimension": false,
|
|
248
|
-
"lyapunov_exponent": true,
|
|
249
|
-
"hurst_exponent": false,
|
|
250
|
-
"detrended_fluctutaion_analysis": false,
|
|
251
|
-
"data": {
|
|
252
|
-
"raw": true,
|
|
253
|
-
"frequency_bands": [
|
|
254
|
-
"low beta"
|
|
255
|
-
]
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
"mne_connectiviy": {
|
|
259
|
-
"method": "plv",
|
|
260
|
-
"mode": "multitaper"
|
|
261
|
-
},
|
|
262
|
-
"bispectrum": {
|
|
263
|
-
"f1s": [
|
|
264
|
-
5,
|
|
265
|
-
35
|
|
266
|
-
],
|
|
267
|
-
"f2s": [
|
|
268
|
-
5,
|
|
269
|
-
35
|
|
270
|
-
],
|
|
271
|
-
"compute_features_for_whole_fband_range": true,
|
|
272
|
-
"frequency_bands": [
|
|
273
|
-
"theta",
|
|
274
|
-
"alpha",
|
|
275
|
-
"low beta",
|
|
276
|
-
"high beta"
|
|
277
|
-
],
|
|
278
|
-
"components": {
|
|
279
|
-
"absolute": true,
|
|
280
|
-
"real": true,
|
|
281
|
-
"imag": true,
|
|
282
|
-
"phase": true
|
|
283
|
-
},
|
|
284
|
-
"bispectrum_features": {
|
|
285
|
-
"mean": true,
|
|
286
|
-
"sum": true,
|
|
287
|
-
"var": true
|
|
288
|
-
}
|
|
289
|
-
}
|
|
290
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: py-neuromodulation
|
|
3
|
-
Version: 0.0.1.dev0
|
|
4
|
-
Summary: Real-time analysis of intracranial neurophysiology recordings.
|
|
5
|
-
Author: Timon Merk
|
|
6
|
-
Maintainer: Timon Merk
|
|
7
|
-
License: MIT License
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2021 Interventional Cognitive Neuromodulation - Neumann Lab Berlin
|
|
10
|
-
|
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions:
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|
|
28
|
-
|
|
29
|
-
Project-URL: bugtracker, https://github.com/neuromodulation/py_neuromodulation/issues
|
|
30
|
-
Project-URL: repository, https://github.com/neuromodulation/py_neuromodulation
|
|
31
|
-
Keywords: real-time,eeg,ieeg,dbs,ecog,electrocorticography,deep-brain-stimulation,machine-learning
|
|
32
|
-
Classifier: Development Status :: 2 - Pre-Alpha
|
|
33
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
34
|
-
Classifier: Programming Language :: Python
|
|
35
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
36
|
-
Requires-Python: >=3.10
|
|
37
|
-
Description-Content-Type: text/x-rst
|
|
38
|
-
Provides-Extra: dev
|
|
39
|
-
License-File: LICENSE
|
|
40
|
-
|
|
41
|
-
py_neuromodulation
|
|
42
|
-
==================
|
|
43
|
-
|
|
44
|
-
.. image:: https://app.travis-ci.com/neuromodulation/py_neuromodulation.svg?branch=main
|
|
45
|
-
:target: https://app.travis-ci.com/neuromodulation/py_neuromodulation
|
|
46
|
-
|
|
47
|
-
Click this button to run the "example_BIDS.ipynb":
|
|
48
|
-
|
|
49
|
-
.. image:: https://mybinder.org/badge_logo.svg
|
|
50
|
-
:target: https://mybinder.org/v2/gh/neuromodulation/py_neuromodulation/HEAD
|
|
51
|
-
|
|
52
|
-
The py_neuromodulation toolbox allows for real time capable processing of multimodal electrophysiological data. The primary use is movement prediction for `adaptive deep brain stimulation <https://pubmed.ncbi.nlm.nih.gov/30607748/>`_.
|
|
53
|
-
|
|
54
|
-
Find the documentation here https://neuromodulation.github.io/py_neuromodulation/ for example usage and parametrization.
|
|
55
|
-
|
|
56
|
-
Setup
|
|
57
|
-
=====
|
|
58
|
-
|
|
59
|
-
For running this toolbox first create a new virtual conda environment and activate it:
|
|
60
|
-
|
|
61
|
-
.. code-block::
|
|
62
|
-
|
|
63
|
-
conda create -n pynm-test python=3.10
|
|
64
|
-
conda activate pynm-test
|
|
65
|
-
|
|
66
|
-
Then install the packages listed in the `pyproject.toml`.
|
|
67
|
-
|
|
68
|
-
.. code-block::
|
|
69
|
-
|
|
70
|
-
pip install .[dev]
|
|
71
|
-
pytest -v .
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
Optionally the ipython kernel can be specified to installed for the pynm-test conda environment:
|
|
75
|
-
|
|
76
|
-
.. code-block::
|
|
77
|
-
|
|
78
|
-
ipython kernel install --user --name=pynm-test
|
|
79
|
-
|
|
80
|
-
Then py_neuromodulation can be imported via:
|
|
81
|
-
|
|
82
|
-
.. code-block::
|
|
83
|
-
|
|
84
|
-
import py_neuromodulation as py_nm
|
|
85
|
-
|
|
86
|
-
The main modules include running real time enabled feature preprocessing based on `iEEG BIDS <https://www.nature.com/articles/s41597-019-0105-7>`_ data.
|
|
87
|
-
|
|
88
|
-
Different features can be enabled/disabled and parametrized in the `https://github.com/neuromodulation/py_neuromodulation/blob/main/pyneuromodulation/nm_settings.json>`_.
|
|
89
|
-
|
|
90
|
-
The current implementation mainly focuses band power and `sharpwave <https://www.sciencedirect.com/science/article/abs/pii/S1364661316302182>`_ feature estimation.
|
|
91
|
-
|
|
92
|
-
An example folder with a mock subject and derivate `feature <https://github.com/neuromodulation/py_neuromodulation/tree/main/examples/data>`_ set was estimated.
|
|
93
|
-
|
|
94
|
-
To run feature estimation given the example BIDS data run in root directory.
|
|
95
|
-
|
|
96
|
-
.. code-block::
|
|
97
|
-
|
|
98
|
-
python examples/example_BIDS.py
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
This will write a feature_arr.csv and different sidecar files in the 'examples/data/derivatives' folder.
|
|
102
|
-
|
|
103
|
-
For further documentation view `ParametrizationDefinition <ParametrizationDefinition.html#>`_ for description of necessary parametrization files.
|
|
104
|
-
`FeatureEstimationDemo <FeatureEstimationDemo.html#>`_ walks through an example feature estimation and explains sharpwave estimation.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
mne
|
|
2
|
-
filterpy>=1.4.5
|
|
3
|
-
fooof
|
|
4
|
-
imbalanced-learn
|
|
5
|
-
matplotlib>=3.3.4
|
|
6
|
-
mne-bids>=0.8
|
|
7
|
-
mne-connectivity
|
|
8
|
-
mrmr-selection
|
|
9
|
-
nolds
|
|
10
|
-
numba
|
|
11
|
-
numpy>=1.21.2
|
|
12
|
-
pandas>=1.2.2
|
|
13
|
-
pip
|
|
14
|
-
pynput
|
|
15
|
-
pybids
|
|
16
|
-
scikit-image
|
|
17
|
-
scikit-learn>=0.24.2
|
|
18
|
-
scikit-optimize
|
|
19
|
-
scipy>=1.7.1
|
|
20
|
-
seaborn>=0.11
|
|
21
|
-
xgboost
|
|
22
|
-
|
|
23
|
-
[dev]
|
|
24
|
-
black
|
|
25
|
-
pytest
|
|
26
|
-
pytest-cov
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
py_neuromodulation
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
py_neuromodulation/FieldTrip.py,sha256=cq4BIibMvcpyAHd7U8eEK4AhVSOTrRKXcywtgtc-Mg4,18597
|
|
2
|
-
py_neuromodulation/__init__.py,sha256=3aujkEqF4dzt8WKtK7gaolh782UsR5FFkqcg7fOtze4,296
|
|
3
|
-
py_neuromodulation/grid_cortex.tsv,sha256=DRnJEBwLBqyzCp3UwBL-Us_9h9GyokCorYl0HLsHSLk,683
|
|
4
|
-
py_neuromodulation/grid_subcortex.tsv,sha256=oCQDYLDdYSa1DAI9ybwECfuzWulFzXqKHyf7oZ1oDBM,25842
|
|
5
|
-
py_neuromodulation/helper.py,sha256=MBDMyP-JsqjqpmljCq2sqsLfYpihA-S8MXf_Nc3johs,2510
|
|
6
|
-
py_neuromodulation/nm_EpochStream.py,sha256=h6qmYfnyBbWwcOqZM3LmJQKPQjDhImxxOSza7kocrdA,2603
|
|
7
|
-
py_neuromodulation/nm_IO.py,sha256=BrsxpCbcyyxojU3yXJtEDkW1o5ZpxQiU3avaM-CGZPQ,12713
|
|
8
|
-
py_neuromodulation/nm_RMAP.py,sha256=UEh0vzjTF8UMO4uNgo0CqOeolviBF7zOr6owwdnupHM,7594
|
|
9
|
-
py_neuromodulation/nm_across_patient_decoding.py,sha256=9Mwu5o5cUAbtSP8BTx4c-BJfJZtk8wsMx_WH0VIegdI,38690
|
|
10
|
-
py_neuromodulation/nm_analysis.py,sha256=QD7lfi-6VA2v4E1-wCIMNs2GnZK9UvFMsr7slWyZGhA,38509
|
|
11
|
-
py_neuromodulation/nm_bispectra.py,sha256=DvhRIeq0jpiV34T95gGuj9KH_s5McMD2ctOAaZeIFSU,5617
|
|
12
|
-
py_neuromodulation/nm_bursts.py,sha256=EcM9vZs_-cYNoh8m4cBRzTxtK00G_0xey5Br-AbZkVc,7295
|
|
13
|
-
py_neuromodulation/nm_coherence.py,sha256=tMqxHIGbmqoyIVDUyv2D19T_qF3f_QWm65Tyg2R_awM,7420
|
|
14
|
-
py_neuromodulation/nm_cohortwrapper.py,sha256=eJVCBW745DB5MX7OBVJh2ZAT1vy-3-_2MCHnjrsO9qI,16643
|
|
15
|
-
py_neuromodulation/nm_decode.py,sha256=d15D-l0RUAcW8FfXyDcPaNwRpS9wuq1XK-pWmImPHDg,35645
|
|
16
|
-
py_neuromodulation/nm_define_nmchannels.py,sha256=8rjZoDIwhsIgdqfSxScaJvY9tNGWNLecTLxEmvhHMuE,11074
|
|
17
|
-
py_neuromodulation/nm_eval_timing.py,sha256=JcnLYyxjH8hvNX7rbJ4PEj-NZzqs2NMGOhyuQQuGiYc,8800
|
|
18
|
-
py_neuromodulation/nm_features.py,sha256=NviSf-ANQhE7zgIk4qZGsUeT7iW_Yn-qgkdu1wZgsJA,3436
|
|
19
|
-
py_neuromodulation/nm_features_abc.py,sha256=6CX8NHbtpGDY-l9K4CUomlRJVZHPmo6KHJX4RJ1YolM,917
|
|
20
|
-
py_neuromodulation/nm_filter.py,sha256=rWzRiu8u9iW78FKq5-xiTn1IzZUlKH0df3VUWSVrIq8,6437
|
|
21
|
-
py_neuromodulation/nm_fooof.py,sha256=gyaX9UKkFWtaK7eXJqUVcIZfE3JgK0t-md2dipDWj-o,5607
|
|
22
|
-
py_neuromodulation/nm_generator.py,sha256=YPa-1X5gCUVSpxTT9upbbY4kjqoVlRd5njQHBjgpAgk,1088
|
|
23
|
-
py_neuromodulation/nm_hjorth_raw.py,sha256=EvXOBr3k9Q5xypv1Gj8GFqa5EJ_wRYNDGgGnXCUekiM,2180
|
|
24
|
-
py_neuromodulation/nm_kalmanfilter.py,sha256=dgs7_XMBpLEE49l6aAVNA4d6ovTS63CZsAI472eG3JA,2006
|
|
25
|
-
py_neuromodulation/nm_linelength.py,sha256=0iZO7j6g7IeprvlEvWG6a_CaUL2p0sQKGiFgDrzYtxk,954
|
|
26
|
-
py_neuromodulation/nm_mne_connectivity.py,sha256=52Y5q-uvaZp3ZVLlJ5fELPSAn3YdA1b0vzar5a_neew,3895
|
|
27
|
-
py_neuromodulation/nm_nolds.py,sha256=KZr3ZKqvKJkYKh2BMYuuUMkP8hhmJTUgtLZrE8l-DqQ,3660
|
|
28
|
-
py_neuromodulation/nm_normalization.py,sha256=3IsZ-xQOqMlrOMjiSYnsm0_H8D0MD9EzAls5X_HvENo,8019
|
|
29
|
-
py_neuromodulation/nm_oscillatory.py,sha256=Sw_DROPpWUMIs5nm6SWP583ISL8QiI07lFJ0vwQ_F1U,12450
|
|
30
|
-
py_neuromodulation/nm_plots.py,sha256=bjGe6HVB7VNA7JvVabit_5s-m4rWMV2RK3pO9aiWA2E,17688
|
|
31
|
-
py_neuromodulation/nm_projection.py,sha256=g8VersyOGiWj3PjR_U6dvLttsp6CHi_GCyYnu_ha8uc,15309
|
|
32
|
-
py_neuromodulation/nm_rereference.py,sha256=eleKoJyml6r7b8jH_1dDSUVD0gicfb9zKTJZcS3VTk4,3167
|
|
33
|
-
py_neuromodulation/nm_resample.py,sha256=MSMu8gvmrYZ194fAVJdlB_4yEkuGKHgHrLd11zBDRY0,1122
|
|
34
|
-
py_neuromodulation/nm_run_analysis.py,sha256=xrjcKYulMMAZeNmEeaiSxK93TxRDs3OUyyjs8ig3gCk,14607
|
|
35
|
-
py_neuromodulation/nm_settings.json,sha256=yBjTbKQ3Wmq-l_IKLuwzEN0LBJZa4ovOGSfnCnk7cTE,6981
|
|
36
|
-
py_neuromodulation/nm_settings.py,sha256=7d17vwSGrABxQJ7C6x3FqP8kdboUFpm5LrN4djoVlFA,1775
|
|
37
|
-
py_neuromodulation/nm_sharpwaves.py,sha256=zgoEs7GxqengbYYSs3CLZ4HmEyKL7KJ01T5Q8D0zbjE,17493
|
|
38
|
-
py_neuromodulation/nm_stats.py,sha256=8I8MzMuUSP38a356dT2p5hkKuyrTp5gFJ4h1f7K_IMs,15876
|
|
39
|
-
py_neuromodulation/nm_stream_abc.py,sha256=rc1B79CDOWAVBYe6eNFKnnaoYqoLsVbDnCzH1Np4Hsw,7576
|
|
40
|
-
py_neuromodulation/nm_stream_offline.py,sha256=9xHy5jY8YWEU7QkQ78phdwq0qzB9Wmvq6XGRfIlS234,7835
|
|
41
|
-
py_neuromodulation/data/README,sha256=Xw-QRZXGq2YefZ3ZDvrK736DruAkFVeaqOn70BzFnPs,714
|
|
42
|
-
py_neuromodulation/data/dataset_description.json,sha256=4LRbbS8x0ifRZhqTNOrtPmm306AmipYnl9duL3OXHrA,130
|
|
43
|
-
py_neuromodulation/data/participants.json,sha256=o24uxJ95GE_b3SAA6nQg6G8Ene6zPL_u02wYT38A8OY,788
|
|
44
|
-
py_neuromodulation/data/participants.tsv,sha256=rPmG1JoJ2O0xbhlLHDJszAK-QSR_7gkSiaykn-HaXvo,79
|
|
45
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/MOV_aligned_features_ch_ECOG_RIGHT_0_all.png,sha256=2rh1gfB4K_nAzRilS1Q1U_c1K0l-ixQnxRt7ErQv9vw,78507
|
|
46
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/all_feature_plt.pdf,sha256=T9MUq0ybhFfAvlngswc7IwRZwNAO_OBJiXgfLy4iWfM,113368
|
|
47
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_FEATURES.csv,sha256=deeo_mZxq64taqK4nNSSqgku0mVZU6_LWS6OsqywGyM,229130
|
|
48
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_LM_ML_RES.p,sha256=IaAHXuJlZG-pGfiPWycSPqFuNDNDyVOP38yhgzGDDoU,1027034
|
|
49
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_SETTINGS.json,sha256=08YaBHI_lKx4VBuXhJE288pspweI7OaRdsBEyGqqd2I,6694
|
|
50
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_SIDECAR.json,sha256=CnUYu5u5sqEzDftuNsHrDl03mvSort2ta-RV1ZLZrdc,97
|
|
51
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_decoding_performance.png,sha256=7wzfRupi6UdK-NKcqKxx2ASBuUoV4siH6OISz8gaXzw,93276
|
|
52
|
-
py_neuromodulation/data/derivatives/sub-testsub_ses-EphysMedOff_task-gripforce_run-0/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_nm_channels.csv,sha256=GDmeOFl7EcPDUD3wa9PRxPY79UYpphbATfA7Hn2YOyY,634
|
|
53
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/sub-testsub_ses-EphysMedOff_scans.tsv,sha256=zu2Ym07qo164jbClxfT3L960-nHQeRo6WG3QmbpNgl0,91
|
|
54
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_space-mni_coordsystem.json,sha256=NzLVNODlEAIDwTk49_YcbOUjWiRMdZ8toZYBpmAWS1A,123
|
|
55
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_space-mni_electrodes.tsv,sha256=eHBvuZa9WJGI5LSid2TBRxzgyacK7AwrFGKEByl3i4w,733
|
|
56
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_channels.tsv,sha256=cZSFnJqjRK8mrtTN271U9L6H_Lo2kuUHimhcKcv9xdY,790
|
|
57
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.eeg,sha256=NnQeMDrKpeK3lctIZ5Bzh85UMTs5OCUCaivn_NU5rc4,760040
|
|
58
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.json,sha256=A0zHnbKXKLBmPly9NshT2B6lsrogFZeIAMXeTzwEYyk,492
|
|
59
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.vhdr,sha256=hUwxHtbCZMo16-e06xJ1rVqgs1Ac8LtP8_5AmhjeDw8,1023
|
|
60
|
-
py_neuromodulation/data/sub-testsub/ses-EphysMedOff/ieeg/sub-testsub_ses-EphysMedOff_task-gripforce_run-0_ieeg.vmrk,sha256=WV1mN_QGC1WlFh5qcKzXpedyMhtXVHVwgV5v8n1-_Zw,553
|
|
61
|
-
py_neuromodulation/plots/STN_surf.mat,sha256=Hh2nfQRmP0TYIt8SWV-ajKnC8yk7EmBoAj1c6RMoi9g,124526
|
|
62
|
-
py_neuromodulation/plots/Vertices.mat,sha256=k72WB8-0Datt-bRScxcfpp38LBPHV34zzodS49kQAgs,3709780
|
|
63
|
-
py_neuromodulation/plots/faces.mat,sha256=gWSr-9qNxsAPoG8q-muNnaFZHVHGKqnKN0j3Q1JfMk4,2859245
|
|
64
|
-
py_neuromodulation/plots/grid.mat,sha256=G3MYIVcvk8lbf_kKWIe3lZZ4d0QV6HkoLsOFN1A2vhE,775
|
|
65
|
-
py_neuromodulation/py_neuromodulation.egg-info/PKG-INFO,sha256=qTwplxI-l0mHOa52B_AjP_lODr_weBsh5ArlFBNC6u4,4651
|
|
66
|
-
py_neuromodulation/py_neuromodulation.egg-info/SOURCES.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
py_neuromodulation/py_neuromodulation.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
68
|
-
py_neuromodulation/py_neuromodulation.egg-info/requires.txt,sha256=796jIT4geNGiOXR7sATwqQh7IQe7ePEhVaWHR59tFiA,281
|
|
69
|
-
py_neuromodulation/py_neuromodulation.egg-info/top_level.txt,sha256=uqanKxhNbYqoz0TQijlQFGWLntCySmjJwr1c_wglN98,19
|
|
70
|
-
py_neuromodulation-0.0.2.dist-info/LICENSE,sha256=V6yfss2JKJxeY-TsaEVqVomfd8ttziMyB9ik5L-BI7o,1139
|
|
71
|
-
py_neuromodulation-0.0.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
72
|
-
py_neuromodulation-0.0.2.dist-info/METADATA,sha256=_8bS4rMoSd9MZeQO64SUblowwLbgJs-kQxycrVBxOzE,5311
|
|
73
|
-
py_neuromodulation-0.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|