From dd54aadfa4b3ace784d6c3f49482aac5c6968f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lie=20Siberchicot?= Date: Tue, 19 Mar 2024 16:07:07 +0100 Subject: [PATCH] Avoid the 'build_Lifemap' example --- R/build_Lifemap.R | 3 +++ man/build_Lifemap.Rd | 3 +++ 2 files changed, 6 insertions(+) diff --git a/R/build_Lifemap.R b/R/build_Lifemap.R index b352d6b..502115b 100644 --- a/R/build_Lifemap.R +++ b/R/build_Lifemap.R @@ -29,7 +29,10 @@ #' @export #' @examples #' data(eukaryotes_80) +#' \dontrun{ +#' # make sure you have a good internet connection to load these very large files #' LM <- build_Lifemap(eukaryotes_80, "fr") +#' } build_Lifemap <- function(df, basemap = c("ncbi", "base", "fr", "virus"), verbose = TRUE) { basemap <- match.arg(arg = basemap, choices = basemap) diff --git a/man/build_Lifemap.Rd b/man/build_Lifemap.Rd index 35fb9c3..31ccbe5 100644 --- a/man/build_Lifemap.Rd +++ b/man/build_Lifemap.Rd @@ -39,5 +39,8 @@ A function to construct a LifemapR object, usable by the other functions of the } \examples{ data(eukaryotes_80) +\dontrun{ +# make sure you have a good internet connection to load these very large files LM <- build_Lifemap(eukaryotes_80, "fr") } +}