comparison qiime2/qiime_gneiss_ilr-phylogenetic.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-phylogenetic" name="qiime gneiss ilr-phylogenetic" version="2019.4">
3 <description> - Isometric Log-ratio Transform applied to a phylogenetic tree</description>
4 <requirements>
5 <requirement type="package" version="2019.4">qiime2</requirement>
6 </requirements>
7 <command><![CDATA[
8 qiime gneiss ilr-phylogenetic
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 --o-hierarchy=ohierarchy
19 ;
20 cp obalances.qza $obalances;
21 cp ohierarchy.qza $ohierarchy
22 ]]></command>
23 <inputs>
24 <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"/>
25 <param format="qza,no_unzip.zip" label="--i-tree: ARTIFACT A rooted phylogeny of feature identifiers that Phylogeny[Rooted] 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. This tree may contain polytomic nodes (i.e., nodes with more than two children), in which case they will be bifurcated. [required]" name="itree" optional="False" type="data"/>
26 <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"/>
27 </inputs>
28 <outputs>
29 <data format="qza" label="${tool.name} on ${on_string}: balances.qza" name="obalances"/>
30 <data format="qza" label="${tool.name} on ${on_string}: hierarchy.qza" name="ohierarchy"/>
31 </outputs>
32 <help><![CDATA[
33 Isometric Log-ratio Transform applied to a phylogenetic tree
34 ############################################################
35
36 Calculate balances given a rooted phylogeny.
37
38 Parameters
39 ----------
40 table : FeatureTable[Frequency | Composition]
41 The feature table containing the samples in which the ilr transform
42 will be performed.
43 tree : Phylogeny[Rooted]
44 A rooted phylogeny of feature identifiers that defines the partitions
45 of features. Each tip in the hierarchycorresponds to the feature
46 identifiers in the table. This tree can contain tip ids that are not
47 present in the table, but all feature ids in the table must be present
48 in this tree. This assumes that all of the internal nodes in the tree
49 have labels. This tree may contain polytomic nodes (i.e., nodes with
50 more than two children), in which case they will be bifurcated.
51 pseudocount : Float, optional
52 The value to add to zero counts in the feature table.
53
54 Returns
55 -------
56 balances : FeatureTable[Balance]
57 The resulting balances from the ilr transform.
58 hierarchy : Hierarchy
59 Hierarchy from bifurcated phylogeny
60 ]]></help>
61 <macros>
62 <import>qiime_citation.xml</import>
63 </macros>
64 <expand macro="qiime_citation"/>
65 </tool>