Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion nf_core/module-template/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
{%- endif %}

process {{ component_name_underscore|upper }} {
tag {{ '"$meta.id"' if has_meta else "'$bam'" }}
{% if not has_meta -%}
// TODO nf-core: Update the variable name used in the tag
{% endif -%}
tag {{ '"$meta.id"' if has_meta else '"$bam"' }}
label '{{ process_label }}'

{% if not_empty_template -%}
Expand Down