comparison ggplot_histogram.xml @ 12:6fc8bab811da draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 commit 6737c924917eea8c009c30d7f9917d5a341b9948
author iuc
date Mon, 30 Sep 2024 15:40:22 +0000
parents b0d96516e6a5
children
comparison
equal deleted inserted replaced
11:b0d96516e6a5 12:6fc8bab811da
1 <tool id="ggplot2_histogram" name="Histogram with ggplot2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01"> 1 <tool id="ggplot2_histogram" name="Histogram with ggplot2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01">
2 <expand macro="bio_tools"/>
3 <macros> 2 <macros>
4 <import>macros.xml</import> 3 <import>macros.xml</import>
5 </macros> 4 </macros>
5 <expand macro="bio_tools"/>
6 <expand macro="requirements"> 6 <expand macro="requirements">
7 <requirement type="package" version="1.4.4">r-reshape2</requirement> 7 <requirement type="package" version="1.4.4">r-reshape2</requirement>
8 <requirement type="package" version="2.1.0">r-svglite</requirement> 8 <requirement type="package" version="2.1.0">r-svglite</requirement>
9 </expand> 9 </expand>
10 <command detect_errors="exit_code"><![CDATA[ 10 <command detect_errors="exit_code"><![CDATA[
110 </inputs> 110 </inputs>
111 <outputs> 111 <outputs>
112 <expand macro="additional_output" /> 112 <expand macro="additional_output" />
113 </outputs> 113 </outputs>
114 <tests> 114 <tests>
115 <test> 115 <test expect_num_outputs="1">
116 <param name="input1" value="mtcars.txt"/>
117 <output name="output1">
118 <assert_contents>
119 <has_size size="10k" delta="1k"/>
120 </assert_contents>
121 </output>
122 </test>
123 <test expect_num_outputs="2">
116 <param name="input1" value="mtcars.txt"/> 124 <param name="input1" value="mtcars.txt"/>
117 <param name="additional_output_format" value="pdf" /> 125 <param name="additional_output_format" value="pdf" />
118 <output name="output2" file="ggplot_histogram_result1.pdf" compare="sim_size"/> 126 <output name="output2" file="ggplot_histogram_result1.pdf" ftype="pdf" compare="sim_size"/>
119 </test> 127 </test>
120 </tests> 128 </tests>
121 <help><![CDATA[ 129 <help><![CDATA[
122 This tool will generate a histogram representing the distributions of each numerical column. Each column should have a descriptive header with no spaces, which will be used in the plot legend to represent the corresponding column (group). 130 This tool will generate a histogram representing the distributions of each numerical column. Each column should have a descriptive header with no spaces, which will be used in the plot legend to represent the corresponding column (group).
123 131