You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2015/08/05 18:28:58 UTC

[01/15] incubator-taverna-language git commit: Readme

Repository: incubator-taverna-language
Updated Branches:
  refs/heads/master 45659818a -> 0e9bffebc


Readme 

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/95087e7d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/95087e7d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/95087e7d

Branch: refs/heads/master
Commit: 95087e7d6899e574cec6b90f9783af67c812bf48
Parents: 9a4f335
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 21:36:32 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 21:36:32 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 21 +++++++++++++++++++--
 1 file changed, 19 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/95087e7d/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 31e3d42..2b09bdb 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -129,11 +129,28 @@ The tool has following major commands.
  
 There are two usages of conversion command.
 
-1. Non-recursive method
+###### 1. Non-recursive method
 
 	Usage: tavlang convert <--output_format> <options> [arguments]
 	
+####### Example 1: Without specifying any options
+	
+	$tavlang convert --structure /helloworld.t2flow
+
+Convert the helloworld.t2flow into helloworld.structure format and store in /converted directory
 
+###### Example 2: Convert multiple workflows
+	
+	$tavlang convert --json /helloworld.t2flow /hello.t2flow
+	
+Convert both workflow files and store them in /converted directory
 
-2. Recursive method
+###### Example 3: with options and arguments
 
+	$tavlang convert --wfbundle /helloworld.t2flow -o /output/workflows
+	
+Convert the workflow file/s and store them in the specified output directory
+
+###### 2. Recursive method
+	
+	Usage: tavlang convert -r <--output_format> -i <workflow_src_dir> <options> [arguments]


[07/15] incubator-taverna-language git commit: Inspection command complete

Posted by st...@apache.org.
Inspection command complete

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/391d0e60
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/391d0e60
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/391d0e60

Branch: refs/heads/master
Commit: 391d0e60c7441c3d0363ce2f9c343301e3816d24
Parents: 9fd691e
Author: Menaka Madushanka <me...@gmail.com>
Authored: Tue Jul 28 18:32:26 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Tue Jul 28 18:32:26 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 52 +++++++++++++++++++++++++++--
 1 file changed, 50 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/391d0e60/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index bef8ed1..bf130de 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -116,7 +116,7 @@ The tool has following major commands.
 
 ## Commands in detail
 
-### Convert
+### convert
 
 Convert the given workwlow file/s into a specified output format.
 
@@ -201,4 +201,52 @@ Convert all the workflows in the input directory and store them in /home/final d
 Output:
 
 	/home/final/1.iwir is created
-	/home/final/2.iwir is created
\ No newline at end of file
+	/home/final/2.iwir is created
+	
+### inspect
+
+Inspect the given workflow file/s and give the inspection report. 
+Support workflow bundle formats: .wfbundle, .t2flow
+
+Usage:-
+	
+	$tavlang inspect <--inspection_options> <-other-options> [arguments] <workflow bundles to be inspected>
+	
+Inspection options: 
+
+ * --servcetypes :- List all the service-types used in the workflow
+ * --processornames :- List the tree of the processor names used in the workflow
+ 
+Other Options:
+
+ * -l, --log :- save the inspection report in a text file 
+ 
+###### Example 1: Without any other-options
+
+1.
+	$tavlang inspect --servicetypes helloworld.wfbundle
+	Service types used in helloworld.wfbundle :
+
+	http://ns.taverna.org.uk/2010/activity/constant
+	**************************************************
+
+2.
+	
+	$tavlang inspect --processornames helloworld.wfbundle
+	Processor tree of helloworld.wfbundle 
+	+ Hello_World
+	  - hello
+	
+###### Example 2: With other options
+The output is the same but the results will be saved in the given file.
+
+	$tavlang inspect --processornames helloworld.wfbundle -l results.txt
+	Processor tree of helloworld.wfbundle 
+	+ Hello_World
+	 - hello
+
+
+The output will be saved in results.txt in the same format.
+
+### validate
+### stats
\ No newline at end of file


[11/15] incubator-taverna-language git commit: stats doc finished

Posted by st...@apache.org.
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 <me...@gmail.com>
Authored: Thu Jul 30 16:01:01 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
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


[03/15] incubator-taverna-language git commit: convert finished

Posted by st...@apache.org.
convert 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/69db4e52
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/69db4e52
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/69db4e52

Branch: refs/heads/master
Commit: 69db4e527166625dcb095a73dc276fef0e03aea8
Parents: a0af88c
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 21:55:49 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 21:56:12 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/69db4e52/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 2f58706..91384da 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -114,7 +114,9 @@ The tool has following major commands.
 * validate
 * stats
 
-##### Convert
+## Commands in detail
+
+### Convert
 
 Usage:
 	
@@ -179,10 +181,22 @@ Usage:
 
 ###### Example 4: Without options and arguments
 
-	$tavlang convert -r --json -i /home/user/workflows_to_convert
+	$tavlang convert -r --json -i /home/workflows
 	
 Convert all the workflows in the input directory into the specified format and store them in /home/user/workflows_to_convert/converted directory.
 
+Output: Suppose that there are 2 workflow files in the dir 1.t2flow and 2.t2flow
+
+	/home/workflows/converted/1.json is created
+	/home/workflows/converted/2.json is created
+
 ###### Example 5: with output dir is specified
 
-	
\ No newline at end of file
+	$tavlang convert -r --iwir -i /home/workflows -o /home/final
+	
+Convert all the workflows in the input directory and store them in /home/final directory
+
+Output:
+
+	/home/final/1.iwir is created
+	/home/final/2.iwir is created
\ No newline at end of file


[08/15] incubator-taverna-language git commit: Codeing style

Posted by st...@apache.org.
Codeing style

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/d2d708b8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/d2d708b8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/d2d708b8

Branch: refs/heads/master
Commit: d2d708b82a205b21160182fb935a4eb5b96aa376
Parents: 391d0e6
Author: Menaka Madushanka <me...@gmail.com>
Authored: Tue Jul 28 18:34:39 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Tue Jul 28 18:34:39 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/d2d708b8/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index bf130de..d317111 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -224,6 +224,7 @@ Other Options:
 ###### Example 1: Without any other-options
 
 1.
+
 	$tavlang inspect --servicetypes helloworld.wfbundle
 	Service types used in helloworld.wfbundle :
 


[04/15] incubator-taverna-language git commit: commands + options

Posted by st...@apache.org.
commands + options


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/0a229182
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/0a229182
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/0a229182

Branch: refs/heads/master
Commit: 0a22918293abb5276c65fb047dfb556f0a07da14
Parents: 69db4e5
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 22:01:47 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 22:01:47 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/0a229182/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 91384da..c6e07d4 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -109,10 +109,10 @@ Each command has it's own set of options.
 ###Commands and Options
 The tool has following major commands.
 
-* convert
-* inspect
-* validate
-* stats
+* convert: Options {-r -- recursive, -i --input, -o --output,}
+* inspect: Options {-l --log}
+* validate: Options {-l --log, -v --verbose}
+* stats: Options {-l --log, -v --verbose}
 
 ## Commands in detail
 


[10/15] incubator-taverna-language git commit: stats

Posted by st...@apache.org.
stats

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/9a26881e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/9a26881e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/9a26881e

Branch: refs/heads/master
Commit: 9a26881e9d219a8db7919443202235c7757e0de1
Parents: 03f88e9
Author: Menaka Madushanka <me...@gmail.com>
Authored: Thu Jul 30 15:55:56 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Thu Jul 30 15:55:56 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/9a26881e/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 0250575..335bda0 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -98,7 +98,8 @@ The tool has following functionalities.
 
 * Conversion
 * Inspection
-* Validation and Viewing workflow statistics.
+* Validation
+* Viewing workflow statistics.
 	
 ## Command line structure 
 	
@@ -347,4 +348,23 @@ The report is more explained.
 	
 	Results were saved into log2.txt
 
-### stats
\ No newline at end of file
+### stats
+
+A workflow contains several resources.
+
+* Processors
+* Input ports
+* Output ports
+* Data links
+* Control links
+
+The stats command gives a report of the resorces used in the workflow.
+
+Usage:- 
+
+	$tavlang stats [options] input_files
+	
+Options:- 
+
+ * -l, – – log : Save results in a log file
+ * -v, – – verbose : verbose mode


[09/15] incubator-taverna-language git commit: Validation command doc complete

Posted by st...@apache.org.
Validation command doc complete

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/03f88e94
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/03f88e94
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/03f88e94

Branch: refs/heads/master
Commit: 03f88e94ac078e183f36ad6b15036a47a5b2e317
Parents: d2d708b
Author: Menaka Madushanka <me...@gmail.com>
Authored: Thu Jul 30 15:50:43 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Thu Jul 30 15:50:43 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 97 +++++++++++++++++++++++++++++
 1 file changed, 97 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/03f88e94/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index d317111..0250575 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -250,4 +250,101 @@ The output is the same but the results will be saved in the given file.
 The output will be saved in results.txt in the same format.
 
 ### validate
+
+Validates the given workflow file or files and give the validation report. 
+validate tool checks for the following problematic conditions.
+
+ * Empty Iteration Strategy Top-Node Problems
+ * Mismatch Configurable Type Problems
+ * Non Absolute URI Problems
+ * Null Field Problems
+ * Out-Of-Scope Value Problems
+ * Port Mentioned Twice Problems
+ * Port Missing From Iteration Strategy Stack Problems
+ * Wrong Parent Problems
+ * Incompatible Granular Depth Problems
+ 
+Usage:-
+
+	$tavlang validate [options][arguments] input_files
+
+Options:- 
+
+ * -l, --log: Save the validation report in a text file
+ * -v, --verbose: Verbose mode
+
+Supported workflow bundle formats: .t2flow and .wfbundle
+
+###### Example 1: Normal mode
+
+ * Validate one workflow bundle
+
+	$tavlang validate helloworld.t2flow
+	
+Output: 
+	
+	Validation started....
+	Validating helloworld.t2flow
+	The workflow helloworld.t2flow has no errors. 
+
+	Validation completed.......
+ 
+ * Validate more than one workflow bundles
+ 
+	$tavlang validate ../../workflow2.t2flow ../../workflow3.wfbundle
+
+	Validation started....
+	Validating ../../workflow2.t2flow
+	The workflow workflow2.t2flow has no errors. 
+
+	Validating ../../workflow3.wfbundle
+	The workflow workflow3.t2flow has no errors. 
+
+	Validation completed.......
+
+
+###### Example 2: Verbose mode
+
+The report is more explained.
+
+	$tavlang validate -v ../../workflow2.t2flow
+
+	Validation started....
+	Validating ../../workflow2.t2flow
+	The workflow workflow2.t2flow has no errors. 
+
+	The validation report for defaultActivitiesTaverna2.wfbundle......
+	-------------------------------------------------------------------------------- 
+	-->NegativeValueProblems:- null 
+	
+	-->EmptyIterationStrategyTopNodeProblems:- null 
+
+	-->MismatchConfigurableTypeProblems:- null 
+
+	-->NonAbsoluteURIProblems:- null 
+
+	-->NullFieldProblems:- null 
+
+	-->OutOfScopeValueProblems:- null 
+
+	-->PortMentionedTwiceProblems:- null 
+
+	-->PortMissingFromIterationStrategyStackProblems:- null 
+
+	-->WrongParentProblems:- null 
+
+	-->IncompatibleGranularDepthProblems:- null 
+
+	---------------------------------------------------------------------------------
+
+###### Example 3: Saving results to a file
+
+	$tavlang validate workflow2.t2flow -l log2.txt 
+	Validation started.... 
+	Validating workflow2.t2flow 
+	The workflow helloworld.wfbundle has no errors. 
+	Validation completed....... 
+	
+	Results were saved into log2.txt
+
 ### stats
\ No newline at end of file


[15/15] incubator-taverna-language git commit: Merge remote-tracking branch 'menaka/Readme'

Posted by st...@apache.org.
Merge remote-tracking branch 'menaka/Readme'

This closes #21


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/0e9bffeb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/0e9bffeb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/0e9bffeb

Branch: refs/heads/master
Commit: 0e9bffebc99c8daaac505231a98d3c9436858f82
Parents: 4565981 043e74c
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Wed Aug 5 17:28:41 2015 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Wed Aug 5 17:28:41 2015 +0100

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 302 ++++++++++++++++++++++++++--
 1 file changed, 290 insertions(+), 12 deletions(-)
----------------------------------------------------------------------



[02/15] incubator-taverna-language git commit: Example output is added

Posted by st...@apache.org.
Example output is added

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/a0af88cb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/a0af88cb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/a0af88cb

Branch: refs/heads/master
Commit: a0af88cbc13cf658cfcc37bdd085e8bf71dcd045
Parents: 95087e7
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 21:49:14 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 21:49:14 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 40 ++++++++++++++++++++++++++---
 1 file changed, 36 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/a0af88cb/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 2b09bdb..2f58706 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -102,7 +102,7 @@ The tool has following functionalities.
 	
 ## Command line structure 
 	
-	tavlang <command> <options> [arguments and parameters]
+	$tavlang <command> <options> [arguments and parameters]
 	
 Each command has it's own set of options.
 
@@ -116,7 +116,8 @@ The tool has following major commands.
 
 ##### Convert
 
-	Usage:
+Usage:
+	
 	tavlang convert <--output_fomat> <options> [arguments]
 	
  Supported output formats are,
@@ -129,13 +130,21 @@ The tool has following major commands.
  
 There are two usages of conversion command.
 
+*The tool can only convert into one format at a time
+
 ###### 1. Non-recursive method
 
-	Usage: tavlang convert <--output_format> <options> [arguments]
+Usage: 
+
+	$tavlang convert <--output_format> <options> [arguments]
 	
 ####### Example 1: Without specifying any options
 	
 	$tavlang convert --structure /helloworld.t2flow
+	
+Output:
+
+	/converted/helloworld.structure is created
 
 Convert the helloworld.t2flow into helloworld.structure format and store in /converted directory
 
@@ -143,14 +152,37 @@ Convert the helloworld.t2flow into helloworld.structure format and store in /con
 	
 	$tavlang convert --json /helloworld.t2flow /hello.t2flow
 	
+Output:
+	
+	/converted/helloworld.json is created
+	/converted/hello.json is created
+	
 Convert both workflow files and store them in /converted directory
 
 ###### Example 3: with options and arguments
 
 	$tavlang convert --wfbundle /helloworld.t2flow -o /output/workflows
 	
+Output:
+	
+	/output/workflows/helloworld.wfbundle is created
+	
 Convert the workflow file/s and store them in the specified output directory
 
 ###### 2. Recursive method
+
+If there are many workflows in a directory, which are needed to be converted into one single format use this method.
+	
+Usage: 
+	
+	$tavlang convert -r <--output_format> -i <workflow_src_dir> <options> [arguments]
+
+###### Example 4: Without options and arguments
+
+	$tavlang convert -r --json -i /home/user/workflows_to_convert
 	
-	Usage: tavlang convert -r <--output_format> -i <workflow_src_dir> <options> [arguments]
+Convert all the workflows in the input directory into the specified format and store them in /home/user/workflows_to_convert/converted directory.
+
+###### Example 5: with output dir is specified
+
+	
\ No newline at end of file


[14/15] incubator-taverna-language git commit: Corrected spelling mistake

Posted by st...@apache.org.
Corrected spelling mistake

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/043e74c9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/043e74c9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/043e74c9

Branch: refs/heads/master
Commit: 043e74c9ce9ecd4b41e54d98d135b2b9138cb545
Parents: 2972014
Author: Menaka Madushanka <me...@gmail.com>
Authored: Mon Aug 3 23:14:42 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Mon Aug 3 23:14:42 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/043e74c9/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 5a01020..ff5c66b 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -119,7 +119,7 @@ The tool has following major commands.
 
 ### convert ------------------------------------------------------
 
-Convert the given workwlow file/s into a specified output format.
+Convert the given workflow file/s into a specified output format.
 
 Usage:
 	


[12/15] incubator-taverna-language git commit: commands seperated well

Posted by st...@apache.org.
commands seperated well


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/1086f007
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/1086f007
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/1086f007

Branch: refs/heads/master
Commit: 1086f0079882e78158c8dd61f8bd4360545e0e5b
Parents: 6de6758
Author: Menaka Madushanka <me...@gmail.com>
Authored: Thu Jul 30 16:02:40 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Thu Jul 30 16:02:40 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/1086f007/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 9e3a003..bc92208 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -117,7 +117,7 @@ The tool has following major commands.
 
 ## Commands in detail
 
-### convert
+### convert ------------------------------------------------------
 
 Convert the given workwlow file/s into a specified output format.
 
@@ -174,7 +174,7 @@ Output:
 	
 Convert the workflow file/s and store them in the specified output directory
 
-#### * 2. Recursive method
+####  2. Recursive method
 
 If there are many workflows in a directory, which are needed to be converted into one single format use this method.
 	
@@ -204,7 +204,7 @@ Output:
 	/home/final/1.iwir is created
 	/home/final/2.iwir is created
 	
-### inspect
+### inspect -----------------------------------------------------------------
 
 Inspect the given workflow file/s and give the inspection report. 
 Support workflow bundle formats: .wfbundle, .t2flow
@@ -250,7 +250,7 @@ The output is the same but the results will be saved in the given file.
 
 The output will be saved in results.txt in the same format.
 
-### validate
+### validate ----------------------------------------------------------------------
 
 Validates the given workflow file or files and give the validation report. 
 validate tool checks for the following problematic conditions.
@@ -348,7 +348,7 @@ The report is more explained.
 	
 	Results were saved into log2.txt
 
-### stats
+### stats ----------------------------------------------------------------------------------
 
 A workflow contains several resources.
 


[05/15] incubator-taverna-language git commit: Modified

Posted by st...@apache.org.
Modified

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/5ac26ba5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/5ac26ba5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/5ac26ba5

Branch: refs/heads/master
Commit: 5ac26ba5434452a4a953392deaef8205bd392e73
Parents: 0a22918
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 22:05:08 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 22:05:08 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/5ac26ba5/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index c6e07d4..11a4aad 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -118,6 +118,8 @@ The tool has following major commands.
 
 ### Convert
 
+Convert the given workwlow file/s into a specified output format.
+
 Usage:
 	
 	tavlang convert <--output_fomat> <options> [arguments]
@@ -129,12 +131,12 @@ Usage:
  * json
  * robundle
  * structure
- 
-There are two usages of conversion command.
 
 *The tool can only convert into one format at a time
 
-###### 1. Non-recursive method
+There are two usage scenarios of conversion command.
+
+### * 1. Non-recursive method
 
 Usage: 
 
@@ -171,7 +173,7 @@ Output:
 	
 Convert the workflow file/s and store them in the specified output directory
 
-###### 2. Recursive method
+###* 2. Recursive method
 
 If there are many workflows in a directory, which are needed to be converted into one single format use this method.
 	


[13/15] incubator-taverna-language git commit: * removed

Posted by st...@apache.org.
* removed 

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/2972014e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/2972014e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/2972014e

Branch: refs/heads/master
Commit: 2972014e94044aa7a7b48d0eaf18fcb5ded671f6
Parents: 1086f00
Author: Menaka Madushanka <me...@gmail.com>
Authored: Thu Jul 30 16:03:56 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Thu Jul 30 16:03:56 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/2972014e/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index bc92208..5a01020 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -137,7 +137,7 @@ Usage:
 
 There are two usage scenarios of conversion command.
 
-#### * 1. Non-recursive method
+####  1. Non-recursive method
 
 Usage: 
 


[06/15] incubator-taverna-language git commit: minor change

Posted by st...@apache.org.
minor change

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/9fd691e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/9fd691e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/9fd691e3

Branch: refs/heads/master
Commit: 9fd691e3feeee2798a2dcb96381f0f9029bdd70d
Parents: 5ac26ba
Author: Menaka Madushanka <me...@gmail.com>
Authored: Sat Jul 25 22:15:24 2015 +0530
Committer: Menaka Madushanka <me...@gmail.com>
Committed: Sat Jul 25 22:15:24 2015 +0530

----------------------------------------------------------------------
 taverna-language-commandline/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/9fd691e3/taverna-language-commandline/README.md
----------------------------------------------------------------------
diff --git a/taverna-language-commandline/README.md b/taverna-language-commandline/README.md
index 11a4aad..bef8ed1 100644
--- a/taverna-language-commandline/README.md
+++ b/taverna-language-commandline/README.md
@@ -136,7 +136,7 @@ Usage:
 
 There are two usage scenarios of conversion command.
 
-### * 1. Non-recursive method
+#### * 1. Non-recursive method
 
 Usage: 
 
@@ -173,7 +173,7 @@ Output:
 	
 Convert the workflow file/s and store them in the specified output directory
 
-###* 2. Recursive method
+#### * 2. Recursive method
 
 If there are many workflows in a directory, which are needed to be converted into one single format use this method.