-
Notifications
You must be signed in to change notification settings - Fork 0
/
ADpg_functions.py
4356 lines (3469 loc) · 233 KB
/
ADpg_functions.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os
import time
import numpy as np
import scipy.signal
import pandas as pd
import scipy.stats
from mne import filter
import pingouin as pg
import statsmodels.api as sm
from itertools import combinations
import pickle
import plotly.graph_objects as go
import plotly.io as pio
from plotly.subplots import make_subplots
import plotly.express as px
import plotly.offline
from tvb.simulator.lab import *
from tvb.simulator.models.jansen_rit_david_mine import JansenRitDavid2003, JansenRit1995
from tvb.simulator.models.JansenRit_WilsonCowan import JansenRit_WilsonCowan
## Folder structure - Local
if "LCCN_Local" in os.getcwd():
data_folder = "E:\\LCCN_Local\PycharmProjects\ADprogress_data\\"
import sys
sys.path.append("E:\\LCCN_Local\\PycharmProjects\\")
from toolbox.fft import FFTpeaks
from toolbox.signals import epochingTool
from toolbox.fc import PLV
from toolbox.dynamics import dynamic_fc, kuramoto_order
from toolbox.littlebrains import addpial
## Folder structure - CLUSTER
elif "t192" in os.getcwd():
wd = "/home/t192/t192950/mpi/"
data_folder = wd + "ADprogress_data/"
import sys
sys.path.append(wd)
from toolbox.fft import FFTpeaks
from toolbox.signals import epochingTool
from toolbox.fc import PLV
from toolbox.dynamics import dynamic_fc, kuramoto_order
from toolbox.littlebrains import addpial
## Folder structure - CLUSTER BRIGIT
else:
wd = "/mnt/lustre/home/jescab01/"
data_folder = wd + "ADprogress_data/"
import sys
sys.path.append(wd)
from toolbox.fft import FFTpeaks
from toolbox.signals import epochingTool
from toolbox.fc import PLV
from toolbox.dynamics import dynamic_fc, kuramoto_order
from toolbox.littlebrains import addpial
class ProteinSpreadModel:
# Spread model variables following Alexandersen 2022.
# M is an arbitrary unit of concentration
def __init__(self, initConn, AB_initMap, TAU_initMAp, ABt_initMap, TAUt_initMap, AB_initdam, TAU_initdam,
init_He, init_Hi, init_taue, init_taui, rho=0.001, toxicSynergy=2,
prodAB=2, clearAB=2, transAB2t=2, clearABt=1.5,
prodTAU=2, clearTAU=2, transTAU2t=2, clearTAUt=2.66,
AB_damrate=1, TAU_damrate=1, TAU_dam2SC=0.2,
cABexc=0.8, cABinh=0.4, cTAU=1.8, th_exc=False):
self.rho = {"label": "rho", "value": np.array([rho]), "doc": "effective diffusion constant (cm/year)"}
self.prodAB = {"label": ["k0", "a0"], "value": np.array([prodAB]), "doc": "production rate for a-beta (M/year)"}
self.clearAB = {"label": ["k1", "a1"], "value": np.array([clearAB]),
"doc": "clearance rate for a-beta (1/M*year)"}
self.transAB2t = {"label": ["k2", "a2"], "value": np.array([transAB2t]),
"doc": "transformation of a-beta into its toxic variant (M/year)"}
self.clearABt = {"label": ["k1t", "a1t"], "value": np.array([clearABt]),
"doc": "clearance rate for toxic a-beta (1/M*year)"}
self.prodTAU = {"label": ["k3", "b0"], "value": np.array([prodTAU]),
"doc": "production rate for p-tau (M/year)"}
self.clearTAU = {"label": ["k4", "b1"], "value": np.array([clearTAU]),
"doc": "clearance rate for p-tau (1/M*year)"}
self.transTAU2t = {"label": ["k5", "b2"], "value": np.array([transTAU2t]),
"doc": "transformation of p-tau into its toxic variant (M/year)"} \
if len(np.array([transTAU2t]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([transTAU2t]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.clearTAUt = {"label": ["k4t", "b1t"], "value": np.array([clearTAUt]),
"doc": "clearance rate for toxic p-tau (1/M*year)"}
self.toxicSynergy = {"label": ["k6", "b3"], "value": np.array([toxicSynergy]),
"doc": "synergistic effect between toxic a-beta and toxic p-tau production (1/M^2*year)"} \
if len(np.array([toxicSynergy]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([toxicSynergy]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.AB_initMap = {"label": "", "value": AB_initMap, "doc": "mapping of initial roi concentration of AB"}
self.TAU_initMap = {"label": "", "value": TAU_initMAp, "doc": "mapping of initial roi concentration of TAU"}
self.ABt_initMap = {"label": "", "value": ABt_initMap,
"doc": "mapping of initial roi concentration of AB toxic"}
self.TAUt_initMap = {"label": "", "value": TAUt_initMap,
"doc": "mapping of initial roi concentration of TAU toxic"}
AB_initdam = AB_initdam if type(AB_initdam) == list else [AB_initdam for roi in initConn.region_labels]
self.AB_initdam = {"label": "q(AB)", "value": AB_initdam, "doc": "initial damage/impact variable of AB"}
TAU_initdam = TAU_initdam if type(TAU_initdam) == list else [TAU_initdam for roi in initConn.region_labels]
self.TAU_initdam = {"label": "q(TAU)", "value": TAU_initdam,
"doc": "initial damage/impact of hyperphosphorilated TAU"}
self.AB_damrate = {"label": "k(AB)", "value": np.array([AB_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.TAU_damrate = {"label": "K(TAU)", "value": np.array([TAU_damrate]),
"doc": "rate of damage/impact for hyperphosphorilated TAU (M/year)"}
self.TAU_dam2SC = {"label": "gamma", "value": np.array([TAU_dam2SC]),
"doc": "constant for the damage of structural connectivity by hpTAU (cm/year)"}
self.initConn = {"label": "SC", "value": initConn, "doc": "Initial state for structural connectivity"}
init_He = init_He if type(init_He) == list else [init_He for roi in initConn.region_labels]
self.init_He = {"label": "He", "value": init_He, "range": [2.6, 9.75],
"doc": "Initial state for excitation. def3.25"}
init_Hi = init_Hi if type(init_Hi) == list else [init_Hi for roi in initConn.region_labels]
self.init_Hi = {"label": "Hi", "value": init_Hi, "range": [17.6, 40],
"doc": "Initial state for inhibition. def22"}
init_taue = init_taue if type(init_taue) == list else [init_taue for roi in initConn.region_labels]
self.init_taue = {"label": "tau_e", "value": init_taue, "range": [6, 20],
"doc": "Initial state for delays (exc). def10"}
init_taui = init_taui if type(init_taui) == list else [init_taui for roi in initConn.region_labels]
self.init_taui = {"label": "tau_e", "value": init_taui, "range": [12, 40],
"doc": "Initial state for delays (inh). def16"}
self.cABexc = {"label": "c_beta", "value": np.array([cABexc]),
"doc": "constant for the effect of AB on excitation"}
self.cABinh = {"label": "c_beta2", "value": np.array([cABinh]),
"doc": "constant for the effect of AB on inhibition"}
self.cTAU = {"label": "c_tau", "value": np.array([cTAU]), "doc": "constant for the effect of pTau on delays"}
self.th_exc = {"value": th_exc, "doc": "Decide whether updating thalamus values."}
def run(self, time, dt, sim=False, sim_dt=1):
## 1. Initiate state variables
state_variables = np.asarray([self.AB_initMap["value"],
self.ABt_initMap["value"],
self.TAU_initMap["value"],
self.TAUt_initMap["value"],
self.AB_initdam["value"],
self.TAU_initdam["value"],
self.init_He["value"],
self.init_Hi["value"],
self.init_taue["value"],
self.init_taui["value"]])
weights = self.initConn["value"].weights
evolution_sv = [state_variables.copy()]
print("Simulating protein spread . for %0.2fts (dt=%0.2f) _simulate: %s" % (time, dt, sim))
if (type(sim_dt) == int) | (type(sim_dt) == float):
tsel = np.arange(0, time, sim_dt)
else:
tsel = sim_dt
if (sim) and (0 in tsel):
subj, model, g, s, simLength = sim
raw_data, raw_time, fftp, plv, plv_emp, plv_r, regionLabels, _, transient, reqtime \
= simulate_v2(subj, weights, model, g, s, p_th=0.1085, sigma=0, sv=state_variables[6:],
t=simLength)
evolution_net = [
[weights, raw_data, raw_time, fftp, plv, plv_emp, plv_r, regionLabels, simLength, transient]]
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
0, time, reqtime, plv_r))
else:
evolution_net = [[weights]]
print(" . ts%0.2f/%0.2f" % (0, time), end="\r")
## 2. loop over time
for t in np.arange(dt, time, dt):
deriv = self.dfun(state_variables, self.Laplacian(weights))
state_variables = state_variables + dt * deriv
# if type(self.th_exc["value"]) == list:
# mask = self.th_exc["value"]
# state_variables[:, mask] = state_variables[:, mask] + dt * deriv[:, mask]
# else:
## Update weights by damage function
TAUdam = state_variables[5]
dWeights = -self.TAU_dam2SC["value"] * (
np.tile(TAUdam, (len(TAUdam), 1)).transpose() + np.tile(TAUdam, (len(TAUdam), 1)))
# TODO weights cannot be less than 0
weights = weights + dt * dWeights
weights[weights < 0] = 0
if sim and (t in tsel):
subj, model, g, s, simLength = sim
raw_data, raw_time, fftp, plv, plv_emp, plv_r, regionLabels, _, transient, reqtime \
= simulate_v2(subj, weights, model, g, s, p_th=0.1085, sigma=0, sv=state_variables[6:], t=simLength)
evolution_net.append(
[weights, raw_data, raw_time, fftp, plv, plv_emp, plv_r, regionLabels, simLength, transient])
evolution_sv.append(state_variables)
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
t, time, reqtime, plv_r))
else:
evolution_sv.append(state_variables.copy())
evolution_net.append([weights])
print(" . ts%0.2f/%0.2f" % (t, time), end="\r")
return [np.arange(0, time, dt), evolution_sv, evolution_net]
def Laplacian(self, weights):
# Weighted adjacency, Diagonal and Laplacian matrices
Wij = np.divide(weights, np.square(self.initConn["value"].tract_lengths),
where=np.square(self.initConn["value"].tract_lengths) != 0,
# Where to compute division; else out
out=np.zeros_like(weights)) # array allocation
Dii = np.eye(len(Wij)) * np.sum(Wij, axis=0)
Lij = Dii - Wij
return Lij
def dfun(self, state_variables, Lij):
# Here we want to model the spread of proteinopathies.
# Approach without activity dependent spread/generation. Following Alexandersen 2022.
AB = state_variables[0]
ABt = state_variables[1]
TAU = state_variables[2]
TAUt = state_variables[3]
ABdam = state_variables[4]
TAUdam = state_variables[5]
He_ = state_variables[6]
Hi_ = state_variables[7]
taue_ = state_variables[8]
taui_ = state_variables[9]
# Unpack heterogeneous rho
[rho_AB, rho_ABt, rho_TAU, rho_TAUt] = self.rho["value"][0] \
if len(self.rho["value"].shape) == 2 else self.rho["value"].repeat(4)
# Derivatives
### Amyloid-beta
dAB = -rho_AB * np.sum(Lij * AB, axis=1) + self.prodAB["value"] - self.clearAB["value"] * AB - \
self.transAB2t["value"] * AB * ABt
dABt = -rho_ABt * np.sum(Lij * ABt, axis=1) - self.clearABt["value"] * ABt + self.transAB2t[
"value"] * AB * ABt
### (hyperphosphorilated) Tau
dTAU = -rho_TAU * np.sum(Lij * TAU, axis=1) + self.prodTAU["value"] - self.clearTAU["value"] * TAU - \
self.transTAU2t["value"] * TAU * TAUt - self.toxicSynergy["value"] * ABt * TAU * TAUt
dTAUt = -rho_TAUt * np.sum(Lij * TAUt, axis=1) - self.clearTAUt["value"] * TAUt + self.transTAU2t[
"value"] * TAU * TAUt + self.toxicSynergy["value"] * ABt * TAU * TAUt
dABdam = self.AB_damrate["value"] * ABt * (1 - ABdam)
dTAUdam = self.TAU_damrate["value"] * TAUt * (1 - TAUdam)
## ACTIVATION transfers: a(exc), b(inhi)
dHe = (self.cABexc["value"] * ABdam * ((self.init_He["range"][1] - He_) - self.cTAU["value"] * TAUdam) * (
He_ - self.init_He["range"][0]))
dHi = - self.cABinh["value"] * ABdam * (Hi_ - self.init_Hi["range"][0])
## FREQUENCY transfers: c(delays)
dtaue = self.cTAU["value"] * TAUdam * (self.init_taue["range"][1] - taue_)
dtaui = taui_ - taui_ # By now, taui does not change
derivative = np.array([dAB, dABt, dTAU, dTAUt, dABdam, dTAUdam, dHe, dHi, dtaue, dtaui])
return derivative
class CircularADpgModel:
# Spread model variables following Alexandersen 2022.
# M is an arbitrary unit of concentration
def __init__(self, initConn, AB_initMap, TAU_initMAp, ABt_initMap, TAUt_initMap,
AB_initdam, TAU_initdam, POW_initdam,
init_He, init_Hi, init_taue, init_taui, rho=0.001, toxicSynergy=2,
prodAB=2, clearAB=2, transAB2t=2, clearABt=1.5,
prodTAU=2, clearTAU=2, transTAU2t=2, clearTAUt=2.66,
AB_damrate=1, TAU_damrate=1, TAU_dam2SC=0.2, POW_damrate=1, maxPOWdam=2,
cABexc=0.8, cABinh=0.4, cTAU=1.8):
self.rho = {"label": "rho", "value": np.array([rho]), "doc": "effective diffusion constant (cm/year)"}
self.prodAB = {"label": ["k0", "a0"], "value": np.array([prodAB]), "doc": "production rate for a-beta (M/year)"}
self.clearAB = {"label": ["k1", "a1"], "value": np.array([clearAB]),
"doc": "clearance rate for a-beta (1/M*year)"}
self.transAB2t = {"label": ["k2", "a2"], "value": np.array([transAB2t]),
"doc": "transformation of a-beta into its toxic variant (M/year)"}
self.clearABt = {"label": ["k1t", "a1t"], "value": np.array([clearABt]),
"doc": "clearance rate for toxic a-beta (1/M*year)"}
self.prodTAU = {"label": ["k3", "b0"], "value": np.array([prodTAU]),
"doc": "production rate for p-tau (M/year)"}
self.clearTAU = {"label": ["k4", "b1"], "value": np.array([clearTAU]),
"doc": "clearance rate for p-tau (1/M*year)"}
self.transTAU2t = {"label": ["k5", "b2"], "value": np.array([transTAU2t]),
"doc": "transformation of p-tau into its toxic variant (M/year)"} \
if len(np.array([transTAU2t]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([transTAU2t]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.clearTAUt = {"label": ["k4t", "b1t"], "value": np.array([clearTAUt]),
"doc": "clearance rate for toxic p-tau (1/M*year)"}
self.toxicSynergy = {"label": ["k6", "b3"], "value": np.array([toxicSynergy]),
"doc": "synergistic effect between toxic a-beta and toxic p-tau production (1/M^2*year)"} \
if len(np.array([toxicSynergy]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([toxicSynergy]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.AB_initMap = {"label": "", "value": AB_initMap, "doc": "mapping of initial roi concentration of AB"}
self.TAU_initMap = {"label": "", "value": TAU_initMAp, "doc": "mapping of initial roi concentration of TAU"}
self.ABt_initMap = {"label": "", "value": ABt_initMap,
"doc": "mapping of initial roi concentration of AB toxic"}
self.TAUt_initMap = {"label": "", "value": TAUt_initMap,
"doc": "mapping of initial roi concentration of TAU toxic"}
AB_initdam = AB_initdam if type(AB_initdam) == list else [AB_initdam for roi in initConn.region_labels]
self.AB_initdam = {"label": "q(AB)", "value": AB_initdam, "doc": "initial damage/impact variable of AB"}
TAU_initdam = TAU_initdam if type(TAU_initdam) == list else [TAU_initdam for roi in initConn.region_labels]
self.TAU_initdam = {"label": "q(TAU)", "value": TAU_initdam,
"doc": "initial damage/impact of hyperphosphorilated TAU"}
POW_initdam = POW_initdam if type(POW_initdam) == list else [POW_initdam for roi in initConn.region_labels]
self.POW_initdam = {"label": "q(POW)", "value": POW_initdam, "doc": "initial damage/impact variable of POWER"}
self.maxPOWdam = {"label": "q(POW)", "value": np.array([maxPOWdam]),
"doc": "max damage/impact variable of POWER"}
self.AB_damrate = {"label": "k(AB)", "value": np.array([AB_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.TAU_damrate = {"label": "K(TAU)", "value": np.array([TAU_damrate]),
"doc": "rate of damage/impact for hyperphosphorilated TAU (M/year)"}
self.TAU_dam2SC = {"label": "gamma", "value": np.array([TAU_dam2SC]),
"doc": "constant for the damage of structural connectivity by hpTAU (cm/year)"}
self.POW_damrate = {"label": "", "value": np.array([POW_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.initConn = {"label": "SC", "value": initConn, "doc": "Initial state for structural connectivity"}
init_He = init_He if type(init_He) == list else [init_He for roi in initConn.region_labels]
self.init_He = {"label": "He", "value": init_He, "range": [2.6, 9.75],
"doc": "Initial state for excitation. def3.25"}
init_Hi = init_Hi if type(init_Hi) == list else [init_Hi for roi in initConn.region_labels]
self.init_Hi = {"label": "Hi", "value": init_Hi, "range": [17.6, 40],
"doc": "Initial state for inhibition. def22"}
init_taue = init_taue if type(init_taue) == list else [init_taue for roi in initConn.region_labels]
self.init_taue = {"label": "tau_e", "value": init_taue, "range": [6, 20],
"doc": "Initial state for delays (exc). def10"}
init_taui = init_taui if type(init_taui) == list else [init_taui for roi in initConn.region_labels]
self.init_taui = {"label": "tau_e", "value": init_taui, "range": [12, 40],
"doc": "Initial state for delays (inh). def16"}
self.cABexc = {"label": "c_beta", "value": np.array([cABexc]),
"doc": "constant for the effect of AB on excitation"}
self.cABinh = {"label": "c_beta2", "value": np.array([cABinh]),
"doc": "constant for the effect of AB on inhibition"}
self.cTAU = {"label": "c_tau", "value": np.array([cTAU]), "doc": "constant for the effect of pTau on delays"}
def run(self, time, dt, sim=False, sim_dt=1):
## 1. Initiate state variables
state_variables = np.asarray([self.AB_initMap["value"],
self.ABt_initMap["value"],
self.TAU_initMap["value"],
self.TAUt_initMap["value"],
self.AB_initdam["value"],
self.TAU_initdam["value"],
self.init_He["value"],
self.init_Hi["value"],
self.init_taue["value"],
self.init_taui["value"],
self.POW_initdam["value"]])
weights = self.initConn["value"].weights
evolution_sv = [state_variables.copy()]
print("Simulating protein spread . for %0.2fts (dt=%0.2f) _simulate: %s" % (time, dt, sim))
if (type(sim_dt) == int) | (type(sim_dt) == float):
tsel = np.arange(0, time, sim_dt)
else:
tsel = sim_dt
if (sim) and (0 in tsel):
subj, model, g, s, simLength = sim
raw_data, _, fftp, plv, plv_emp, plv_r, regionLabels, _, _, reqtime \
= simulate_v2(subj, self.initConn["value"], weights, model, g, s, sv=state_variables[6:-1], t=simLength)
baseline_fftp = fftp[1]
evolution_net = [[weights, fftp[0], fftp[1], plv, plv_emp, plv_r, regionLabels, raw_data]]
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
0, time, reqtime, plv_r))
else:
evolution_net = [[weights]]
print(" . ts%0.2f/%0.2f" % (0, time), end="\r")
## 2. loop over time
for t in np.arange(dt, time, dt):
# POW_effect
delta_fftp = fftp[1] / baseline_fftp
deriv = self.dfun(state_variables, self.Laplacian(weights), delta_fftp)
state_variables = state_variables + dt * deriv
## Update weights by damage function
TAUdam = state_variables[5]
dWeights = -self.TAU_dam2SC["value"] * (
np.tile(TAUdam, (len(TAUdam), 1)).transpose() + np.tile(TAUdam, (len(TAUdam), 1)))
weights = weights + dt * dWeights
weights[weights < 0] = 0 # weights cannot be negative
if sim and (t in tsel):
subj, model, g, s, simLength = sim
raw_data, _, fftp, plv, plv_emp, plv_r, regionLabels, _, _, reqtime \
= simulate_v2(subj, self.initConn["value"], weights, model, g, s, sv=state_variables[6:-1], t=simLength)
evolution_net.append(
[weights, fftp[0], fftp[1], plv, plv_emp, plv_r, regionLabels, raw_data])
evolution_sv.append(state_variables)
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
t, time, reqtime, plv_r))
else:
evolution_sv.append(state_variables.copy())
evolution_net.append([weights])
print(" . ts%0.2f/%0.2f" % (t, time), end="\r")
return [np.arange(0, time, dt), evolution_sv, evolution_net]
def Laplacian(self, weights):
# Weighted adjacency, Diagonal and Laplacian matrices
Wij = np.divide(weights, np.square(self.initConn["value"].tract_lengths),
where=np.square(self.initConn["value"].tract_lengths) != 0,
# Where to compute division; else out
out=np.zeros_like(weights)) # array allocation
Dii = np.eye(len(Wij)) * np.sum(Wij, axis=0)
Lij = (Dii - Wij)
return Lij
def dfun(self, state_variables, Lij, d_fftp):
# Here we want to model the spread of proteinopathies.
# Approach without activity dependent spread/generation. Following Alexandersen 2022.
AB = state_variables[0]
ABt = state_variables[1]
TAU = state_variables[2]
TAUt = state_variables[3]
ABdam = state_variables[4]
TAUdam = state_variables[5]
He_ = state_variables[6]
Hi_ = state_variables[7]
taue_ = state_variables[8]
taui_ = state_variables[9]
POWdam = state_variables[10]
# Unpack heterogeneous rho
[rho_AB, rho_ABt, rho_TAU, rho_TAUt] = self.rho["value"][0] \
if len(self.rho["value"].shape) == 2 else self.rho["value"].repeat(4)
# Derivatives
### Amyloid-beta
dAB = -rho_AB * np.sum(Lij * AB, axis=1) + self.prodAB["value"] * POWdam - self.clearAB["value"] * AB - \
self.transAB2t["value"] * AB * ABt
dABt = -rho_ABt * np.sum(Lij * ABt, axis=1) - self.clearABt["value"] * ABt + self.transAB2t[
"value"] * AB * ABt
### (hyperphosphorilated) Tau
dTAU = -rho_TAU * np.sum(Lij * TAU, axis=1) + self.prodTAU["value"] - self.clearTAU["value"] * TAU - \
self.transTAU2t["value"] * TAU * TAUt - self.toxicSynergy["value"] * ABt * TAU * TAUt
dTAUt = -rho_TAUt * np.sum((Lij * POWdam).transpose() * TAUt, axis=1) - self.clearTAUt["value"] * TAUt + \
self.transTAU2t["value"] * TAU * TAUt + self.toxicSynergy["value"] * ABt * TAU * TAUt
dABdam = self.AB_damrate["value"] * ABt * (1 - ABdam)
dTAUdam = self.TAU_damrate["value"] * TAUt * (1 - TAUdam)
## POWER impact
dPOWdam = self.POW_damrate["value"] * d_fftp * (self.maxPOWdam["value"] - POWdam)
## ACTIVATION transfers: a(exc), b(inhi)
dHe = (self.cABexc["value"] * ABdam * ((self.init_He["range"][1] - He_) - self.cTAU["value"] * TAUdam) * (
He_ - self.init_He["range"][0]))
dHi = - self.cABinh["value"] * ABdam * (Hi_ - self.init_Hi["range"][0])
## FREQUENCY transfers: c(delays)
dtaue = self.cTAU["value"] * TAUdam * (self.init_taue["range"][1] - taue_)
dtaui = taui_ - taui_ # By now, taui does not change
derivative = np.array([dAB, dABt, dTAU, dTAUt, dABdam, dTAUdam, dHe, dHi, dtaue, dtaui, dPOWdam])
return derivative
class CircularADpgModel_vCC:
# Spread model variables following Alexandersen 2022.
# M is an arbitrary unit of concentration
def __init__(self, initConn, AB_initMap, TAU_initMAp, ABt_initMap, TAUt_initMap,
AB_initdam, TAU_initdam, HA_initdam,
init_He, init_Cee, init_Cie, rho=0.001, toxicSynergy=2,
prodAB=2, clearAB=2, transAB2t=2, clearABt=1.5,
prodTAU=2, clearTAU=2, transTAU2t=2, clearTAUt=2.66,
AB_damrate=1, TAU_damrate=1, TAU_dam2SC=0.2, HA_damrate=1, maxHAdam=2, maxTAU2SCdam=0.2,
cABexc=0.8, cABinh=0.4, cTAUexc=1.8, cTAUinh=1.8):
self.rho = {"label": "rho", "value": np.array([rho]),
"doc": "effective diffusion constant (cm/year)"}
self.prodAB = {"label": ["k0", "a0"], "value": np.array([prodAB]), "doc": "production rate for a-beta (M/year)"}
self.clearAB = {"label": ["k1", "a1"], "value": np.array([clearAB]),
"doc": "clearance rate for a-beta (1/M*year)"}
self.transAB2t = {"label": ["k2", "a2"], "value": np.array([transAB2t]),
"doc": "transformation of a-beta into its toxic variant (M/year)"}
self.clearABt = {"label": ["k1t", "a1t"], "value": np.array([clearABt]),
"doc": "clearance rate for toxic a-beta (1/M*year)"}
self.prodTAU = {"label": ["k3", "b0"], "value": np.array([prodTAU]),
"doc": "production rate for p-tau (M/year)"}
self.clearTAU = {"label": ["k4", "b1"], "value": np.array([clearTAU]),
"doc": "clearance rate for p-tau (1/M*year)"}
self.transTAU2t = {"label": ["k5", "b2"], "value": np.array([transTAU2t]),
"doc": "transformation of p-tau into its toxic variant (M/year)"} \
if len(np.array([transTAU2t]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([transTAU2t]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.clearTAUt = {"label": ["k4t", "b1t"], "value": np.array([clearTAUt]),
"doc": "clearance rate for toxic p-tau (1/M*year)"}
self.toxicSynergy = {"label": ["k6", "b3"], "value": np.array([toxicSynergy]),
"doc": "synergistic effect between toxic a-beta and toxic p-tau production (1/M^2*year)"} \
if len(np.array([toxicSynergy]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([toxicSynergy]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.AB_initMap = {"label": "", "value": AB_initMap, "doc": "mapping of initial roi concentration of AB"}
self.TAU_initMap = {"label": "", "value": TAU_initMAp, "doc": "mapping of initial roi concentration of TAU"}
self.ABt_initMap = {"label": "", "value": ABt_initMap,
"doc": "mapping of initial roi concentration of AB toxic"}
self.TAUt_initMap = {"label": "", "value": TAUt_initMap,
"doc": "mapping of initial roi concentration of TAU toxic"}
AB_initdam = AB_initdam if type(AB_initdam) == list else [AB_initdam for roi in initConn.region_labels]
self.AB_initdam = {"label": "q(AB)", "value": AB_initdam, "doc": "initial damage/impact variable of AB"}
self.AB_damrate = {"label": "k(AB)", "value": np.array([AB_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
TAU_initdam = TAU_initdam if type(TAU_initdam) == list else [TAU_initdam for roi in initConn.region_labels]
self.TAU_initdam = {"label": "q(TAU)", "value": TAU_initdam,
"doc": "initial damage/impact of hyperphosphorilated TAU"}
self.TAU_damrate = {"label": "K(TAU)", "value": np.array([TAU_damrate]),
"doc": "rate of damage/impact for hyperphosphorilated TAU (M/year)"}
self.TAU_dam2SC = {"label": "gamma", "value": np.array([TAU_dam2SC]),
"doc": "constant for the damage of structural connectivity by hpTAU (cm/year)"}
self.maxTAU2SCdam = {"label": "gamma", "value": np.array([maxTAU2SCdam]),
"doc": "maximum damage of structural connectivity by hpTAU (cm/year)"}
HA_initdam = HA_initdam if type(HA_initdam) == list else [HA_initdam for roi in initConn.region_labels]
self.HA_initdam = {"label": "q(POW)", "value": HA_initdam, "doc": "initial damage/impact variable of POWER"}
self.maxHAdam = {"label": "q(POW)", "value": np.array([maxHAdam]),
"doc": "max damage/impact variable of POWER"}
self.HA_damrate = {"label": "", "value": np.array([HA_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.initConn = {"label": "SC", "value": initConn, "orig_weights":initConn.weights.copy(), "doc": "Initial state for structural connectivity"}
init_He = init_He if type(init_He) == list else [init_He for roi in initConn.region_labels]
self.init_He = {"label": "He", "value": init_He, "range": [2.6, 9.75],
"doc": "Initial state for excitatory PSP amplitud. def3.25"}
init_Cee = init_Cee if type(init_Cee) == list else [init_Cee for roi in initConn.region_labels]
self.init_Cee = {"label": "Cee", "value": init_Cee, "range": [54, 162],
"doc": "Initial state for average synaptic contacts between exc interneurons and pyramidals. def108"}
init_Cie = init_Cie if type(init_Cie) == list else [init_Cie for roi in initConn.region_labels]
self.init_Cie = {"label": "Hi", "value": init_Cie, "range": [15, 50],
"doc": "Initial state for average synaptic contacts between inh interneurons and pyramidals. def33.75"}
self.cABexc = {"label": "c_beta", "value": np.array([cABexc]),
"doc": "constant for the effect of AB on excitation"}
self.cABinh = {"label": "c_beta2", "value": np.array([cABinh]),
"doc": "constant for the effect of AB on inhibition"}
self.cTAUexc = {"label": "c_tau", "value": np.array([cTAUexc]),
"doc": "constant for the effect of pTau on delays"}
self.cTAUinh = {"label": "c_tau", "value": np.array([cTAUinh]),
"doc": "constant for the effect of pTau on delays"}
def run(self, time, dt, sim=False, sim_dt=1):
## 1. Initiate state variables
state_variables = np.asarray([self.AB_initMap["value"],
self.ABt_initMap["value"],
self.TAU_initMap["value"],
self.TAUt_initMap["value"],
self.AB_initdam["value"],
self.TAU_initdam["value"],
self.init_He["value"],
self.init_Cee["value"],
self.init_Cie["value"],
self.HA_initdam["value"]])
weights = self.initConn["value"].weights
evolution_sv = [state_variables.copy()]
print("Simulating protein spread . for %0.2fts (dt=%0.2f) _simulate: %s" % (time, dt, sim))
if (type(sim_dt) == int) | (type(sim_dt) == float):
tsel = np.arange(0, time, sim_dt)
else:
tsel = sim_dt
if (sim) and (0 in tsel):
subj, g, s, sigma, simLength, transient = sim
pspPyr, raw_time, ratePyr, spectra, plv_sim, plv_r, reqtime = \
simulate_v3(subj, self.initConn["value"], weights, g, s, sigma=sigma, sv=state_variables[6:-1],
t=simLength, trans=transient)
baseline_activity = np.average(ratePyr, axis=1) # spectra[1]
evolution_net = [[weights, spectra, plv_sim, np.average(ratePyr, axis=1), pspPyr]]
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
0, time, reqtime, plv_r))
else:
evolution_net = [[weights]]
print(" . ts%0.2f/%0.2f" % (0, time), end="\r")
## 2. loop over time
for t in np.arange(dt, time, dt):
## HyperActivity damage (attracting TAUt and generating more AB)
dActivity = np.average(ratePyr, axis=1) - baseline_activity # spectra[1] / baseline_power
deriv = self.dfun(state_variables, self.Laplacian(weights), dActivity)
state_variables = state_variables + dt * deriv
## Update weights by damage function
TAUdam = state_variables[5]
dWeights = - self.TAU_dam2SC["value"] * \
(np.tile(TAUdam, (len(TAUdam), 1)).transpose() + np.tile(TAUdam, (len(TAUdam), 1))) * \
(weights - self.initConn["orig_weights"] * (1 - self.maxTAU2SCdam["value"]))
## Current weights - 70% of the initial weights
weights = weights + dWeights
weights[weights < 0] = 0 # weights cannot be negative
if sim and (t in tsel):
subj, g, s, sigma, simLength, transient = sim
pspPyr, raw_time, ratePyr, spectra, plv_sim, plv_r, reqtime = \
simulate_v3(subj, self.initConn["value"], weights, g, s, sigma=sigma, sv=state_variables[6:-1],
t=simLength, trans=transient)
evolution_net.append([weights, spectra, plv_sim, np.average(ratePyr, axis=1), pspPyr])
evolution_sv.append(state_variables)
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
t, time, reqtime, plv_r))
else:
evolution_sv.append(state_variables.copy())
evolution_net.append([weights])
print(" . ts%0.2f/%0.2f" % (t, time), end="\r")
return [np.arange(0, time, dt), evolution_sv, evolution_net]
def Laplacian(self, weights):
# Weighted adjacency, Diagonal and Laplacian matrices
Wij = np.divide(weights, np.square(self.initConn["value"].tract_lengths),
where=np.square(self.initConn["value"].tract_lengths) != 0,
# Where to compute division; else out
out=np.zeros_like(weights)) # array allocation
Dii = np.eye(len(Wij)) * np.sum(Wij, axis=0)
Lij = (Dii - Wij)
return Lij
def dfun(self, state_variables, Lij, dHA):
# Here we want to model the spread of proteinopathies.
# Approach without activity dependent spread/generation. Following Alexandersen 2022.
AB = state_variables[0]
ABt = state_variables[1]
TAU = state_variables[2]
TAUt = state_variables[3]
ABdam = state_variables[4]
TAUdam = state_variables[5]
He_ = state_variables[6]
Cee_ = state_variables[7]
Cie_ = state_variables[8]
HAdam = state_variables[-1]
# Unpack heterogeneous rho
[rho_AB, rho_ABt, rho_TAU, rho_TAUt] = self.rho["value"][0] \
if len(self.rho["value"].shape) == 2 else self.rho["value"].repeat(4)
# Derivatives
### Amyloid-beta
dAB = -rho_AB * np.sum(Lij * AB, axis=1) + self.prodAB["value"] * (1 + HAdam) - self.clearAB["value"] * AB - \
self.transAB2t["value"] * AB * ABt
dABt = -rho_ABt * np.sum(Lij * ABt, axis=1) - self.clearABt["value"] * ABt + self.transAB2t[
"value"] * AB * ABt
### (hyperphosphorilated) Tau
dTAU = -rho_TAU * np.sum(Lij * TAU, axis=1) + self.prodTAU["value"] - self.clearTAU["value"] * TAU - \
self.transTAU2t["value"] * TAU * TAUt - self.toxicSynergy["value"] * ABt * TAU * TAUt
dTAUt = -rho_TAUt * np.sum((Lij * (1 + HAdam)).transpose() * TAUt, axis=1) - self.clearTAUt["value"] * TAUt + \
self.transTAU2t["value"] * TAU * TAUt + self.toxicSynergy["value"] * ABt * TAU * TAUt
dABdam = self.AB_damrate["value"] * ABt * (1 - ABdam)
dTAUdam = self.TAU_damrate["value"] * TAUt * (1 - TAUdam)
## Hyperactivity impact
dHAdam = self.HA_damrate["value"] * dHA # * (self.maxHAdam["value"] - HAdam)
## (He) PSP amplitude transfer - Impact on Glutamate reuptake
dHe = self.cABexc["value"] * ABdam * (self.init_He["range"][1] - He_)
## INTRA-CONNECTIVITY transfers: a(exc), b(inh)
dCee = - self.cTAUexc["value"] * TAUdam * (Cee_ - self.init_Cee["range"][0])
dCie = - self.cABinh["value"] * ABdam * (Cie_ - self.init_Cie["range"][0]) \
- self.cTAUinh["value"] * TAUdam * (Cie_ - self.init_Cie["range"][0])
derivative = np.array([dAB, dABt, dTAU, dTAUt, dABdam, dTAUdam, dHe, dCee, dCie, dHAdam])
return derivative
class CircularADpgModel_vH:
# Spread model variables following Alexandersen 2022.
# M is an arbitrary unit of concentration
def __init__(self, initConn, AB_initMap, TAU_initMAp, ABt_initMap, TAUt_initMap,
AB_initdam, TAU_initdam, HA_initdam,
init_He, init_Hi, rho=0.001, toxicSynergy=2,
prodAB=2, clearAB=2, transAB2t=2, clearABt=1.5,
prodTAU=2, clearTAU=2, transTAU2t=2, clearTAUt=2.66,
AB_damrate=1, TAU_damrate=1, TAU_dam2SC=0.2, maxTAU2SCdam=0.3, HA_damrate=1, maxHAdam=2,
cABexc=0.8, cABinh=0.4, cTAU=1.8):
self.rho = {"label": "rho", "value": np.array([rho]), "doc": "effective diffusion constant (cm/year)"}
self.prodAB = {"label": ["k0", "a0"], "value": np.array([prodAB]), "doc": "production rate for a-beta (M/year)"}
self.clearAB = {"label": ["k1", "a1"], "value": np.array([clearAB]),
"doc": "clearance rate for a-beta (1/M*year)"}
self.transAB2t = {"label": ["k2", "a2"], "value": np.array([transAB2t]),
"doc": "transformation of a-beta into its toxic variant (M/year)"}
self.clearABt = {"label": ["k1t", "a1t"], "value": np.array([clearABt]),
"doc": "clearance rate for toxic a-beta (1/M*year)"}
self.prodTAU = {"label": ["k3", "b0"], "value": np.array([prodTAU]),
"doc": "production rate for p-tau (M/year)"}
self.clearTAU = {"label": ["k4", "b1"], "value": np.array([clearTAU]),
"doc": "clearance rate for p-tau (1/M*year)"}
self.transTAU2t = {"label": ["k5", "b2"], "value": np.array([transTAU2t]),
"doc": "transformation of p-tau into its toxic variant (M/year)"} \
if len(np.array([transTAU2t]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([transTAU2t]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.clearTAUt = {"label": ["k4t", "b1t"], "value": np.array([clearTAUt]),
"doc": "clearance rate for toxic p-tau (1/M*year)"}
self.toxicSynergy = {"label": ["k6", "b3"], "value": np.array([toxicSynergy]),
"doc": "synergistic effect between toxic a-beta and toxic p-tau production (1/M^2*year)"} \
if len(np.array([toxicSynergy]).shape) == 1 else \
{"label": ["k5", "b2"], "value": np.array([toxicSynergy]).squeeze(),
"doc": "transformation of p-tau into its toxic variant (M/year)"}
self.AB_initMap = {"label": "", "value": AB_initMap, "doc": "mapping of initial roi concentration of AB"}
self.TAU_initMap = {"label": "", "value": TAU_initMAp, "doc": "mapping of initial roi concentration of TAU"}
self.ABt_initMap = {"label": "", "value": ABt_initMap,
"doc": "mapping of initial roi concentration of AB toxic"}
self.TAUt_initMap = {"label": "", "value": TAUt_initMap,
"doc": "mapping of initial roi concentration of TAU toxic"}
AB_initdam = AB_initdam if type(AB_initdam) == list else [AB_initdam for roi in initConn.region_labels]
self.AB_initdam = {"label": "q(AB)", "value": AB_initdam, "doc": "initial damage/impact variable of AB"}
TAU_initdam = TAU_initdam if type(TAU_initdam) == list else [TAU_initdam for roi in initConn.region_labels]
self.TAU_initdam = {"label": "q(TAU)", "value": TAU_initdam,
"doc": "initial damage/impact of hyperphosphorilated TAU"}
POW_initdam = HA_initdam if type(HA_initdam) == list else [HA_initdam for roi in initConn.region_labels]
self.HA_initdam = {"label": "q(POW)", "value": POW_initdam, "doc": "initial damage/impact variable of POWER"}
self.maxHAdam = {"label": "q(POW)", "value": np.array([maxHAdam]),
"doc": "max damage/impact variable of POWER"}
self.AB_damrate = {"label": "k(AB)", "value": np.array([AB_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.TAU_damrate = {"label": "K(TAU)", "value": np.array([TAU_damrate]),
"doc": "rate of damage/impact for hyperphosphorilated TAU (M/year)"}
self.TAU_dam2SC = {"label": "gamma", "value": np.array([TAU_dam2SC]),
"doc": "constant for the damage of structural connectivity by hpTAU (cm/year)"}
self.maxTAU2SCdam = {"label": "gamma", "value": np.array([maxTAU2SCdam]),
"doc": "maximum damage of structural connectivity by hpTAU (cm/year)"}
self.HA_damrate = {"label": "", "value": np.array([HA_damrate]),
"doc": "rate of damage/impact for AB (M/year)"}
self.initConn = {"label": "SC", "value": initConn, "orig_weights":initConn.weights.copy(), "doc": "Initial state for structural connectivity"}
init_He = init_He if type(init_He) == list else [init_He for roi in initConn.region_labels]
self.init_He = {"label": "He", "value": init_He, "range": [2.6, 9.75],
"doc": "Initial state for excitation. def3.25"}
init_Hi = init_Hi if type(init_Hi) == list else [init_Hi for roi in initConn.region_labels]
self.init_Hi = {"label": "Hi", "value": init_Hi, "range": [17.6, 40],
"doc": "Initial state for inhibition. def22"}
self.cABexc = {"label": "c_beta", "value": np.array([cABexc]),
"doc": "constant for the effect of AB on excitation"}
self.cABinh = {"label": "c_beta2", "value": np.array([cABinh]),
"doc": "constant for the effect of AB on inhibition"}
self.cTAU = {"label": "c_tau", "value": np.array([cTAU]), "doc": "constant for the effect of pTau on delays"}
def run(self, time, dt, sim=False, sim_dt=1):
## 1. Initiate state variables
state_variables = np.asarray([self.AB_initMap["value"],
self.ABt_initMap["value"],
self.TAU_initMap["value"],
self.TAUt_initMap["value"],
self.AB_initdam["value"],
self.TAU_initdam["value"],
self.init_He["value"],
self.init_Hi["value"],
self.HA_initdam["value"]])
weights = self.initConn["value"].weights
evolution_sv = [state_variables.copy()]
print("Simulating protein spread . for %0.2fts (dt=%0.2f) _simulate: %s" % (time, dt, sim))
if (type(sim_dt) == int) | (type(sim_dt) == float):
tsel = np.arange(0, time, sim_dt)
else:
tsel = sim_dt
if (sim) and (0 in tsel):
subj, g, s, sigma, simLength, transient = sim
pspPyr, raw_time, ratePyr, spectra, plv_sim, plv_r, reqtime = \
simulate_v3(subj, self.initConn["value"], weights, g, s, sigma=sigma, sv=state_variables[6:-1], t=simLength, trans=transient)
baseline_activity = np.average(ratePyr, axis=1) # spectra[1]
evolution_net = [[weights, spectra, plv_sim, np.average(ratePyr, axis=1), pspPyr]]
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
0, time, reqtime, plv_r))
else:
evolution_net = [[weights]]
print(" . ts%0.2f/%0.2f" % (0, time), end="\r")
## 2. loop over time
for t in np.arange(dt, time, dt):
## HyperActivity damage (attracting TAUt and generating more AB)
dActivity = np.average(ratePyr, axis=1) - baseline_activity # spectra[1] / baseline_power
deriv = self.dfun(state_variables, self.Laplacian(weights), dActivity)
state_variables = state_variables + dt * deriv
## Update weights by damage function
TAUdam = state_variables[5]
dWeights = - self.TAU_dam2SC["value"] * \
(np.tile(TAUdam, (len(TAUdam), 1)).transpose() + np.tile(TAUdam, (len(TAUdam), 1))) * \
(weights - self.initConn["orig_weights"] * (1-self.maxTAU2SCdam["value"]))
## Current weights - 70% of the initial weights
weights = weights + dWeights
weights[weights < 0] = 0 # weights cannot be negative
if sim and (t in tsel):
subj, g, s, sigma, simLength, transient = sim
pspPyr, raw_time, ratePyr, spectra, plv_sim, plv_r, reqtime = \
simulate_v3(subj, self.initConn["value"], weights, g, s, sigma=sigma, sv=state_variables[6:-1],
t=simLength, trans=transient)
evolution_net.append([weights, spectra, plv_sim, np.average(ratePyr, axis=1), pspPyr])
evolution_sv.append(state_variables)
print(" . ts%0.2f/%0.2f _ SIMULATION REQUIRED %0.2f seconds - rPLV(%0.2f)" % (
t, time, reqtime, plv_r))
else:
evolution_sv.append(state_variables.copy())
evolution_net.append([weights])
print(" . ts%0.2f/%0.2f" % (t, time), end="\r")
return [np.arange(0, time, dt), evolution_sv, evolution_net]
def Laplacian(self, weights):
# Weighted adjacency, Diagonal and Laplacian matrices
Wij = np.divide(weights, np.square(self.initConn["value"].tract_lengths),
where=np.square(self.initConn["value"].tract_lengths) != 0,
# Where to compute division; else out
out=np.zeros_like(weights)) # array allocation
Dii = np.eye(len(Wij)) * np.sum(Wij, axis=0)
Lij = (Dii - Wij)
return Lij
def dfun(self, state_variables, Lij, dActivity):
# Here we want to model the spread of proteinopathies.
# Approach without activity dependent spread/generation. Following Alexandersen 2022.
AB = state_variables[0]
ABt = state_variables[1]
TAU = state_variables[2]
TAUt = state_variables[3]
ABdam = state_variables[4]
TAUdam = state_variables[5]
He_ = state_variables[6]
Hi_ = state_variables[7]
HAdam = state_variables[-1]
# Unpack heterogeneous rho
[rho_AB, rho_ABt, rho_TAU, rho_TAUt] = self.rho["value"][0] \
if len(self.rho["value"].shape) == 2 else self.rho["value"].repeat(4)
# Derivatives
### Amyloid-beta
dAB = -rho_AB * np.sum(Lij * AB, axis=1) + self.prodAB["value"] * HAdam - self.clearAB["value"] * AB - self.transAB2t["value"] * AB * ABt
dABt = -rho_ABt * np.sum(Lij * ABt, axis=1) - self.clearABt["value"] * ABt + self.transAB2t["value"] * AB * ABt
### (hyperphosphorilated) Tau
dTAU = -rho_TAU * np.sum(Lij * TAU, axis=1) + self.prodTAU["value"] - self.clearTAU["value"] * TAU - self.transTAU2t["value"] * TAU * TAUt - self.toxicSynergy["value"] * ABt * TAU * TAUt
dTAUt = -rho_TAUt * np.sum((Lij * HAdam).transpose() * TAUt, axis=1) - self.clearTAUt["value"] * TAUt + self.transTAU2t["value"] * TAU * TAUt + self.toxicSynergy["value"] * ABt * TAU * TAUt
dABdam = self.AB_damrate["value"] * ABt * (1 - ABdam)
dTAUdam = self.TAU_damrate["value"] * TAUt * (1 - TAUdam)
## Hyperactivity impact
dHAdam = self.HA_damrate["value"] * dActivity # * (self.maxHAdam["value"] - HAdam)
## ACTIVATION transfers: a(exc), b(inhi)
dHe = self.cABexc["value"] * ABdam * (self.init_He["range"][1] - He_)
dHi = - self.cABinh["value"] * ABdam * (Hi_ - self.init_Hi["range"][0])
derivative = np.array([dAB, dABt, dTAU, dTAUt, dABdam, dTAUdam, dHe, dHi, dHAdam])
return derivative
def simulate_v2(subj, conn, weights, model, g, s, g_wc=None, p_th=0.1085, sigma=0, sv=None, t=10):
# Prepare simulation parameters
simLength = t * 1000 # ms
samplingFreq = 1000 # Hz
transient = 1000 # ms
tic = time.time()
# STRUCTURAL CONNECTIVITY #########################################
conn.weights = weights
conn.speed = np.array([s])
# Define regions implicated in Functional analysis: not considering subcortical ROIs
# Load FC labels, transform to SC format; check if match SC.