Mercurial > repos > iuc > mothur_get_otulist
view get.otulist.xml @ 3:5b6dc9bad25d draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 283d5933cd945b7815b3da2ce45baa60d73e9746
author | iuc |
---|---|
date | Fri, 06 Apr 2018 04:21:33 -0400 |
parents | 7a922d81eca2 |
children |
line wrap: on
line source
<tool profile="16.07" id="mothur_get_otulist" name="Get.otulist" version="@WRAPPER_VERSION@.0"> <description>Get otus for each distance in a otu list</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <expand macro="stdio"/> <expand macro="version_command"/> <command><![CDATA[ @SHELL_OPTIONS@ ## create symlinks to input datasets ln -s '$otu' otu.dat && echo 'get.otulist( list=otu.dat, #if $label: label=${ str($label).replace(",","-") }, #end if sort=$sort )' | sed 's/ //g' ## mothur trips over whitespace | mothur | tee mothur.out.log ]]></command> <inputs> <param name="otu" type="data" format="mothur.list" label="list - OTU List"/> <param name="label" type="select" multiple="true" label="label - select OTU distance labels" help="By default, uses all if none are selected."> <expand macro="labeloptions"/> </param> <param name="sort" type="select" label="sort - select the output format" help="If otu is selected the output will be otu number followed by the list of names in that otu. If name is selected the output will be a sequence name followed by its otu number"> <option value="otu" selected="true">otu</option> <option value="name">name</option> </param> <expand macro="param-savelog"/> </inputs> <outputs> <expand macro="logfile-output"/> <collection name="otufiles" type="list" label="${tool.name} on ${on_string}: OTUs per label"> <discover_datasets pattern=".*?\.(?P<designation>.*)\.otu" format="mothur.list"/> </collection> </outputs> <tests> <test> <param name="otu" value="amazon.an.list" ftype="mothur.list"/> <output_collection name="otufiles" count="36"> <element name="0.22" md5="9dfa8c449a45d66e7ae6b30b34a821cb" ftype="mothur.list"/> </output_collection> <param name="savelog" value="true"/> <expand macro="logfile-test"/> </test> <test> <param name="otu" value="amazon.an.list" ftype="mothur.list"/> <param name="label" value="0.03,0.38,0.41,0.45"/> <output_collection name="otufiles" count="4"> <element name="0.41" md5="b40486b3739a6d5b86459dc17a23c253" ftype="mothur.list"/> </output_collection> <param name="savelog" value="true"/> <expand macro="logfile-test"/> </test> </tests> <help><![CDATA[ @MOTHUR_OVERVIEW@ **Command Documentation** The get.otulist_ command parses a list file and creates an .otu file for each distance containing 2 columns. The first column is the OTU number the second column is a list of sequences in that OTU. .. _get.otulist: https://www.mothur.org/wiki/Get.otulist v.1.20.0: Updated to Mothur 1.33 ]]></help> <expand macro="citations"/> </tool>