Nothing
###############################################################################@
#' Get reference URLs of biological tissues
#'
#' @param ids tissue identifiers
#' @param reference reference database (default: "Uberon")
#'
#' @return URLs corresponding to provided ids
#'
#' @export
#'
get_tissue_ref_url <- function(ids, reference="Uberon"){
reference <- match.arg(reference)
url_templates <- c("Uberon"="https://purl.obolibrary.org/obo/%s")
return(sprintf(url_templates[reference], ids))
}
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.