Description Usage Arguments Value Author(s) See Also Examples
View source: R/altTransStartEnd.R
Find transcripts overlapping first/last exons and alter their transcription start site or transcription end site
1 | alterTranscriptStartEnds(whippetDataSet, exons, unfilteredWDS, type = NA)
|
whippetDataSet |
whippetDataSet generated from |
exons |
GRanges object made from a GTF containing exon coordinates |
unfilteredWDS |
unfiltered whippetDataSet generated from |
type |
type of Whippet event (TS/TE). Note only one event type should be processed at a time. |
GRanges object with transcripts containing alternative junctions.
Beth Signal
Other whippet splicing isoform creation:
addIntronInTranscript()
,
findExonContainingTranscripts()
,
findIntronContainingTranscripts()
,
findJunctionPairs()
,
replaceJunction()
,
skipExonInTranscript()
1 2 3 4 5 6 7 8 9 10 11 | 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 <- readWhippetDataSet(whippetFiles)
wds.TS <- filterWhippetEvents(wds, eventTypes = "TS", psiDelta = 0.1, probability = 0.95)
alterTranscriptStartEnds(whippetDataSet = wds.TS, exons = exons, unfilteredWDS = wds, type = "TS")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.