The UI is a DT::datatable of GSEA statistics for the selected method. The module returns a list with the following reactive elements:
The table of gene sets and their statistics that pass the prescribed
fdr
thershold
The geneset that is currently "active"/selected by the user. This
is defined as <collection>_::_<name>
You probably want to observeEvent(this$selected)
in your
server.R
(or similar) so you can react to user clicks on different
gene sets
1 2 3 | mgTableBrowserUI(id)
mgTableBrowser(input, output, session, mgc, method, fdr, server = TRUE)
|
id |
the shiny id of the UI module |
input |
shiny server input object |
output |
shiny server output object |
session |
shiny server session object |
mgc |
the |
method |
a reactive that determines which method to explore from this result |
fdr |
a reactive that gives the fdr threshold to filter results in the table by. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.