-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmut_volcanos.Rnw
35 lines (33 loc) · 1.17 KB
/
mut_volcanos.Rnw
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
<<setup_mut_volcanos, include=FALSE>>=
library(dplyr)
b = import('base')
io = import('io')
ar = import('array')
st = import('stats')
df = import('data_frame')
plt = import('plot')
gdsc = import('data/gdsc')
util = import('./util_2')
config = import('../config')
@
\begin{figure}[H]
<<mut_volcano_pancan, echo=FALSE, fig.width=6.5, fig.height=8.5>>=
#within = util$mut_cov %>%
# filter(adj.p < 0.05) %>%
# select(scores, m)
p = util$mut_cov %>%
mutate(method = config$id2short(method)) %>%
# circle = df$contains(., within)) %>%
plt$color$p_effect(pvalue="adj.p", effect="estimate", thresh=0.05, dir=-1) %>%
plt$volcano(base.size=0.03, text.size=2, p=0.05, ceil=1e-15, label_top=40, repel=TRUE) +
facet_wrap(~method, ncol=2, scales="free_x") +
config$facet_theme
plt$symmetrise_scale(p)
@
\caption{Volcano plot for associations between pathway scores and
mutated driver genes. Effect size is standard deviations of pathway scores.
P-values FDR-corrected. Associations corrected for cancer type. PROGENy provides
stronger associations and are more in line with
literature knowledge of signaling pathways.}
\label{fig:mut-volcano-pancan}
\end{figure}