Mercurial > repos > greg > kaks_analysis_barplot
diff kaks_distribution.xml @ 5:8d18cb8396a7 draft default tip
Uploaded
author | greg |
---|---|
date | Thu, 16 Mar 2017 14:41:39 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kaks_distribution.xml Thu Mar 16 14:41:39 2017 -0400 @@ -0,0 +1,43 @@ +<tool id="kaks_barplot" name="KaKsDistribution" version="1.0.0"> + <description>plots synonymous (ks) distribution and fit significant component</description> + <requirements> + <requirement type="package" version="1.3.0">r-optparse</requirement> + </requirements> + <command> + <![CDATA[ + Rscript $__tool_directory__/kaks_distribution.R + -k '${kaks}' + -c '${components}' + -o "$output" + ]]> + </command> + <inputs> + <param name="kaks" format="tabular" type="data" label="KaKs analysis file" /> + <param name="components" format="tabular" type="data" label="Significant components in the ks distribution" /> + </inputs> + <outputs> + <data name="output" format="pdf"/> + </outputs> + <tests> + <test> + <param name="kaks" value="kaks.tabular" ftype="tabular" /> + <param name="components" value="components.tabular" ftype="tabular" /> + <output name="output" file="output.pdf" ftype="pdf" compare="contains" /> + </test> + </tests> + <help> +**What it does** + +Draws a barplot of the significant components in the ks distribution. + </help> + <citations> + <citation type="bibtex"> + @article{None, + journal = {None}, + author = {1. Wafula EK}, + title = {Manuscript in preparation}, + year = {None}, + url = {https://github.com/dePamphilis/PlantTribes},} + </citation> + </citations> +</tool>