Nothing
##' @method arrange enrichResult
##' @export
arrange.enrichResult <- function(.data, ...) {
dots <- quos(...)
.data@result %<>% arrange(!!!dots,)
return(.data)
}
##' @method arrange gseaResult
##' @export
arrange.gseaResult <- arrange.enrichResult
##' @method arrange compareClusterResult
##' @export
arrange.compareClusterResult <- function(.data, ...) {
dots <- quos(...)
.data@compareClusterResult %<>% arrange(!!!dots,)
return(.data)
}
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.