comparison ggplot_violin.xml @ 7:e44775efb2dc draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ggplot2 commit 4b44f8f834de15fd34e2fdc5e4aed282069f73af"
author iuc
date Tue, 23 Nov 2021 07:57:58 +0000
parents dfd5d981b5a4
children 0e7290688b50
comparison
equal deleted inserted replaced
6:dfd5d981b5a4 7:e44775efb2dc
1 <tool id="ggplot2_violin" name="Violin plot w ggplot2" version="@VERSION@+galaxy0"> 1 <tool id="ggplot2_violin" name="Violin plot w ggplot2" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01">
2 <expand macro="bio_tools"/> 2 <expand macro="bio_tools"/>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements"> 6 <expand macro="requirements">
7 <requirement type="package" version="1.4.3">r-reshape2</requirement> 7 <requirement type="package" version="1.4.4">r-reshape2</requirement>
8 <requirement type="package" version="1.2.1">r-svglite</requirement> 8 <requirement type="package" version="2.0.0">r-svglite</requirement>
9 </expand> 9 </expand>
10 <command detect_errors="exit_code"><![CDATA[ 10 <command detect_errors="exit_code"><![CDATA[
11 cat '$script' && 11 cat '$script' &&
12 Rscript '$script' 12 Rscript '$script'
13 ]]></command> 13 ]]></command>
14 <configfiles> 14 <configfiles>
15 <configfile name="script"><![CDATA[ 15 <configfile name="script"><![CDATA[
16 @R_INIT@ 16 @R_INIT@
17 17
18 ## Import library 18 ## Import library
19 library("reshape2") 19 library(reshape2)
20 library("ggplot2") 20 library(ggplot2)
21 21
22 ## Automatically scaled y axis or user defined 22 ## Automatically scaled y axis or user defined
23 ## marco not possible because on y asis relevent 23 ## marco not possible because on y asis relevent
24 #if $adv.scaling.plot_scaling == "Automatic" 24 #if $adv.scaling.plot_scaling == "Automatic"
25 gg_scaley = NULL 25 gg_scaley = NULL