Skip to content

Commit

Permalink
Update app.R
Browse files Browse the repository at this point in the history
  • Loading branch information
hxie03 authored Apr 25, 2024
1 parent 35303c5 commit e6b1d48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/app.R
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ server <- function(input, output, session) {
} else if (isTruthy(input$mask_input) & isTruthy(input$mask_labels)) {
mask_matrix <- as.matrix(read.table(mask_file()))
} else if (isTruthy(input$mask_input)) {
mask_matrix <- as.matrix(fread(mask_file(), sep = "\t", header=TRUE),rownames = 1)
}
mask_matrix <- mask_matrix <- as.matrix(read.table(mask_file()))

else {
mask_matrix <- NULL
}
Expand Down Expand Up @@ -642,4 +642,4 @@ ui <- dashboardPage(
)
)

shinyApp(ui, server)
shinyApp(ui, server)

0 comments on commit e6b1d48

Please sign in to comment.