Mercurial > repos > iuc > multiqc
comparison checkm2_plugin.xml @ 30:4981b6c4f7fa draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/multiqc commit d4b9696c6c533ca1841c22b52bb3e73833e2e0d4
| author | iuc |
|---|---|
| date | Thu, 15 Jan 2026 20:38:43 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 29:ef6bd40a30d2 | 30:4981b6c4f7fa |
|---|---|
| 1 <macros> | |
| 2 <token name="@CHECKM2_COMMAND@"><![CDATA[ | |
| 3 #set $pattern = "Name\tCompleteness\tContamination\tCompleteness_Model_Used\tTranslation_Table_Used" | |
| 4 @LN_FILES@ | |
| 5 ]]></token> | |
| 6 <xml name="checkm2_form"> | |
| 7 <param name="input" type="data" format="tabular" multiple="true" label="Output of CheckM2" help="It should be the quality report from CheckM2"/> | |
| 8 </xml> | |
| 9 <xml name="checkm2_test"> | |
| 10 <test expect_num_outputs="3"> | |
| 11 <repeat name="results"> | |
| 12 <conditional name="software_cond"> | |
| 13 <param name="software" value="checkm2"/> | |
| 14 <param name="input" value="checkm2.tsv"/> | |
| 15 </conditional> | |
| 16 </repeat> | |
| 17 <param name="title" value="Title of the report"/> | |
| 18 <param name="comment" value="Commment for the report"/> | |
| 19 <param name="flat" value="true"/> | |
| 20 <param name="export" value="true"/> | |
| 21 <output name="html_report"> | |
| 22 <assert_contents> | |
| 23 <has_text text="Title of the report"/> | |
| 24 <has_text text="Commment for the report"/> | |
| 25 <has_text text="CheckM2"/> | |
| 26 </assert_contents> | |
| 27 </output> | |
| 28 <output_collection name="plots" type="list" count="0"/> | |
| 29 </test> | |
| 30 <!-- This test use a Checkm2 TSV file with wrong required headers to check error handling. | |
| 31 Some checkm2 column names are parameter-dependent and the checkm2 multiQC module rely on a specific column pattern. | |
| 32 An issue has been opened : https://github.com/MultiQC/MultiQC/issues/3466 | |
| 33 There is a stdio rule in macro that need to be removed once the issue is fixed --> | |
| 34 <test expect_failure="true" expect_exit_code="1"> | |
| 35 <repeat name="results"> | |
| 36 <conditional name="software_cond"> | |
| 37 <param name="software" value="checkm2"/> | |
| 38 <param name="input" value="checkm2-wrong.tsv"/> | |
| 39 </conditional> | |
| 40 </repeat> | |
| 41 <param name="title" value="Title of the report"/> | |
| 42 <param name="comment" value="Commment for the report"/> | |
| 43 <param name="flat" value="true"/> | |
| 44 <param name="export" value="true"/> | |
| 45 </test> | |
| 46 </xml> | |
| 47 </macros> |
