-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
69 lines (62 loc) · 2.93 KB
/
ui.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
60
61
62
63
64
65
66
67
68
69
library(shiny)
# Define UI for miles per gallon application
shinyUI(list(
# Application title
#titlePanel("TCGA下载地址获取工具"),
fluidPage(
titlePanel("TCGA下载地址获取工具"),
sidebarPanel(
selectInput("variable", "请选择一种癌症:",
list("Acute Myeloid Leukemia" = "LAML",
"Adrenocortical Cancer" = "ACC",
"Bile Duct Cancer" = "CHOL",
"Bladder Cancer" = "BLCA",
"Breast Cancer" = "BRCA",
"Cervical Cancer" = "CESC",
"Colon and Rectal Cancer" = "COADREAD",
"Colon Cancer" = "COAD",
"Endometrioid Cancer" = "UCEC",
"Esophageal Cancer" = "ESCA",
"Formalin Fixed Paraffin-Embedded Pilot Phase II" = "FPPP",
"Glioblastoma" = "GBM",
"Head and Neck Cancer" = "HNSC",
"Kidney Chromophobe" = "KICH",
"Kidney Clear Cell Carcinoma" = "KIRC",
"Kidney Papillary Cell Carcinoma" = "KIRP",
"Large B-cell Lymphoma" = "DLBC",
"Liver Cancer" = "LIHC",
"Lower Grade Glioma" = "LGG",
"lower grade glioma and glioblastoma" = "GBMLGG",
"Lung Adenocarcinoma" = "LUAD",
"Lung Cancer" = "LUNG",
"Lung Squamous Cell Carcinoma" = "LUSC",
"Melanoma" = "SKCM",
"Mesothelioma" = "MESO",
"Ocular melanomas" = "UVM",
"Ovarian Cancer" = "OV",
"Pan-Cancer" = "PANCAN",
"PANCAN12" = "PANCAN12",
"Pancreatic Cancer" = "PAAD",
"Pheochromocytoma & Paraganglioma" = "PCPG",
"Prostate Cancer" = "PRAD",
"Rectal Cancer" = "READ",
"Sarcoma" = "SARC",
"Stomach Cancer" = "STAD",
"Testicular Cancer" = "TGCT",
"Thymoma" = "THYM",
"Thyroid Cancer" = "THCA",
"Uterine Carcinosarcoma" = "UCS"
)),
selectInput("var", "选择一种数据:",
list("gene expression RNAseq(HTSeq)" = "htseq_counts",
"survival" = "survival",
"phenotype" = "GDC_phenotype",
"miRNA Expression Quantification" = "mirna",
"copy number" = "masked_cnv",
"MuSE Variant Aggregation and Masking" = "muse_snv",
"MuTect2 Variant Aggregation and Masking" = "mutect2_snv"))
#checkboxInput("outliers", "Show outliers", FALSE)
),
mainPanel(h4("你选择的数据下载地址为:"),
htmlOutput("mySite"))
)))