Description Usage Arguments Value Note Author(s) Examples
Features coverage
1 2 |
... |
objects of type |
or |
if |
not |
If not |
get.feats |
if |
pointer.only |
(Only used if |
The number of bases covered by the feat arguments, or the
combined feat object if get.feats==TRUE
.
Any features object passed into this function which is stored as a pointer to an object stored in C may be reordered (sorted) by this function.
Melissa J. Hubisz
1 2 3 4 5 6 7 8 9 10 | feat1 <- feat(seqname=c(rep("chr1", 3), rep("chr2", 2)),
start=c(1, 5, 100, 10, 20),
end=c(7, 10, 105, 15, 30))
feat2 <- feat(seqname=c("chr1","chr2"),
start=c(1,1), end=c(5,10))
coverage.feat(feat1, feat2, or=FALSE)
coverage.feat(feat1, feat2, or=TRUE)
coverage.feat(feat1, feat2, get.feats=TRUE, or=TRUE)
coverage.feat(feat1, feat2, or=TRUE)
rm(feat1, feat2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.