20
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_diversity-lib_beta-passthrough" name="qiime diversity-lib beta-passthrough"
|
|
3 version="2020.8">
|
|
4 <description>Beta Passthrough (non-phylogenetic)</description>
|
|
5 <requirements>
|
|
6 <requirement type="package" version="2020.8">qiime2</requirement>
|
|
7 </requirements>
|
|
8 <command><![CDATA[
|
|
9 qiime diversity-lib beta-passthrough
|
|
10
|
|
11 --i-table=$itable
|
|
12
|
|
13 --p-metric=$pmetric
|
|
14
|
|
15 --p-pseudocount=$ppseudocount
|
|
16
|
|
17 #if str($pnjobs) != 'None':
|
|
18 --p-n-jobs=$pnjobs
|
|
19 #end if
|
|
20
|
|
21 --o-distance-matrix=odistancematrix
|
|
22
|
|
23 #if str($examples) != 'None':
|
|
24 --examples=$examples
|
|
25 #end if
|
|
26
|
|
27 ;
|
|
28 cp odistancematrix.qza $odistancematrix
|
|
29
|
|
30 ]]></command>
|
|
31 <inputs>
|
|
32 <param format="qza,no_unzip.zip" label="--i-table: ARTIFACT FeatureTable[Frequency] The feature table containing the samples over which beta diversity should be computed. [required]" name="itable" optional="False" type="data" />
|
|
33 <param label="--p-metric: " name="pmetric" optional="False" type="select">
|
|
34 <option value="euclidean">euclidean</option>
|
|
35 <option value="cityblock">cityblock</option>
|
|
36 <option value="matching">matching</option>
|
|
37 <option value="russellrao">russellrao</option>
|
|
38 <option value="sokalmichener">sokalmichener</option>
|
|
39 <option value="kulsinski">kulsinski</option>
|
|
40 <option value="hamming">hamming</option>
|
|
41 <option value="chebyshev">chebyshev</option>
|
|
42 <option value="yule">yule</option>
|
|
43 <option value="dice">dice</option>
|
|
44 <option value="canberra_adkins">canberra_adkins</option>
|
|
45 <option value="rogerstanimoto">rogerstanimoto</option>
|
|
46 <option value="cosine">cosine</option>
|
|
47 <option value="minkowski">minkowski</option>
|
|
48 <option value="correlation">correlation</option>
|
|
49 <option value="sokalsneath">sokalsneath</option>
|
|
50 <option value="seuclidean">seuclidean</option>
|
|
51 <option value="canberra">canberra</option>
|
|
52 <option value="jensenshannon">jensenshannon</option>
|
|
53 <option value="sqeuclidean">sqeuclidean</option>
|
|
54 <option value="aitchison">aitchison</option>
|
|
55 </param>
|
|
56 <param label="--p-pseudocount: INTEGER Range(1, None) A pseudocount to handle zeros for compositional metrics. This is ignored for non-compositional metrics. [default: 1]" min="1" name="ppseudocount" optional="True" type="integer" value="1" />
|
|
57 <param label="--p-n-jobs: " name="pnjobs" optional="True" type="select">
|
|
58 <option selected="True" value="None">Selection is Optional</option>
|
|
59 <option value="Int % Range(1">Int % Range(1</option>
|
|
60 <option value="None">None</option>
|
|
61 </param>
|
|
62 <param label="--examples: Show usage examples and exit." name="examples" optional="False" type="data" />
|
|
63
|
|
64 </inputs>
|
|
65
|
|
66 <outputs>
|
|
67 <data format="qza" label="${tool.name} on ${on_string}: distancematrix.qza" name="odistancematrix" />
|
|
68
|
|
69 </outputs>
|
|
70
|
|
71 <help><![CDATA[
|
|
72 Beta Passthrough (non-phylogenetic)
|
|
73 ###############################################################
|
|
74
|
|
75 Computes a distance matrix for all pairs of samples in a feature table
|
|
76 using the scikit-bio implementation of the selected beta diversity metric.
|
|
77
|
|
78 Parameters
|
|
79 ----------
|
|
80 table : FeatureTable[Frequency]
|
|
81 The feature table containing the samples over which beta diversity
|
|
82 should be computed.
|
|
83 metric : Str % Choices('yule', 'seuclidean', 'sokalmichener', 'aitchison', 'canberra_adkins', 'sokalsneath', 'hamming', 'canberra', 'jensenshannon', 'cityblock', 'russellrao', 'minkowski', 'euclidean', 'kulsinski', 'cosine', 'sqeuclidean', 'correlation', 'dice', 'rogerstanimoto', 'chebyshev', 'matching')
|
|
84 The beta diversity metric to be computed.
|
|
85 pseudocount : Int % Range(1, None), optional
|
|
86 A pseudocount to handle zeros for compositional metrics. This is
|
|
87 ignored for non-compositional metrics.
|
|
88 n_jobs : Int % Range(1, None) | Str % Choices('auto'), optional
|
|
89 The number of concurrent jobs to use in performing this calculation.
|
|
90 May not exceed the number of available physical cores. If n_jobs =
|
|
91 'auto', one job will be launched for each identified CPU core on the
|
|
92 host.
|
|
93
|
|
94 Returns
|
|
95 -------
|
|
96 distance_matrix : DistanceMatrix
|
|
97 The resulting distance matrix.
|
|
98 ]]></help>
|
|
99 <macros>
|
|
100 <import>qiime_citation.xml</import>
|
|
101 </macros>
|
|
102 <expand macro="qiime_citation"/>
|
|
103 </tool> |