Table of Contents |
---|
This design document is now obsolete
Design Goals
- Allow scientists to write the workflow activities in their preferred language
- approach: further develop the Synapse R client and the service APIs that it utilizes
- Ensure that scientists can use the same code as workflow activities AND also for one-off tasks they want to run on their laptops
- approach: use a particular input/output parameter scheme for all R scripts
- approach: R scripts have no direct dependencies upon Amazon's Simple Workflow Service, they only depend upon Synapse
- Ensure that the workflow is scalable to many nodes running concurrently
- approach: use Amazon's Simple Workflow system
- Minimize the amount of workflow decision logic needed in non-R code
- approach: to keep the complicated logic about whether a particular script should be run on a particular piece of source data out of Java, instead pass all source data to every R script and let the R script decide whether it wants to work on the data or not
...
To invoke a script locally:
Code Block |
---|
R createMatrix.R --args --username 'nicole.deflaux@sagebase.org' --password XXXXX --datasetId 543 --layerId 544
|
Script workflow output to STDOUT:
Code Block |
---|
blah blah, this is ignored ...
SynapseWorkflowResult_START
{"layerId":560}
SynapseWorkflowResult_END
blah blah, this is ignored too ...
|
...