-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.R
53 lines (40 loc) · 1.21 KB
/
paper.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
# Figures, Tables, and Supplementary Material for the paper
# tools -------
library(tidyverse)
library(exda)
library(figur)
library(rmarkdown)
library(knitr)
library(bookdown)
library(flextable)
library(writexl)
library(soucer)
library(stringi)
library(AnnotationDbi)
library(org.Hs.eg.db)
library(pathview)
library(coxExtensions)
library(rlang)
library(survival)
explore <- exda::explore
select <- dplyr::select
reduce <- purrr::reduce
set_rownames <- trafo::set_rownames
extract <- clustTools::extract
insert_head()
c('./tools/globals.R',
'./tools/functions.R') %>%
source_all(message = TRUE, crash = TRUE)
# Links and bibliography --------
insert_msg('Links and bibliography')
c('./paper scripts/links.R') %>%
source_all(message = TRUE, crash = TRUE)
# Figures, Tables, and Supplementary Material -------
insert_msg('Figures, Tables, Supplements')
c('./paper scripts/figures.R',
'./paper scripts/supplementary_figures.R',
'./paper scripts/supplementary_tables.R',
'./paper scripts/render.R') %>%
source_all(message = TRUE, crash = TRUE)
# END ------
insert_tail()