Parse a CWL workflow and return the metadata, inputs, outputs, and steps in a list.
parse_cwl(x)
CWL object
List of CWL metadata, inputs, outputs, and steps
system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>%
read_cwl_yaml() %>%
parse_cwl() %>%
names()
#> [1] "meta" "steps" "inputs" "outputs"