Description Usage Arguments Details Value Author(s) See Also Examples
Generates volcano plots of differential binding analysis results.
1 2 3 4 |
DBA |
DBA object, on which |
contrast |
number of contrast to report on.
See |
method |
method or vector of methods to plot results for:
|
th |
significance threshold; sites with FDR (or p-values, see |
bUsePval |
logical indicating whether to use FDR ( |
fold |
will only include sites with fold change greater than this as significant (colored red). |
factor |
string to be prepended to plot main title; e.g. factor name. |
bFlip |
logical indicating that order of groups in contrast should be "flipped", allowing control of which sample group will have positive and which will have negative fold changes. |
bLabels |
logical indicating that labels should be drawn on the plot.
The labels are the site numbers, the row index in the (silently) returned set of
significant sites. The maximum number of sites can be specified
using |
maxLabels |
The maximum number of labels to use in the plot.
Ignored if |
dotSize |
size of points on plot. |
Makes a volcano plot.
silently returns a GRanges
object of the sites highlighted in red.
Rory Stark
1 2 3 4 5 6 7 8 9 10 11 | data(tamoxifen_analysis)
# default volcano plot
dba.plotVolcano(tamoxifen)
# only highlight significant sites with at least 5x Fold Change
sigSites <- dba.plotVolcano(tamoxifen, fold=log2(5))
# use labels to find outlier sites
sigSites <- dba.plotVolcano(tamoxifen, fold=log2(10),bLabels=TRUE)
sigSites
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.