comparison ggplot2_pca.xml @ 5:fcb6a19960c6 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:08 +0000
parents 7e616a1bdb07
children b1268b7544d3
comparison
equal deleted inserted replaced
4:7e616a1bdb07 5:fcb6a19960c6
1 <tool id="ggplot2_pca" name="PCA plot w ggplot2" version="@VERSION@"> 1 <tool id="ggplot2_pca" name="PCA 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 <requirements> 6 <requirements>
7 <requirement type="package" version="0.4.3">r-ggfortify</requirement> 7 <requirement type="package" version="0.4.13">r-ggfortify</requirement>
8 <requirement type="package" version="1.2.1">r-svglite</requirement> 8 <requirement type="package" version="2.0.0">r-svglite</requirement>
9 </requirements> 9 </requirements>
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>
247 </when> 247 </when>
248 <when value="define_groups"> 248 <when value="define_groups">
249 <repeat name="group_names" min="2" title="Group" help="Select the samples for this group"> 249 <repeat name="group_names" min="2" title="Group" help="Select the samples for this group">
250 <param name="groupName" type="text" optional="false" label="Group name" 250 <param name="groupName" type="text" optional="false" label="Group name"
251 help="Use short names, avoid special characters and numbers at the beginning of the name (The names might be changed by the program to make them conform to processing in R)"> 251 help="Use short names, avoid special characters and numbers at the beginning of the name (The names might be changed by the program to make them conform to processing in R)">
252 <validator type="no_options" message="Please choose a name for this group!"/> 252 <sanitizer invalid_char="">
253 <valid initial="string.letters,string.digits">
254 <add value=":" />
255 <add value="-" />
256 <add value=" " />
257 <add value="_" />
258 </valid>
259 </sanitizer>
260 <validator type="regex" message="Value may include alphanumeric characters, colons, dashes, underscores and spaces.">[0-9a-zA-Z:-_ ]+</validator>
253 </param> 261 </param>
254 <param name="groupCols" type="data_column" data_ref="input1" multiple="true" min="1" label="Columns for group" 262 <param name="groupCols" type="data_column" data_ref="input1" multiple="true" min="1" label="Columns for group"
255 help="WARNING: please use columns indices after removing the row name column if selected in second section!"> 263 help="WARNING: please use columns indices after removing the row name column if selected in second section!">
256 <validator type="no_options" message="Select at least one column for each group!"/> 264 <validator type="regex" message="Select at least one column for each group!">[0-9a-zA-Z:-_ ]+</validator>
257 <!--<filter type="remove_value" meta_ref="groupCols" />--> 265 <!--<filter type="remove_value" meta_ref="groupCols" />-->
258 </param> 266 </param>
259 <conditional name="color_cond"> 267 <conditional name="color_cond">
260 <param name="color_bool" type="select" label="Change colors"> 268 <param name="color_bool" type="select" label="Change colors">
261 <option value="default" selected="true">Default ggplot colors</option> 269 <option value="default" selected="true">Default ggplot colors</option>