Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed to show debug text again; to let user know what is going on a… #422

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions program/shinyApp/R/data_selection/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ data_selection_main_panel <- mainPanel(
div(id ="InfoBox_DataSelection",
htmlOutput(outputId = "debug", container = pre)
),
div(id = "mainPanel_other",
# add link to toggle on the div geneAnno_toggle
actionButton(
inputId = "geneAnno_toggle_button",
Expand Down Expand Up @@ -222,6 +223,7 @@ data_selection_main_panel <- mainPanel(
inputId = "refresh1",
label = "YOu should not be seeing this"
))
)
)


Expand Down
43 changes: 29 additions & 14 deletions program/shinyApp/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ server <- function(input,output,session){
hideTab(inputId = "tabsetPanel1", target = "Heatmap")
hideTab(inputId = "tabsetPanel1", target = "Single Gene Visualisations")
hideTab(inputId = "tabsetPanel1", target = "Enrichment Analysis")
shinyjs::hide("mainPanel_DataSelection")
shinyjs::hideElement(id = "mainPanel_other")
shinyjs::hideElement(id = "data_summary")
shinyjs::hideElement(id = "div_sampleCorrelation_main_panel")
shinyjs::hideElement(id = "PCA_main_panel_div")
Expand Down Expand Up @@ -461,9 +461,11 @@ server <- function(input,output,session){
observe({
if (input$refresh1 > 0) {
req(data_input_shiny() == "DataUploadSuccesful")
shinyjs::show("mainPanel_DataSelection")
shinyjs::showElement("InfoBox_DataSelection")
shinyjs::showElement("mainPanel_other")
} else {
shinyjs::hide("mainPanel_DataSelection")
shinyjs::showElement("InfoBox_DataSelection")
shinyjs::hideElement("mainPanel_other")
}
})

Expand Down Expand Up @@ -1046,17 +1048,27 @@ server <- function(input,output,session){
data_input <- list()
# upload depending on where the button was clicked
if(uploaded_from() == "file_input"){
data_input <- list(
Matrix = read_file(input$data_matrix1$datapath, check.names=T),
sample_table = read_file(input$data_sample_anno1$datapath, check.names=T),
annotation_rows = read_file(input$data_row_anno1$datapath, check.names=T)
)
# check if only 1 col in anno row,
# add dummy col to ensure R does not turn it into a vector
if(ncol(data_input$annotation_rows) < 2){
data_input$annotation_rows$origRownames <- rownames(data_input$annotation_rows)
}
tryCatch({
data_input <- list(
Matrix = read_file(input$data_matrix1$datapath, check.names=T),
sample_table = read_file(input$data_sample_anno1$datapath, check.names=T),
annotation_rows = read_file(input$data_row_anno1$datapath, check.names=T)
)
# check if only 1 col in anno row,
# add dummy col to ensure R does not turn it into a vector
if(ncol(data_input$annotation_rows) < 2){
data_input$annotation_rows$origRownames <- rownames(data_input$annotation_rows)
}

},error = function(e){
output$debug <- renderText({
"<font color=\"#FF0000\"><b>Upload failed, please check your input.</b></font>"
})
reset('data_matrix1')
reset('data_sample_anno1')
reset('data_row_anno1')
return(NULL)
})
} else if(uploaded_from() == "metadata"){
tmp_sampleTable <- fun_readInSampleTable(input$metadataInput$datapath)
test_data_upload <- function(){
Expand Down Expand Up @@ -1124,8 +1136,11 @@ server <- function(input,output,session){
},
error = function(e){
print("Error! Uploading via file input failed")
custom_error <- list()
custom_error[["message"]] <- "Uploading via file input failed"
error_modal(custom_error)
output$debug <- renderText({
"<font color=\"#FF0000\"><b>Uploading failed</b></font>: The uplaoded files could not be put into a SummarizedExperiment. Try the 'Inspect data' button for potential errors."
"<font color=\"#FF0000\"><b>Uploading failed</b></font>: The uploaded files could not be put into a SummarizedExperiment. Try the 'Inspect data' button for potential errors."
})
NULL
}
Expand Down
Loading