Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe35e21

Browse files
committedMar 25, 2025·
integrated comments
1 parent 5e3ac61 commit fe35e21

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed
 

‎program/shinyApp/R/enrichment_analysis/server.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ enrichment_analysis_geneset_server <- function(
101101
# Saving Plot
102102
output$SavePlot <- downloadHandler(
103103
filename = function() {
104-
paste(id,format(Sys.time(), "(%d.%m.%Y)_(%H;%M;%S)"),input$file_ext,sep=" ")
104+
paste0(id,format(Sys.time(), "(%d.%m.%Y)_(%H;%M;%S)"),input$file_ext)
105105
},
106106
content = function(file){
107107
ggsave(

‎program/shinyApp/R/enrichment_analysis/ui.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ geneset_panel_UI <- function(
4848
radioGroupButtons(
4949
inputId = ns("file_ext"),
5050
label = "File Type:",
51-
choices = c(".png", ".tiff", ".pdf", ".svg"),
51+
choices = c(".png", ".tiff", ".svg", ".pdf"),
5252
selected = ".pdf"
5353
)
5454
),

‎program/shinyApp/R/heatmap/server.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ heatmap_server <- function(id){moduleServer(
373373
tmp_filename <- paste0(
374374
getwd(),
375375
file_path,
376-
paste(paste0(isolate(heatmap_title()), Sys.Date(), ".png"))
376+
paste0(isolate(heatmap_title()), Sys.Date(), ".png")
377377
)
378378
save_complex_heatmap(
379379
isolate(heatmap_plot()),

‎program/shinyApp/R/heatmap/ui.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ heatmap_main <- function(ns){
155155
radioGroupButtons(
156156
inputId = ns("file_ext_Heatmap"),
157157
label = "File Type:",
158-
choices = c(".png", ".tiff", ".pdf", ".svg"),
158+
choices = c(".png", ".tiff", ".svg", ".pdf"),
159159
selected = ".png"
160160
)
161161
),

‎program/shinyApp/R/pca/ui.R

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ pca_main_panel <- function(ns){
117117
radioGroupButtons(
118118
inputId = ns("file_ext_plot1"),
119119
label = "File Type:",
120-
choices = c(".png", ".tiff", ".pdf", ".svg"),
120+
choices = c(".png", ".tiff", ".svg", ".pdf"),
121121
selected = ".png"
122122
)
123123
),
@@ -195,7 +195,7 @@ pca_main_panel <- function(ns){
195195
radioGroupButtons(
196196
inputId = ns("file_ext_Loadings"),
197197
label = "File Type:",
198-
choices = c(".png", ".tiff", ".pdf", ".svg"),
198+
choices = c(".png", ".tiff", ".svg", ".pdf"),
199199
selected = ".png"
200200
)
201201
)
@@ -256,7 +256,7 @@ pca_main_panel <- function(ns){
256256
radioGroupButtons(
257257
inputId = ns("file_ext_Loadings_matrix"),
258258
label = "File Type:",
259-
choices = c(".png", ".tiff", ".pdf", ".svg"),
259+
choices = c(".png", ".tiff", ".svg", ".pdf"),
260260
selected = ".png"
261261
)
262262
)
@@ -306,7 +306,7 @@ pca_main_panel <- function(ns){
306306
radioGroupButtons(
307307
inputId = ns("file_ext_Scree"),
308308
label = "File Type:",
309-
choices = c(".png", ".tiff", ".pdf", ".svg"),
309+
choices = c(".png", ".tiff", ".svg", ".pdf"),
310310
selected = ".png"
311311
)
312312
)

‎program/shinyApp/R/pre_processing/ui.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pre_processing_main_panel <- mainPanel(
9494
radioGroupButtons(
9595
inputId = "file_type_mean_sd_plot",
9696
label = "File Type:",
97-
choices = c(".png", ".tiff", ".pdf", ".svg"),
97+
choices = c(".png", ".tiff", ".svg", ".pdf"),
9898
selected = ".png"
9999
)
100100
), column(

‎program/shinyApp/R/single_gene_visualisation/ui.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ single_gene_visualisation_main_ui <- function(ns){
7070
radioGroupButtons(
7171
inputId = ns("file_ext_singleGene"),
7272
label = "File Type:",
73-
choices = c(".png", ".tiff", ".pdf", ".svg"),
73+
choices = c(".png", ".tiff", ".svg", ".pdf"),
7474
selected = ".png"
7575
)
7676
),

0 commit comments

Comments
 (0)
Please sign in to comment.