Nothing
#' @export
#' @importFrom S4Vectors DataFrame metadata<-
mergeResults <- function(ranges, tab, tol, get.best=TRUE, merge.args=list(), combine.args=list(), best.args=list()) {
merged <- do.call(mergeWindows, c(list(ranges, tol=tol), merge.args))
combined <- do.call(combineTests, c(list(merged$ids, tab), combine.args))
output <- DataFrame(regions=I(merged$regions), combined=I(combined))
if (get.best) {
output$best <- do.call(getBestTest, c(list(merged$id, tab), best.args))
}
metadata(output)$ids <- merged$ids
output
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.