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