annotate easyjoin.xml @ 14:fb4ff3c42cd3 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
author bgruening
date Sat, 21 Mar 2020 13:49:11 -0400
parents 01ca80da2266
children 12615d397df7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 7
diff changeset
1 <tool id="tp_easyjoin_tool" name="Join" version="@BASE_VERSION@.2">
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
2 <description>two files</description>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
3 <macros>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
5 </macros>
5
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
6 <expand macro="requirements">
7
01ca80da2266 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4379e712f76f2bb12ee2cc270dd8a0e806df2cd6
bgruening
parents: 6
diff changeset
7 <requirement type="package" version="5.22.0.1">perl</requirement>
5
20344ce0c811 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b9d202134c3c6d0e5c398c3ae75e410067fcfc52
bgruening
parents: 3
diff changeset
8 </expand>
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
9 <version_command>join --version | head -n 1</version_command>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
10 <command>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
11 <![CDATA[
1
43b1f073b693 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 369e40078146d00608d52205bb8cee66ae735b76-dirty
bgruening
parents: 0
diff changeset
12 cp $__tool_directory__/sort-header ./ &&
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
13 chmod +x sort-header &&
1
43b1f073b693 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 369e40078146d00608d52205bb8cee66ae735b76-dirty
bgruening
parents: 0
diff changeset
14 perl $__tool_directory__/easyjoin
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
15 $jointype
14
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 7
diff changeset
16 -t $'\t'
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
17 $header
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
18 -e '$empty_string_filler'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
19 -o auto
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
20 $ignore_case
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
21 -1 '$column1'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
22 -2 '$column2'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
23 "$infile1"
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
24 "$infile2"
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
25 > '$output'
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
26 ]]>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
27 </command>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
28 <inputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
29 <param name="infile1" format="tabular" type="data" label="1st file" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
30 <param name="column1" label="Column to use from 1st file" type="data_column" data_ref="infile1" accept_default="true" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
31
14
fb4ff3c42cd3 "planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 09b22cceacb34dd4c6c1b42890f93232df128208"
bgruening
parents: 7
diff changeset
32 <param name="infile2" format="tabular" type="data" label="2nd File" />
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
33 <param name="column2" label="Column to use from 2nd file" type="data_column" data_ref="infile2" accept_default="true" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
34
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
35 <param name="jointype" type="select" label="Output lines appearing in">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
36 <option value=" " selected="True">Both 1st &amp; 2nd file.</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
37 <option value="-v 1">1st but not in 2nd file. (-v 1)</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
38 <option value="-v 2">2nd but not in 1st file. (-v 2)</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
39 <option value="-a 1">Both 1st &amp; 2nd file, plus unpairable lines from 1st file. (-a 1)</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
40 <option value="-a 2">Both 1st &amp; 2nd file, plus unpairable lines from 2st file. (-a 2)</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
41 <option value="-a 1 -a 2">All lines [-a 1 -a 2]</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
42 <option value="-v 1 -v 2">All unpairable lines [-v 1 -v 2]</option>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
43 </param>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
44
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
45 <param name="header" type="boolean" checked="false" truevalue="--header" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
46 label="First line is a header line" help="Use if first line contains column headers. It will not be sorted." />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
47 <param name="ignore_case" type="boolean" checked="false" truevalue="-i" falsevalue=""
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
48 label="Ignore case" help="Sort and Join key column values regardless of upper/lower case letters." />
3
37e1eb05b1b4 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 10052765d6b712cf7d38356af4251fcc38a339b6-dirty
bgruening
parents: 1
diff changeset
49 <param name="empty_string_filler" type="text" value="0" label="Value to put in unpaired (empty) fields">
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
50 <sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
51 <valid initial="string.printable">
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
52 <remove value="&apos;"/>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
53 </valid>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
54 </sanitizer>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
55 </param>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
56 </inputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
57 <outputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
58 <data name="output" format_source="infile1" metadata_source="infile1"/>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
59 </outputs>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
60 <tests>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
61 <test>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
62 <param name="infile1" value="easyjoin1.tabular" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
63 <param name="column1" value="1" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
64 <param name="infile2" value="easyjoin2.tabular" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
65 <param name="column2" value="1" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
66 <param name="header" value="True" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
67 <param name="jointype" value="-a 1 -a 2" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
68 <output name="output" file="easyjoin_result1.tabular" />
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
69 </test>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
70 </tests>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
71 <help>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
72 <![CDATA[
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
73 **What it does**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
74
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
75 This tool joins two tabular files based on a common key column.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
76
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
77 -----
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
78
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
79 **Example**
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
80
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
81 **First file**::
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
82
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
83 Fruit Color
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
84 Apple red
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
85 Banana yellow
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
86 Orange orange
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
87 Melon green
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
88
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
89 **Second File**::
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
90
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
91 Fruit Price
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
92 Orange 7
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
93 Avocado 8
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
94 Apple 4
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
95 Banana 3
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
96
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
97 **Joining** both files, using **key column 1** and a **header line**, will return::
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
98
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
99 Fruit Color Price
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
100 Apple red 4
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
101 Avocado . 8
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
102 Banana yellow 3
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
103 Melon green .
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
104 Orange orange 7
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
105
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
106 .. class:: infomark
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
107
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
108 * Input files need not be sorted.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
109 * The header line (**Fruit Color Price**) was joined and kept as first line.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
110 * Missing values ( Avocado's color, missing from the first file ) are replaced with a period character.
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
111
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
112 @REFERENCES@
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
113 ]]>
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
114 </help>
6
60edf2f8c28f planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit b'e6ee273f75fff61d1e419283fa8088528cf59470\n'
bgruening
parents: 5
diff changeset
115 <expand macro="citations" />
0
5314e5d6f040 Imported from capsule None
bgruening
parents:
diff changeset
116 </tool>