Description Usage Arguments Details Value appType Examples
Convert App or a CWL JSON file to Tool or Flow object
1 2 3 | convert_app(from)
appType(x)
|
from |
an App object or a CWL JSON |
x |
a App object |
This function import CWL JSON file, based on its class: CommandLineTool or Worklfow to relevant object in R, Tool object or Flow object.
Tool or Flow object depends on CWL type.
this function return class of a App object.
1 2 3 4 5 6 | tool.in <- system.file("extdata/app", "tool_star.json", package = "sevenbridges")
flow.in <- system.file("extdata/app", "flow_star.json", package = "sevenbridges")
# convert to Tool object
convert_app(tool.in)
# convert to Flow object
convert_app(flow.in)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.