Mercurial > repos > bebatut > plot_barplot
diff plot_barplot.xml @ 0:de039abf9641 draft
planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/plot_barplot commit ec57288980629acd7768b28d1fbc94fc12f23561-dirty
author | bebatut |
---|---|
date | Tue, 23 Feb 2016 05:17:12 -0500 |
parents | |
children | 7c1274bf54c6 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plot_barplot.xml Tue Feb 23 05:17:12 2016 -0500 @@ -0,0 +1,88 @@ +<tool id="plot_barplot" name="Plot barplot" version="0.1.0"> + <description>with R</description> + + <requirements> + <requirement type="package" version="3.2.1">R</requirement> + <requirement type="package" version="1.20.0">getopt</requirement> + </requirements> + + <stdio> + <exit_code range="1:" /> + <exit_code range=":-1" /> + </stdio> + + <version_command></version_command> + + <command><![CDATA[ + Rscript $__tool_directory__/plot_barplot.R + --input_file $input_file + + #if str($output_format)=="pdf" + --output_pdf_file $output_pdf_file + #else + --output_svg_file $output_svg_file + #end if + + + --data_column $column_with_data + --names_column $names_column + --xlab $xlab + --col $col + --bottom_margin $bottom_margin + --left_margin $left_margin + --top_margin $top_margin + --right_margin $right_margin + ]]></command> + + <inputs> + <param name="input_file" type="data" format="tabular,tsv,csv" label="Input file" help="File in tabular format with tab-separated columns and header in first line (--input_file)"/> + + <param name="output_format" label="Format for output image" type="select" help=""> + <option value="pdf" selected="True">PDF</option> + <option value="svg">SVG</option> + </param> + + <param name="column_with_data" type="data_column" data_ref="input_file" multiple="false" numerical="true" label="Column containing data?" help="(--data_column)" /> + + <param name="names_column" type="data_column" data_ref="input_file" multiple="false" numerical="false" label="Column containing data names?" help="(--names_column)" /> + + <param name="xlab" type="text" value="" label="Label for x axis" help="(--xlab)"/> + + <param name="col" label="Bar color" type="text" value= "blue" help="R color (--col)"/> + + <param name="bottom_margin" type="integer" value="5" label="Bottom margin" help="(--bottom_margin)"/> + <param name="left_margin" type="integer" value="19" label="Left margin" help="(--left_margin)"/> + <param name="top_margin" type="integer" value="1" label="Top margin" help="(--top_margin)"/> + <param name="right_margin" type="integer" value="1" label="Right margin" help="(--right_margin)"/> + </inputs> + + <outputs> + <data name="output_pdf_file" format="pdf" + label="${tool.name} on ${on_string}: PDF barplot"> + <filter>output_format=="pdf"</filter> + </data> + <data name="output_png_file" format="png" + label="${tool.name} on ${on_string}: PNG barplot"> + <filter>output_format=="png"</filter> + </data> + <data name="output_svg_file" format="svg" + label="${tool.name} on ${on_string}: SVG barplot"> + <filter>output_format=="svg"</filter> + </data> + </outputs> + + <tests> + </tests> + + <help><![CDATA[ + **What it does** + + This tool plot a barplot from a tabular file into different format files given different customizable parameters. + + This tool relies on R's barplot function. + + ]]></help> + + <citations> + </citations> +</tool> \ No newline at end of file