Nothing
# Query KEGGREST package
use_KEGGREST <- function(expr) {
kegg_out <- try({ expr }, silent = TRUE)
if (inherits(kegg_out, "try-error")) {
message("'KEGGREST' query is not available at the moment. Are you connected",
" to internet and if so, please, try again later.")
return(NULL)
}
return(kegg_out)
}
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.