0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_diversity_beta-rarefaction" name="qiime diversity beta-rarefaction" version="2019.4">
|
|
3 <description> - Beta diversity rarefaction</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2019.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime diversity beta-rarefaction
|
|
9
|
|
10 --i-table=$itable
|
6
|
11
|
0
|
12 --p-metric=$pmetric
|
6
|
13
|
0
|
14 --p-clustering-method=$pclusteringmethod
|
6
|
15
|
|
16 #if str($psamplingdepth):
|
|
17 --p-sampling-depth="$psamplingdepth"
|
|
18 #end if
|
0
|
19
|
|
20 #if str($iphylogeny) != 'None':
|
|
21 --i-phylogeny=$iphylogeny
|
|
22 #end if
|
|
23
|
6
|
24 #if str($piterations):
|
0
|
25 --p-iterations=$piterations
|
|
26 #end if
|
|
27
|
|
28 #if str($pcorrelationmethod) != 'None':
|
|
29 --p-correlation-method=$pcorrelationmethod
|
|
30 #end if
|
|
31
|
|
32 #if str($pcolorscheme) != 'None':
|
|
33 --p-color-scheme=$pcolorscheme
|
|
34 #end if
|
|
35
|
2
|
36 #if $input_files_mmetadatafile:
|
0
|
37 #def list_dict_to_string(list_dict):
|
|
38 #set $file_list = list_dict[0]['additional_input'].__getattr__('file_name')
|
|
39 #for d in list_dict[1:]:
|
4
|
40 #set $file_list = $file_list + ' --m-metadata-file=' + d['additional_input'].__getattr__('file_name')
|
0
|
41 #end for
|
|
42 #return $file_list
|
|
43 #end def
|
|
44 --m-metadata-file=$list_dict_to_string($input_files_mmetadatafile)
|
2
|
45 #end if
|
0
|
46
|
|
47 --o-visualization=ovisualization
|
|
48 ;
|
|
49 qiime tools export --input-path ovisualization.qzv --output-path out && mkdir -p '$ovisualization.files_path'
|
|
50 && cp -r out/* '$ovisualization.files_path'
|
|
51 && mv '$ovisualization.files_path/index.html' '$ovisualization';
|
|
52 ]]></command>
|
|
53 <inputs>
|
|
54 <param format="qza,no_unzip.zip" label="--i-table: ARTIFACT FeatureTable[Frequency] Feature table upon which to perform beta diversity rarefaction analyses. [required]" name="itable" optional="False" type="data"/>
|
|
55 <param label="--p-metric: " name="pmetric" optional="False" type="select">
|
|
56 <option value="kulsinski">kulsinski</option>
|
|
57 <option value="euclidean">euclidean</option>
|
|
58 <option value="wminkowski">wminkowski</option>
|
|
59 <option value="dice">dice</option>
|
|
60 <option value="correlation">correlation</option>
|
|
61 <option value="hamming">hamming</option>
|
|
62 <option value="canberra">canberra</option>
|
|
63 <option value="canberra_adkins">canberra_adkins</option>
|
|
64 <option value="rogerstanimoto">rogerstanimoto</option>
|
|
65 <option value="sqeuclidean">sqeuclidean</option>
|
|
66 <option value="cosine">cosine</option>
|
|
67 <option value="seuclidean">seuclidean</option>
|
|
68 <option value="weighted_normalized_unifrac">weighted_normalized_unifrac</option>
|
|
69 <option value="sokalmichener">sokalmichener</option>
|
|
70 <option value="unweighted_unifrac">unweighted_unifrac</option>
|
|
71 <option value="cityblock">cityblock</option>
|
|
72 <option value="generalized_unifrac">generalized_unifrac</option>
|
|
73 <option value="weighted_unifrac">weighted_unifrac</option>
|
|
74 <option value="braycurtis">braycurtis</option>
|
|
75 <option value="jaccard">jaccard</option>
|
|
76 <option value="sokalsneath">sokalsneath</option>
|
|
77 <option value="aitchison">aitchison</option>
|
|
78 <option value="matching">matching</option>
|
|
79 <option value="chebyshev">chebyshev</option>
|
|
80 <option value="russellrao">russellrao</option>
|
|
81 <option value="yule">yule</option>
|
|
82 <option value="mahalanobis">mahalanobis</option>
|
|
83 </param>
|
|
84 <param label="--p-clustering-method: " name="pclusteringmethod" optional="False" type="select">
|
|
85 <option value="upgma">upgma</option>
|
|
86 <option value="nj">nj</option>
|
|
87 </param>
|
|
88 <param label="--p-sampling-depth: INTEGER Range(1, None) The total frequency that each sample should be rarefied to prior to computing the diversity metric. [required]" name="psamplingdepth" optional="False" min="1" value="" type="integer"/>
|
|
89 <param format="qza,no_unzip.zip" label="--i-phylogeny: ARTIFACT Phylogenetic tree containing tip identifiers that Phylogeny[Rooted] correspond 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. [required for phylogenetic metrics] [optional]" name="iphylogeny" optional="True" type="data"/>
|
|
90 <param label="--p-iterations: INTEGER Number of times to rarefy the feature table at a Range(2, None) given sampling depth. [default: 10]" name="piterations" optional="True" type="integer" min="2" value="10"/>
|
|
91 <param label="--p-correlation-method: " name="pcorrelationmethod" optional="True" type="select">
|
|
92 <option selected="True" value="None">Selection is Optional</option>
|
|
93 <option value="spearman">spearman</option>
|
|
94 <option value="pearson">pearson</option>
|
|
95 </param>
|
|
96 <param label="--p-color-scheme: " name="pcolorscheme" optional="True" type="select">
|
|
97 <option selected="True" value="None">Selection is Optional</option>
|
|
98 <option value="BrBG">BrBG</option>
|
|
99 <option value="BrBG_r">BrBG_r</option>
|
|
100 <option value="PRGn">PRGn</option>
|
|
101 <option value="PRGn_r">PRGn_r</option>
|
|
102 <option value="PiYG">PiYG</option>
|
|
103 <option value="PiYG_r">PiYG_r</option>
|
|
104 <option value="PuOr">PuOr</option>
|
|
105 <option value="PuOr_r">PuOr_r</option>
|
|
106 <option value="RdBu">RdBu</option>
|
|
107 <option value="RdBu_r">RdBu_r</option>
|
|
108 <option value="RdGy">RdGy</option>
|
|
109 <option value="RdGy_r">RdGy_r</option>
|
|
110 <option value="RdYlBu">RdYlBu</option>
|
|
111 <option value="RdYlBu_r">RdYlBu_r</option>
|
|
112 <option value="RdYlGn">RdYlGn</option>
|
|
113 <option value="RdYlGn_r">RdYlGn_r</option>
|
|
114 </param>
|
|
115
|
4
|
116 <repeat name="input_files_mmetadatafile" optional="False" title="--m-metadata-file [required]">
|
0
|
117 <param label="--m-metadata-file: METADATA... (multiple arguments will be merged) The sample metadata used for the Emperor jackknifed PCoA plot. [required]" name="additional_input" type="data" format="tabular,qza,no_unzip.zip" />
|
|
118 </repeat>
|
|
119
|
|
120 </inputs>
|
|
121 <outputs>
|
|
122 <data format="html" label="${tool.name} on ${on_string}: visualization.qzv" name="ovisualization"/>
|
|
123 </outputs>
|
|
124 <help><![CDATA[
|
|
125 Beta diversity rarefaction
|
|
126 ##########################
|
|
127
|
|
128 Repeatedly rarefy a feature table to compare beta diversity results within
|
|
129 a given rarefaction depth. For a given beta diversity metric, this
|
|
130 visualizer will provide: an Emperor jackknifed PCoA plot, samples clustered
|
|
131 by UPGMA or neighbor joining with support calculation, and a heatmap
|
|
132 showing the correlation between rarefaction trials of that beta diversity
|
|
133 metric.
|
|
134
|
|
135 Parameters
|
|
136 ----------
|
|
137 table : FeatureTable[Frequency]
|
|
138 Feature table upon which to perform beta diversity rarefaction
|
|
139 analyses.
|
|
140 metric : Str % Choices('generalized_unifrac', 'sokalmichener', 'matching', 'yule', 'weighted_normalized_unifrac', 'dice', 'russellrao', 'rogerstanimoto', 'mahalanobis', 'wminkowski', 'kulsinski', 'aitchison', 'seuclidean', 'correlation', 'sokalsneath', 'hamming', 'jaccard', 'unweighted_unifrac', 'weighted_unifrac', 'cosine', 'canberra', 'euclidean', 'sqeuclidean', 'chebyshev', 'cityblock', 'canberra_adkins', 'braycurtis')
|
|
141 The beta diversity metric to be computed.
|
|
142 clustering_method : Str % Choices('upgma', 'nj')
|
|
143 Samples can be clustered with neighbor joining or UPGMA. An arbitrary
|
|
144 rarefaction trial will be used for the tree, and the remaining trials
|
|
145 are used to calculate the support of the internal nodes of that tree.
|
|
146 metadata : Metadata
|
|
147 The sample metadata used for the Emperor jackknifed PCoA plot.
|
|
148 sampling_depth : Int % Range(1, None)
|
|
149 The total frequency that each sample should be rarefied to prior to
|
|
150 computing the diversity metric.
|
|
151 iterations : Int % Range(2, None), optional
|
|
152 Number of times to rarefy the feature table at a given sampling depth.
|
|
153 phylogeny : Phylogeny[Rooted], optional
|
|
154 Phylogenetic tree containing tip identifiers that correspond to the
|
|
155 feature identifiers in the table. This tree can contain tip ids that
|
|
156 are not present in the table, but all feature ids in the table must be
|
|
157 present in this tree. [required for phylogenetic metrics]
|
|
158 correlation_method : Str % Choices('pearson', 'spearman'), optional
|
|
159 The Mantel correlation test to be applied when computing correlation
|
|
160 between beta diversity distance matrices.
|
|
161 color_scheme : Str % Choices('BrBG', 'BrBG_r', 'PRGn', 'PRGn_r', 'PiYG', 'PiYG_r', 'PuOr', 'PuOr_r', 'RdBu', 'RdBu_r', 'RdGy', 'RdGy_r', 'RdYlBu', 'RdYlBu_r', 'RdYlGn', 'RdYlGn_r'), optional
|
|
162 The matplotlib color scheme to generate the heatmap with.
|
|
163
|
|
164 Returns
|
|
165 -------
|
|
166 visualization : Visualization
|
|
167 ]]></help>
|
|
168 <macros>
|
|
169 <import>qiime_citation.xml</import>
|
|
170 </macros>
|
|
171 <expand macro="qiime_citation"/>
|
|
172 </tool>
|