Nothing
#' Element representation as an S3 class tibble
#' @rdname tblelement
#' @name tblelement
#' @param tbl_elementset An S3 \code{elementset} tibble.
#' @return An S3 \code{element} object in a tibble representation.
#' @importFrom tibble tibble
#' @importFrom dplyr distinct '%>%'
#' @keywords internal
#' @examples
#' tbl <- BiocSet:::.tbl_elementset(set1 = letters, set2 = LETTERS)
#' BiocSet:::.tbl_element(tbl)
.tbl_element <-
function(tbl_elementset)
{
stopifnot(
.is_tbl_elementset(tbl_elementset)
)
tbl <- tibble(element = tbl_elementset$element) %>% distinct()
subclass_tbl_elementset_base(tbl, "tbl_element")
}
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.