Description Usage Arguments Value Author(s) See Also Examples
Compare open reading frames for RMATS differentially spliced events
1 2 3 4 5 6 7 8 | rmatsTranscriptChangeSummary(
rmatsDataSet,
exons = NULL,
eventTypes = "all",
BSgenome,
NMD = TRUE,
exportGTF = NULL
)
|
rmatsDataSet |
rmatsDataSet generated from |
exons |
GRanges gtf annotation of exons |
eventTypes |
which event type to filter for? default="all" |
BSgenome |
BSGenome object containing the genome for the species analysed |
NMD |
Use NMD predictions? (Note: notNMD must be installed to use this feature) |
exportGTF |
file name to export alternative isoform GTFs (default=NULL) |
data.frame containing significant RMATS differential splicing data and ORF change summaries
Beth Signal
Other rmats data processing:
altIntronRmats()
,
altSpliceSiteRmats()
,
annotateEventCoords()
,
annotateOverlapRmats()
,
betweenNumbers()
,
duplicateReference()
,
exonsToIntrons()
,
extractEvent()
,
filterRmatsEvents()
,
readRmatsDataSet()
,
reformatExons()
,
removeDuplicatePairs()
,
removeExonsBetween()
,
skipExonByJunction()
,
splitLongExons()
1 2 3 4 5 6 7 8 | 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)
rmats_summary <- rmatsTranscriptChangeSummary(rmatsDataSet = rds.filtered, exons, BSgenome = g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.