Nothing
.onAttach <- function(libname, pkgname) {
required_packages <- c("ggplot2", "dplyr", "RColorBrewer",
"httr", "seqinr", "stringr", "tidyr")
for (pkg in required_packages) {
if (!requireNamespace(pkg, quietly = TRUE)) {
stop(paste("Package", pkg, "is not installed."))
}
}
packageStartupMessage("Package ", pkgname, " loaded successfully!")
}
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.