-
Notifications
You must be signed in to change notification settings - Fork 2
/
CellPopICD.bnd
77 lines (65 loc) · 1.24 KB
/
CellPopICD.bnd
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
node TumorCell
{
rate_up = 0.0;
rate_down = 0.0;
}
node DyingTumorCell
{
rate_up = TumorCell ? $chemotherapy : 0.0 ;
rate_down = 0.0;
}
node CALR
{
rate_up = DyingTumorCell ? $u_CALR : 0.0;
rate_down = Death ? $d_CALR : 0.0 ;
}
node ATP
{
rate_up = DyingTumorCell ? $u_ATP : 0.0 ;
rate_down = DyingTumorCell ? 0.0 : $d_ATP ;
}
node HMGB1
{
rate_up = DyingTumorCell ? $u_HMGB1 : 0.0 ;
rate_down = DyingTumorCell ? 0.0 : $d_HMGB1 ;
}
node DC
{
rate_up = 0.0;
rate_down = 0.0;
}
node ActDC
{
rate_up = DC ? ($expCALR*$secrATP*$secrHMGB1) : 0.0 ;
rate_down = 0.0;
}
node MigrDC
{
rate_up = ActDC ? 1/(2*24) : 0.0;
rate_down = 0.0;
}
node LNodeDC
{
rate_up = MigrDC ? 1/(3*24) : 0.0;
rate_down = 0.0;
}
node TCell
{
rate_up = LNodeDC ? $primingTCell : 0.0 ;
rate_down = 0.0 ;
}
node CTL
{
rate_up = TCell ? $activateCTL : 0.0 ;
rate_down = 0.0 ;
}
node Death
{
rate_up = (TumorCell ? (-log(1-$popCTL)) : 0.0) + (CTL ? (-log(1-$popTumorCell)) : 0.0) + (DyingTumorCell ? $deathChemotherapy : 0.0);
rate_down = 0.0;
}
node Division
{
rate_up = (TumorCell ? $growthFactor : 0.0) + ((TCell & !(CTL)) ? ($popTumorCell*$clonalExpansion) : 0.0) ;
rate_down = 0.0;
}