drake (version 7.3.0)

check_plan: Deprecated. Check a workflow plan data frame for obvious errors.

Description

Deprecated on 2019-01-12.

Usage

check_plan(plan = NULL, targets = NULL, envir = parent.frame(),
  cache = drake::get_cache(verbose = verbose), verbose = 1L,
  jobs = 1)

Arguments

plan

Workflow plan data frame, possibly from drake_plan().

targets

Character vector of targets to make.

envir

Environment containing user-defined functions.

cache

Optional drake cache. See new_cache().

verbose

Integer, control printing to the console/terminal.

  • 0: print nothing.

  • 1: print targets, retries, and failures.

  • 2: also show a spinner when preprocessing tasks are underway.

jobs

Number of jobs/workers for parallel processing.

Value

Invisibly return plan.

Details

Possible obvious errors include circular dependencies and missing input files.

See Also

drake_plan(), make()