Class for a schedule of pipelines
Class for a schedule of pipelines
Methods
Method run()
Run a MaestroSchedule
Method get_schedule()
Get the schedule as a data.frame
Method get_status()
Get status of the pipelines as a data.frame
Method get_artifacts()
Get artifacts (return values) from the pipelines
Method get_network()
Get the network structure of the pipelines as an edge list (will be empty if there are no DAG pipelines)
Method show_network()
Visualize the DAG relationships between pipelines in the schedule
Examples
if (interactive()) {
pipeline_dir <- tempdir()
create_pipeline("my_new_pipeline", pipeline_dir, open = FALSE)
schedule <- build_schedule(pipeline_dir = pipeline_dir)
}