Mercurial > repos > jjohnson > mothur_toolsuite
view mothur/tools/mothur/cluster.classic.xml @ 2:e076d95dbdb5
Migrated tool version 1.19.0 from old tool shed archive to new tool shed repository
author | jjohnson |
---|---|
date | Tue, 07 Jun 2011 17:05:08 -0400 |
parents | c7923b34dea4 |
children | a9d51d14f9e9 |
line wrap: on
line source
<tool id="mothur_cluster_classic" name="Cluster.classic" version="1.19.0"> <description>Assign sequences to OTUs (Dotur implementation)</description> <command interpreter="python"> mothur_wrapper.py --cmd='cluster.classic' --result='^mothur.\S+\.logfile$:'$logfile,'^\S+\.[fna]n\.sabund$:'$sabund,'^\S+\.[fna]n\.rabund$:'$rabund,'^\S+\.[fna]n\.list$:'$otulist --outputdir='$logfile.extra_files_path' --phylip=$dist #if $name.__str__ != "None" and len($name.__str__) > 0: --name=$name #end if #if len($method.__str__) > 0: --method=$method #end if #if float($cutoff.__str__) > 0.0: --cutoff=$cutoff #end if $hard #if len($precision.__str__) > 0: --precision=$precision #end if $sim </command> <inputs> <param name="dist" type="data" format="lower.dist,square.dist" label="phylip - Distance Matrix"/> <param name="name" type="data" format="names" optional="true" label="name - Sequences Name reference"/> <!-- ? conditional - to hide complexity --> <param name="method" type="select" label="method - Select a Clustering Method" help=""> <option value="furthest">Furthest neighbor</option> <option value="nearest">Nearest neighbor</option> <option value="average" selected="true">Average neighbor</option> <option value="weighted">Weighted</option> </param> <param name="cutoff" type="float" value="0.0" label="cutoff - Distance Cutoff threshold - ignored if not > 0" help="Ignore pairwise distances larger than this, a common value would be 0.10"/> <param name="hard" type="boolean" checked="true" truevalue="--hard=true" falsevalue="--hard=false" label="hard - Use hard cutoff instead of rounding" help=""/> <param name="precision" type="select" optional="true" label="precision - Precision for rounding distance values" help="Set higher precision for longer genome scale sequence lengths"> <option value="10">.1</option> <option value="100" selected="true">.01</option> <option value="1000">.001</option> <option value="10000">.0001</option> <option value="100000">.00001</option> <option value="1000000">.000001</option> </param> <param name="sim" type="boolean" checked="false" truevalue="--sim=true" falsevalue="" label="sim - Matrix values are Similary instead of Distance" help=""/> </inputs> <outputs> <data format="html" name="logfile" label="${tool.name} on ${on_string}: logfile" /> <data format="rabund" name="rabund" label="${tool.name} on ${on_string}: rabund (Rank Abundance)"/> <data format="sabund" name="sabund" label="${tool.name} on ${on_string}: sabund (Species Abundance)"/> <data format="list" name="otulist" label="${tool.name} on ${on_string}: list (OTU List)"/> </outputs> <requirements> <requirement type="binary">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 cluster.classic_ command assign sequences to OTUs (Operational Taxonomy Unit). .. _cluster.classic: http://www.mothur.org/wiki/Cluster.classic </help> </tool>