0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_diversity_beta-phylogenetic" name="qiime diversity beta-phylogenetic" version="2018.4">
|
|
3 <description> - Beta diversity (phylogenetic)</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2018.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime diversity beta-phylogenetic --i-table=$itable --i-phylogeny=$iphylogeny --p-metric=$pmetric
|
|
9
|
|
10 #if str($cmdconfig) != 'None':
|
|
11 --cmd-config=$cmdconfig
|
|
12 #end if
|
|
13
|
|
14 #set $pnjobs = '${GALAXY_SLOTS:-4}'
|
|
15
|
|
16 #if str($pnjobs):
|
|
17 --p-n-jobs="$pnjobs"
|
|
18 #end if
|
|
19
|
|
20 --o-distance-matrix=odistancematrix;
|
|
21
|
|
22 cp odistancematrix.qza $odistancematrix;
|
|
23 ]]></command>
|
|
24 <inputs>
|
|
25 <param format="qza,no_unzip.zip" label="--i-table: FeatureTable[Frequency] The feature table containing the samples over which beta diversity should be computed. [required]" name="itable" optional="False" type="data"/>
|
|
26 <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"/>
|
|
27 <param label="--p-metric: The beta diversity metric to be computed.
|
|
28 [required]" name="pmetric" optional="False" type="select" >
|
|
29 <option value="weighted_unifrac">weighted_unifrac</option>
|
|
30 <option value="unweighted_unifrac">unweighted_unifrac</option>
|
|
31 </param>
|
|
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}: distance-matrix.qza" name="odistancematrix"/>
|
|
36 </outputs>
|
|
37 <help><![CDATA[
|
|
38 Beta diversity (phylogenetic)
|
|
39 -----------------------------
|
|
40
|
|
41 Computes a user-specified phylogenetic beta diversity metric for all pairs
|
|
42 of samples in a feature table.
|
|
43
|
|
44 Parameters
|
|
45 ----------
|
|
46 table : FeatureTable[Frequency]
|
|
47 The feature table containing the samples over which beta diversity
|
|
48 should be computed.
|
|
49 phylogeny : Phylogeny[Rooted]
|
|
50 Phylogenetic tree containing tip identifiers that correspond to the
|
|
51 feature identifiers in the table. This tree can contain tip ids that
|
|
52 are not present in the table, but all feature ids in the table must be
|
|
53 present in this tree.
|
|
54 metric : Str % Choices({'unweighted_unifrac', 'weighted_unifrac'})
|
|
55 The beta diversity metric to be computed.
|
|
56
|
|
57 Returns
|
|
58 -------
|
|
59 distance_matrix : DistanceMatrix % Properties(['phylogenetic'])
|
|
60 The resulting distance matrix.
|
|
61 ]]>
|
|
62 </help>
|
|
63 <macros>
|
|
64 <import>qiime_citation.xml</import>
|
|
65 </macros>
|
|
66 <expand macro="qiime_citation" />
|
|
67 </tool>
|