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

Changeset 16:be146697a083 (2021-11-27)
Previous changeset 15:0c5239d1aa65 (2019-12-11) Next changeset 17:d7a6ea1e3b9d (2021-11-27)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme commit 8c1eac566cbcc93ceb3d753170bce144d386722c"
modified:
fimo.xml
macros.xml
b
diff -r 0c5239d1aa65 -r be146697a083 fimo.xml
--- a/fimo.xml Wed Dec 11 18:05:35 2019 -0500
+++ b/fimo.xml Sat Nov 27 09:44:17 2021 +0000
[
@@ -1,10 +1,14 @@
-<tool id="meme_fimo" name="FIMO" version="@WRAPPER_VERSION@.0">
+<tool id="meme_fimo" name="FIMO" version="@TOOL_VERSION@.0">
     <description>- Scan a set of sequences for motifs</description>
+    <xrefs>
+        <xref type="bio.tools">meme_fimo</xref>
+    </xrefs>
     <macros>
         <import>macros.xml</import>
     </macros>
     <expand macro="requirements" />
     <command detect_errors="exit_code"><![CDATA[
+@CHECK_NON_COMMERCIAL_USE@
 fimo
     -o ./out/
     $scanrc
b
diff -r 0c5239d1aa65 -r be146697a083 macros.xml
--- a/macros.xml Wed Dec 11 18:05:35 2019 -0500
+++ b/macros.xml Sat Nov 27 09:44:17 2021 +0000
[
@@ -1,11 +1,17 @@
 <?xml version='1.0' encoding='UTF-8'?>
 <macros>
-    <token name="@WRAPPER_VERSION@">5.0.5</token>
+    <token name="@TOOL_VERSION@">5.0.5</token>
     <xml name="requirements">
         <requirements>
             <requirement type="package" version="5.0.5">meme</requirement>
             <yield/>
         </requirements>
     </xml>
+    <token name="@CHECK_NON_COMMERCIAL_USE@"><![CDATA[
+        #if not $non_commercial_use
+            >&2 echo "this tool is only available for non commercial use";
+            exit 1
+        #end if
+    ]]></token>
 </macros>