Skip to content

Commit

Permalink
omark: fix optional options (#5817)
Browse files Browse the repository at this point in the history
  • Loading branch information
abretaud authored Mar 12, 2024
1 parent 91a178d commit 344924b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tools/omark/macros.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<macros>
<token name="@TOOL_VERSION@">0.3.0</token>
<token name="@VERSION_SUFFIX@">1</token>
<token name="@VERSION_SUFFIX@">2</token>

<xml name="requirements">
<requirement type="package" version="@TOOL_VERSION@">omark</requirement>
Expand Down
19 changes: 14 additions & 5 deletions tools/omark/omark.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,20 @@
-f 'output_omamer'
-d '$database.fields.path'
$omark_mode
-i '$input_iso'
-t '$t'
-r '$r'
-o omark_galaxy
#if $input_iso:
-i '$input_iso'
#end if
#if $t:
-t '$t'
#end if
#if $r:
-r '$r'
#end if
-o omark_galaxy
]]></command>

<inputs>
Expand Down Expand Up @@ -49,7 +58,7 @@
<validator type="regex">[0-9a-zA-Z_]+</validator>
</param>

<param name="outputs" type="select" optional="true" multiple="true" label="Which outputs should be generated">
<param name="outputs" type="select" multiple="true" label="Which outputs should be generated">
<option value="detail_sum" selected="true">Detailed summary</option>
<option value="hog">HOG identifiers</option>
<option value="pdf">PDF Graphic representation </option>
Expand Down

0 comments on commit 344924b

Please sign in to comment.