View source: R/Script_DROPLET_04_DE_4_VolcanoPlot_Gene.R
PlotDEValues.Genes.10x | R Documentation |
Volcano plot of results from differential gene expression analysis. x-axis represents the log2 fold change between two cell groups. y-axis represents -log10(adjusted p-value). Only genes whose splice junctions were considered to be differentially spliced are included for plotting.
PlotDEValues.Genes.10x( MarvelObject, pval.sj = 0.05, log2fc.sj = NULL, delta.sj = 5, min.gene.norm = 0, pval.adj.gene = 0.05, log2fc.gene = 0.5, anno = FALSE, anno.gene_short_name = NULL, label.size = 2 )
MarvelObject |
Marvel object. S3 object generated from |
pval.sj |
Numeric value. p-value from differential splicing analysis, below which, the splice junction is considered differentially spliced. Default is |
log2fc.sj |
Numeric value. Absolute log2 fold change from differential splicing analysis, above which, the splice junction is considered differentially spliced. This option should be |
delta.sj |
Numeric value. Absolute difference in average PSI values between the two cell groups, above which, the splice junction is considered differentially spliced. This option should be |
min.gene.norm |
Numeric value. The average normalised gene expression across the two cell groups above which the splice junction is considered differentially spliced. Default is |
pval.adj.gene |
Numeric value. Adjusted p-value from differential gene expression analysis, below which, the gene is considered differentially expressed. Default is |
log2fc.gene |
Numeric value. Absolute log2 fold change from differential gene expression analysis, above which, the gene is considered differentially expressed. This option should be |
anno |
Logical value. If set to |
anno.gene_short_name |
Vector of character strings. If |
label.size |
Numeric value. If |
An object of class S3 with a new slots MarvelObject$DE$SJ$VolcanoPlot$Gene$Plot
and MarvelObject$DE$SJ$VolcanoPlot$Gene$Data
.
marvel.demo.10x <- readRDS(system.file("extdata/data", "marvel.demo.10x.rds", package="MARVEL") ) marvel.demo.10x <- PlotDEValues.Genes.10x( MarvelObject=marvel.demo.10x, pval.sj=0.05, delta.sj=5, min.gene.norm=1.0, pval.adj.gene=0.05, log2fc.gene=0.5 ) # Check outputs marvel.demo.10x$DE$SJ$VolcanoPlot$Gene$Plot head(marvel.demo.10x$DE$SJ$VolcanoPlot$Gene$Data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.