diff deepTools_macros.xml @ 30:0e49b109abc2 draft default tip

planemo upload for repository https://github.com/deeptools/deepTools/tree/master/galaxy/wrapper/ commit 4a4029b5c2e725b7cebc27217b76d23910508412
author bgruening
date Wed, 27 Sep 2023 20:37:36 +0000
parents 2d2cf5c1ea8a
children
line wrap: on
line diff
--- a/deepTools_macros.xml	Thu Jun 01 20:49:11 2023 +0000
+++ b/deepTools_macros.xml	Wed Sep 27 20:37:36 2023 +0000
@@ -1,8 +1,8 @@
 <macros>
 
     <token name="@THREADS@">--numberOfProcessors "\${GALAXY_SLOTS:-4}"</token>
-    <token name="@TOOL_VERSION@">3.5.2</token>
-    <token name="@GALAXY_VERSION@">20.01</token>
+    <token name="@TOOL_VERSION@">3.5.4</token>
+    <token name="@GALAXY_VERSION@">22.05</token>
     <xml name="requirements">
         <requirements>
             <requirement type="package" version="@TOOL_VERSION@">deeptools</requirement>
@@ -441,12 +441,15 @@
 	<when value="No">
 	</when>
 	<when value="Yes">
-	    <param argument="--labels" type="text" label="Sample Labels" help="Labels, separated by a space. If your labels themselves contain spaces then please enclose them in quotes (e.g., &quot;sample 1&quot; &quot;sample 2&quot;)">
-                <sanitizer>
-                    <valid initial="string.printable">
-                    </valid>
-                </sanitizer>
-            </param>
+	    <param argument="--labels" type="text" label="Sample Labels" help="Labels, separated by a space. If your labels themselves contain spaces then please enclose them in quotes (e.g., &apos;sample 1&apos;; &apos;sample 2&apos;)">
+            <sanitizer>
+                <valid initial="string.letters,string.digits,string.whitespace">
+                    <add value="&apos;" />
+                    <add value="_" />
+                </valid>
+            </sanitizer>
+            <validator type="regex">[A-Za-z0-9 =-_/+]+</validator>
+        </param>
 	</when>
         </conditional>
     </xml>