diff bbduk_plugin.xml @ 27:7591bce96601 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/multiqc commit 327834d2ea9b16f0f0264fa4e9b675a2277f2fee
author iuc
date Tue, 18 Feb 2025 23:18:25 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bbduk_plugin.xml	Tue Feb 18 23:18:25 2025 +0000
@@ -0,0 +1,44 @@
+<macros>
+    <token name="@BBDUK_COMMAND@"><![CDATA[
+        #set $pattern = "Executing jgi\.BBDuk"
+        @LN_FILES@
+    ]]></token>
+    <xml name="bbduk_form">
+        <param name="input" type="data" format="txt" multiple="true" label="Output of BBDuk" help="It should contain 'Executing jgi.BBDuk'"/>
+    </xml>
+    <xml name="bbduk_test">
+        <test expect_num_outputs="3">
+            <repeat name="results">
+                <conditional name="software_cond">
+                    <param name="software" value="bbduk"/>
+                    <param name="input" value="bbduk.txt"/>
+                </conditional>
+            </repeat>
+            <param name="title" value="Title of the report"/>
+            <param name="comment" value="Commment for the report"/>
+            <param name="flat" value="true"/>
+            <param name="export" value="true"/>
+            <output name="html_report">
+                <assert_contents>
+                    <has_text text="Title of the report"/>
+                    <has_text text="Commment for the report"/>
+                    <has_text text="BBDuk"/>
+                    <has_text text="BBDuk: Filtered Reads"/>
+                    <has_text text="0.0"/>
+                </assert_contents>
+            </output>
+            <output name="stats">
+                <assert_contents>
+                    <has_text text="bbduk-Total_Removed_bases_percent"/>
+                    <has_text text="bbduk-Total_Removed_bases"/>
+                    <has_text text="bbduk-Total_Removed_reads_percent"/>
+                    <has_text text="bbduk-Total_Removed_reads"/>
+                    <has_text text="bbduk-Input_reads"/>
+                    <has_n_lines n="2"/>
+                    <has_n_columns n="6"/>
+                </assert_contents>
+            </output>
+            <output_collection name="plots" type="list" count="2"/>
+        </test>
+    </xml>
+</macros>