annotate xy_plot.xml @ 3:319fa5a9fc1b draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
author devteam
date Wed, 07 Dec 2016 18:29:23 -0500
parents 23657fcaaa5c
children ecb437f1d298
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
1 <tool id="XY_Plot_1" name="Plotting tool" version="1.0.2">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
2 <description>for multiple series and graph types</description>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
3 <requirements>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
4 <requirement type="package" version="3.2.1">R</requirement>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
5 <requirement type="package" version="2.11.1">fontconfig</requirement>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
6 </requirements>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
7 <command interpreter="bash">r_wrapper.sh $script_file</command>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
8 <configfiles>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
9 <configfile name="script_file">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
10 ## Setup R error handling to go to stderr
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
11 options( show.error.messages=F,
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
12 error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
13 ## Determine range of all series in the plot
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
14 xrange = c( NULL, NULL )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
15 yrange = c( NULL, NULL )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
16 #for $i, $s in enumerate( $series )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
17 s${i} = read.table( "${s.input.file_name}", h=${s.header} )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
18 x${i} = s${i}[,${s.xcol}]
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
19 yrange = 0
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
20 #for $column in str($s.ycol).split(','):
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
21 y${i}${column} = s${i}[,${column}]
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
22 yrange = range(y${i}${column}, yrange, na.rm=TRUE )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
23 #end for
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
24 xrange = range( x${i}, xrange, na.rm=TRUE )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
25 #end for
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
26 ## Open output PDF file
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
27 #if $outftype.value == "pdf"
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
28 pdf("outfile.pdf")
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
29 #else
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
30 "${outftype}"( "outfile.${outftype}" , type="cairo")
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
31 #end if
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
32 ## Dummy plot for axis / labels
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
33 plot( NULL, type="n", xlim=xrange, ylim=yrange, main="${main}", xlab="${xlab}", ylab="${ylab}" )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
34 ## Plot each series
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
35 #for $i, $s in enumerate( $series )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
36 #if $s.series_type['type'] == "line"
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
37 #for $column in str($s.ycol).split(','):
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
38 lines( x${i}, y${i}${column}, lty=${s.series_type.lty}, lwd=${s.series_type.lwd}, col=${s.series_type.col} )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
39 #end for
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
40 #elif $s.series_type.type == "points"
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
41 #for $column in str($s.ycol).split(','):
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
42 points( x${i}, y${i}${column}, pch=${s.series_type.pch}, cex=${s.series_type.cex}, col=${s.series_type.col} )
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
43 #end for
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
44 #end if
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
45 #end for
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
46 ## Close the PDF file
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
47 devname = dev.off()
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
48 </configfile>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
49 </configfiles>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
50
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
51 <inputs>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
52 <param name="main" type="text" value="" label="Plot Title"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
53 <param name="xlab" type="text" value="" label="Label for x axis"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
54 <param name="ylab" type="text" value="" label="Label for y axis"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
55 <param name="outftype" type="select" label="Output File Type">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
56 <option value="pdf">PDF</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
57 <option value="png">PNG</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
58 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
59 <repeat name="series" title="Series">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
60 <param name="input" type="data" format="tabular" label="Dataset"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
61 <param name="header" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Header in first line?"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
62 <param name="xcol" type="data_column" data_ref="input" label="Column for x axis"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
63 <param name="ycol" type="data_column" data_ref="input" multiple="true" label="Column for y axis"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
64 <conditional name="series_type">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
65 <param name="type" type="select" label="Series Type">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
66 <option value="line" selected="true">Line</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
67 <option value="points">Points</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
68 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
69 <when value="line">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
70 <param name="lty" type="select" label="Line Type">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
71 <option value="1">Solid</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
72 <option value="2">Dashed</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
73 <option value="3">Dotted</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
74 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
75 <param name="col" type="select" label="Line Color">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
76 <option value="1">Black</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
77 <option value="2">Red</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
78 <option value="3">Green</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
79 <option value="4">Blue</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
80 <option value="5">Cyan</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
81 <option value="6">Magenta</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
82 <option value="7">Yellow</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
83 <option value="8">Gray</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
84 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
85 <param name="lwd" type="float" label="Line Width" value="1.0"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
86 </when>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
87 <when value="points">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
88 <param name="pch" type="select" label="Point Type">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
89 <option value="1">Circle (hollow)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
90 <option value="2">Triangle (hollow)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
91 <option value="3">Cross</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
92 <option value="4">Diamond (hollow)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
93 <option value="15">Square (filled)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
94 <option value="16">Circle (filled)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
95 <option value="17">Triangle (filled)</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
96 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
97 <param name="col" type="select" label="Point Color">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
98 <option value="1">Black</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
99 <option value="2">Red</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
100 <option value="3">Green</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
101 <option value="4">Blue</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
102 <option value="5">Cyan</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
103 <option value="6">Magenta</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
104 <option value="7">Yellow</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
105 <option value="8">Gray</option>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
106 </param>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
107 <param name="cex" type="float" label="Point Scale" value="1.0"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
108 </when>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
109 </conditional>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
110 </repeat>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
111 </inputs>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
112 <outputs>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
113 <data format="pdf" name="out_file_pdf" from_work_dir="outfile.pdf" >
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
114 <filter>(outftype == 'pdf')</filter>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
115 </data>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
116 <data format="png" name="out_file_png" from_work_dir="outfile.png">
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
117 <filter>(outftype == 'png')</filter>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
118 </data>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
119 </outputs>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
120 <tests>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
121 <test>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
122 <param name="main" value="Example XY Plot"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
123 <param name="xlab" value="Column 1"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
124 <param name="ylab" value="Column 2"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
125 <param name="outftype" value="pdf"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
126 <param name="input" value="2.tabular" ftype="tabular"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
127 <param name="xcol" value="1"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
128 <param name="ycol" value="2"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
129 <param name="type" value="line"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
130 <param name="lty" value="2"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
131 <param name="col" value="2"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
132 <param name="lwd" value="1.0"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
133 <output name="out_file_pdf" file="XY_Plot_1_out.pdf" ftype="pdf" compare="sim_size" />
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
134 </test>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
135 <test><!-- test with file with header line, NA values, multiple ycols and PNG output -->
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
136 <param name="main" value="Example XY Plot PNG"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
137 <param name="xlab" value="xlab"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
138 <param name="ylab" value="ylab"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
139 <param name="outftype" value="png"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
140 <param name="series_0|input" value="testinput2.tsv" ftype="tabular"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
141 <param name="series_0|header" value="TRUE"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
142 <param name="series_0|xcol" value="1"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
143 <param name="series_0|ycol" value="2,3"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
144 <param name="series_0|type" value="points"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
145 <param name="series_0|pch" value="1"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
146 <param name="series_0|col" value="2"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
147 <param name="series_0|cex" value="1.0"/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
148 <output name="out_file_png" ftype="png" file="testoutput.png" compare="sim_size" />
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
149 </test>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
150 </tests>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
151 <help>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
152 .. class:: infomark
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
153
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
154 This tool allows you to plot values contained in columns of a dataset against each other and also allows you to have different series corresponding to the same or different datasets in one plot.
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
155
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
156 -----
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
157
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
158 .. class:: warningmark
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
159
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
160 This tool throws an error if the columns selected for plotting are absent or are not numeric and also if the lengths of these columns differ.
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
161
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
162 -----
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
163
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
164 **Example**
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
165
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
166 Input file::
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
167
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
168 1 68 4.1
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
169 2 71 4.6
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
170 3 62 3.8
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
171 4 75 4.4
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
172 5 58 3.2
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
173 6 60 3.1
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
174 7 67 3.8
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
175 8 68 4.1
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
176 9 71 4.3
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
177 10 69 3.7
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
178
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
179 Create a two series XY plot on the above data:
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
180
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
181 - Series 1: Red Dashed-Line plot between columns 1 and 2
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
182 - Series 2: Blue Circular-Point plot between columns 3 and 2
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
183
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
184 .. image:: xy_example.jpg
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
185 </help>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
186 <citations/>
319fa5a9fc1b planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/xy_plot commit facdb350072c8492654c90040fea3109dc9b51cd
devteam
parents: 2
diff changeset
187 </tool>