Description Usage Arguments Value Examples
This function plots the REM MetaVolcano using ggplot2
1 | plot_rem(meta_diffexp, jobname, outputfolder, genecol, metathr)
|
meta_diffexp |
data.frame/data.table containing the REM results from rem_mv() <data.table/data.frame> |
jobname |
name of the running job <string> |
outputfolder |
/path where to write the results/ <string> |
genecol |
column name of the variable to label genes in the .html file <string> |
metathr |
top percentage of perturbed genes to be highlighted <double> |
ggplot2
object
1 2 3 4 5 6 7 | data(diffexplist)
diffexplist <- lapply(diffexplist, function(del) {
dplyr::filter(del, grepl("MP", Symbol))
})
mv <- rem_mv(diffexplist, metathr = 0.1)
gg <- plot_rem(mv@metaresult, "MV", ".", "Symbol", 0.01)
plot(gg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.