0
|
1 <?xml version="1.0" ?>
|
9
|
2 <tool id="qiime_diversity_beta-group-significance" name="qiime diversity beta-group-significance" version="2019.7">
|
0
|
3 <description> - Beta diversity group significance</description>
|
|
4 <requirements>
|
9
|
5 <requirement type="package" version="2019.7">qiime2</requirement>
|
0
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime diversity beta-group-significance
|
|
9
|
|
10 --i-distance-matrix=$idistancematrix
|
|
11 --m-metadata-column="$mmetadatacolumn"
|
|
12
|
|
13
|
|
14
|
6
|
15 #if $metadatafile:
|
|
16 --m-metadata-file=$metadatafile
|
0
|
17 #end if
|
|
18
|
|
19
|
|
20 #if str($pmethod) != 'None':
|
|
21 --p-method=$pmethod
|
|
22 #end if
|
|
23
|
|
24 #if $ppairwise:
|
|
25 --p-pairwise
|
|
26 #end if
|
|
27
|
6
|
28 #if str($ppermutations):
|
0
|
29 --p-permutations=$ppermutations
|
|
30 #end if
|
|
31
|
|
32 --o-visualization=ovisualization
|
|
33 ;
|
|
34 qiime tools export --input-path ovisualization.qzv --output-path out && mkdir -p '$ovisualization.files_path'
|
|
35 && cp -r out/* '$ovisualization.files_path'
|
|
36 && mv '$ovisualization.files_path/index.html' '$ovisualization'
|
|
37 ]]></command>
|
|
38 <inputs>
|
|
39 <param format="qza,no_unzip.zip" label="--i-distance-matrix: ARTIFACT DistanceMatrix Matrix of distances between pairs of samples. [required]" name="idistancematrix" optional="False" type="data"/>
|
|
40 <param label="--m-metadata-column: COLUMN MetadataColumn[Categorical] Categorical sample metadata column. [required]" name="mmetadatacolumn" optional="False" type="text"/>
|
|
41 <param label="--p-method: " name="pmethod" optional="True" type="select">
|
|
42 <option selected="True" value="None">Selection is Optional</option>
|
|
43 <option value="permanova">permanova</option>
|
|
44 <option value="anosim">anosim</option>
|
|
45 <option value="permdisp">permdisp</option>
|
|
46 </param>
|
|
47 <param label="--p-pairwise: --p-no-pairwise Perform pairwise tests between all pairs of groups in addition to the test across all groups. This can be very slow if there are a lot of groups in the metadata column. [default: False]" name="ppairwise" selected="False" type="boolean"/>
|
|
48 <param label="--p-permutations: INTEGER The number of permutations to be run when computing p-values. [default: 999]" name="ppermutations" optional="True" type="integer" value="999"/>
|
|
49
|
6
|
50 <param label="--m-metadata-file METADATA [required]" name="metadatafile" type="data" format="tabular,qza,no_unzip.zip" optional="False" />
|
0
|
51 </inputs>
|
|
52 <outputs>
|
|
53 <data format="html" label="${tool.name} on ${on_string}: visualization.qzv" name="ovisualization"/>
|
|
54 </outputs>
|
|
55 <help><![CDATA[
|
|
56 Beta diversity group significance
|
|
57 #################################
|
|
58
|
|
59 Determine whether groups of samples are significantly different from one
|
|
60 another using a permutation-based statistical test.
|
|
61
|
|
62 Parameters
|
|
63 ----------
|
|
64 distance_matrix : DistanceMatrix
|
|
65 Matrix of distances between pairs of samples.
|
|
66 metadata : MetadataColumn[Categorical]
|
|
67 Categorical sample metadata column.
|
|
68 method : Str % Choices('permanova', 'anosim', 'permdisp'), optional
|
|
69 The group significance test to be applied.
|
|
70 pairwise : Bool, optional
|
|
71 Perform pairwise tests between all pairs of groups in addition to the
|
|
72 test across all groups. This can be very slow if there are a lot of
|
|
73 groups in the metadata column.
|
|
74 permutations : Int, optional
|
|
75 The number of permutations to be run when computing p-values.
|
|
76
|
|
77 Returns
|
|
78 -------
|
|
79 visualization : Visualization
|
|
80 ]]></help>
|
|
81 <macros>
|
|
82 <import>qiime_citation.xml</import>
|
|
83 </macros>
|
|
84 <expand macro="qiime_citation"/>
|
|
85 </tool>
|