parse_cwl {tidycwl} | R Documentation |
Parse a CWL workflow
Description
Parse a CWL workflow and return the metadata, inputs, outputs, and steps in a list.
Usage
parse_cwl(x)
Arguments
x |
CWL object |
Value
List of CWL metadata, inputs, outputs, and steps
Examples
system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>%
read_cwl_yaml() %>%
parse_cwl() %>%
names()
[Package tidycwl version 1.0.7 Index]