Description Usage Arguments Details Value Author(s) References See Also Examples
cluster intervals
1 2 3 4 5 6 7 8 9 |
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.org/en/latest/content/tools/cluster.html
1 2 3 4 5 6 7 8 9 10 | 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.