comparison qiime2-2020.8/qiime_diversity-lib_alpha-passthrough.xml @ 20:d93d8888f0b0 draft

Uploaded
author florianbegusch
date Fri, 04 Sep 2020 12:44:24 +0000
parents
children
comparison
equal deleted inserted replaced
19:6c48f8d82424 20:d93d8888f0b0
1 <?xml version="1.0" ?>
2 <tool id="qiime_diversity-lib_alpha-passthrough" name="qiime diversity-lib alpha-passthrough"
3 version="2020.8">
4 <description>Alpha Passthrough (non-phylogenetic)</description>
5 <requirements>
6 <requirement type="package" version="2020.8">qiime2</requirement>
7 </requirements>
8 <command><![CDATA[
9 qiime diversity-lib alpha-passthrough
10
11 --i-table=$itable
12
13 --p-metric=$pmetric
14
15 --o-vector=ovector
16
17 #if str($examples) != 'None':
18 --examples=$examples
19 #end if
20
21 ;
22 cp ovector.qza $ovector
23
24 ]]></command>
25 <inputs>
26 <param format="qza,no_unzip.zip" label="--i-table: ARTIFACT FeatureTable[Frequency] The feature table containing the samples for which a selected metric should be computed. [required]" name="itable" optional="False" type="data" />
27 <param label="--p-metric: " name="pmetric" optional="False" type="select">
28 <option value="gini_index">gini_index</option>
29 <option value="simpson_e">simpson_e</option>
30 <option value="osd">osd</option>
31 <option value="mcintosh_e">mcintosh_e</option>
32 <option value="esty_ci">esty_ci</option>
33 <option value="berger_parker_d">berger_parker_d</option>
34 <option value="robbins">robbins</option>
35 <option value="doubles">doubles</option>
36 <option value="michaelis_menten_fit">michaelis_menten_fit</option>
37 <option value="singles">singles</option>
38 <option value="kempton_taylor_q">kempton_taylor_q</option>
39 <option value="fisher_alpha">fisher_alpha</option>
40 <option value="strong">strong</option>
41 <option value="heip_e">heip_e</option>
42 <option value="dominance">dominance</option>
43 <option value="goods_coverage">goods_coverage</option>
44 <option value="ace">ace</option>
45 <option value="enspie">enspie</option>
46 <option value="mcintosh_d">mcintosh_d</option>
47 <option value="chao1_ci">chao1_ci</option>
48 <option value="lladser_pe">lladser_pe</option>
49 <option value="brillouin_d">brillouin_d</option>
50 <option value="menhinick">menhinick</option>
51 <option value="simpson">simpson</option>
52 <option value="margalef">margalef</option>
53 <option value="chao1">chao1</option>
54 </param>
55 <param label="--examples: Show usage examples and exit." name="examples" optional="False" type="data" />
56
57 </inputs>
58
59 <outputs>
60 <data format="qza" label="${tool.name} on ${on_string}: vector.qza" name="ovector" />
61
62 </outputs>
63
64 <help><![CDATA[
65 Alpha Passthrough (non-phylogenetic)
66 ###############################################################
67
68 Computes a vector of values (one value for each samples in a feature table)
69 using the scikit-bio implementation of the selected alpha diversity metric.
70
71 Parameters
72 ----------
73 table : FeatureTable[Frequency]
74 The feature table containing the samples for which a selected metric
75 should be computed.
76 metric : Str % Choices('ace', 'berger_parker_d', 'simpson_e', 'doubles', 'gini_index', 'michaelis_menten_fit', 'chao1_ci', 'dominance', 'robbins', 'lladser_pe', 'brillouin_d', 'goods_coverage', 'mcintosh_e', 'esty_ci', 'chao1', 'margalef', 'heip_e', 'enspie', 'menhinick', 'simpson', 'strong', 'fisher_alpha', 'osd', 'singles', 'kempton_taylor_q', 'mcintosh_d')
77 The alpha diversity metric to be computed.
78
79 Returns
80 -------
81 vector : SampleData[AlphaDiversity]
82 Vector containing per-sample values for the chosen metric.
83 ]]></help>
84 <macros>
85 <import>qiime_citation.xml</import>
86 </macros>
87 <expand macro="qiime_citation"/>
88 </tool>