stats doc finished Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/commit/6de67581 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/6de67581 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/6de67581
Branch: refs/heads/master Commit: 6de67581039521424ba41aa8cca469bb7c6cb926 Parents: 9a26881 Author: Menaka Madushanka <[email protected]> Authored: Thu Jul 30 16:01:01 2015 +0530 Committer: Menaka Madushanka <[email protected]> Committed: Thu Jul 30 16:01:01 2015 +0530 ---------------------------------------------------------------------- taverna-language-commandline/README.md | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/6de67581/taverna-language-commandline/README.md ---------------------------------------------------------------------- diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md index 335bda0..9e3a003 100644 --- a/taverna-language-commandline/README.md +++ b/taverna-language-commandline/README.md @@ -368,3 +368,50 @@ Options:- * -l, â â log : Save results in a log file * -v, â â verbose : verbose mode + +Supported workflow bundle formats:- .t2flow, .wfbundle + +###### Example 1: Normal mode + + $tavlang helloworld.wfbundle + >>> Statistics of the workflow bundle: helloworld.wfbundle <<< + Name of the workflow = Hello_World + |--> Number of Processors = 1 + |--> Number of Data Links = 1 + |--> Number of Control Links = 0 + |--> Number of Input ports = 0 + |--> Number of Output Ports = 1 + +###### Example 2: Verbose mode + + $tavlang -v ../../../helloworld.wfbundle + >>> Statistics of the workflow bundle: helloworld.wfbundle <<< + Name of the workflow = Hello_World + |--> Number of Processors = 1 + | |--> Processors: + | |--> hello + | + |--> Number of Data Links = 1 + | |--> Data Links + | |--> DataLink value=>greeting + | + |--> Number of Control Links = 0 + |--> Number of Input ports = 0 + |--> Number of Output Ports = 1 + | |--> Output Ports + | |--> OutputWorkflowPort "greeting" + +###### Example 3: Saving results in a file + + $tavlang -l ../../results.txt ../../../helloworld.wfbundle + >>> Statistics of the workflow bundle: helloworld.wfbundle <<< + Name of the workflow = Hello_World + |--> Number of Processors = 1 + |--> Number of Data Links = 1 + |--> Number of Control Links = 0 + |--> Number of Input ports = 0 + |--> Number of Output Ports = 1 + + Results were saved into ../../results.txt + +----------------------------------------------------------------------------------------------------------------------------------------- \ No newline at end of file
