comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:4599e6256e81
1 <?xml version="1.0" encoding="utf-8" ?>
2 <tool id="reduce_by_merge" name="Reduce by Merge" version="0.0.1">
3 <description>Concatenate a collection of FASTA datasets into a single FASTA dataset</description>
4 <command detect_errors="aggressive"><![CDATA[
5 cat
6 #for $input in $input_datasets
7 '${input}'
8 #end for
9 > '${output}'
10 ]]>
11 </command>
12 <inputs>
13 <param name="input_datasets" format="fasta" type="data_collection" collection_type="list" label="Input collection of datasets" />
14 </inputs>
15 <outputs>
16 <data name="output" label="Merge ${on_string}" format="fasta"/>
17 </outputs>
18 <tests>
19 <test>
20 <param name="input_datasets">
21 <collection type="list">
22 <element name="input_datasets.input1" value="input1.fasta" />
23 <element name="input_datasets.input2" value="input2.fasta" />
24 <element name="input_datasets.input3" value="input3.fasta" />
25 </collection>
26 </param>
27 <output name="output" value="output1.fasta" />
28 </test>
29 </tests>
30 <help><![CDATA[
31 Merge all elements of the input collection into a single output dataset by concatenating them together.
32 ]]>
33 </help>
34 <citations>
35 </citations>
36 </tool>