Mercurial > repos > jjohnson > mothur_toolsuite
comparison mothur/tools/mothur/otu.association.xml @ 3:6b358d0f17b4 draft
Update to Mothur version 1.24
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Wed, 05 Sep 2012 19:49:43 -0500 |
parents | |
children | a9d51d14f9e9 |
comparison
equal
deleted
inserted
replaced
2:e076d95dbdb5 | 3:6b358d0f17b4 |
---|---|
1 <tool id="mothur_otu_association" name="Otu.association" version="1.24.0" force_history_refresh="True"> | |
2 <description>Calculate the correlation coefficient for the otus</description> | |
3 <command interpreter="python"> | |
4 mothur_wrapper.py | |
5 --cmd='otu.association' | |
6 --result='^mothur.\S+\.logfile$:'$logfile,'^\S+\.norm\.shared$:'$shared | |
7 --outputdir='$logfile.extra_files_path' | |
8 --datasetid='$logfile.id' --new_file_path='$__new_file_path__' | |
9 --new_datasets='^\S+?\.otu.corr$:$tabular' | |
10 #if isinstance($otu.datatype, $__app__.datatypes_registry.get_datatype_by_extension('shared').__class__): | |
11 --shared=$otu | |
12 #elif isinstance($otu.datatype, $__app__.datatypes_registry.get_datatype_by_extension('relabund').__class__): | |
13 --relabund=$otu | |
14 #end if | |
15 #if $label.__str__ != "None" and len($label.__str__) > 0: | |
16 --label='$label' | |
17 #end if | |
18 #if $groups.__str__ != "None" and len($groups.__str__) > 0: | |
19 --groups=$groups | |
20 #end if | |
21 #if $method.__str__ != "None" and len($method.__str__) > 0: | |
22 --method=$method | |
23 #end if | |
24 </command> | |
25 <inputs> | |
26 <param name="otu" type="data" format="shared,relabund" label="shared,relabund - OTU Shared or Relabund file"/> | |
27 <param name="label" type="select" label="label - OTU Labels" multiple="true"> | |
28 <options> | |
29 <filter type="data_meta" ref="otu" key="labels" /> | |
30 </options> | |
31 </param> | |
32 <param name="groups" type="select" label="groups - Groups to include" multiple="true"> | |
33 <options> | |
34 <filter type="data_meta" ref="otu" key="groups" /> | |
35 </options> | |
36 </param> | |
37 <param name="method" type="select" label="method - Normalization method"> | |
38 <option value="pearson" selected="true">pearson</option> | |
39 <option value="spearman">spearman</option> | |
40 <option value="kendall">kendall</option> | |
41 </param> | |
42 </inputs> | |
43 <outputs> | |
44 <data format="html" name="logfile" label="${tool.name} on ${on_string}: logfile" /> | |
45 </outputs> | |
46 <requirements> | |
47 <requirement type="binary">mothur</requirement> | |
48 </requirements> | |
49 <tests> | |
50 </tests> | |
51 <help> | |
52 **Mothur Overview** | |
53 | |
54 Mothur_, initiated by Dr. Patrick Schloss and his software development team | |
55 in the Department of Microbiology and Immunology at The University of Michigan, | |
56 provides bioinformatics for the microbial ecology community. | |
57 | |
58 .. _Mothur: http://www.mothur.org/wiki/Main_Page | |
59 | |
60 **Command Documenation** | |
61 | |
62 The otu.association_ command calculates the correlation coefficient for the otus in a shared_ or relabund_ file. | |
63 | |
64 .. _shared: http://www.mothur.org/wiki/Shared_file | |
65 .. _relabund: http://www.mothur.org/wiki/Get.relabund | |
66 .. _otu.association: http://www.mothur.org/wiki/Otu.association | |
67 | |
68 </help> | |
69 </tool> |