get_flags {maestro} | R Documentation |
Get the flags of pipelines in a MaestroSchedule object
Description
Creates a long data.frame where each row is a flag for each pipeline.
Usage
get_flags(schedule)
Arguments
schedule |
object of type MaestroSchedule created using |
Value
data.frame
Examples
if (interactive()) {
pipeline_dir <- tempdir()
create_pipeline("my_new_pipeline", pipeline_dir, open = FALSE)
schedule <- build_schedule(pipeline_dir = pipeline_dir)
get_flags(schedule)
# Alternatively, use the underlying R6 method
schedule$get_flags()
}
[Package maestro version 0.6.0 Index]