comparison histogram2.xml @ 2:6f134426c2b0 draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/histogram commit 5666c97386c843c109e45acce462243392285b84"
author devteam
date Mon, 27 Jul 2020 03:25:53 -0400
parents cdb9e89e2970
children
comparison
equal deleted inserted replaced
1:cdb9e89e2970 2:6f134426c2b0
1 <tool id="histogram_rpy" name="Histogram" version="1.0.3"> 1 <tool id="histogram_rpy" name="Histogram" version="1.0.4">
2 <description>of a numeric column</description> 2 <description>of a numeric column</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="1.0.3">rpy</requirement> 4 <requirement type="package" version="3.3.2">rpy2</requirement>
5 <requirement type="package" version="2.11.0">R</requirement> 5 <requirement type="package" version="3.6.0">R</requirement>
6 </requirements> 6 </requirements>
7 <command interpreter="python">histogram.py $input $out_file1 $numerical_column "$title" "$xlab" $breaks $density $frequency</command> 7 <command>
8 python '$__tool_directory__/histogram.py'
9 '$input'
10 '$out_file1'
11 $numerical_column
12 '$title'
13 '$xlab'
14 $breaks
15 $density
16 $frequency
17 </command>
8 <inputs> 18 <inputs>
9 <param name="input" type="data" format="tabular" label="Dataset" help="Dataset missing? See TIP below"/> 19 <param name="input" type="data" format="tabular" label="Dataset" help="Dataset missing? See TIP below"/>
10 <param name="numerical_column" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" /> 20 <param name="numerical_column" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" />
11 <param name="breaks" type="integer" value="0" label="Number of breaks (bars)"/> 21 <param name="breaks" type="integer" value="0" label="Number of breaks (bars)"/>
12 <param name="title" type="text" value="Histogram" label="Plot title"/> 22 <param name="title" type="text" value="Histogram" label="Plot title"/>
24 <param name="breaks" value="0"/> 34 <param name="breaks" value="0"/>
25 <param name="title" value="Histogram"/> 35 <param name="title" value="Histogram"/>
26 <param name="xlab" value="V1"/> 36 <param name="xlab" value="V1"/>
27 <param name="density" value="true"/> 37 <param name="density" value="true"/>
28 <param name="frequency" value="false"/> 38 <param name="frequency" value="false"/>
29 <output name="out_file1" file="histogram_out1.pdf"/> 39 <output name="out_file1" file="histogram_out1.pdf" compare="sim_size"/>
30 </test> 40 </test>
31 </tests> 41 </tests>
32 <help> 42 <help>
33 43
34 .. class:: infomark 44 .. class:: infomark