Skip to content

Commit cf255cd

Browse files
committed
bandage: Fix output files
file "*.png *.svg" should be file "*.png" file "*.svg"
1 parent cc34ca5 commit cf255cd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

flowcraft/generator/templates/bandage.nf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ if (params.reference{{param_id}} != null) {
1010
file reference from Channel.fromPath(params.reference{{param_id}})
1111

1212
output:
13-
file "*.png *.svg"
13+
file "*.png"
14+
file "*.svg"
1415
{% with task_name="bandage" %}
1516
{%- include "compiler_channels.txt" ignore missing -%}
1617
{% endwith %}
@@ -34,7 +35,8 @@ if (params.reference{{param_id}} != null) {
3435
set sample_id, file(assembly) from {{input_channel}}
3536

3637
output:
37-
file "*.png *.svg"
38+
file "*.png"
39+
file "*.svg"
3840
{% with task_name="bandage" %}
3941
{%- include "compiler_channels.txt" ignore missing -%}
4042
{% endwith %}

0 commit comments

Comments
 (0)