Description Usage Arguments Value Author(s) See Also Examples
View source: R/AltSplicingJunctionSupported.R
Find junctions that pair with each end of an AA (alt. acceptor) or AD (alt. donor) whippet range Find junctions that pair with the upsteam/downstream exon of an AF (alt. first exon) or an AL (alt. last exon)
1 | findJunctionPairs(whippetDataSet, type = NA)
|
whippetDataSet |
whippetDataSet generated from |
type |
type of Whippet event (AA/AD/AF/AL). Note only one event type should be processed at a time. |
GRanges object with alternative junctions. Each event should have a set of X (for which the psi measurement is reported) junctions, and alternative Y junctions.
Beth Signal
Other whippet splicing isoform creation:
addIntronInTranscript()
,
alterTranscriptStartEnds()
,
findExonContainingTranscripts()
,
findIntronContainingTranscripts()
,
replaceJunction()
,
skipExonInTranscript()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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.altAce <- filterWhippetEvents(wds, eventTypes = "AA", psiDelta = 0.1, probability = 0.8)
jncPairs.altAce <- findJunctionPairs(wds.altAce, type = "AA")
wds.altDon <- filterWhippetEvents(wds, eventTypes = "AD", psiDelta = 0.1, probability = 0.8)
jncPairs.altDon <- findJunctionPairs(wds.altDon, type = "AD")
wds.altFirst <- filterWhippetEvents(wds, eventTypes = "AF", psiDelta = 0.1, probability = 0.8)
jncPairs.altFirst <- findJunctionPairs(wds.altFirst, type = "AF")
wds.altLast <- filterWhippetEvents(wds, eventTypes = "AL", psiDelta = 0.1, probability = 0.8)
jncPairs.altLast <- findJunctionPairs(wds.altLast, type = "AL")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.