Description Usage Arguments Value Note See Also Examples
View source: R/uniqueRegions.R
Returns the regions unique to only one of the two region sets, that is, all parts of the genome covered by only one of the two region sets.
1 | uniqueRegions(A, B)
|
A |
a region set in any of the accepted formats by |
B |
a region set in any of the accepted formats by |
It returns a GenomicRanges
object with the regions unique to one of the region sets.
All metadata (additional columns in the region set in addition to chromosome, start and end) will be ignored and not present in the returned region set.
toGRanges
, subtractRegions
, commonRegions
, mergeRegions
1 2 3 4 5 6 7 | A <- data.frame("chr1", c(1, 10, 20, 30), c(12, 13, 28, 40))
B <- data.frame("chr1", 25, 35)
uniques <- uniqueRegions(A, B)
plotRegions(list(A, B, uniques), chromosome="chr1", regions.labels=c("A", "B", "uniques"), regions.colors=3:1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.