-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-simulation.yaml
61 lines (48 loc) · 1.23 KB
/
config-simulation.yaml
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
# Integer for N, the number of individuals to simulate
"N": 500
# List of real numbers for g0, the initial viral trait value at the root
g0:
- 4.5
# List of real numbers for alpha, the selection strength parameter
alpha:
- 0.1
- 0.5
- 1
- 5
- 10
- 20
- 30
- 40
- 50
- 60
# List of real numbers for theta, the evolutionarily optimal viral trait value
theta:
- 4.5
# Integer for M, the number of human SNPs with direct effect on trait
M: 20
# Integer for K, the total number of human SNPs to simulate
K: 100
# Integer for d, human ploidy
d: 2
# Real number for delta, the per-copy effect size on the trait for human SNPs
delta:
- 0.2
# List of real numbers for H2, the heritability of the trait due to the virus
H2:
- 0.15
- 0.25
- 0.35
- 0.45
- 0.55
- 0.65
- 0.75
# Real number for H2.h, the fraction of the total trait variance due to human SNPs; H2.h + max(H2) must be <= 1
H2.h: 0.25
# Real number for var.z, the total trait variance
var.z:
- 0.73
# Integer for N.reps, the number of simulated data sets to generate for each unique combination of parameters
N.reps: 20
# Boolean for whether (True) to infer POUMM parameters from simulated data or (False) use true values
is.MLE: True
is.HIVTree: True