Description Usage Arguments Value Author(s) See Also Examples
View source: R/altSplicingrMATS.R
Generate isoforms with and without a skipped exon (or mutually exclusive exons)
1 | skipExonByJunction(rmatsEvents, eventType = "SE", exons)
|
rmatsEvents |
data.frame containing RMATS SE or MXE events |
eventType |
type of event to skip exons for. "SE" - skipped exons, or "MXE" - mutually exclusive exons |
exons |
reference exons GRanges |
data.frame with overlapping event/exons
Beth Signal
Other rmats data processing:
altIntronRmats()
,
altSpliceSiteRmats()
,
annotateEventCoords()
,
annotateOverlapRmats()
,
betweenNumbers()
,
duplicateReference()
,
exonsToIntrons()
,
extractEvent()
,
filterRmatsEvents()
,
readRmatsDataSet()
,
reformatExons()
,
removeDuplicatePairs()
,
removeExonsBetween()
,
rmatsTranscriptChangeSummary()
,
splitLongExons()
1 2 3 4 5 6 7 8 9 10 11 12 13 | gtf <- rtracklayer::import(system.file("extdata", "gencode.vM25.small.gtf", package = "GeneStructureTools"))
exons <- gtf[gtf$type == "exon"]
g <- BSgenome.Mmusculus.UCSC.mm10::BSgenome.Mmusculus.UCSC.mm10
rmats_directory <- system.file("extdata", "rmats_small/", package = "GeneStructureTools")
rds <- readRmatsDataSet(rmats_directory)
rds.filtered <- filterRmatsEvents(rds, FDR = 0.01, psiDelta = 0.1)
diffSplice.MXE <- extractEvent(rds.filtered, "MXE")
isoforms.MXE <- skipExonByJunction(diffSplice.MXE, eventType = "MXE", exons = exons)
diffSplice.SE <- extractEvent(rds.filtered, "SE")
isoforms.SE <- skipExonByJunction(diffSplice.SE, eventType = "SE", exons = exons)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.