-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdrug_volcanos.Rnw
58 lines (54 loc) · 2.24 KB
/
drug_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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<<setup3, 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_3')
config = import('../config')
assocs = b$lnapply(config$methods$analysis_set, util$vp$load_fun)
@
\begin{figure}[H]
<<drug_volcano_pancan, echo=FALSE, fig.width=6.5, fig.height=8.5>>=
p = assocs %>%
b$lnapply(function(x) x$pan) %>%
df$bind_rows(name_col="method") %>%
mutate(label = paste(drug, scores, sep=":"),
method = config$id2short(method)) %>%
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=130, repel=TRUE) +
facet_wrap(~method, ncol=2, scales="free_x") +
config$facet_theme
plt$symmetrise_scale(p)
@
\caption{Volcano plots for associations between pathway scores and drug
response (IC50). Effect size arbitrary units, p-values FDR-corrected.
Pathway-response genes are the only method to recover highly
significant oncogene addiction associations, the rest of methods show
no obvious connection between the drug target and pathway.}
\label{fig:drug-volcano-pancan}
\end{figure}
%\begin{figure}[H]
%<<drug_volcano_tissue, echo=FALSE, fig.width=6.5, fig.height=8.5>>=
%p = assocs %>%
% b$lnapply(function(x) x$assocs.tissue) %>%
% df$bind_rows(name_col="method") %>%
% filter(subset == "clinical") %>%
% mutate(label = paste(drug, scores, tissue, sep=":"),
% method = config$id2short(method)) %>%
% plt$color$p_effect(pvalue="adj.p", effect="estimate", thresh=0.1, dir=-1) %>%
% plt$volcano(base.size=1, text.size=2, p=0.1, label_top=60, repel=TRUE) +
% facet_wrap(~method, ncol=2, scales="free_x") +
% config$facet_theme
%plt$symmetrise_scale(p)
%@
%\caption{Cancer-specific volcano plots, legend as in previous figure. Again,
% top hits for pathway-response genes are in line with the oncogene addiction
%pardigm, other methods are not. Pathifier provides highly significant
%associations for Cetuximab and Trametinib for all pathways, calling into
%question the meaning of these associations.}
%\label{fig:drug-volcano-tissue}
%\end{figure}