Repository 'ggplot2_point'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/ggplot2_point

Changeset 6:87908c76ca8d (2020-04-30)
Previous changeset 5:9cec81e1b90e (2019-03-29) Next changeset 7:a36551483a8f (2020-11-18)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 commit dba267a10fe1a97ebb49b4b6a441b0cc56678da5"
modified:
ggplot_point.xml
b
diff -r 9cec81e1b90e -r 87908c76ca8d ggplot_point.xml
--- a/ggplot_point.xml Fri Mar 29 12:04:59 2019 -0400
+++ b/ggplot_point.xml Thu Apr 30 04:41:52 2020 -0400
[
@@ -1,4 +1,4 @@
-<tool id="ggplot2_point" name="Scatterplot w ggplot2" version="@VERSION@+galaxy1">
+<tool id="ggplot2_point" name="Scatterplot with ggplot2" version="@VERSION@+galaxy2" profile="18.01">
     <macros>
         <import>macros.xml</import>
     </macros>
@@ -37,8 +37,8 @@
         gg_point = geom_point(size=1, alpha=1, gg_factor)
         gg_line = geom_line(size=1, alpha=1, gg_factor)
      #else
-        gg_point = geom_point(size='$adv.points.size', alpha='$adv.points.alpha', colour='$adv.points.pointcolor')
-        gg_line = geom_line(size='$adv.points.size', alpha='$adv.points.alpha', colour='$adv.points.pointcolor')
+        gg_point = geom_point(size$adv.points.size, alpha=$adv.points.alpha, colour='$adv.points.pointcolor')
+        gg_line = geom_line(size=$adv.points.size, alpha=$adv.points.alpha, colour='$adv.points.pointcolor')
      #end if
 
     names(input)[$adv.factor.factorcol] <- "factor"
@@ -51,8 +51,8 @@
         gg_point = geom_point(size=1, alpha=1, gg_factor)
         gg_line = geom_line(size=1, alpha=1, gg_factor)
     #else
-        gg_point = geom_point(size=$adv.points.size, alpha='$adv.points.alpha', gg_factor)
-        gg_line = geom_line(size=$adv.points.size, alpha='$adv.points.alpha', gg_factor)
+        gg_point = geom_point(size=$adv.points.size, alpha=$adv.points.alpha, gg_factor)
+        gg_line = geom_line(size=$adv.points.size, alpha=$adv.points.alpha, gg_factor)
     #end if
 
     #if $adv.factor.colororder == 1
@@ -71,8 +71,8 @@
         gg_point = geom_point(size=1, alpha=1, gg_factor)
         gg_line = geom_line(size=1, alpha=1, gg_factor)
     #else
-        gg_point = geom_point(size=$adv.points.size, alpha='$adv.points.alpha', colour='$adv.points.pointcolor')
-        gg_line = geom_line(size=$adv.points.size, alpha='$adv.points.alpha', colour='$adv.points.pointcolor')
+        gg_point = geom_point(size=$adv.points.size, alpha=$adv.points.alpha, colour='$adv.points.pointcolor')
+        gg_line = geom_line(size=$adv.points.size, alpha=$adv.points.alpha, colour='$adv.points.pointcolor')
     #end if
 #end if
 
@@ -82,21 +82,21 @@
 #if $adv.axis_title_customization.axis_customization == "default"
     gg_axistitle = theme(axis.title = element_text(color = NULL, size = NULL, face = NULL))
 #else
-    gg_axistitle = theme(axis.title = element_text(color = '$adv.color', size = '$adv.size', face = '$adv.face'))
+    gg_axistitle = theme(axis.title = element_text(color = '$adv.color', size = $adv.size, face = '$adv.face'))
 #end if
 
 ##axis text(tick) custization
 #if $adv.axis_text_customization.axis_customization == "default"
     gg_axistext = theme(axis.text = element_text(color = NULL, size = NULL, face = NULL))
 #else
-    gg_axistext = theme(axis.text = element_text(color = '$adv.color', size = '$adv.size', face = '$adv.face'))
+    gg_axistext = theme(axis.text = element_text(color = '$adv.color', size = $adv.size, face = '$adv.face'))
 #end if
 
 ##plot title custimization
 #if $adv.plot_title_customization.axis_customization == "default"
     gg_plottitle = theme(plot.title = element_text(color = NULL, size = NULL, face = NULL))
 #else
-    gg_plottitle = theme(plot.title = element_text(color='$adv.color', size='$adv.size', face='$adv.face'))
+    gg_plottitle = theme(plot.title = element_text(color='$adv.color', size=$adv.size, face='$adv.face'))
 #end if
 
 ## grid line customization