get_nodes {tidycwl} | R Documentation |
Get nodes in a CWL workflow into a data frame
Description
Get nodes in a CWL workflow into a data frame
Usage
get_nodes(inputs, outputs, steps)
Arguments
inputs |
Parsed inputs |
outputs |
Parsed outputs |
steps |
Parsed steps |
Value
Data frame containing node information
Examples
flow <- system.file("cwl/sbg/workflow/gatk4-wgs.json", package = "tidycwl") %>% read_cwl_json()
get_nodes(
flow %>% parse_inputs(),
flow %>% parse_outputs(),
flow %>% parse_steps()
) %>% str()
[Package tidycwl version 1.0.7 Index]