get_steps_revision {tidycwl}R Documentation

Get revision number for steps

Description

Get revision number for steps

Usage

get_steps_revision(steps)

Arguments

steps

Steps object parsed by parse_steps

Value

Vector of step revision numbers

Examples

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

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

[Package tidycwl version 1.0.7 Index]