# HG changeset patch # User iuc # Date 1551348223 18000 # Node ID b9d49988b597922efc8680b44accf21b71239954 # Parent a01da64e34a1e18a411740c6bd1a1e7b78528d7f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/collection_column_join commit 11d99b82e4e78f3077bc5f6997403b602b8a8423 diff -r a01da64e34a1 -r b9d49988b597 collection_column_join.xml --- a/collection_column_join.xml Fri Apr 06 03:44:04 2018 -0400 +++ b/collection_column_join.xml Thu Feb 28 05:03:43 2019 -0500 @@ -56,9 +56,9 @@ - - - + + + @@ -118,7 +118,7 @@ To join three files, with headers, based on the first column: -**First file (in_1.tabular)**:: +**First file (in_1)**:: #KEY c2 c3 c4 one 1-1 1-2 1-3 @@ -126,14 +126,14 @@ three 1-7 1-8 1-9 -**Second File (in_2.tabular)**:: +**Second File (in_2)**:: #KEY c2 c3 c4 one 2-1 2-2 2-3 two 2-4 2-5 2-6 three 2-7 2-8 2-9 -**Third file (in_3.tabular)**:: +**Third file (in_3)**:: #KEY c2 c3 c4 one 3-3 3-2 3-3 @@ -143,15 +143,15 @@ **Joining** the files, using **identifier column of 1** and a **header lines of 1**, will return:: - #KEY in_1.tabular_c2 in_1.tabular_c3 in_1.tabular_c4 in_2.tabular_c2 in_2.tabular_c3 in_2.tabular_c4 in_3.tabular_c2 in_3.tabular_c3 in_3.tabular_c4 + #KEY in_1_c2 in_1_c3 in_1_c4 in_2_c2 in_2_c3 in_2_c4 in_3_c2 in_3_c3 in_3_c4 one 1-1 1-2 1-3 2-1 2-2 2-3 3-3 3-2 3-3 three 1-7 1-8 1-9 2-7 2-8 2-9 3-7 3-8 3-9 two 1-4 1-5 1-6 2-4 2-5 2-6 3-4 3-5 3-6 -**Joining** the files, using **identifier column of 1** and a **header lines of 1**, but disabling **Keep original column header**, will return:: +**Joining** the files, using **identifier column of 1** and a **header lines of 1**, but disabling **Add column name to header**, will return:: - #KEY in_1.tabular in_1.tabular in_1.tabular in_2.tabular in_2.tabular in_2.tabular in_3.tabular in_3.tabular in_3.tabular + #KEY in_1 in_1 in_1 in_2 in_2 in_2 in_3 in_3 in_3 one 1-1 1-2 1-3 2-1 2-2 2-3 3-3 3-2 3-3 three 1-7 1-8 1-9 2-7 2-8 2-9 3-7 3-8 3-9 two 1-4 1-5 1-6 2-4 2-5 2-6 3-4 3-5 3-6