Mercurial > repos > bebatut > plot_barplot
view plot_barplot.xml @ 3:81d4e20b0b23 draft
planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/plot_barplot commit 4785c4bee4319462106fa2dd05b2a631c510e218-dirty
author | bebatut |
---|---|
date | Fri, 15 Apr 2016 05:38:24 -0400 |
parents | f8cec112f5f9 |
children | fe4ee3b643f0 |
line wrap: on
line source
<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">r-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 --header $header #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="header" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Header in first line?" help="(--header)"/> <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>