get_edges | R Documentation |
Get edges in a CWL workflow into a data frame
get_edges(outputs, steps)
outputs |
Parsed outputs |
steps |
Parsed steps |
Data frame containing edge information
# edges represented by a dictionary
flow <- system.file("cwl/sbg/workflow/rnaseq-salmon.json", package = "tidycwl") %>% read_cwl_json()
get_edges(
flow %>% parse_outputs(),
flow %>% parse_steps()
) %>% str()
# edges represented by a list
try(
flow <- system.file("cwl/sbg/workflow/rnaseq-salmon.cwl", package = "tidycwl") %>% read_cwl_yaml()
)
try(
get_edges(
flow %>% parse_outputs(),
flow %>% parse_steps()
) %>% str()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.