-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path201018_newVall_probs_breast_lvl4_lig16.R
More file actions
144 lines (122 loc) · 5.34 KB
/
201018_newVall_probs_breast_lvl4_lig16.R
File metadata and controls
144 lines (122 loc) · 5.34 KB
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
library(cmapR)
library(ranger)
library(mccf1)
load("~/Dropbox/GDB_archive/CMapCorr_files/200731_lvl4_breastonly.RData")
temp <- load("~/Dropbox/GDB_archive/CMapCorr_files/lvl4_lig16_inputs.RData")
BRcdesc <- BRcdesc[BRcdesc$pert_iname %in% lig16,]
BRmat <- BRmat[,rownames(BRcdesc)]
rm(list=c(temp[temp != "lig16"],"temp","lig29"))
### Tuning ----
# CT <- ctBR[1]; LIG <- lig29[1]
# new_trainID <- rownames(BRcdesc)[BRcdesc$cell_id != CT]
# new_trainID_true <- new_trainID[BRcdesc[new_trainID,"pert_iname"] == LIG]
# new_trainID_false <- sample(setdiff(new_trainID,new_trainID_true),
# length(new_trainID_true))
# new_trainID <- sample(c(new_trainID_true,new_trainID_false))
#
# all_trainID_true <- sample(rownames(BRcdesc)[BRcdesc$pert_iname == LIG],
# length(new_trainID_true))
# all_trainID_false <- sample(rownames(BRcdesc)[BRcdesc$pert_iname != LIG],
# length(new_trainID_false))
# all_trainID <- sample(c(all_trainID_true,all_trainID_false))
# all_testID <- setdiff(rownames(BRcdesc),all_trainID)
#
# tuning_results <- pbapply::pbsapply(seq(1,1001,10),function(X) {
# rfmodel <- ranger(x=t(BRmat[,all_trainID]),
# y=BRcdesc[all_trainID,"pert_iname"] == LIG,
# num.threads=8,num.trees=1e3,probability=T,
# min.node.size=10,verbose=F)
# testResults <- predict(rfmodel,t(BRmat[,all_testID]))
# all_out <- as.data.frame(testResults$predictions[,which(colnames(rfmodel$predictions) == "TRUE")])
# rownames(all_out) <- all_testID
# colnames(all_out) <- "score"
# all_out$label <- BRcdesc[all_testID,"pert_iname"] == LIG
# print(X)
# return(summary(mccf1(as.integer(all_out$label),all_out$score))$mccf1_metric)
# })
# plot(seq(1,1001,10),tuning_results,pch=20)
# No correlation between node size and OOB accuracy.
scores_all <- scores_new <- list()
for (LIG in lig16) {
print(paste0(which(lig16 == LIG),"/",length(lig16)," --------"))
scores_all[[LIG]] <- scores_new[[LIG]] <- list()
for (CT in ctBR) {
print(paste0("----- ",which(ctBR == CT),"/",length(ctBR)))
# generalize to novel cell line ----
new_trainID <- rownames(BRcdesc)[BRcdesc$cell_id != CT]
new_trainID_true <- new_trainID[BRcdesc[new_trainID,"pert_iname"] == LIG]
new_trainID_false <- sample(setdiff(new_trainID,new_trainID_true),
length(new_trainID_true))
new_trainID <- sample(c(new_trainID_true,new_trainID_false))
rfmodel <- ranger(x=t(BRmat[,new_trainID]),
y=BRcdesc[new_trainID,"pert_iname"] == LIG,
num.threads=8,num.trees=1e3,probability=T,
verbose=F)
testResults <- predict(rfmodel,t(BRmat))
new_out <- as.data.frame(testResults$predictions[,which(colnames(rfmodel$predictions) == "TRUE")])
rownames(new_out) <- colnames(BRmat)
colnames(new_out) <- "score"
new_out$label <- BRcdesc$pert_iname == LIG
new_out$train <- rownames(new_out) %in% new_trainID
# boxplot(score~label+train,data=new_out,las=2,ylim=0:1)
scores_new[[LIG]][[CT]] <- new_out
rm(rfmodel,testResults)
# train on all cell lines ----
all_trainID_true <- sample(rownames(BRcdesc)[BRcdesc$pert_iname == LIG],
length(new_trainID_true))
all_trainID_false <- sample(rownames(BRcdesc)[BRcdesc$pert_iname != LIG],
length(new_trainID_false))
all_trainID <- sample(c(all_trainID_true,all_trainID_false))
rfmodel <- ranger(x=t(BRmat[,all_trainID]),
y=BRcdesc[all_trainID,"pert_iname"] == LIG,
num.threads=8,num.trees=1e3,probability=T,
verbose=F)
testResults <- predict(rfmodel,t(BRmat))
all_out <- as.data.frame(testResults$predictions[,which(colnames(rfmodel$predictions) == "TRUE")])
rownames(all_out) <- colnames(BRmat)
colnames(all_out) <- "score"
all_out$label <- BRcdesc$pert_iname == LIG
all_out$train <- rownames(all_out) %in% all_trainID
# boxplot(score~label+train,data=all_out,las=2,ylim=0:1)
# mean(all_out$score[all_out$label & all_out$train]) - mean(all_out$score[!all_out$label & all_out$train])
# summary(mccf1(as.integer(all_out$label[!all_out$train]),all_out$score[!all_out$train]))
scores_all[[LIG]][[CT]] <- all_out
rm(rfmodel,testResults)
rm(list=grep("^all",ls(),value=T))
rm(list=grep("^new",ls(),value=T))
}
}
mccf1_all <- sapply(scores_all,function(X)
sapply(X,function(Y)
summary(
mccf1(as.integer(Y$label[!Y$train]),
Y$score[!Y$train])
)$mccf1_metric
)
)
mccf1_all_thresh <- sapply(scores_all,function(X)
sapply(X,function(Y)
summary(
mccf1(as.integer(Y$label[!Y$train]),
Y$score[!Y$train])
)$best_threshold
)
)
mccf1_new <- sapply(scores_new,function(X)
sapply(X,function(Y)
summary(
mccf1(as.integer(Y$label[!Y$train]),
Y$score[!Y$train])
)$mccf1_metric
)
)
mccf1_new_thresh <- sapply(scores_new,function(X)
sapply(X,function(Y)
summary(
mccf1(as.integer(Y$label[!Y$train]),
Y$score[!Y$train])
)$best_threshold
)
)
save(scores_all,scores_new,mccf1_all,mccf1_all_thresh,mccf1_new,mccf1_new_thresh,
file="~/Dropbox/GDB_archive/CMapCorr_files/201018_newVall_probs_breast_lvl4_lig16.RData")