Description Usage Arguments Details Value Examples
List possible linking methods
1 2 3 4 5 6 7 8 9 10 11 12 13  | 
from | 
 either Tool App or SBGWorkflow object  | 
to | 
 either Tool App or Workflow object  | 
... | 
 more auguments  | 
Given two object of Tool, Flow or App, list all possible input/output match.
A Workflow object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  | t1 <- system.file("extdata/app", "tool_unpack_fastq.json", package = "sevenbridges")
t2 <- system.file("extdata/app", "tool_star.json", package = "sevenbridges")
t1 <- convert_app(t1)
t2 <- convert_app(t2)
# check possible link
link_what(t1, t2)
tool.in <- system.file("extdata/app", "tool_unpack_fastq.json", package = "sevenbridges")
flow.in <- system.file("extdata/app", "flow_star.json", package = "sevenbridges")
t1 <- convert_app(tool.in)
f2 <- convert_app(flow.in)
link_what(t1, f2)
tool.in <- system.file("extdata/app", "tool_unpack_fastq.json", package = "sevenbridges")
flow.in <- system.file("extdata/app", "flow_star.json", package = "sevenbridges")
t1 <- convert_app(tool.in)
f2 <- convert_app(flow.in)
link_what(f2, t1)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.