Mercurial > repos > iuc > mothur_merge_taxsummary
diff merge.taxsummary.xml @ 0:8eebcd1d81b0 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mothur commit a9d1e0debcd357d8080a1c6c5f1d206dd45a7a4d
author | iuc |
---|---|
date | Fri, 19 May 2017 05:28:18 -0400 |
parents | |
children | 297f3f6ad488 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/merge.taxsummary.xml Fri May 19 05:28:18 2017 -0400 @@ -0,0 +1,56 @@ +<tool profile="16.07" id="mothur_merge_taxsummary" name="Merge.taxsummary" version="@WRAPPER_VERSION@.0"> + <description>Merge tax.summary files</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 + #for $i in $input: + ln -s "$i" input${input.index($i)}.dat && + #end for + + echo 'merge.taxsummary( + input=#for $i in $input#input${input.index($i)}.dat-#end for#, + output=$output + )' + | sed 's/ //g' ## mothur trips over whitespace + | sed 's/-,/,/g' + | mothur + | tee mothur.out.log + ]]></command> + <inputs> + <param name="input" type="data" format="mothur.tax.summary" multiple="true" label="input - tax.summary files"/> + </inputs> + <outputs> + <expand macro="logfile-output"/> + <data name="output" format="mothur.tax.summary" label="${tool.name} on ${on_string}: merged sff"/> + </outputs> + <tests> + <test> + <param name="input" value="amazon.wang.knn.tax.summary,amazon.silva.wang.tax.summary"/> + <output name="output" md5="6e1276cc740b03d5407a3707322e1ee3" ftype="mothur.tax.summary"/> + <expand macro="logfile-test"/> + </test> + </tests> + <help> +<![CDATA[ + +@MOTHUR_OVERVIEW@ + +.. _Mothur: https://www.mothur.org/wiki/Main_Page + +**Command Documentation** + +The merge.taxsummary command takes a list of tax.summary files separated by dashes and merges them into one file. + +.. _merge.taxsummary: https://www.mothur.org/wiki/Merge.taxsummary + +]]> + </help> + <expand macro="citations"/> +</tool>