Description Usage Arguments Value Examples
Plot static volcano plot.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
data |
DATA FRAME | Read counts |
dataMetrics |
LIST | Differential expression metrics. This object must contain one column with magnitude changes (for the logFC parameter) and one column with statistical values (for the PValue parameter), unless geneList is not NULL |
dataSE |
SUMMARIZEDEXPERIMENT | Summarized experiment format that can be used in lieu of data and dataMetrics; default NULL |
geneList |
CHARACTER ARRAY | List of gene IDs to be drawn onto the scatterplot matrix of all data. Use this parameter if you have predetermined subset of genes to be superimposed. Otherwise, dataMetrics, threshVar, and threshVal will be used to create genes to be superimposed onto the volcano plot; default NULL |
threshVar |
CHARACTER STRING | Name of column in dataMetrics object that is used to determine genes to be overlaid; default "FDR" |
threshVal |
INTEGER | Maximum value to threshold significance from threshVar object; default 0.05 |
option |
CHARACTER STRING ["hexagon" | "allPoints"] | The background of plot; default "hexagon" |
logFC |
CHARACTER STRING | Name of column in dataMetrics object that contains log fold change values; default "logFC" |
PValue |
CHARACTER STRING | Name of column in dataMetrics object that contains p-values; default "PValue" |
xbins |
INTEGER | Number of bins partitioning the range of the plot; default 10 |
pointSize |
INTEGER | Size of plotted points; default 0.5 |
pointColor |
CHARACTER STRING | Color of overlaid points on scatterplot matrix; default "orange" |
outDir |
CHARACTER STRING | Output directory to save all plots; default tempdir() |
saveFile |
BOOLEAN [TRUE | FALSE] | Save file to outDir; default TRUE |
hover |
BOOLEAN [TRUE | FALSE] | Allow to hover over points to identify IDs; default FALSE |
List of n elements of volcano plots, where n is the number of treatment pair combinations in the data object. The subset of genes that are superimposed are determined through the dataMetrics or geneList parameter. If the saveFile parameter has a value of TRUE, then each of these volcano plots is saved to the location specified in the outDir parameter as a JPG file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | # The first set of four examples use data and dataMetrics objects as
# input. The last set of four examples create the same plots now
# using the SummarizedExperiment (i.e. dataSE) object input.
# Example 1: Plot volcano plot with default settings for overlaid points
# (FDR < 0.05).
data(soybean_ir_sub)
data(soybean_ir_sub_metrics)
ret <- plotVolcano(soybean_ir_sub, soybean_ir_sub_metrics, pointSize = 1,
saveFile = FALSE)
ret[[1]]
# Example 2: Plot volcano plot and overlay points with PValue < 1e-15.
ret <- plotVolcano(soybean_ir_sub, soybean_ir_sub_metrics,
pointColor = "red", pointSize = 1, threshVar = "PValue",
threshVal = 1e-15, saveFile = FALSE)
ret[[1]]
# Example 3: Plot volcano plot and overlay points with PValue < 1e-15. This
# time, plot all points (instead of hexagons) for the background.
ret <- plotVolcano(soybean_ir_sub, soybean_ir_sub_metrics,
pointColor = "red", pointSize = 1, threshVar = "PValue",
threshVal = 1e-15, option = "allPoints", saveFile = FALSE)
ret[[1]]
# Example 4: Plot volcano plot with points in background and overlay points
# with PValue < 1e-15. This time, use a value of TRUE for the hover
# parameter so that you can hover over overlaid points and determine their
# IDs.
ret <- plotVolcano(soybean_ir_sub, soybean_ir_sub_metrics,
pointColor = "red", pointSize = 1, threshVar = "PValue",
threshVal = 1e-15, option = "allPoints", saveFile = FALSE,
hover = TRUE)
ret[[1]]
# Below are the same four examples, only now using the
# SummarizedExperiment (i.e. dataSE) object as input.
# Example 1: Plot volcano plot with default settings for overlaid points
# (FDR < 0.05).
## Not run:
data(se_soybean_ir_sub)
ret <- plotVolcano(dataSE = se_soybean_ir_sub, pointSize = 1,
saveFile = FALSE)
ret[[1]]
## End(Not run)
# Example 2: Plot volcano plot and overlay points with PValue < 1e-15.
## Not run:
ret <- plotVolcano(dataSE = se_soybean_ir_sub, pointColor = "red",
pointSize = 1, threshVar = "PValue", threshVal = 1e-15,
saveFile = FALSE)
ret[[1]]
## End(Not run)
# Example 3: Plot volcano plot and overlay points with PValue < 1e-15. This
# time, plot all points (instead of hexagons) for the background.
## Not run:
ret <- plotVolcano(dataSE = se_soybean_ir_sub, pointColor = "red",
pointSize = 1, threshVar = "PValue", threshVal = 1e-15,
option = "allPoints", saveFile = FALSE)
ret[[1]]
## End(Not run)
# Example 4: Plot volcano plot with points in background and overlay points
# with PValue < 1e-15. This time, use a value of TRUE for the hover
# parameter so that you can hover over overlaid points and determine their
# IDs.
## Not run:
ret <- plotVolcano(dataSE = se_soybean_ir_sub, pointColor = "red",
pointSize = 1, threshVar = "PValue", threshVal = 1e-15,
option = "allPoints", saveFile = FALSE, hover = TRUE)
ret[[1]]
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.