Description Usage Arguments Value References See Also Examples
View source: R/sequence_features.R
Creates an ordering of ORFs per transcript, so that ORF with the most upstream start codon is 1, second most upstream start codon is 2, etc. Must input a grl made from ORFik, txNames_2 -> 2.
1 | rankOrder(grl)
|
grl |
a |
a numeric vector of integers
doi: 10.1074/jbc.R116.733899
Other features:
computeFeaturesCage(),
computeFeatures(),
countOverlapsW(),
disengagementScore(),
distToCds(),
distToTSS(),
entropy(),
floss(),
fpkm_calc(),
fpkm(),
fractionLength(),
initiationScore(),
insideOutsideORF(),
isInFrame(),
isOverlapping(),
kozakSequenceScore(),
orfScore(),
ribosomeReleaseScore(),
ribosomeStallingScore(),
startRegionCoverage(),
startRegion(),
stopRegion(),
subsetCoverage(),
translationalEff()
1 2 3 4 5 6 7 8 9 | gr_plus <- GRanges(seqnames = c("chr1", "chr1"),
ranges = IRanges(c(7, 14), width = 3),
strand = c("+", "+"))
gr_minus <- GRanges(seqnames = c("chr2", "chr2"),
ranges = IRanges(c(4, 1), c(9, 3)),
strand = c("-", "-"))
grl <- GRangesList(tx1 = gr_plus, tx2 = gr_minus)
grl <- ORFik:::makeORFNames(grl)
rankOrder(grl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.