Description Usage Arguments Value See Also Examples
View source: R/data_inclusionLevels.R
Quantify alternative splicing events
1 2 3 4 5 6 7 | quantifySplicing(
annotation,
junctionQuant,
eventType = c("SE", "MXE", "ALE", "AFE", "A3SS", "A5SS"),
minReads = 10,
genes = NULL
)
|
annotation |
List of data frames: annotation for each alternative splicing event type |
junctionQuant |
Data frame: junction quantification |
eventType |
Character: splicing event types to quantify |
minReads |
Integer: discard alternative splicing quantified using a number of reads below this threshold |
genes |
Character: gene symbols for which the splicing quantification of associated splicing events is performed (by default, splicing events from all genes are selected) |
Data frame with the quantification of the alternative splicing events
Other functions for PSI quantification:
filterPSI()
,
getSplicingEventTypes()
,
listSplicingAnnotations()
,
loadAnnotation()
,
plotRowStats()
1 2 3 4 5 | # Calculate PSI for skipped exon (SE) and mutually exclusive (MXE) events
annot <- readFile("ex_splicing_annotation.RDS")
junctionQuant <- readFile("ex_junctionQuant.RDS")
quantifySplicing(annot, junctionQuant, eventType=c("SE", "MXE"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.