0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_gneiss_correlation-clustering" name="qiime gneiss correlation-clustering" version="2018.4">
|
|
3 <description> - Hierarchical clustering using feature correlation.</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2018.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command>
|
|
8 <![CDATA[
|
|
9 qiime gneiss correlation-clustering --i-table=$itable
|
|
10
|
|
11 #if str($cmdconfig) != 'None':
|
|
12 --cmd-config=$cmdconfig
|
|
13 #end if
|
|
14 --o-clustering=oclustering;
|
|
15
|
|
16 cp oclustering.qza $oclustering;
|
|
17 ]]>
|
|
18 </command>
|
|
19 <inputs>
|
|
20 <param format="qza,no_unzip.zip" label="--i-table: FeatureTable[Composition] The feature table containing the samples in which the columns will be clustered. [required]" name="itable" optional="False" type="data"/>
|
|
21 <param label="--cmd-config: Use config file for command options" name="cmdconfig" optional="True" type="data"/>
|
|
22 </inputs>
|
|
23 <outputs>
|
|
24 <data format="qza" label="${tool.name} on ${on_string}: clustering.qza" name="oclustering"/>
|
|
25 </outputs>
|
|
26 <help>
|
|
27 <![CDATA[
|
|
28 Hierarchical clustering using feature correlation.
|
|
29 ---------------------------------------------------
|
|
30
|
|
31 Build a bifurcating tree that represents a hierarchical clustering of
|
|
32 features. The hiearchical clustering uses Ward hierarchical clustering
|
|
33 based on the degree of proportionality between features.
|
|
34
|
|
35 Parameters
|
|
36 ----------
|
|
37 table : FeatureTable[Composition]
|
|
38 The feature table containing the samples in which the columns will be
|
|
39 clustered.
|
|
40
|
|
41 Returns
|
|
42 -------
|
|
43 clustering : Hierarchy
|
|
44 A hierarchy of feature identifiers where each tipcorresponds to the
|
|
45 feature identifiers in the table. This tree can contain tip ids that
|
|
46 are not present in the table, but all feature ids in the table must be
|
|
47 present in this tree.
|
|
48 ]]>
|
|
49 </help>
|
|
50 </tool>
|