comparison qiime2/qiime_diversity_alpha-phylogenetic.xml @ 0:370e0b6e9826 draft

Uploaded
author florianbegusch
date Wed, 17 Jul 2019 03:05:17 -0400
parents
children f190567fe3f6
comparison
equal deleted inserted replaced
-1:000000000000 0:370e0b6e9826
1 <?xml version="1.0" ?>
2 <tool id="qiime_diversity_alpha-phylogenetic" name="qiime diversity alpha-phylogenetic" version="2019.4">
3 <description> - Alpha diversity (phylogenetic)</description>
4 <requirements>
5 <requirement type="package" version="2019.4">qiime2</requirement>
6 </requirements>
7 <command><![CDATA[
8 qiime diversity alpha-phylogenetic
9
10 --i-table=$itable
11 --i-phylogeny=$iphylogeny
12 --p-metric=$pmetric
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: ARTIFACT 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: ARTIFACT Phylogenetic tree containing tip identifiers that Phylogeny[Rooted] 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 </inputs>
25 <outputs>
26 <data format="qza" label="${tool.name} on ${on_string}: alphadiversity.qza" name="oalphadiversity"/>
27 </outputs>
28 <help><![CDATA[
29 Alpha diversity (phylogenetic)
30 ##############################
31
32 Computes a user-specified phylogenetic alpha diversity metric for all
33 samples in a feature table.
34
35 Parameters
36 ----------
37 table : FeatureTable[Frequency]
38 The feature table containing the samples for which alpha diversity
39 should be computed.
40 phylogeny : Phylogeny[Rooted]
41 Phylogenetic tree containing tip identifiers that correspond to the
42 feature identifiers in the table. This tree can contain tip ids that
43 are not present in the table, but all feature ids in the table must be
44 present in this tree.
45 metric : Str % Choices('faith_pd')
46 The alpha diversity metric to be computed.
47
48 Returns
49 -------
50 alpha_diversity : SampleData[AlphaDiversity] % Properties('phylogenetic')
51 Vector containing per-sample alpha diversities.
52 ]]></help>
53 <macros>
54 <import>qiime_citation.xml</import>
55 </macros>
56 <expand macro="qiime_citation"/>
57 </tool>