Skip to content

Commit

Permalink
Merge pull request #9 from DiseaseTranscriptomicsLab/dev
Browse files Browse the repository at this point in the history
Merge dev
  • Loading branch information
A-Kaizeler-A authored Oct 22, 2024
2 parents cb7e0e0 + 628fbb3 commit 2f89adb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions server.R
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ shinyServer(
})

#Data table of the gene differential expression signgificance
output$genePeakTable <- DT::renderDataTable({
output$genePeakTable <- DT::renderDataTable(server = FALSE,{

validate(need(!is.null(input$peakClicked), "")) # A peak must be chosen
tissue <- input$tissue_2
Expand All @@ -710,14 +710,17 @@ shinyServer(
caption = "Significance for gene expression alteration",
selection = "single", #only one row selected at a time
#filter = "top", #can filter the results per column
options = list(deferRender = TRUE, scrollY = 600, scroller = TRUE, scollX = T,
options = list(deferRender = FALSE, scrollY = 600, scroller = TRUE, scollX = T,
dom = "Bfti",
buttons = list(list(extend='copy',
filename = filename),
filename = filename,
exportOptions = list(modifier = list(page = "all"))),
list(extend='csv',
filename = filename),
filename = filename,
exportOptions = list(modifier = list(page = "all"))),
list(extend='excel',
filename= filename))),
filename= filename,
exportOptions = list(modifier = list(page = "all"))))),
colnames = c("Gene", "p-value", "Info"),
rownames = T,
extensions = c("Scroller", "Buttons")
Expand Down
2 changes: 1 addition & 1 deletion ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ shinyUI(fluidPage(
font-size: 16px;
}'))
),
HTML('<div class="bottom-right-text"><i class="fa fa-github"></i><a href="https://github.com/DiseaseTranscriptomicsLab/voyAGEr/tree/main" target="_blank"> Version 2.0.1 (December 2023) </a></div>')
HTML('<div class="bottom-right-text"><i class="fa fa-github"></i><a href="https://github.com/DiseaseTranscriptomicsLab/voyAGEr/tree/main" target="_blank"> Version 2.0.2 (October 2024) </a></div>')
),
tabPanel("Methodology",
icon = icon("cogs"),
Expand Down

0 comments on commit 2f89adb

Please sign in to comment.