-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrecInhibCycle.sh
More file actions
47 lines (44 loc) · 1.05 KB
/
recInhibCycle.sh
File metadata and controls
47 lines (44 loc) · 1.05 KB
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
# cancer cell cycle = 30hr, macrophage recruitment rate = 1e-8
# cycle treatment
set=0
for i in 1 2 4 6 8 10 12 14
do
for j in 5 10 15 20 25
do
./eim baselineTreatments/recruitmentInhibition/cycled $set 100 1e-8 30 0 100 1.0 $j $i
let "set=set+1"
done
done
# cancer cell cycle = 20hr, macrophage recruitment rate = 1e-8
# cycle treatment
set=0
for i in 1 2 4 6 8 10 12 14
do
for j in 5 10 15 20 25
do
./eim increasedProlTreatments/recruitmentInhibition/cycled $set 100 1e-8 20 0 100 1.0 $j $i
let "set=set+1"
done
done
# cancer cell cycle = 30hr, macrophage recruitment rate = 2e-8
# cycle treatment
set=0
for i in 1 2 4 6 8 10 12 14
do
for j in 5 10 15 20 25
do
./eim increasedRecTreatments/recruitmentInhibition/cycled $set 100 2e-8 30 0 100 1.0 $j $i
let "set=set+1"
done
done
# cancer cell cycle = 20hr, macrophage recruitment rate = 2e-8
# cycle treatment
set=0
for i in 1 2 4 6 8 10 12 14
do
for j in 5 10 15 20 25
do
./eim increasedBothTreatments/recruitmentInhibition/cycled $set 100 2e-8 20 0 100 1.0 $j $i
let "set=set+1"
done
done