Description Usage Arguments Value Author(s) See Also Examples
View source: R/compareTranscripts.R
Evaluate changes to ORFs caused by alternative splicing
1 2 3 4 5 6 7 8 9 10 11 |
orfsX |
orf information for 'normal' transcripts. Generated by getOrfs() |
orfsY |
orf information for 'alternative' transcripts. Generated by getOrfs() |
filterNMD |
filter orf information for transcripts not targeted by nmd first? |
geneSimilarity |
compare orf to all orfs in gene? |
compareUTR |
compare UTRs? |
compareBy |
compare by 'transcript' isoforms or by 'gene' groups |
allORFs |
orf information for all transcripts for novel sequence comparisons. Generated by getOrfs() |
uniprotData |
data.frame of uniprot sequence information |
uniprotSeqFeatures |
data.frame of uniprot sequecne features |
data.frame with orf changes
Beth Signal
Other transcript isoform comparisons:
attrChangeAltSpliced()
,
transcriptChangeSummary()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 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.exonSkip <- filterWhippetEvents(wds, eventTypes = "CE", psiDelta = 0.2)
exons.exonSkip <- findExonContainingTranscripts(wds.exonSkip, exons,
variableWidth = 0, findIntrons = FALSE
)
ExonSkippingTranscripts <- skipExonInTranscript(exons.exonSkip, exons, whippetDataSet = wds.exonSkip)
orfsSkipped <- getOrfs(ExonSkippingTranscripts[ExonSkippingTranscripts$set == "skipped_exon"],
BSgenome = g
)
orfsIncluded <- getOrfs(ExonSkippingTranscripts[ExonSkippingTranscripts$set == "included_exon"],
BSgenome = g
)
orfDiff(orfsSkipped, orfsIncluded, filterNMD = FALSE)
orfsProteinCoding <- getOrfs(exons[exons$gene_name == "Tmem208" &
exons$transcript_type == "protein_coding"], BSgenome = g)
orfsNMD <- getOrfs(exons[exons$gene_name == "Tmem208" &
exons$transcript_type == "nonsense_mediated_decay"], BSgenome = g)
orfDiff(orfsProteinCoding, orfsNMD, filterNMD = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.