View source: R/cluster.region.R
cluster.region | R Documentation |
cluster intervals
cluster.region(
x,
distance = 0,
check.zero.based = TRUE,
check.chr = TRUE,
check.valid = TRUE,
check.sort = TRUE,
verbose = TRUE
)
x |
The region |
distance |
maximum distance between regions to be merged. defaults to 0 which means overlapping or bookended features. note that you can use negative distances to enforce a minimum overlap. |
check.zero.based |
should 0 based coordinates be checked |
check.chr |
should chr prefix be checked |
check.valid |
should the region be checkded for integerity |
check.sort |
should regions be checked for sort order |
verbose |
should log messages and checking take place |
clusters adjacent features of a specified distance.
A data.frame in bed format
Daryl Waggott
http://bedtools.readthedocs.io/en/latest/content/tools/cluster.html
bedr.merge.region
if (check.binary("bedtools")) {
index <- get.example.regions();
a <- index[[1]];
b <- cluster.region(a, distance = 0);
d <- cluster.region(a, distance = 100);
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.