-
Notifications
You must be signed in to change notification settings - Fork 3
/
pi3kInhibition.sh
35 lines (32 loc) · 1008 Bytes
/
pi3kInhibition.sh
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
# cancer cell cycle = 30hr, macrophage recruitment rate = 1e-8
# continuous treatment
set=0
for i in 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
do
./eim baselineTreatments/pi3kInhibition/continuous $set 100 1e-8 30 2 100 $i 0 0
let "set=set+1"
done
# cancer cell cycle = 20hr, macrophage recruitment rate = 1e-8
# continuous treatment
set=0
for i in 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
do
./eim increasedProlTreatments/pi3kInhibition/continuous $set 100 1e-8 20 2 100 $i 0 0
let "set=set+1"
done
# cancer cell cycle = 30hr, macrophage recruitment rate = 2e-8
# continuous treatment
set=0
for i in 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
do
./eim increasedRecTreatments/pi3kInhibition/continuous $set 100 2e-8 30 2 100 $i 0 0
let "set=set+1"
done
# cancer cell cycle = 20hr, macrophage recruitment rate = 2e-8
# continuous treatment
set=0
for i in 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
do
./eim increasedBothTreatments/pi3kInhibition/continuous $set 100 2e-8 20 2 100 $i 0 0
let "set=set+1"
done