Description Usage Arguments Value References See Also Examples
View source: R/sequence_features.R
Input of this function, is the output of the function [distToCds()]
1 | isOverlapping(dists)
|
dists |
a vector of distances between ORF and cds |
a logical vector
doi: 10.1074/jbc.R116.733899
Other features:
computeFeaturesCage()
,
computeFeatures()
,
countOverlapsW()
,
disengagementScore()
,
distToCds()
,
distToTSS()
,
entropy()
,
floss()
,
fpkm_calc()
,
fpkm()
,
fractionLength()
,
initiationScore()
,
insideOutsideORF()
,
isInFrame()
,
kozakSequenceScore()
,
orfScore()
,
rankOrder()
,
ribosomeReleaseScore()
,
ribosomeStallingScore()
,
startRegionCoverage()
,
startRegion()
,
stopRegion()
,
subsetCoverage()
,
translationalEff()
1 2 3 4 5 6 7 8 | # simple example
isOverlapping(c(-3,-6,8,11,15))
# GRangesList example
grl <- GRangesList(tx1_1 = GRanges("1", IRanges(1,10), "+"))
fiveUTRs <- GRangesList(tx1 = GRanges("1", IRanges(1,20), "+"))
dist <- distToCds(grl, fiveUTRs)
isOverlapping <- isOverlapping(dist)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.