Skip to content

Commit

Permalink
modify .opt_pancan (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
lishensuo authored Aug 7, 2024
1 parent 0a2ba76 commit 4523aa0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
7 changes: 5 additions & 2 deletions R/query_general.R
Original file line number Diff line number Diff line change
Expand Up @@ -334,9 +334,12 @@ query_general_value <- function(L1, L2, L3,
}
} else {
if (is.null(tpc_value_nonomics)) {
tpc_value_nonomics <- load_data(paste0("v2_", database, "_value_nonomics"))
if(database=="toil"){
tpc_value_nonomics <- load_data(paste0("v2_tcga_value_nonomics"))
} else {
tpc_value_nonomics <- load_data(paste0("v2_", database, "_value_nonomics"))
}
}

if (L2 != "Custom metadata") {
L1_label <- switch(L1,
`Tumor index` = "Index",
Expand Down
2 changes: 1 addition & 1 deletion R/query_value.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ query_molecule_value <- function(dataset, molecule, host = NULL) {
toil_transcript = list(),
toil_protein = list(),
toil_mutation = list(),
toil_cnv = list(gistic2 = TRUE, use_thresholded_data = FALSE),
toil_cnv = list(gistic2 = TRUE, use_thresholded_data = TRUE),
toil_methylation = list(type = "450K", rule_out = NULL, aggr = "NA"),
toil_miRNA = list(),
# PCAWG
Expand Down
13 changes: 10 additions & 3 deletions inst/shinyapp/ui/link2advanced.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ ui.link2advanced <- function() {
title = "Advanced analysis",
icon = icon("question-circle"),

tabPanel(a("T·P·C Modules",
href="http://localhost:1498/",
target="_blank")),
tabPanel(a("Whole Functionalities",
href="https://shiny.zhoulab.ac.cn/UCSCXenaShiny/",
target="_blank")),

tabPanel("Go to T·P·C Modules",
"To be deployed"),
tabPanel("Go to T·P·C Pipelinnes",
"To be deployed"),
tabPanel("Go to Pharmcogenomics Modules",
"To be deployed"),
# tabPanel(a("T·P·C Pipelines",
# href="https://lishensuo.github.io/UCSCXenaShiny_Book/",
# target="_blank")),
Expand Down

0 comments on commit 4523aa0

Please sign in to comment.