Description Usage Arguments Value Author(s) See Also Examples
Get upstream open reading frames for transcripts with annotated main ORFs
1 |
transcripts |
GRanges object with ONLY exon annotations (no gene, transcript, CDS etc.) with all transcripts for orf retrevial |
BSgenome |
BSgenome object |
orfs |
orf annotation for the transcripts object. Generated by getOrfs(transcripts, ...) |
findExonB |
find the distance to and exon number of the downstream (B) junction? |
data.frame with all upstream ORF details.
Beth Signal
Other ORF annotation:
getOrfs()
,
maxLocation()
,
orfSimilarity()
1 2 3 4 5 6 7 8 | gtf <- rtracklayer::import(system.file("extdata", "gencode.vM25.small.gtf",
package = "GeneStructureTools"
))
transcript <- gtf[gtf$type == "exon" & gtf$gene_name == "Tmem208"]
g <- BSgenome.Mmusculus.UCSC.mm10::BSgenome.Mmusculus.UCSC.mm10
# longest ORF for each transcripts
orfs <- getOrfs(transcript, BSgenome = g, returnLongestOnly = FALSE)
uORFS <- getUOrfs(transcript, BSgenome = g, orfs = orfs, findExonB = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.