Description Usage Arguments Value Author(s) See Also Examples
Compare open reading frames for whippet differentially spliced events
1 2 3 4 5 6 7 8 9 10 | whippetTranscriptChangeSummary(
whippetDataSet,
unfilteredWDS,
BSgenome,
eventTypes = "all",
exons,
NMD = FALSE,
exportGTF = NULL,
selectLongest = 1
)
|
whippetDataSet |
whippetDataSet generated from |
unfilteredWDS |
unfiltered whippetDataSet generated from |
BSgenome |
BSGenome object containing the genome for the species analysed |
eventTypes |
which event type to filter for? default = "all" |
exons |
GRanges gtf annotation of exons |
NMD |
Use NMD predictions? (Note: notNMD must be installed to use this feature) |
exportGTF |
file name to export alternative isoform GTFs (default=NULL) |
selectLongest |
passed to getORFs() |
data.frame containing signficant whippet diff data and ORF change summaries
Beth Signal
Other whippet data processing:
coordinates()
,
diffSplicingResults()
,
filterWhippetEvents()
,
formatWhippetEvents()
,
junctions()
,
readCounts()
,
readWhippetDIFFfiles()
,
readWhippetDataSet()
,
readWhippetJNCfiles()
,
readWhippetPSIfiles()
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
whippetFiles <- system.file("extdata", "whippet_small/",
package = "GeneStructureTools"
)
wds.all <- readWhippetDataSet(whippetFiles)
wds.signif <- filterWhippetEvents(wds.all)
whippetTranscriptChangeSummary(whippetDataSet = wds.signif, unfilteredWDS = wds.all, exons = exons, BSgenome = g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.