get_labels: Get the labels of pipelines in a MaestroSchedule object

View source: R/get_labels.R

get_labelsR Documentation

Get the labels of pipelines in a MaestroSchedule object

Description

Creates a data.frame of labels for all labelled pipelines in the schedule.

Usage

get_labels(schedule)

Arguments

schedule

object of type MaestroSchedule created using build_schedule()

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_labels(schedule)

  # Alternatively, use the underlying R6 method
  schedule$get_labels()
}

maestro documentation built on July 2, 2026, 5:07 p.m.