Description Usage Arguments Details Value See Also
View source: R/glimmaVolcano.R
Draws a two-panel interactive volcano plot from an MArrayLM object. This is a special case of the
glimmaXY
plot.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## S3 method for class 'MArrayLM'
glimmaVolcano(
x,
dge = NULL,
counts = dge$counts,
groups = dge$samples$group,
coef = ncol(x$coefficients),
status = limma::decideTests(x),
anno = x$genes,
display.columns = NULL,
status.cols = c("dodgerblue", "silver", "firebrick"),
sample.cols = NULL,
p.adj.method = "BH",
transform.counts = c("logcpm", "cpm", "rpkm", "none"),
main = colnames(x)[coef],
xlab = "logFC",
ylab = "negLog10PValue",
html = NULL,
width = 920,
height = 920,
...
)
|
x |
|
dge |
|
counts |
numeric matrix with |
groups |
vector of length |
coef |
integer indicating the column in |
status |
vector of length |
anno |
dataframe with |
display.columns |
character vector containing names of columns from |
status.cols |
vector of length 3 containing valid CSS strings for colours associated
with |
sample.cols |
character vector of length |
p.adj.method |
character string specifying p-value adjustment method. |
transform.counts |
the type of transform used on the counts log-cpm by default.
|
main |
character string for the main title of summary plot. |
xlab |
character string for the x-axis label of summary plot. |
ylab |
character string for the y-axis label of summary plot. |
html |
character string for naming HTML file for exportation of widget. The extension should be included in the file name e.g. "file.html". |
width |
numeric value indicating width of widget in pixels. |
height |
numeric value indicating width of height in pixels. |
... |
addition unused arguments. |
The summary plot on the left represents gene-wise log-fold-change (logFC) on the x-axis versus
-log10(pvalue)
. The expression plot on the right displays sample expression values for a single gene.
Interactions with the htmlwidget include clicking on genes (points) in the summary plot to bring up
associated sample expression values in the expression plot, as well as the summary statistics in the table below.
Alternatively, users can interact with the table by clicking on genes (rows) to highlight genes in the summary plot,
as well as bring up associated sample expression values in the expression plot.
Briefly, other interactive features include a search box for the table, buttons to save plots and data
(summary statistics and expression values), additional pop-up information when hovering on points in plots,
and rescaling of the y-axis in the expression plot.
htmlwidget object or NULL
if html
argument is specified.
glimmaVolcano
, glimmaVolcano.DGEExact
, glimmaVolcano.DGELRT
, glimmaVolcano.DESeqDataSet
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.