comparison qiime_diversity_alpha-phylogenetic.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_diversity_alpha-phylogenetic" name="qiime diversity alpha-phylogenetic" version="2018.4">
3 <description> - Alpha diversity (phylogenetic)</description>
4 <requirements>
5 <requirement type="package" version="2018.4">qiime2</requirement>
6 </requirements>
7 <command><![CDATA[
8 qiime diversity alpha-phylogenetic --i-phylogeny=$iphylogeny --i-table=$itable --p-metric=$pmetric
9
10 #if str($cmdconfig) != 'None':
11 --cmd-config=$cmdconfig
12 #end if
13
14 --o-alpha-diversity=oalphadiversity;
15
16 cp oalphadiversity.qza $oalphadiversity;
17 ]]></command>
18 <inputs>
19 <param format="qza,no_unzip.zip" label="--i-table: FeatureTable[Frequency] The feature table containing the samples for which alpha diversity should be computed. [required]" name="itable" optional="False" type="data"/>
20 <param format="qza,no_unzip.zip" label="--i-phylogeny: Phylogeny[Rooted] Phylogenetic tree containing tip identifiers that correspond to the feature identifiers in the table. This tree can contain tip ids that are not present in the table, but all feature ids in the table must be present in this tree. [required]" name="iphylogeny" optional="False" type="data"/>
21 <param label="--p-metric: " name="pmetric" optional="False" type="select" >
22 <option value="faith_pd">faith_pd</option>
23 </param>
24 <param label="--cmd-config: Use config file for command options" name="cmdconfig" optional="True" type="data"/>
25 </inputs>
26 <outputs>
27 <data format="qza" label="${tool.name} on ${on_string}: alpha-diversity.qza" name="oalphadiversity"/>
28 </outputs>
29 <help><![CDATA[
30 Alpha diversity (phylogenetic)
31 ------------------------------
32
33 Computes a user-specified phylogenetic alpha diversity metric for all
34 samples in a feature table.
35
36 Parameters
37 ----------
38 table : FeatureTable[Frequency]
39 The feature table containing the samples for which alpha diversity
40 should be computed.
41 phylogeny : Phylogeny[Rooted]
42 Phylogenetic tree containing tip identifiers that correspond to the
43 feature identifiers in the table. This tree can contain tip ids that
44 are not present in the table, but all feature ids in the table must be
45 present in this tree.
46 metric : Str % Choices({'faith_pd'})
47 The alpha diversity metric to be computed.
48
49 Returns
50 -------
51 alpha_diversity : SampleData[AlphaDiversity] % Properties(['phylogenetic'])
52 Vector containing per-sample alpha diversities.
53 ]]>
54 </help>
55 </tool>