Repository 'fastq_masker_by_quality'
hg clone https://toolshed.g2.bx.psu.edu/repos/devteam/fastq_masker_by_quality

Changeset 4:9dfda4e310ed (2020-02-19)
Previous changeset 3:9282652e7234 (2019-11-01) Next changeset 5:4e1d64e6385f (2024-10-04)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/galaxy_sequence_utils/fastq_masker_by_quality commit d4ced60a941c4c4a2fe95de9c09a10086810b387"
modified:
fastq_masker_by_quality.xml
added:
macros.xml
b
diff -r 9282652e7234 -r 9dfda4e310ed fastq_masker_by_quality.xml
--- a/fastq_masker_by_quality.xml Fri Nov 01 13:24:21 2019 -0400
+++ b/fastq_masker_by_quality.xml Wed Feb 19 12:32:01 2020 -0500
[
@@ -1,8 +1,9 @@
-<tool id="fastq_masker_by_quality" name="FASTQ Masker" version="1.1.1">
+<tool id="fastq_masker_by_quality" name="FASTQ Masker" version="@TOOL_VERSION@">
     <description>by quality score</description>
-    <requirements>
-        <requirement type="package" version="1.1.1">galaxy_sequence_utils</requirement>
-    </requirements>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements"/>
     <edam_topics>
         <edam_topic>topic_0622</edam_topic>
     </edam_topics>
@@ -10,8 +11,8 @@
         <edam_operation>operation_0368</edam_operation>
     </edam_operations>
     <command><![CDATA[
-gx-fastq-masker-by-quality '$input_file' '$output_file' -f '${input_file.extension[len( 'fastq' ):]}' -s ${quality_score} -c ${score_comparison}
-#if $mask_type.value == 'lowercase'
+gx-fastq-masker-by-quality '$input_file' '$output_file' -f '${input_file.extension[len('fastq'):]}' -s ${quality_score} -c ${score_comparison}
+#if $mask_type == 'lowercase'
     --lowercase
 #else
     -m ${mask_type}
b
diff -r 9282652e7234 -r 9dfda4e310ed macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml Wed Feb 19 12:32:01 2020 -0500
b
@@ -0,0 +1,9 @@
+<macros>
+    <token name="@TOOL_VERSION@">1.1.5</token>
+    <xml name="requirements">
+        <requirements>
+            <requirement type="package" version="@TOOL_VERSION@">galaxy_sequence_utils</requirement>
+            <yield/>
+        </requirements>
+    </xml>>
+</macros>