gene_browser | R Documentation |
Launch a simple shiny-based browser of DE analysis results
gene_browser(
x,
annot_linkout = NULL,
cols_to_hide = c("stat", "lfcSE", "symbol", "entrez"),
primary_id = "PrimaryID"
)
x |
object holding the DE analysis results. List containing the
elements |
annot_linkout |
a list; see Details. |
cols_to_hide |
columns in the contrasts data frames to hide in the table. Default is for DESeq2 derived contrasts. |
primary_id |
The name of the column in |
Creates a shiny app, which allows to show gene expression profiles.
does not return a value
if(interactive()) {
data(C19)
annot_linkout <- list(
SYMBOL="https://www.genecards.org/cgi-bin/carddisp.pl?gene=%s",
ENTREZ="https://www.ncbi.nlm.nih.gov/gene/?term=%s"
)
gene_browser(C19, annot_linkout=annot_linkout)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.