Skip to content

Commit ea8781d

Browse files
committed
remove single_end from modules test template
closes #3691
1 parent 5fe18d9 commit ea8781d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nf_core/module-template/tests/main.nf.test.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nextflow_process {
2727
// TODO nf-core: define inputs of the process here. Example:
2828
{% if has_meta %}
2929
input[0] = [
30-
[ id:'test', single_end:false ], // meta map
30+
[ id:'test' ], // meta map
3131
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
3232
]
3333
{%- else %}
@@ -62,7 +62,7 @@ nextflow_process {
6262
// TODO nf-core: define inputs of the process here. Example:
6363
{% if has_meta %}
6464
input[0] = [
65-
[ id:'test', single_end:false ], // meta map
65+
[ id:'test' ], // meta map
6666
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
6767
]
6868
{%- else %}

0 commit comments

Comments
 (0)