get_steps_id {tidycwl}R Documentation

Get ID for steps

Description

Get ID for steps

Usage

get_steps_id(steps)

Arguments

steps

Steps object parsed by parse_steps

Value

Vector of step IDs

Examples

# steps represented by a dictionary
system.file("cwl/sbg/workflow/rnaseq-salmon.json", package = "tidycwl") %>%
  read_cwl_json() %>%
  parse_steps() %>%
  get_steps_id()

# steps represented by a list
system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>%
  read_cwl_yaml() %>%
  parse_steps() %>%
  get_steps_id()

[Package tidycwl version 1.0.7 Index]