This function takes the result of differential expression (DE) analysis and provides MA and volcano plots.
volcano.ma.plot(
x = NULL,
sig.value = "padj",
sig.line = 0.1,
plot.type = "volcano",
x.limit = 2,
y.limit = 2,
limit.force = FALSE,
scale.ax = TRUE,
dot.size = 1.75,
dot.transparency = 0.5,
dot.col = c("#E64B35", "#3182bd", "#636363"),
interactive = TRUE,
out.name = "plot"
)
Plots
A data frame containing differential expression (DE) analysis results.
Choose from "pval" or "padj", default = "padj".
A number to draw the line for the significant genes based on sig.value type, default = 0.1.
Choose from "ma" or "volcano", default = "volcano".
A number to set a limit for the x axis.
A number to set a limit for the y axis.
If set to TRUE the x.limit and y.limit will be forced, default = FALSE.
If set to TRUE the y axis will be scaled to include all the points, default = TRUE.
A number for the size of the points in the plot, default = 1.75.
Color transparency for points in "scatterplot" and "boxplot", default = 0.5.
A set of three colors for the points in the volcano plot, default = c("#E64B35","#3182bd","#636363").
If set to TRUE an interactive HTML file will be created, default = TRUE.
If "interactive" is set to TRUE, the output name for HTML, default = "plot".