Mercurial > repos > iuc > mothur_get_rabund
view get.rabund.xml @ 5:398973de93ab draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit 7f7605c2c8d8e92f3369dfdc290e5d8d06fa409a
author | iuc |
---|---|
date | Fri, 03 Aug 2018 14:47:05 -0400 |
parents | d441d54fbe09 |
children |
line wrap: on
line source
<tool profile="16.07" id="mothur_get_rabund" name="Get.rabund" version="@WRAPPER_VERSION@.0"> <description>Get rabund from a otu list or sabund</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 '$count' count.dat && ln -s '$otu' otu.dat && echo 'get.rabund( #if $label: label=${ str($label).replace(",","-") }, #end if #if $count: count=count.dat, #end if #if $otu.is_of_type("mothur.list"): list=otu.dat, #elif $otu.is_of_type("mothur.sabund"): sabund=otu.dat, #end if sorted=$sorted )' | sed 's/ //g' ## mothur trips over whitespace | mothur | tee mothur.out.log ]]></command> <inputs> <param name="otu" type="data" format="mothur.list,mothur.sabund" label="list,sabund - List or Sabund"/> <param name="label" type="select" multiple="true" label="label - select OTU distance labels" help="(all used if none are selected)"> <expand macro="labeloptions"/> </param> <param name="sorted" type="boolean" checked="false" truevalue="true" falsevalue="false" label="sorted - sort by abundance" help="By default the data in the rabund file the same order as the OTUs in input, select to sort by abundance."/> <param name="count" type="data" format="mothur.count_table" optional="true" label="count - a count_table" help="generated by count.seqs"/> <expand macro="param-savelog"/> </inputs> <outputs> <expand macro="logfile-output"/> <data name="rabund" format="mothur.rabund" from_work_dir="otu*.rabund" label="${tool.name} on ${on_string}: rabund (Rank Abundance)"/> </outputs> <tests> <test><!-- test sabund input --> <param name="otu" value="amazon.an.sabund" ftype="mothur.sabund"/> <param name="label" value="0.03,0.05"/> <output name="rabund" file="amazon.an.rabund2" ftype="mothur.rabund"/> <param name="savelog" value="true"/> <expand macro="logfile-test"/> </test> <test><!-- test otu list input --> <param name="otu" value="amazon.an.list" ftype="mothur.list"/> <output name="rabund" file="amazon.an.rabund" ftype="mothur.rabund"/> <param name="savelog" value="true"/> <expand macro="logfile-test"/> </test> </tests> <help><![CDATA[ @MOTHUR_OVERVIEW@ **Command Documentation** The get.rabund_ command generates an rabund_ file from a list_ or sabund_ file. .. _rabund: https://www.mothur.org/wiki/Rabund_file .. _list: https://www.mothur.org/wiki/List_file .. _sabund: https://www.mothur.org/wiki/Sabund_file .. _get.rabund: https://www.mothur.org/wiki/Get.rabund ]]></help> <expand macro="citations"/> </tool>