annotate reduce_by_merge.xml @ 0:4599e6256e81 draft

planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
author sanbi-uwc
date Mon, 16 Jan 2017 08:47:24 -0500
parents
children 8d6874efe309
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8" ?>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
2 <tool id="reduce_by_merge" name="Reduce by Merge" version="0.0.1">
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
3 <description>Concatenate a collection of FASTA datasets into a single FASTA dataset</description>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
4 <command detect_errors="aggressive"><![CDATA[
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
5 cat
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
6 #for $input in $input_datasets
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
7 '${input}'
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
8 #end for
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
9 > '${output}'
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
10 ]]>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
11 </command>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
12 <inputs>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
13 <param name="input_datasets" format="fasta" type="data_collection" collection_type="list" label="Input collection of datasets" />
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
14 </inputs>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
15 <outputs>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
16 <data name="output" label="Merge ${on_string}" format="fasta"/>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
17 </outputs>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
18 <tests>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
19 <test>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
20 <param name="input_datasets">
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
21 <collection type="list">
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
22 <element name="input_datasets.input1" value="input1.fasta" />
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
23 <element name="input_datasets.input2" value="input2.fasta" />
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
24 <element name="input_datasets.input3" value="input3.fasta" />
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
25 </collection>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
26 </param>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
27 <output name="output" value="output1.fasta" />
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
28 </test>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
29 </tests>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
30 <help><![CDATA[
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
31 Merge all elements of the input collection into a single output dataset by concatenating them together.
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
32 ]]>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
33 </help>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
34 <citations>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
35 </citations>
4599e6256e81 planemo upload for repository https://github.com/sanbi-sa/tools-sanbi-uwc commit bea01cf35a3cecf25b2c64197736297d88f05fe6
sanbi-uwc
parents:
diff changeset
36 </tool>