0
|
1 <?xml version="1.0" ?>
|
|
2 <tool id="qiime_diversity_alpha-group-significance" name="qiime diversity alpha-group-significance" version="2019.4">
|
|
3 <description> - Alpha diversity comparisons</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="2019.4">qiime2</requirement>
|
|
6 </requirements>
|
|
7 <command><![CDATA[
|
|
8 qiime diversity alpha-group-significance
|
|
9
|
|
10 --i-alpha-diversity=$ialphadiversity
|
|
11
|
|
12
|
2
|
13 #if $input_files_mmetadatafile:
|
0
|
14 #def list_dict_to_string(list_dict):
|
|
15 #set $file_list = list_dict[0]['additional_input'].__getattr__('file_name')
|
|
16 #for d in list_dict[1:]:
|
|
17 #set $file_list = $file_list + ',' + d['additional_input'].__getattr__('file_name')
|
|
18 #end for
|
|
19 #return $file_list
|
|
20 #end def
|
2
|
21 --m-metadata-file=$list_dict_to_string($input_files_mmetadatafile)
|
|
22 #end if
|
0
|
23
|
|
24
|
|
25 --o-visualization=ovisualization
|
|
26 ;
|
|
27 qiime tools export --input-path ovisualization.qzv --output-path out && mkdir -p '$ovisualization.files_path'
|
|
28 && cp -r out/* '$ovisualization.files_path'
|
|
29 && mv '$ovisualization.files_path/index.html' '$ovisualization';
|
|
30 ]]></command>
|
|
31 <inputs>
|
|
32 <param format="qza,no_unzip.zip" label="--i-alpha-diversity: ARTIFACT SampleData[AlphaDiversity] Vector of alpha diversity values by sample. [required]" name="ialphadiversity" optional="False" type="data"/>
|
|
33
|
|
34 <repeat name="input_files_mmetadatafile" optional="True" title="--m-metadata-file">
|
|
35 <param label="--m-metadata-file: Metadata file or artifact viewable as metadata. This option may be supplied multiple times to merge metadata. [optional]" name="additional_input" type="data" format="tabular,qza,no_unzip.zip" />
|
|
36 </repeat>
|
|
37 </inputs>
|
|
38 <outputs>
|
|
39 <data format="html" label="${tool.name} on ${on_string}: visualization.qzv" name="ovisualization"/>
|
|
40 </outputs>
|
|
41 <help><![CDATA[
|
|
42 Beta diversity group significance
|
|
43 #################################
|
|
44
|
|
45 Determine whether groups of samples are significantly different from one
|
|
46 another using a permutation-based statistical test.
|
|
47
|
|
48 Parameters
|
|
49 ----------
|
|
50 distance_matrix : DistanceMatrix
|
|
51 Matrix of distances between pairs of samples.
|
|
52 metadata : MetadataColumn[Categorical]
|
|
53 Categorical sample metadata column.
|
|
54 method : Str % Choices('permanova', 'anosim', 'permdisp'), optional
|
|
55 The group significance test to be applied.
|
|
56 pairwise : Bool, optional
|
|
57 Perform pairwise tests between all pairs of groups in addition to the
|
|
58 test across all groups. This can be very slow if there are a lot of
|
|
59 groups in the metadata column.
|
|
60 permutations : Int, optional
|
|
61 The number of permutations to be run when computing p-values.
|
|
62
|
|
63 Returns
|
|
64 -------
|
|
65 visualization : Visualization
|
|
66 ]]></help>
|
|
67 <macros>
|
|
68 <import>qiime_citation.xml</import>
|
|
69 </macros>
|
|
70 <expand macro="qiime_citation"/>
|
|
71 </tool>
|