From 307bbe113e51e38a5078f5a4426497d638700a57 Mon Sep 17 00:00:00 2001 From: wlandau-lilly Date: Fri, 2 Feb 2018 05:50:38 -0500 Subject: [PATCH] Run the read_drake_seed() example. --- R/read.R | 2 -- man/read_drake_seed.Rd | 2 -- 2 files changed, 4 deletions(-) diff --git a/R/read.R b/R/read.R index 3d3377110..3f75dfffa 100644 --- a/R/read.R +++ b/R/read.R @@ -503,7 +503,6 @@ read_drake_meta <- function( #' current working directory only. #' @param verbose whether to print console messages #' @examples -#' \dontrun{ #' cache <- storr::storr_environment() # For the examples. #' my_plan <- drake_plan( #' target1 = sqrt(1234), @@ -523,7 +522,6 @@ read_drake_meta <- function( #' digest::digest(read_drake_seed(cache = cache)) #' digest::digest(.Random.seed) #' readd(target2, cache = cache) -#' } read_drake_seed <- function( path = getwd(), search = TRUE, diff --git a/man/read_drake_seed.Rd b/man/read_drake_seed.Rd index a4da3ccad..880bb7ec3 100644 --- a/man/read_drake_seed.Rd +++ b/man/read_drake_seed.Rd @@ -34,7 +34,6 @@ this one central seed. That way, reproducibility is protected, even under randomness. } \examples{ -\dontrun{ cache <- storr::storr_environment() # For the examples. my_plan <- drake_plan( target1 = sqrt(1234), @@ -55,7 +54,6 @@ digest::digest(read_drake_seed(cache = cache)) digest::digest(.Random.seed) readd(target2, cache = cache) } -} \seealso{ \code{\link[=read_drake_config]{read_drake_config()}} }