knitr::opts_chunk$set(echo = FALSE, warning = FALSE)
suppressMessages(library(AnnotationHub)) suppressMessages(library(DT)) ah = AnnotationHub() orgdb <- query(ah, "OrgDb") df <- as.data.frame(cbind(orgdb$ah_id, orgdb$species, orgdb$taxonomyid, orgdb$title)) names(df) <- c("AnotationHub ID", "Species", "Taxonomy ID", "Title") DT::datatable(df)
All the kegg organism short name got through kegg rest api
source("../R/module_app_input_utils.R") kegg_list <- kegg_link() DT::datatable(kegg_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.