-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.R
40 lines (40 loc) · 1.01 KB
/
setup.R
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
if (!file.exists("data/example_brca.rda")) {
e <- new.env()
source("data-raw/brca.R", local = e)
rm(e)
}
if (!file.exists("data/bivariate_normal_sims.rda")) {
e <- new.env()
source("data-raw/bivariate_normal_sims.R", local = e)
rm(e)
}
if (!file.exists("data/bivariate_gamma_sims.rda")) {
e <- new.env()
source("data-raw/bivariate_gamma_sims.R", local = e)
rm(e)
}
if (!file.exists("data/bivariate_nbinom_sims.rda")) {
e <- new.env()
source("data-raw/bivariate_nbinom_sims.R", local = e)
rm(e)
}
if (!file.exists("data/benchmark_dependences.rda")) {
e <- new.env()
source("data-raw/benchmark_dependences.R", local = e)
rm(e)
}
if (!file.exists("results/brca_1000_sim.rds")) {
e <- new.env()
source("data-raw/sim_nbinom.R", local = e)
rm(e)
}
if (!file.exists("fig/ch050-figBRCA.png")) {
e <- new.env()
source("data-raw/make_fig_brca.R", local = e)
rm(e)
}
if (!file.exists("results/brca_1000_frobenius.rds")) {
e <- new.env()
source("data-raw/sim_nbinom_corr.R", local = e)
rm(e)
}