0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_feature-table_merge-seqs" name="qiime feature-table merge-seqs" version="2019.4">
|
|
3 <description> - Combine collections of feature sequences</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2019.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime feature-table merge-seqs
|
|
9
|
2
|
10
|
|
11 #if $input_files_idata:
|
0
|
12 #def list_dict_to_string(list_dict):
|
|
13 #set $file_list = list_dict[0]['additional_input'].__getattr__('file_name')
|
|
14 #for d in list_dict[1:]:
|
|
15 #set $file_list = $file_list + ' --i-data=' + d['additional_input'].__getattr__('file_name')
|
|
16 #end for
|
|
17 #return $file_list
|
|
18 #end def
|
|
19 --i-data=$list_dict_to_string($input_files_idata)
|
2
|
20 #end if
|
0
|
21
|
|
22
|
|
23 --o-merged-data=omergeddata
|
|
24 ;
|
|
25 cp omergeddata.qza $omergeddata
|
|
26 ]]></command>
|
|
27 <inputs>
|
|
28 <repeat name="input_files_idata" optional="False" title="--i-data">
|
|
29 <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"/>
|
|
30 </repeat>
|
|
31
|
|
32 </inputs>
|
|
33 <outputs>
|
|
34 <data format="qza" label="${tool.name} on ${on_string}: mergeddata.qza" name="omergeddata"/>
|
|
35 </outputs>
|
|
36 <help><![CDATA[
|
|
37 Combine collections of feature sequences
|
|
38 ########################################
|
|
39
|
|
40 Combines feature data objects which may or may not contain data for the
|
|
41 same features. If different feature data is present for the same feature id
|
|
42 in the inputs, the data from the first will be propagated to the result.
|
|
43
|
|
44 Parameters
|
|
45 ----------
|
|
46 data : List[FeatureData[Sequence]]
|
|
47 The collection of feature sequences to be merged.
|
|
48
|
|
49 Returns
|
|
50 -------
|
|
51 merged_data : FeatureData[Sequence]
|
|
52 The resulting collection of feature sequences containing all feature
|
|
53 sequences provided.
|
|
54 ]]></help>
|
|
55 <macros>
|
|
56 <import>qiime_citation.xml</import>
|
|
57 </macros>
|
|
58 <expand macro="qiime_citation"/>
|
|
59 </tool>
|