get_graph | R Documentation |
Get the CWL workflow graph as a list of two data frames: a data frame of nodes and a data frame of edges.
get_graph(inputs, outputs, steps)
inputs |
Parsed inputs |
outputs |
Parsed outputs |
steps |
Parsed steps |
List of two data frames containing node and edge information
# sbg:draft2 flow <- system.file("cwl/sbg/workflow/gatk4-wgs.json", package = "tidycwl") %>% read_cwl_json() get_graph( flow %>% parse_inputs(), flow %>% parse_outputs(), flow %>% parse_steps() ) %>% str() # v1.0 flow <- system.file("cwl/sbg/workflow/rnaseq-salmon.json", package = "tidycwl") %>% read_cwl_json() get_graph( flow %>% parse_inputs(), 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.