-
Notifications
You must be signed in to change notification settings - Fork 0
/
coh_connectivity_processing.py
456 lines (388 loc) · 13.8 KB
/
coh_connectivity_processing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
"""Generates connectivity results from preprocessed data."""
import os
import numpy as np
from coh_handle_files import (
generate_analysiswise_fpath,
generate_sessionwise_fpath,
load_file,
)
from coh_connectivity import (
ConnectivityCoherence,
ConnectivityGranger,
ConnectivityMultivariateCoh,
ConnectivityTDE,
)
import coh_signal
def coherence_processing(
signal: coh_signal.Signal,
folderpath_processing: str,
dataset: str,
preprocessing: str,
analysis: str,
subject: str,
session: str,
task: str,
acquisition: str,
run: str,
verbose: bool,
save: bool,
) -> None:
"""Performs processing to generate coherence results.
PARAMETERS
----------
signal : coh_signal.Signal
- The pre-processed data to analyse.
folderpath_processing : str
- The folderpath to the location of the datasets' 'extras', e.g. the
annotations, processing settings, etc...
dataset : str
- The name of the dataset folder found in 'folderpath_data'.
preprocessing : str
- The name of the preprocessing used.
analysis : str
- The name of the analysis folder within "'folderpath_extras'/settings".
subject : str
- The name of the subject whose data will be analysed.
session : str
- The name of the session for which the data will be analysed.
task : str
- The name of the task for which the data will be analysed.
acquisition : str
- The name of the acquisition mode for which the data will be analysed.
run : str
- The name of the run for which the data will be analysed.
verbose : bool
Whether or not to show information about the processing.
save : bool
- Whether or not to save the results of the analysis.
"""
### Analysis setup
## Gets the relevant filepaths
generic_settings_fpath = generate_analysiswise_fpath(
os.path.join(folderpath_processing, "Settings", "Generic"),
analysis,
".json",
)
## Loads the analysis settings
analysis_settings = load_file(fpath=generic_settings_fpath)
### Data processing
## Coherence analysis
if analysis_settings["cwt_freq_range"] is not None:
cwt_freqs = np.arange(
analysis_settings["cwt_freq_range"][0],
analysis_settings["cwt_freq_range"][1]
+ analysis_settings["cwt_freq_resolution"],
analysis_settings["cwt_freq_resolution"],
)
coherence = ConnectivityCoherence(signal, verbose=verbose)
coherence.process(
con_methods=analysis_settings["con_methods"],
power_method=analysis_settings["power_method"],
seeds=analysis_settings["seeds"],
targets=analysis_settings["targets"],
fmin=analysis_settings["fmin"],
fmax=analysis_settings["fmax"],
fskip=analysis_settings["fskip"],
faverage=analysis_settings["faverage"],
tmin=analysis_settings["tmin"],
tmax=analysis_settings["tmax"],
mt_bandwidth=analysis_settings["mt_bandwidth"],
mt_adaptive=analysis_settings["mt_adaptive"],
mt_low_bias=analysis_settings["mt_low_bias"],
cwt_freqs=cwt_freqs,
cwt_n_cycles=analysis_settings["cwt_n_cycles"],
average_windows=analysis_settings["average_windows"],
average_timepoints=analysis_settings["average_timepoints"],
absolute_connectivity=analysis_settings["absolute_connectivity"],
block_size=analysis_settings["block_size"],
n_jobs=analysis_settings["n_jobs"],
)
if save:
coherence_fpath = generate_sessionwise_fpath(
os.path.join(folderpath_processing, "Data"),
dataset,
subject,
session,
task,
acquisition,
run,
f"connectivity-{preprocessing}-{analysis}",
".pkl",
)
coherence.save_results(coherence_fpath)
def tde_processing(
signal: coh_signal.Signal,
folderpath_processing: str,
dataset: str,
preprocessing: str,
analysis: str,
subject: str,
session: str,
task: str,
acquisition: str,
run: str,
verbose: bool,
save: bool,
) -> None:
"""Generate time delay estimation (TDE) values.
PARAMETERS
----------
signal : coh_signal.Signal
- The pre-processed data to analyse.
folderpath_processing : str
- The folderpath to the location of the datasets' 'extras', e.g. the
annotations, processing settings, etc...
dataset : str
- The name of the dataset folder found in 'folderpath_data'.
preprocessing : str
- The name of the preprocessing used.
analysis : str
- The name of the analysis folder within "'folderpath_extras'/settings".
subject : str
- The name of the subject whose data will be analysed.
session : str
- The name of the session for which the data will be analysed.
task : str
- The name of the task for which the data will be analysed.
acquisition : str
- The name of the acquisition mode for which the data will be analysed.
run : str
- The name of the run for which the data will be analysed.
verbose : bool
Whether or not to show information about the processing.
save : bool
- Whether or not to save the results of the analysis.
"""
### Analysis setup
## Gets the relevant filepaths
generic_settings_fpath = generate_analysiswise_fpath(
os.path.join(folderpath_processing, "Settings", "Generic"),
analysis,
".json",
)
## Loads the analysis settings
analysis_settings = load_file(fpath=generic_settings_fpath)
### Data processing
tde = ConnectivityTDE(signal, verbose=verbose)
tde.process(
seeds=analysis_settings["seeds"],
targets=analysis_settings["targets"],
freq_bands=analysis_settings["freq_bands"],
method=tuple(analysis_settings["method"]),
antisym=tuple(analysis_settings["antisym"]),
window_func=analysis_settings["window_func"],
conf_interval=analysis_settings["conf_interval"],
average_windows=analysis_settings["average_windows"],
n_jobs=analysis_settings["n_jobs"],
)
if save:
tde_fpath = generate_sessionwise_fpath(
os.path.join(folderpath_processing, "Data"),
dataset,
subject,
session,
task,
acquisition,
run,
f"connectivity-{preprocessing}-{analysis}",
"",
)
tde.save_results(tde_fpath, "pkl", ask_before_overwrite=False)
def mim_mic_processing(
signal: coh_signal.Signal,
folderpath_processing: str,
dataset: str,
preprocessing: str,
analysis: str,
subject: str,
session: str,
task: str,
acquisition: str,
run: str,
verbose: bool,
save: bool,
) -> None:
"""Performs processing to generate multivariate connectivity results for
the multivariate interaction measure (MIM) and/or the maximised imaginary
coherence (MIC).
PARAMETERS
----------
signal : coh_signal.Signal
- The pre-processed data to analyse.
folderpath_processing : str
- The folderpath to the location of the datasets' 'extras', e.g. the
annotations, processing settings, etc...
dataset : str
- The name of the dataset folder found in 'folderpath_data'.
preprocessing : str
- The name of the preprocessing used.
analysis : str
- The name of the analysis folder within "'folderpath_extras'/settings".
subject : str
- The name of the subject whose data will be analysed.
session : str
- The name of the session for which the data will be analysed.
task : str
- The name of the task for which the data will be analysed.
acquisition : str
- The name of the acquisition mode for which the data will be analysed.
run : str
- The name of the run for which the data will be analysed.
verbose : bool
Whether or not to show information about the processing.
save : bool
- Whether or not to save the results of the analysis.
"""
### Analysis setup
## Gets the relevant filepaths
generic_settings_fpath = generate_analysiswise_fpath(
os.path.join(folderpath_processing, "Settings", "Generic"),
analysis,
".json",
)
## Loads the analysis settings
analysis_settings = load_file(fpath=generic_settings_fpath)
### Data processing
## Multivariate connectivity analysis
if analysis_settings["cwt_freq_range"] is not None:
cwt_freqs = np.arange(
analysis_settings["cwt_freq_range"][0],
analysis_settings["cwt_freq_range"][1]
+ analysis_settings["cwt_freq_resolution"],
analysis_settings["cwt_freq_resolution"],
)
multivariate = ConnectivityMultivariateCoh(signal, verbose=verbose)
multivariate.process(
power_method=analysis_settings["power_method"],
seeds=analysis_settings["seeds"],
targets=analysis_settings["targets"],
fmin=analysis_settings["fmin"],
fmax=analysis_settings["fmax"],
fskip=analysis_settings["fskip"],
faverage=analysis_settings["faverage"],
tmin=analysis_settings["tmin"],
tmax=analysis_settings["tmax"],
mt_bandwidth=analysis_settings["mt_bandwidth"],
mt_adaptive=analysis_settings["mt_adaptive"],
mt_low_bias=analysis_settings["mt_low_bias"],
cwt_freqs=cwt_freqs,
cwt_n_cycles=analysis_settings["cwt_n_cycles"],
n_components=analysis_settings["n_components"],
average_windows=analysis_settings["average_windows"],
average_timepoints=analysis_settings["average_timepoints"],
block_size=analysis_settings["block_size"],
n_jobs=analysis_settings["n_jobs"],
)
if save:
multivariate_fpath = generate_sessionwise_fpath(
os.path.join(folderpath_processing, "Data"),
dataset,
subject,
session,
task,
acquisition,
run,
f"connectivity-{preprocessing}-{analysis}",
"",
)
multivariate.save_results(
multivariate_fpath, "pkl", ask_before_overwrite=False
)
def granger_processing(
signal: coh_signal.Signal,
folderpath_processing: str,
dataset: str,
preprocessing: str,
analysis: str,
subject: str,
session: str,
task: str,
acquisition: str,
run: str,
verbose: bool,
save: bool,
) -> None:
"""Performs processing to generate multivariate spectral Granger causality
results.
PARAMETERS
----------
signal : coh_signal.Signal
- The pre-processed data to analyse.
folderpath_processing : str
- The folderpath to the location of the datasets' 'extras', e.g. the
annotations, processing settings, etc...
dataset : str
- The name of the dataset folder found in 'folderpath_data'.
preprocessing : str
- The name of the preprocessing used.
analysis : str
- The name of the analysis folder within "'folderpath_extras'/settings".
subject : str
- The name of the subject whose data will be analysed.
session : str
- The name of the session for which the data will be analysed.
task : str
- The name of the task for which the data will be analysed.
acquisition : str
- The name of the acquisition mode for which the data will be analysed.
run : str
- The name of the run for which the data will be analysed.
verbose : bool
Whether or not to show information about the processing.
save : bool
- Whether or not to save the results of the analysis.
"""
### Analysis setup
## Gets the relevant filepaths
generic_settings_fpath = generate_analysiswise_fpath(
os.path.join(folderpath_processing, "Settings", "Generic"),
analysis,
".json",
)
## Loads the analysis settings
analysis_settings = load_file(fpath=generic_settings_fpath)
### Data processing
## Coherence analysis
if analysis_settings["cwt_freq_range"] is not None:
cwt_freqs = np.arange(
analysis_settings["cwt_freq_range"][0],
analysis_settings["cwt_freq_range"][1]
+ analysis_settings["cwt_freq_resolution"],
analysis_settings["cwt_freq_resolution"],
)
granger = ConnectivityGranger(signal, verbose=verbose)
granger.process(
power_method=analysis_settings["power_method"],
seeds=analysis_settings["seeds"],
targets=analysis_settings["targets"],
fmin=analysis_settings["fmin"],
fmax=analysis_settings["fmax"],
fskip=analysis_settings["fskip"],
faverage=analysis_settings["faverage"],
tmin=analysis_settings["tmin"],
tmax=analysis_settings["tmax"],
mt_bandwidth=analysis_settings["mt_bandwidth"],
mt_adaptive=analysis_settings["mt_adaptive"],
mt_low_bias=analysis_settings["mt_low_bias"],
cwt_freqs=cwt_freqs,
cwt_n_cycles=analysis_settings["cwt_n_cycles"],
n_components=analysis_settings["n_components"],
n_lags=analysis_settings["n_lags"],
average_windows=analysis_settings["average_windows"],
average_timepoints=analysis_settings["average_timepoints"],
block_size=analysis_settings["block_size"],
n_jobs=analysis_settings["n_jobs"],
)
if save:
granger_fpath = generate_sessionwise_fpath(
os.path.join(folderpath_processing, "Data"),
dataset,
subject,
session,
task,
acquisition,
run,
f"connectivity-{preprocessing}-{analysis}",
".pkl",
)
granger.save_results(granger_fpath, ask_before_overwrite=False)