#' Guess Gene ID type
#'
#' @param ids
#'
#' @return
#' @export
#'
#' @examples
guessIdType <- function(ids) {
overlaps <- sapply(allIds, function(typedIds) {
length(intersect(typedIds, ids))
})
return(names(overlaps)[which.max(overlaps)])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.