From d34bb3e0e499af2afbb10baf5c07528092212b96 Mon Sep 17 00:00:00 2001
From: plietar
Create an orderly store with a file store and a complete tree. See
orderly2::orderly_init()
for more details.
id1 <- orderly2::orderly_run("data")
-## ℹ Starting packet 'data' `20240708-173323-6fc634f2` at 2024-07-08 17:33:23.443321
+## ℹ Starting packet 'data' `20240710-102609-362a30fc` at 2024-07-10 10:26:09.219197
## > d <- read.csv("data.csv")
## > d$z <- resid(lm(y ~ x, d))
## > saveRDS(d, "data.rds")
## ✔ Finished running data.R
-## ℹ Finished 20240708-173323-6fc634f2 at 2024-07-08 17:33:23.479339 (0.03601766 secs)
+## ℹ Finished 20240710-102609-362a30fc at 2024-07-10 10:26:09.254927 (0.03572965 secs)
id2 <- orderly2::orderly_run("analysis")
-## ℹ Starting packet 'analysis' `20240708-173323-81eaf8d3` at 2024-07-08 17:33:23.513865
+## ℹ Starting packet 'analysis' `20240710-102609-483418bb` at 2024-07-10 10:26:09.287808
## > orderly2::orderly_dependency("data", "latest()", "data.rds")
-## ℹ Depending on data @ `20240708-173323-6fc634f2` (via latest(name == "data"))
+## ℹ Depending on data @ `20240710-102609-362a30fc` (via latest(name == "data"))
## > d <- readRDS("data.rds")
## > png("analysis.png")
## > plot(y ~ x, d)
@@ -155,14 +155,14 @@ Basic use## agg_png
## 2
## ✔ Finished running analysis.R
-## ℹ Finished 20240708-173323-81eaf8d3 at 2024-07-08 17:33:23.700104 (0.1862397 secs)
When we look at the metadata for the packet created from the
analysis
report, we can see it has used
-20240708-173323-6fc634f2
as its dependency:
20240710-102609-362a30fc
as its dependency:
orderly2::orderly_metadata(id2)$depends
## packet query files
-## 1 20240708-173323-6fc634f2 latest(name == "data") data.rds....
(indeed it had to, there is only one copy of the data
packet to pick from).
cyl
:
orderly2::orderly_run("data", list(cyl = 4))
-## ℹ Starting packet 'data' `20240708-173324-17521339` at 2024-07-08 17:33:24.094335
+## ℹ Starting packet 'data' `20240710-102609-c0708a99` at 2024-07-10 10:26:09.754879
## ℹ Parameters:
## • cyl: 4
## > orderly2::orderly_parameters(cyl = NULL)
## > d <- mtcars[mtcars$cyl == cyl, ]
## > saveRDS(d, "data.rds")
## ✔ Finished running data.R
-## ℹ Finished 20240708-173324-17521339 at 2024-07-08 17:33:24.126508 (0.0321734 secs)
-## [1] "20240708-173324-17521339"
+## ℹ Finished 20240710-102609-c0708a99 at 2024-07-10 10:26:09.786579 (0.03170037 secs)
+## [1] "20240710-102609-c0708a99"
orderly2::orderly_run("data", list(cyl = 6))
-## ℹ Starting packet 'data' `20240708-173324-2529100c` at 2024-07-08 17:33:24.148738
+## ℹ Starting packet 'data' `20240710-102609-cde98f1c` at 2024-07-10 10:26:09.807431
## ℹ Parameters:
## • cyl: 6
## > orderly2::orderly_parameters(cyl = NULL)
## > d <- mtcars[mtcars$cyl == cyl, ]
## > saveRDS(d, "data.rds")
## ✔ Finished running data.R
-## ℹ Finished 20240708-173324-2529100c at 2024-07-08 17:33:24.179934 (0.03119636 secs)
-## [1] "20240708-173324-2529100c"
+## ℹ Finished 20240710-102609-cde98f1c at 2024-07-10 10:26:09.835665 (0.02823305 secs)
+## [1] "20240710-102609-cde98f1c"
orderly2::orderly_run("data", list(cyl = 8))
-## ℹ Starting packet 'data' `20240708-173324-336c93ff` at 2024-07-08 17:33:24.203909
+## ℹ Starting packet 'data' `20240710-102609-db26b192` at 2024-07-10 10:26:09.859044
## ℹ Parameters:
## • cyl: 8
## > orderly2::orderly_parameters(cyl = NULL)
## > d <- mtcars[mtcars$cyl == cyl, ]
## > saveRDS(d, "data.rds")
## ✔ Finished running data.R
-## ℹ Finished 20240708-173324-336c93ff at 2024-07-08 17:33:24.230692 (0.02678275 secs)
-## [1] "20240708-173324-336c93ff"
Our follow-on analysis contains:
orderly2::orderly_parameters(cyl = NULL) @@ -233,7 +233,7 @@
).Filtering candidates by parametersthis:cyl
+## ℹ Finished 20240710-102610-0981d7cb at 2024-07-10 10:26:10.092804 (0.05256438 secs) +## [1] "20240710-102610-0981d7cb"orderly2::orderly_run("analysis", list(cyl = 4)) -## ℹ Starting packet 'analysis' `20240708-173324-62818858` at 2024-07-08 17:33:24.387952 +## ℹ Starting packet 'analysis' `20240710-102610-0981d7cb` at 2024-07-10 10:26:10.04024 ## ℹ Parameters: ## • cyl: 4 ## > orderly2::orderly_parameters(cyl = NULL) @@ -241,7 +241,7 @@
Filtering candidates by parameters## + "data", ## + "latest(parameter:cyl == this:cyl)", ## + "data.rds") -## ℹ Depending on data @ `20240708-173324-17521339` (via latest(parameter:cyl == this:cyl && name == "data")) +## ℹ Depending on data @ `20240710-102609-c0708a99` (via latest(parameter:cyl == this:cyl && name == "data")) ## > d <- readRDS("data.rds") ## > png("analysis.png") ## > plot(mpg ~ disp, d) @@ -249,8 +249,8 @@
Filtering candidates by parameters## agg_png ## 2 ## ✔ Finished running analysis.R -## ℹ Finished 20240708-173324-62818858 at 2024-07-08 17:33:24.44188 (0.05392814 secs) -## [1] "20240708-173324-62818858"
orderly2::orderly_run("analysis", list(cyl = 9000))
-## ℹ Starting packet 'analysis' `20240708-173324-8673176b` at 2024-07-08 17:33:24.528374
+## ℹ Starting packet 'analysis' `20240710-102610-2c69ef18` at 2024-07-10 10:26:10.17657
## ℹ Parameters:
## • cyl: 9000
## > orderly2::orderly_parameters(cyl = NULL)
@@ -267,7 +267,7 @@ Interpreting errors## + "latest(parameter:cyl == this:cyl)",
## + "data.rds")
## ✖ Error running analysis.R
-## ℹ Finished 20240708-173324-8673176b at 2024-07-08 17:33:24.59256 (0.06418586 secs)
+## ℹ Finished 20240710-102610-2c69ef18 at 2024-07-10 10:26:10.238994 (0.06242466 secs)
## Error in `orderly2::orderly_run()`:
## ! Failed to run report
## Caused by error in `outpack_packet_use_dependency()`:
@@ -324,8 +324,8 @@ Interpreting errors## [1] 3
##
## $found
-## [1] "20240708-173324-17521339" "20240708-173324-2529100c"
-## [3] "20240708-173324-336c93ff"
(this would have worked with
rlang::last_error()$explanation$parts$A
too).
You can also use orderly2::orderly_metadata_extract
to
@@ -335,9 +335,9 @@
cyl
took in the evaluating environment.
Instead of a query, you can provide a single id (e.g,
-20240708-173324-62818858
), which would mean that even as
+20240710-102610-0981d7cb
), which would mean that even as
new copies of the data
packet are created, this dependency
will always resolve to the same value.
You can chain together logical operations with
diff --git a/articles/index.html b/articles/index.html
index cd37b638..c571cb89 100644
--- a/articles/index.html
+++ b/articles/index.html
@@ -7,7 +7,7 @@
orderly2
- 1.99.20
+ 1.99.21
Creating an empty orderly reposito
path <- tempfile() # we'll use a temporary directory here - see note below
orderly2::orderly_init(path)
-## ✔ Created orderly root at '/tmp/RtmplJ4AWR/file1b3524c63db5'
which creates a few files:
## . ## ├── .outpack @@ -169,14 +169,14 @@
:Creating your first orderly reportorderly2::orderly_run()
+## [1] "20240710-102613-8bebab5b"id <- orderly2::orderly_run("incoming_data") -## ℹ Starting packet 'incoming_data' `20240708-173327-dd6e3856` at 2024-07-08 17:33:27.869865 +## ℹ Starting packet 'incoming_data' `20240710-102613-8bebab5b` at 2024-07-10 10:26:13.55152 ## > d <- read.csv("data.csv") ## > d$z <- resid(lm(y ~ x, d)) ## > saveRDS(d, "data.rds") ## ✔ Finished running incoming_data.R -## ℹ Finished 20240708-173327-dd6e3856 at 2024-07-08 17:33:27.932913 (0.06304812 secs) +## ℹ Finished 20240710-102613-8bebab5b at 2024-07-10 10:26:13.616706 (0.06518626 secs) id -## [1] "20240708-173327-dd6e3856"
The id
that is created is a new identifier for the
packet that will be both unique among all packets (within reason) and
chronologically sortable. A packet that has an id that sorts after
@@ -185,7 +185,7 @@
## .
## ├── archive
## │ └── incoming_data
-## │ └── 20240708-173327-dd6e3856
+## │ └── 20240710-102613-8bebab5b
## │ ├── data.csv
## │ ├── data.rds
## │ └── incoming_data.R
@@ -198,7 +198,7 @@ Creating your first orderly report## └── incoming_data.R
A few things have changed here:
orderly2::orderly_run()
:
id <- orderly2::orderly_run("analysis")
-## ℹ Starting packet 'analysis' `20240708-173328-62b7c059` at 2024-07-08 17:33:28.388776
+## ℹ Starting packet 'analysis' `20240710-102614-134183cb` at 2024-07-10 10:26:14.078362
## > orderly2::orderly_dependency("incoming_data", "latest()",
## + c("incoming.rds" = "data.rds"))
-## ℹ Depending on incoming_data @ `20240708-173327-dd6e3856` (via latest(name == "incoming_data"))
+## ℹ Depending on incoming_data @ `20240710-102613-8bebab5b` (via latest(name == "incoming_data"))
## > d <- readRDS("incoming.rds")
## > png("analysis.png")
## > plot(y ~ x, d)
@@ -281,7 +281,7 @@ Depending on packets from anot
## agg_png
## 2
## ✔ Finished running analysis.R
-## ℹ Finished 20240708-173328-62b7c059 at 2024-07-08 17:33:28.469544 (0.08076811 secs)
For more information on dependencies, see
vignette("dependencies")
.
id <- orderly2::orderly_run("incoming_data")
-## ℹ Starting packet 'incoming_data' `20240708-173328-ada1f7ef` at 2024-07-08 17:33:28.683199
+## ℹ Starting packet 'incoming_data' `20240710-102614-5fcf9915` at 2024-07-10 10:26:14.379319
## > orderly2::orderly_strict_mode()
## > orderly2::orderly_resource("data.csv")
## > orderly2::orderly_artefact("Processed data", "data.rds")
@@ -363,7 +363,7 @@ Available in-report orderly comman
## > d$z <- resid(lm(y ~ x, d))
## > saveRDS(d, "data.rds")
## ✔ Finished running incoming_data.R
-## ℹ Finished 20240708-173328-ada1f7ef at 2024-07-08 17:33:28.708968 (0.02576971 secs)
id <- orderly2::orderly_run("random", list(n_samples = 15))
-## ℹ Starting packet 'random' `20240708-173328-eb7818c4` at 2024-07-08 17:33:28.922947
+## ℹ Starting packet 'random' `20240710-102614-9f6109cc` at 2024-07-10 10:26:14.625971
## ℹ Parameters:
## • n_samples: 15
## > orderly2::orderly_parameters(n_samples = 10)
@@ -413,7 +413,7 @@ Parameterised reports## > d <- data.frame(x = x, y = x + rnorm(n_samples))
## > saveRDS(d, "data.rds")
## ✔ Finished running random.R
-## ℹ Finished 20240708-173328-eb7818c4 at 2024-07-08 17:33:28.954906 (0.0319581 secs)
Our resulting file has 15 rows, as the parameter we passed in affected the report:
@@ -440,11 +440,11 @@Parameterised reports
+## [1] "20240710-102614-9f6109cc"orderly2::orderly_search('latest(name == "random")') -## [1] "20240708-173328-eb7818c4"
But we can also pass in parameter queries here:
orderly2::orderly_search('latest(name == "random" && parameter:n_samples > 10)')
-## [1] "20240708-173328-eb7818c4"
These can be used within orderly2::orderly_dependency()
(the name == "random"
part is implied by the first
name
argument), for example
## .
## ├── archive
## │ ├── analysis
-## │ │ └── 20240708-173328-62b7c059
+## │ │ └── 20240710-102614-134183cb
## │ │ ├── analysis.R
## │ │ ├── analysis.png
## │ │ └── incoming.rds
## │ ├── incoming_data
-## │ │ ├── 20240708-173327-dd6e3856
+## │ │ ├── 20240710-102613-8bebab5b
## │ │ │ ├── data.csv
## │ │ │ ├── data.rds
## │ │ │ └── incoming_data.R
-## │ │ └── 20240708-173328-ada1f7ef
+## │ │ └── 20240710-102614-5fcf9915
## │ │ ├── data.csv
## │ │ ├── data.rds
## │ │ └── incoming_data.R
## │ └── random
-## │ └── 20240708-173328-eb7818c4
+## │ └── 20240710-102614-9f6109cc
## │ ├── data.rds
## │ └── random.R
## ├── draft
@@ -521,7 +521,7 @@ Shared resourcesWe can run this:
id <- orderly2::orderly_run("use_shared")
-## ℹ Starting packet 'use_shared' `20240708-173329-6b8c373f` at 2024-07-08 17:33:29.4233
+## ℹ Starting packet 'use_shared' `20240710-102615-2421c3c7` at 2024-07-10 10:26:15.144337
## > orderly2::orderly_shared_resource("data.csv")
## > orderly2::orderly_artefact("analysis", "analysis.png")
## > d <- read.csv("data.csv")
@@ -531,11 +531,11 @@ Shared resources## agg_png
## 2
## ✔ Finished running use_shared.R
-## ℹ Finished 20240708-173329-6b8c373f at 2024-07-08 17:33:29.460283 (0.03698277 secs)
+## ℹ Finished 20240710-102615-2421c3c7 at 2024-07-10 10:26:15.181531 (0.03719354 secs)
In the resulting archive, the file that was used from the shared directory is present:
## archive/use_shared
-## └── 20240708-173329-6b8c373f
+## └── 20240710-102615-2421c3c7
## ├── analysis.png
## ├── data.csv
## └── use_shared.R
@@ -629,49 +629,49 @@ When we run the analysis
task, it will pull in the most
-recent version (20240708-173328-ada1f7ef
). However, if you
+recent version (20240710-102614-5fcf9915
). However, if you
had deleted this manually (e.g., to save space or accidentally) or
corrupted it (e.g., by opening some output in Excel and letting it save
changes) it will not be able to be included, and running
analysis
will fail:
orderly2::orderly_run("analysis")
-## ℹ Starting packet 'analysis' `20240708-173330-0b2519a5` at 2024-07-08 17:33:30.046688
+## ℹ Starting packet 'analysis' `20240710-102615-c4877123` at 2024-07-10 10:26:15.770787
## > orderly2::orderly_dependency("incoming_data", "latest()",
## + c("incoming.rds" = "data.rds"))
## ✖ Error running analysis.R
-## ℹ Finished 20240708-173330-0b2519a5 at 2024-07-08 17:33:30.128869 (0.08218169 secs)
+## ℹ Finished 20240710-102615-c4877123 at 2024-07-10 10:26:15.853003 (0.08221602 secs)
## Error in `orderly2::orderly_run()`:
## ! Failed to run report
## Caused by error in `orderly_copy_files()`:
-## ! Unable to copy files, due to deleted packet 20240708-173328-ada1f7ef
-## ℹ Consider 'orderly2::orderly_validate_archive("20240708-173328-ada1f7ef",
+## ! Unable to copy files, due to deleted packet 20240710-102614-5fcf9915
+## ℹ Consider 'orderly2::orderly_validate_archive("20240710-102614-5fcf9915",
## action = "orphan")' to remove this packet from consideration
## Caused by error:
## ! File not found in archive
## ✖ data.rds
The error here tries to be fairly informative, telling us that we
failed because when copying files from
-20240708-173328-ada1f7ef
we found that the packet was
+20240710-102614-5fcf9915
we found that the packet was
corrupt, because the file data.rds
was not found in the
archive. It also suggests a fix; we can tell orderly2
that
-20240708-173328-ada1f7ef
is “orphaned” and should not be
+20240710-102614-5fcf9915
is “orphaned” and should not be
considered for inclusion when we look for dependencies.
We can carry out the suggestion and just validate this packet by running
-orderly2::orderly_validate_archive("20240708-173328-ada1f7ef", action = "orphan")
orderly2::orderly_validate_archive("20240710-102614-5fcf9915", action = "orphan")
or we can validate all the packets we have:
orderly2::orderly_validate_archive(action = "orphan")
-## ✔ 20240708-173327-dd6e3856 (incoming_data) is valid
-## ✔ 20240708-173328-62b7c059 (analysis) is valid
-## ✖ 20240708-173328-ada1f7ef (incoming_data) is invalid due to its files
-## ✔ 20240708-173328-eb7818c4 (random) is valid
-## ✔ 20240708-173329-6b8c373f (use_shared) is valid
If we had the option core.require_complete_tree
enabled,
then this process would also look for any packets that used our
now-deleted packet and orphan those too, as we no longer have a complete
@@ -758,16 +758,16 @@
As can be perhaps inferred from the filenames, the files
.outpack/metadata/<packet-id>
are the metadata for
each packet as it has been run. The files
@@ -807,16 +807,16 @@
The files under Our plugin is called subsequent calls will not display the warning: The rest of this section discusses how you might permanently fix the
issue. FitzJohn R, Ashton R, Hill A (2024).
orderly2: Orderly Next Generation.
-R package version 1.99.20, https://github.com/mrc-ide/orderly2.
+R package version 1.99.21, https://github.com/mrc-ide/orderly2.
.outpack/files/
should never be modified
or deleted. This approach to storage naturally deduplicates the file
archive, so that a large file used in many places is only ever stored
diff --git a/articles/metadata.html b/articles/metadata.html
index eab51276..025270e4 100644
--- a/articles/metadata.html
+++ b/articles/metadata.html
@@ -20,7 +20,7 @@
orderly2
- 1.99.20
+ 1.99.21
An example
+ path: /tmp/RtmplIsFe8/file1bfa3d5e9c71
minimum_orderly_version: 1.99.0
plugins:
example.db:
- path: /tmp/RtmpFoww4i/file1c2637c713b9
example.db
and is listed within the
plugins
section, along with its configuration; in this case
indicating the path where the SQLite file can be loaded from.Trying it out
+## ℹ Finished 20240710-102624-0adf8529 at 2024-07-10 10:26:24.226441 (0.1794653 secs)
+## [1] "20240710-102624-0adf8529"
orderly2::orderly_run("example", root = path_root)
-## ℹ Starting packet 'example' `20240708-173338-4f7ea6f4` at 2024-07-08 17:33:38.315095
+## ℹ Starting packet 'example' `20240710-102624-0adf8529` at 2024-07-10 10:26:24.046976
## > dat <- example.db::query("SELECT * FROM mtcars WHERE cyl == 4")
## > orderly2::orderly_artefact("Summary of data", "data.rds")
## > saveRDS(summary(dat), "data.rds")
## ✔ Finished running example.R
-## ℹ Finished 20240708-173338-4f7ea6f4 at 2024-07-08 17:33:38.496032 (0.1809373 secs)
-## [1] "20240708-173338-4f7ea6f4"
Saving metadata about what th
## .
## ├── archive
## │ └── example
-## │ └── 20240708-173338-4f7ea6f4
+## │ └── 20240710-102624-0adf8529
## │ ├── data.rds
## │ └── example.R
## ├── draft
@@ -487,12 +487,12 @@
Saving metadata about what th
several).
id <- orderly2::orderly_run("example", root = path_root)
-## ℹ Starting packet 'example' `20240708-173339-60aa2af8` at 2024-07-08 17:33:39.380817
+## ℹ Starting packet 'example' `20240710-102625-1d2e2744` at 2024-07-10 10:26:25.117168
## > dat <- example.db::query("SELECT * FROM mtcars WHERE cyl == 4")
## > orderly2::orderly_artefact("Summary of data", "data.rds")
## > saveRDS(summary(dat), "data.rds")
## ✔ Finished running example.R
-## ℹ Finished 20240708-173339-60aa2af8 at 2024-07-08 17:33:39.422584 (0.04176736 secs)
+## ℹ Finished 20240710-102625-1d2e2744 at 2024-07-10 10:26:25.160065 (0.04289699 secs)
meta <- orderly2::orderly_metadata(id, root = path_root)
meta$custom$example.db
## sql rows cols
diff --git a/articles/query.html b/articles/query.html
index ccc87a9a..2650afd7 100644
--- a/articles/query.html
+++ b/articles/query.html
@@ -20,7 +20,7 @@
orderly2
- 1.99.20
+ 1.99.21
Outpack files accidentally
## <https://mrc-ide.github.io/orderly2/articles/troubleshooting.html>
## This warning is displayed once per session.
-## ✔ Wrote '.gitignore'
+## ℹ Starting packet 'data' `20240708-173345-ec5aeb3c` at 2024-07-08 17:33:45.926435
## ℹ Starting packet 'data' `20240710-102631-d2ef2801` at 2024-07-10 10:26:31.827093
## > orderly2::orderly_artefact("Final data", "data.rds")
## > saveRDS(mtcars, "data.rds")
-## ✔ Finished running data.R
-## ℹ Finished 20240708-173345-ec5aeb3c at 2024-07-08 17:33:45.964067 (0.03763103 secs)
+## [1] "20240708-173345-ec5aeb3c"
+## ℹ Finished 20240710-102631-d2ef2801 at 2024-07-10 10:26:31.863847 (0.03675437 secs)
## [1] "20240710-102631-d2ef2801"
orderly2::orderly_run("data")
+## ℹ Starting packet 'data' `20240708-173346-0ce7688a` at 2024-07-08 17:33:46.053698
## ℹ Starting packet 'data' `20240710-102631-f313e685` at 2024-07-10 10:26:31.95268
## > orderly2::orderly_artefact("Final data", "data.rds")
## > saveRDS(mtcars, "data.rds")
-## ✔ Finished running data.R
-## ℹ Finished 20240708-173346-0ce7688a at 2024-07-08 17:33:46.076102 (0.02240443 secs)
+## [1] "20240708-173346-0ce7688a"
+## ℹ Finished 20240710-102631-f313e685 at 2024-07-10 10:26:31.97453 (0.02185059 secs)
## [1] "20240710-102631-f313e685"
Citation
@Manual{,
title = {orderly2: Orderly Next Generation},
author = {Rich FitzJohn and Robert Ashton and Alex Hill},
year = {2024},
- note = {R package version 1.99.20},
+ note = {R package version 1.99.21},
url = {https://github.com/mrc-ide/orderly2},
}
Notes for user of orderly1Examples
# Create a simple example:
path <- orderly2::orderly_example("default")
-#> ✔ Created orderly root at '/tmp/RtmpfBuUfo/file174c1393fe1b'
+#> ✔ Created orderly root at '/tmp/RtmpO3RBoN/file17206a1e0276'
# We simulate running a packet interactively by using 'source';
# you might have run this line-by-line, or with the "Source"
# button in Rstudio.
source(file.path(path, "src/data/data.R"), chdir = TRUE)
-#> Warning: cannot open file '/tmp/RtmpfBuUfo/file174c1393fe1b/src/data/data.R': No such file or directory
+#> Warning: cannot open file '/tmp/RtmpO3RBoN/file17206a1e0276/src/data/data.R': No such file or directory
#> Error in file(filename, "r", encoding = encoding): cannot open the connection
# Having run this, the output of the report is present in the
# source directory:
fs::dir_tree(path)
-#> Error: [ENOENT] Failed to search directory '/tmp/RtmpfBuUfo/file174c1393fe1b': no such file or directory
+#> Error: [ENOENT] Failed to search directory '/tmp/RtmpO3RBoN/file17206a1e0276': no such file or directory
# We can detect what might want cleaning up by running
# "orderly_cleanup_status":
orderly2::orderly_cleanup_status("data", root = path)
-#> Error: Directory does not exist: '/tmp/RtmpfBuUfo/file174c1393fe1b'
+#> Error: Directory does not exist: '/tmp/RtmpO3RBoN/file17206a1e0276'
# Soon this will print more nicely to the screen, but for now you
# can see that the status of "data.rds" is "derived", which means
@@ -161,7 +161,7 @@
Examples
# Do the actual deletion:
orderly2::orderly_cleanup("data", root = path)
-#> Error: Directory does not exist: '/tmp/RtmpfBuUfo/file174c1393fe1b'
+#> Error: Directory does not exist: '/tmp/RtmpO3RBoN/file17206a1e0276'