Skip to content

Commit

Permalink
Button added also for the enrichment table
Browse files Browse the repository at this point in the history
  • Loading branch information
federicomarini committed Aug 6, 2020
1 parent f858d9e commit 00ed4d0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions app.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ createLinkGO <- function(val) {
message("Loading R data...")
load("trendseq.RData")

# sorting columns for KDmat?
# sorting columns for KDmat
KDmat <- KDmat[, order(colnames(KDmat))]

# these objects needed to be updated in newer Bioc versions
Expand Down Expand Up @@ -1014,12 +1014,22 @@ server <- function(input, output, session) {
),
rownames = FALSE,
selection = "single",
extensions = c("FixedColumns"),
extensions = c("FixedColumns", "Buttons"),
options = list(
bInfo = 0,
scrollX = TRUE,
scrollY = 480,
fixedColumns = FALSE,
order = list(5, "asc")
paging = FALSE,
order = list(5, "asc"),
dom = 'Bfrtip',
buttons =
list('copy', 'print', list(
extend = 'collection',
buttons = c('csv', 'excel', 'pdf'),
text = 'Download'
)
)
),
escape = FALSE
) %>%
Expand Down

0 comments on commit 00ed4d0

Please sign in to comment.