Intended for internal use only.

possible_targets(plan = read_drake_plan())

Arguments

plan

workflow plan data frame

Value

Character vector of possible targets given the workflow plan.

See also

make()

Examples

# 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)
})
# }