A workflow plan data frame is a data frame
with a target
column and a command
column.
Targets are the objects and files that drake generates,
and commands are the pieces of R code that produce them.
For file inputs and targets, drake uses single quotes.
Double quotes are reserved for ordinary strings.
The distinction is important because drake thinks about
how files, objects, targets, etc. depend on each other.
Quotes in the list
argument are left alone,
but R messes with quotes when it parses the freeform
arguments in ...
, so use the strings_in_dots
argument to control the quoting in ...
.