comparison qiime_feature-table_merge-seqs.xml @ 0:09b7bcb72fa7 draft

Uploaded
author florianbegusch
date Thu, 24 May 2018 02:11:44 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:09b7bcb72fa7
1 <?xml version="1.0" ?>
2 <tool id="qiime_feature-table_merge-seqs" name="qiime feature-table merge-seqs" version="2018.4">
3 <description> - Combine collections of feature sequences</description>
4 <requirements>
5 <requirement type="package" version="2018.4">qiime2</requirement>
6 </requirements>
7 <command>
8 <![CDATA[
9 qiime feature-table merge-seqs
10
11 #def list_dict_to_string(list_dict):
12 #set $file_list = list_dict[0]['additional_input'].__getattr__('file_name')
13 #for d in list_dict[1:]:
14 #set $file_list = $file_list + ' --i-data=' + d['additional_input'].__getattr__('file_name')
15 #end for
16 #return $file_list
17 #end def
18
19
20 --i-data=$list_dict_to_string($input_files_idata)
21 #if str($cmdconfig) != 'None':
22 --cmd-config=$cmdconfig
23 #end if
24 --o-merged-data=omergeddata;
25 cp omergeddata.qza $omergeddata;
26 ]]>
27 </command>
28 <inputs>
29 <repeat name="input_files_idata" optional="False" title="--i-data">
30 <param format="qza,no_unzip.zip" label="--i-data: PATH List[FeatureData[Sequence]] The collection of feature sequences to be merged. [required]" name="additional_input" type="data"/>
31 </repeat>
32 <param label="--cmd-config: Use config file for command options" name="cmdconfig" optional="True" type="data"/>
33 </inputs>
34 <outputs>
35 <data format="qza" label="${tool.name} on ${on_string}: merged-data.qza" name="omergeddata"/>
36 </outputs>
37 <help>
38 <![CDATA[
39 Combine collections of feature sequences
40 -----------------------------------------
41
42 Combines feature data objects which may or may not contain data for the
43 same features. If different feature data is present for the same feature id
44 in the inputs, the data from the first will be propagated to the result.
45
46 Parameters
47 ----------
48 data : List[FeatureData[Sequence]]
49 The collection of feature sequences to be merged.
50
51 Returns
52 -------
53 merged_data : FeatureData[Sequence]
54 The resulting collection of feature sequences containing all feature
55 sequences provided.
56 ]]>
57 </help>
58 </tool>