Description Usage Arguments Value Author(s) Examples
View source: R/quickAnalysis.R
Compare open reading frames for whippet differentially spliced events
1 2 3 4 5 6 7 8 9 10 11 |
leafcutterEvents |
data.frame containing information from the per_intron_results.tab file output from leafcutter. |
exons |
GRanges gtf annotation of exons |
FDR |
minimum FDR for events. If left as default (NA), will use FDR=0.05. To stop FDR filtering set to 1. |
combineGeneEvents |
combine clusters occurring in the same gene? Currently not recommended. |
BSgenome |
BSGenome object containing the genome for the species analysed |
NMD |
Use NMD predictions? (Note: notNMD must be installed to use this feature) |
showProgressBar |
show a progress bar of alternative isoform generation? |
junctions |
junctions GRanges object from readLeafcutterJunctions() |
exportGTF |
file name to export alternative isoform GTFs (default=NULL) |
data.frame containing significant whippet diff data and ORF change summaries
Beth Signal
1 2 3 4 5 6 | leafcutterFiles <- list.files(system.file("extdata", "leaf_small/", package = "GeneStructureTools"), full.names = TRUE)
leafcutterIntrons <- read.delim(leafcutterFiles[grep("intron_results", leafcutterFiles)], stringsAsFactors = FALSE)
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
leafcutterTranscriptChangeSummary(leafcutterEvents = leafcutterIntrons, exons = exons, BSgenome = g, NMD = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.