Description Usage Arguments Value Author(s) See Also Examples
View source: R/quickIrfinder.R
Compare open reading frames for RMATS differentially spliced events
1 2 3 4 5 6 7 8 | irfTranscriptChangeSummary(
irfDataSet,
exons = NULL,
BSgenome,
intronMatchType = "exact",
NMD = TRUE,
exportGTF = NULL
)
|
irfDataSet |
irfsDataSet generated from |
exons |
GRanges gtf annotation of exons |
BSgenome |
BSGenome object containing the genome for the species analysed |
intronMatchType |
what type of matching to perform in findIntronContainingTranscripts? |
NMD |
Use NMD predictions? |
exportGTF |
file name to export alternative isoform GTFs (default=NULL) |
data.frame containing significant IRFinder differential splicing data and ORF change summaries
Beth Signal
Other IRFinder data processing:
filterIrfEvents()
,
readIrfDataSet()
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
irfinder_file <- list.files(system.file("extdata", "irf_small/", package = "GeneStructureTools"), full.names = TRUE)
irf <- readIrfDataSet(irfinder_file)
irf.filtered <- filterIrfEvents(irf, FDR = 0.01, psiDelta = 0.1)
irf_summary <- irfTranscriptChangeSummary(irf.filtered, exons, BSgenome = g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.