parse_steps | R Documentation |
Parse the steps of the CWL workflow into a data frame
parse_steps(x)
x |
CWL object |
List or data frame of steps
# steps represented by a dictionary
system.file("cwl/sbg/workflow/rnaseq-salmon.json", package = "tidycwl") %>%
read_cwl_json() %>%
parse_steps() %>%
nrow()
# steps represented by a list
system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>%
read_cwl_yaml() %>%
parse_steps() %>%
length()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.