-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.R
443 lines (402 loc) · 11.6 KB
/
main.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
# This is the top-level file that runs all other code.
#
# To create all the figures and tables, run this line in R:
# source("main.R")
#
# TIPS:
# 1. If you wish to customize the output, edit the settings in config.yml.
#
# 2. This script expects the following data files to exist:
# - data/density_morphometrics.csv
# - data/density_counts.csv
#
# These are not included with the code as they will live in the BCO-DMO
# database. If these files are missing, the script will attempt to download
# them for you automatically.
#
# 3. If running this file fails due to missing software (R or Python library
# not installed, no Python installation) you can try running the following:
# install_dependencies()
#
# That will try to install all the dependencies I think are necessary for
# this script to work. I have not thoroughly tested whether that will work,
# since I already have all that installed.
main <- function(quietly = F) {
figures_made <<- 0
tables_made <<- 0
files_postprocessed <<- 0
source("code/setup.R", chdir = T)
load_libraries(quietly = T)
load_r_code(quietly)
load_python_code(quietly)
load_settings(quietly)
if (settings("break_on_warning")) {
options(warn = 2, error = "recover")
} else {
options(warn = 1)
}
# Stop dplyr::summarize from printing annoying messages. The only other way to
# silence these is with the .groups argument, which seems iffy considering
# it is marked as an "experimental" API so may cause problems for some users.
options("dplyr.summarise.inform" = F)
morphometrics_data <- load_morphometrics_data(
download_if_missing = settings("download_morphometrics"),
quietly
)
count_control_data <- load_count_control_data(
download_if_missing = settings("download_count_control"),
quietly
)
create_output_directory(quietly)
analyses <- analyze(morphometrics_data, count_control_data, quietly)
if (!quietly) {
cat(paste0(
"Saving output files to directory: ",
get_output_path(),
"\n"
))
}
main_create_tables(analyses, quietly)
main_create_figures(analyses, quietly)
main_postprocess(quietly)
cat(paste0(
"Done. Created ", figures_made, " figures and ", tables_made,
" tables. Postprocessed ", files_postprocessed, " files.\n"
))
}
main_create_tables <- function(analyses, quietly) {
if (settings("make_table_1")) {
timed_subroutine(
"Generating Table 1... ", function() {
save_table_1(render_table_1(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_2")) {
timed_subroutine(
"Generating Table 2... ", function() {
save_table_2(render_table_2(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_S1")) {
timed_subroutine(
"Generating Table S1... ", function() {
save_table_S1(render_table_S1(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_S2")) {
timed_subroutine(
"Generating Table S2... ", function() {
save_table_S2(render_table_S2(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_S3")) {
timed_subroutine(
"Generating Table S3... ", function() {
save_table_S3(render_table_S3(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_S4")) {
timed_subroutine(
"Generating Table S4... ", function() {
save_table_S4(render_table_S4(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_table_S5")) {
timed_subroutine(
"Generating Table S5... ", function() {
save_table_S5(render_table_S5(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
if (settings("make_count_table")) {
timed_subroutine(
"Generating Count Table... ", function() {
save_count_control_table(render_count_control_table(analyses))
},
quietly
)
tables_made <<- tables_made + 1
}
}
main_create_figures <- function(analyses, quietly) {
if (settings("make_figure_2")) {
timed_subroutine(
"Generating Figure 2... ", function() {
save_fig_2(plot_fig_2(analyses))
},
quietly
)
figures_made <<- figures_made + 1
}
if (settings("make_figure_3")) {
timed_subroutine(
"Generating Figure 3... ", function() {
save_fig_3(plot_fig_3(analyses))
},
quietly
)
figures_made <<- figures_made + 1
}
if (settings("make_figure_4")) {
timed_subroutine(
"Generating Figure 4... ", function() {
save_fig_4(plot_fig_4(analyses))
},
quietly
)
figures_made <<- figures_made + 1
}
if (settings("make_figure_5")) {
timed_subroutine(
"Generating Figure 5... ", function() {
save_fig_5(plot_fig_5(analyses))
},
quietly
)
figures_made <<- figures_made + 1
}
if (settings("make_figure_S1")) {
timed_subroutine(
"Generating Figure S1... ", function() {
save_fig_S1(plot_fig_S1(analyses))
},
quietly
)
figures_made <<- figures_made + 1
}
}
main_postprocess <- function(quietly) {
use_bs4 <- settings("postprocess_soup")
if (settings("make_table_1")) {
timed_subroutine(
"Postprocessing Table 1... ", function() {
postprocess_table(
name = "1",
source = get_table_output_path(settings("table_1_name")),
destination = get_table_output_path(paste0(
settings("table_1_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_2")) {
timed_subroutine(
"Postprocessing Table 2... ", function() {
postprocess_table(
name = "2",
source = get_table_output_path(settings("table_2_name")),
destination = get_table_output_path(paste0(
settings("table_2_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_S1")) {
timed_subroutine(
"Postprocessing Table S1... ", function() {
postprocess_table(
name = "S1",
source = get_table_output_path(settings("table_S1_name")),
destination = get_table_output_path(paste0(
settings("table_S1_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_S2")) {
timed_subroutine(
"Postprocessing Table S2... ", function() {
postprocess_table(
name = "S2",
source = get_table_output_path(settings("table_S2_name")),
destination = get_table_output_path(paste0(
settings("table_S2_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_S3")) {
timed_subroutine(
"Postprocessing Table S3... ", function() {
postprocess_table(
name = "S3",
source = get_table_output_path(settings("table_S3_name")),
destination = get_table_output_path(paste0(
settings("table_S3_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_S4")) {
timed_subroutine(
"Postprocessing Table S4... ", function() {
postprocess_table(
name = "S4",
source = get_table_output_path(settings("table_S4_name")),
destination = get_table_output_path(paste0(
settings("table_S4_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_table_S5")) {
timed_subroutine(
"Postprocessing Table S5... ", function() {
postprocess_table(
name = "S5",
source = get_table_output_path(settings("table_S5_name")),
destination = get_table_output_path(paste0(
settings("table_S5_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_count_table")) {
timed_subroutine(
"Postprocessing Count Table... ", function() {
postprocess_table(
name = "CC",
source = get_table_output_path(settings("count_table_name")),
destination = get_table_output_path(paste0(
settings("count_table_name"),
settings("postprocess_suffix")
)),
rearrange = use_bs4
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_figure_2")) {
timed_subroutine(
"Postprocessing Figure 2... ", function() {
postprocess_figure(
source = get_figure_output_path(settings("figure_2_name")),
destination = get_figure_output_path(paste0(
settings("figure_2_name"),
settings("postprocess_suffix")
))
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_figure_3")) {
timed_subroutine(
"Postprocessing Figure 3... ", function() {
postprocess_figure(
source = get_figure_output_path(settings("figure_3_name")),
destination = get_figure_output_path(paste0(
settings("figure_3_name"),
settings("postprocess_suffix")
))
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_figure_4")) {
timed_subroutine(
"Postprocessing Figure 4... ", function() {
postprocess_figure(
source = get_figure_output_path(settings("figure_4_name")),
destination = get_figure_output_path(paste0(
settings("figure_4_name"),
settings("postprocess_suffix")
))
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_figure_5")) {
timed_subroutine(
"Postprocessing Figure 5... ", function() {
postprocess_figure(
source = get_figure_output_path(settings("figure_5_name")),
destination = get_figure_output_path(paste0(
settings("figure_5_name"),
settings("postprocess_suffix")
))
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
if (settings("make_figure_S1")) {
timed_subroutine(
"Postprocessing Figure S1... ", function() {
postprocess_figure(
source = get_figure_output_path(settings("figure_S1_name")),
destination = get_figure_output_path(paste0(
settings("figure_S1_name"),
settings("postprocess_suffix")
))
)
},
quietly
)
files_postprocessed <<- files_postprocessed + 1
}
}
main()