Mercurial > repos > iuc > join_files_by_id
annotate join_files_by_id.xml @ 0:d212d12aee5e draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
author | iuc |
---|---|
date | Wed, 09 Aug 2017 17:44:54 -0400 |
parents | |
children |
rev | line source |
---|---|
0
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
1 <tool id="join_files_by_id" name="Join datasets by identifier column" version="1.0"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
2 <requirements> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
3 <requirement type="package" version="1.10.4">r-data.table</requirement> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
4 </requirements> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
5 <command detect_errors="exit_code"><![CDATA[ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
6 Rscript '$__tool_directory__/join_files.R' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
7 --out='$out_file1' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
8 --he='$header' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
9 --jc='$field' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
10 --sep='$delimiter' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
11 --nc='$null_str' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
12 --in='$input1' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
13 #for $q in $queries |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
14 --in='${q.input}' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
15 #end for |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
16 ]]></command> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
17 <inputs> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
18 <param name="header" type="boolean" checked="true" truevalue="1" falsevalue="0" label="Header" help="If header is true, the column name used for joining need to be the same in all datasets"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
19 <param name="delimiter" type="select" label="Delimited by"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
20 <option value="ta">Tab</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
21 <option value="do">Dot</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
22 <option value="co">Comma</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
23 <option value="un">Underscore</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
24 <option value="da">Dash</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
25 <option value="sp">Space</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
26 </param> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
27 <param name="null_str" type="select" label="Select mismatch character"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
28 <option value="0">0</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
29 <option value="-">-</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
30 <option value="">"empty"</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
31 <option value="NA">NA</option> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
32 </param> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
33 <param name="input1" type="data" format="tabular" label="Select table" help="Single dataset selection only to preserve the order"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
34 <repeat name="queries" min="1" title="Select table"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
35 <param name="input" type="data" format="tabular" label="Select table" help="Single dataset selection only to preserve the order"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
36 </repeat> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
37 <param name="field" type="data_column" data_ref="input1" label="Column used for joining" /> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
38 </inputs> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
39 <outputs> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
40 <data name="out_file1" format="tabular" /> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
41 </outputs> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
42 <tests> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
43 <test> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
44 <param name="header" value="1"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
45 <param name="null_str" value="0"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
46 <param name="delimiter" value="ta"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
47 <param name="input1" value="df1.txt"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
48 <repeat name="queries"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
49 <param name="input" value="df2.txt"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
50 </repeat> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
51 <repeat name="queries"> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
52 <param name="input" value="df3.txt"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
53 </repeat> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
54 <param name="field" value="1"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
55 <output name="out_file1" file="df.txt"/> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
56 </test> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
57 </tests> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
58 <help><![CDATA[ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
59 **What it does** |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
60 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
61 Joins datasets by identifier column |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
62 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
63 ----- |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
64 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
65 '''Example''' |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
66 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
67 Dataset 1: |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
68 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
69 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
70 | name | counts | percent | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
71 +========+========+=========+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
72 | gene 1 | 10 | 0.3 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
73 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
74 | gene 2 | 20 | 0.2 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
75 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
76 | gene 3 | 20 | 0.2 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
77 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
78 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
79 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
80 and Dataset 2: |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
81 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
82 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
83 | name | counts | percent | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
84 +========+========+=========+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
85 | gene 1 | 13 | 0.5 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
86 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
87 | gene 4 | 4 | 0.4 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
88 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
89 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
90 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
91 and Dataset 3: |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
92 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
93 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
94 | name | counts | percent | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
95 +========+========+=========+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
96 | gene 1 | 10 | 0.3 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
97 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
98 | gene 3 | 12 | 0.2 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
99 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
100 | gene 4 | 4 | 0.4 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
101 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
102 | gene 5 | 19 | 0.6 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
103 +--------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
104 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
105 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
106 will result in the following: |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
107 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
108 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
109 | name | counts | percent | counts | percent | counts | percent | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
110 +========+========+=========+========+=========+========+=========+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
111 | gene 1 | 10 | 0.3 | 13 | 0.5 | 10 | 0.3 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
112 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
113 | gene 2 | 20 | 0.2 | 0 | 0 | 0 | 0 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
114 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
115 | gene 3 | 12 | 0.2 | 0 | 0 | 12 | 0.2 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
116 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
117 | gene 4 | 0 | 0 | 4 | 0.4 | 4 | 0.4 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
118 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
119 | gene 5 | 0 | 0 | 0 | 0 | 19 | 0.6 | |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
120 +--------+--------+---------+--------+---------+--------+---------+ |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
121 |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
122 For help contact: jochen.bick@usys.ethz.ch |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
123 ]]></help> |
d212d12aee5e
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/join_files_by_id commit a835a0b20127f485a6af4b466bb29d58d63541ea
iuc
parents:
diff
changeset
|
124 </tool> |