-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevaluation.R
More file actions
26 lines (18 loc) · 1.02 KB
/
Copy pathevaluation.R
File metadata and controls
26 lines (18 loc) · 1.02 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
norm_data_list <- list(totalcount_out,
cosbin_out$data,
tmm_out,
DESeq2_out,
tcc_out)
##################################################################
# CEG dislocation:
CEG_dislocation <- cosine_dislocation(data_grnd, CEG_grnd, norm_data_list)
# DEG dislocation (exclude sDEG):
DEG_dislocation <- cosine_dislocation(data_grnd, DEG_grnd, norm_data_list)
# sDEG dislocation:
sDEG_dislocation <- groupwise_cosine_dislocation(data_grnd, norm_data_list, nGroup, pSMG)
# ROC (iCEG vs non-iCEG):
ROC_iCEG <- ROC(norm_data_list, CEG_grnd, "iCEG", c("#AA000066", "#00AA0066", "#0000AA66", "#AAAA0066", "#00AAAA66"))
# ROC (DEG (exclude SMG) vs non DEG (exclude SMG)):
ROC_DEG <- ROC(norm_data_list, DEG_grnd, "DEG", c("#AA000066", "#00AA0066", "#0000AA66", "#AAAA0066", "#00AAAA66"))
# average_of_pairwise_Log_Fold_Change_Mean_Squared_Error:
mean_LFC_MSE <- average_of_pairwise_LFC_MSE(norm_data_list, CEG_grnd, nGroup)