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

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