comparison qiime2/qiime_gneiss_ilr-hierarchical.xml @ 0:370e0b6e9826 draft

Uploaded
author florianbegusch
date Wed, 17 Jul 2019 03:05:17 -0400
parents
children 914fa4daf16a
comparison
equal deleted inserted replaced
-1:000000000000 0:370e0b6e9826
1 <?xml version="1.0" ?>
2 <tool id="qiime_gneiss_ilr-hierarchical" name="qiime gneiss ilr-hierarchical" version="2019.4">
3 <description> - Isometric Log-ratio Transform applied to a hierarchical clustering</description>
4 <requirements>
5 <requirement type="package" version="2019.4">qiime2</requirement>
6 </requirements>
7 <command><![CDATA[
8 qiime gneiss ilr-hierarchical
9
10 --i-table=$itable
11 --i-tree=$itree
12
13 #if $ppseudocount:
14 --p-pseudocount=$ppseudocount
15 #end if
16
17 --o-balances=obalances
18 ;
19 cp obalances.qza $obalances
20 ]]></command>
21 <inputs>
22 <param format="qza,no_unzip.zip" label="--i-table: ARTIFACT FeatureTable[Frequency | Composition] The feature table containing the samples in which the ilr transform will be performed. [required]" name="itable" optional="False" type="data"/>
23 <param format="qza,no_unzip.zip" label="--i-tree: ARTIFACT A hierarchy of feature identifiers that defines the Hierarchy partitions of features. Each tip in the hierarchycorresponds 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. This assumes that all of the internal nodes in the tree have labels. [required]" name="itree" optional="False" type="data"/>
24 <param label="--p-pseudocount: NUMBER The value to add to zero counts in the feature table. [default: 0.5]" name="ppseudocount" optional="True" type="float" value="0.5"/>
25 </inputs>
26 <outputs>
27 <data format="qza" label="${tool.name} on ${on_string}: balances.qza" name="obalances"/>
28 </outputs>
29 <help><![CDATA[
30 Isometric Log-ratio Transform applied to a hierarchical clustering
31 ##################################################################
32
33 Calculate balances given a hierarchy.
34
35 Parameters
36 ----------
37 table : FeatureTable[Frequency | Composition]
38 The feature table containing the samples in which the ilr transform
39 will be performed.
40 tree : Hierarchy
41 A hierarchy of feature identifiers that defines the partitions of
42 features. Each tip in the hierarchycorresponds to the feature
43 identifiers in the table. This tree can contain tip ids that are not
44 present in the table, but all feature ids in the table must be present
45 in this tree. This assumes that all of the internal nodes in the tree
46 have labels.
47 pseudocount : Float, optional
48 The value to add to zero counts in the feature table.
49
50 Returns
51 -------
52 balances : FeatureTable[Balance]
53 The resulting balances from the ilr transform.
54 ]]></help>
55 <macros>
56 <import>qiime_citation.xml</import>
57 </macros>
58 <expand macro="qiime_citation"/>
59 </tool>