PlotDEValues.PSI.Mean {MARVEL} | R Documentation |
Plot differential splicing analysis results based on mean PSI difference
Description
Volcano plot of differential splicing analysis results based on mean PSI difference between 2 groups of cells. x-axis represents the mean delta PSI. y-axis represents the adjusted p-values.
Usage
PlotDEValues.PSI.Mean(
MarvelObject,
method,
pval = 0.1,
delta = 5,
point.size = 1,
xlabel.size = 8,
anno = FALSE,
anno.tran_id = NULL,
label.size = 2.5,
y.upper.offset = 5
)
Arguments
MarvelObject |
Marvel object. S3 object generated from |
method |
Character string. The statistical method used for differential splicing analysis. |
pval |
Numeric value. Adjusted p-value below which the splcing event are considered as statistically significant and will consequently be color-annotated on the plot. |
delta |
Numeric value. The positive (and negative) value specified above (and below) which the splicing events are considered to be statistically significant and will consequently be color-annotated on the plot. |
point.size |
Numeric value. The point size for the data points. Default value is |
xlabel.size |
Numeric value. Font size of the xtick labels. Default is |
anno |
Logical value. If set to |
anno.tran_id |
Vector of character strings. When |
label.size |
Numeric value. Only applicable if |
y.upper.offset |
Numeric value. The value in -log10(p-value) to increase the upper limit of the y-axis. To be used when |
Value
An object of class S3 containing with new slot MarvelObject$DE$PSI$Plot[["method"]]
.
Examples
marvel.demo <- readRDS(system.file("extdata/data", "marvel.demo.rds", package="MARVEL"))
marvel.demo <- PlotDEValues.PSI.Mean(MarvelObject=marvel.demo,
method="ad",
pval=0.10,
delta=5
)
# Check output
marvel.demo$DE$PSI$Plot[["ad"]]