Learn R Programming

drake (version 5.1.2)

next_stage: List the targets that will be built in the first parallelizable stage of the next call to make().

Description

Similar to the first stage in the output of parallel_stages().

Usage

next_stage(config = drake::read_drake_config())

Arguments

config

A master configuration list produced by drake_config() or make()

Value

A character vector of the targets to be made in the first parallel stage of the next call to make().

See Also

parallel_stages(), make(), drake_config()

Examples

Run this code
# NOT RUN {
test_with_dir("Quarantine side effects.", {
config <- load_basic_example() # Get the code with drake_example("basic").
next_stage(config = config)    # "small" and "large"
})
# }

Run the code above in your browser using DataLab