Description Usage Arguments Value Author(s) See Also Examples
View source: R/altSplicingrMATS.R
Generate isoforms with and without a retain intron from RMATS data shortcut function: uses the same base function for intron retention
1 | altIntronRmats(rmatsEvents, exons)
|
rmatsEvents |
data.frame containing RMATS RI events |
exons |
reference exons GRanges |
GRanges retained and skipped intron isoforms
Beth Signal
Other rmats data processing:
altSpliceSiteRmats()
,
annotateEventCoords()
,
annotateOverlapRmats()
,
betweenNumbers()
,
duplicateReference()
,
exonsToIntrons()
,
extractEvent()
,
filterRmatsEvents()
,
readRmatsDataSet()
,
reformatExons()
,
removeDuplicatePairs()
,
removeExonsBetween()
,
rmatsTranscriptChangeSummary()
,
skipExonByJunction()
,
splitLongExons()
1 2 3 4 5 6 7 8 9 10 | 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.RI <- extractEvent(rds.filtered, "RI")
isoforms.RI <- altIntronRmats(diffSplice.RI, exons = exons)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.