-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.R
59 lines (56 loc) · 1.43 KB
/
global.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
54
55
56
57
58
59
#library(shiny)
#library(BiocManager)
#options(repos = BiocManager::repositories())
library(shinydashboard)
library(shinyWidgets)
library(data.table)
library(magrittr)
library(shinyjs)
library(plotly)
library(SummarizedExperiment)
library(dplyr)
library(xlsx)
library(tidyr)
library(tibble)
library(ggplot2)
library(ggpubr)
library(ggrepel)
library(patchwork)
library(shinybusy)
library(spsComps)
library(visNetwork)
library(igraph)
library(DT)
source("helper.R")
source("reset_dataset.R")
source("input_file_upload.R")
source("show_file_level_meta.R")
source("plot_missing_per_analyte.R")
source("plot_belowLOD_per_analyte.R")
source("identify_reference.R")
source("ref_normalization.R")
source("creat_data_obj.R")
source("download_qa_report.R")
source("download_norm_report.R")
source("download_combined_data.R")
source("meta_view_replace.R")
source("qc_global_plot.R")
source("scatter_plot.R")
source("download_scatter_report.R")
source("pca_plot.R")
source("download_pca_report.R")
source("cor_summary_plot.R")
source("corr_plot.R")
source("download_cor_report.R")
source("analyte_panel_querry.R")
source("user_select_list.R")
source("analyte_network.R")
library("RColorBrewer")
load("olink_all_analyte_panel.rda")
load("analyte_type_db.rda")
panel_query <- unique(olink_all_analyte_panel$Query)%>%
strsplit(split = ",")%>%
unlist()%>%
unique()
panel_query <- panel_query[panel_query != "NA"]
cell2cell <- read.csv("CytokineLink_HPA_cell2cell.csv")