Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove single_end from modules test template
closes #3691
  • Loading branch information
mashehu committed Oct 7, 2025
commit ea8781db88ce4d94eaed40bc28dacc50f150c3fb
4 changes: 2 additions & 2 deletions nf_core/module-template/tests/main.nf.test.j2
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ nextflow_process {
// TODO nf-core: define inputs of the process here. Example:
{% if has_meta %}
input[0] = [
[ id:'test', single_end:false ], // meta map
[ id:'test' ], // meta map
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
]
{%- else %}
Expand Down Expand Up @@ -62,7 +62,7 @@ nextflow_process {
// TODO nf-core: define inputs of the process here. Example:
{% if has_meta %}
input[0] = [
[ id:'test', single_end:false ], // meta map
[ id:'test' ], // meta map
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
]
{%- else %}
Expand Down