diff macros.xml @ 0:f5fa293605ca draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/intervene commit 9b67be72f7330b1b9af7944aa695c9f5d6d20a15
author iuc
date Wed, 12 Sep 2018 13:22:43 -0400
parents
children 08780101bc36
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml	Wed Sep 12 13:22:43 2018 -0400
@@ -0,0 +1,35 @@
+<macros>
+    <xml name="color_sanitizer">
+        <sanitizer>
+          <valid initial="string.ascii_letters,string.digits">
+            <add value="#" />
+          </valid>
+        </sanitizer>
+    </xml>
+    <xml name="quote_sanitizer">
+        <sanitizer>
+          <valid initial="string.printable">
+            <remove value="'" />
+          </valid>
+        </sanitizer>
+    </xml>
+    <xml name="figure_params">
+        <param argument="--figtype" type="select" label="Select figure type for plot">
+            <option value="pdf">pdf</option>
+            <option value="svg">svg</option>
+            <option value="ps">ps</option>
+            <option value="tiff">tiff</option>
+            <option value="png">png</option>
+        </param>
+        <param name="figsize_width" type="integer" value="14" min="2" label="Width of the output plot"/>
+        <param name="figsize_height" type="integer" value="8" min="2" label="Height of the output plot"/>
+        <param argument="--dpi" type="integer" value="300" min="60" max="1200" label="Dots-per-inch (DPI) for the output"/>
+    </xml>
+    <xml name="citations">
+        <citations>
+            <citation type="doi">10.1186/s12859-017-1708-7</citation>
+        </citations>
+    </xml>
+    <token name="@TOOL_VERSION@">0.6.4</token>
+    <token name="@ESCAPE_IDENTIFIER@"><![CDATA[re.sub('[^\s\w\-\.]', '_', str($file.element_identifier))]]></token>
+</macros>