Parse which steps to run from a string
Usage
parse_steps_to_run(step_ids)
Arguments
- step_ids
A character string specifying comma-separated identifiers for
steps in the workflow. These can be:
1a, 1b, 1c, 1d, 1e, 1f, 2, 3a, 3b, 4a, 4b, 5a, 5b
Value
A character vector of the step IDs.
Examples
parse_steps_to_run("1a")
#> [1] "1a"
parse_steps_to_run("1a, 1b")
#> [1] "1a" "1b"
parse_steps_to_run("1a,1b,1c,")
#> [1] "1a" "1b" "1c"