targets
argument to make()
, given a workflow plan
data frame.R/config.R
Intended for internal use only.
possible_targets(plan = read_drake_plan())
plan | workflow plan data frame |
---|
Character vector of possible targets given the workflow plan.
# NOT RUN { test_with_dir("Quarantine side effects.", { load_basic_example() # Get the code with drake_example("basic"). # List the possible targets you could choose for the # `targets` argument to make(). You may choose any subset. possible_targets(my_plan) }) # }