Mercurial > repos > jjohnson > mothur_toolsuite
view mothur/tools/mothur/mantel.xml @ 7:3cfe41810949 draft
Update to mothur v 1.27
author | Jim Johnson <jj@umn.edu> |
---|---|
date | Fri, 30 Nov 2012 08:16:51 -0600 |
parents | a9d51d14f9e9 |
children |
line wrap: on
line source
<tool id="mothur_mantel" name="Mantel" version="1.19.0"> <description>Mantel correlation coefficient between two matrices.</description> <command interpreter="python"> mothur_wrapper.py --cmd='mantel' --result='^mothur.\S+\.logfile$:'$logfile,'^\S+\.mantel$:'$mantel --outputdir='$logfile.extra_files_path' --phylip=$dist --phylip2=$dist2 --method=$method #if int($iters.__str__) > 0: --iters=$iters #end if </command> <inputs> <param name="dist" type="data" format="lower.dist,square.dist" label="phylip - Distance Matrix"/> <param name="dist2" type="data" format="lower.dist,square.dist" label="phylip2 - Distance Matrix"/> <param name="method" type="select" optional="true" label="method - pearson, spearman, or kendall. Default: pearson" > <option value="pearson" selected="true">pearson</option> <option value="spearman">spearman</option> <option value="kendall">kendall</option> </param> <param name="iters" type="integer" value="1000" label="iters - Number of random configuration to try (default 1000)"/> </inputs> <outputs> <data format="html" name="logfile" label="${tool.name} on ${on_string}: logfile" /> <data format="tabular" name="mantel" label="${tool.name} on ${on_string}: mantel"/> </outputs> <requirements> <requirement type="package" version="1.27">mothur</requirement> </requirements> <tests> </tests> <help> **Mothur Overview** Mothur_, initiated by Dr. Patrick Schloss and his software development team in the Department of Microbiology and Immunology at The University of Michigan, provides bioinformatics for the microbial ecology community. .. _Mothur: http://www.mothur.org/wiki/Main_Page **Command Documenation** The mantel_ command calculates the Mantel correlation coefficient between two matrices_. .. _matrices: //www.mothur.org/wiki/Phylip-formatted_distance_matrix .. _mantel: http://www.mothur.org/wiki/Mantel </help> </tool>