Skip to content

Commit 5b22bfa

Browse files
authored
Fix: PoolSNP: Update input tuple; cleanup stub (#8218)
* Update input tuple; cleanup stub * Update meta.yml for poolsnp
1 parent 1fb0009 commit 5b22bfa

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

modules/nf-core/poolsnp/main.nf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ process POOLSNP {
1010
input:
1111
tuple val(meta) , path(mpileup)
1212
tuple val(meta2), path(reference)
13-
tuple val(meta) , val(max_cov), path(max_cov_file)
13+
tuple val(meta3), val(max_cov), path(max_cov_file)
1414

1515
output:
1616
tuple val(meta), path("*.vcf.gz") , emit: vcf
@@ -44,7 +44,6 @@ process POOLSNP {
4444
"""
4545

4646
stub:
47-
def args = task.ext.args ?: ''
4847
def prefix = task.ext.prefix ?: "${meta.id}"
4948
def VERSION = '1.0.1' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions.
5049

modules/nf-core/poolsnp/meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ input:
4040
Reference genome in FASTA format.
4141
May NOT contain any special characters such as "/|,:"
4242
pattern: "*.{fasta,fa}"
43-
- - meta:
43+
- - meta3:
4444
type: map
4545
description: |
4646
Groovy Map containing sample information.

modules/nf-core/poolsnp/tests/main.nf.test.snap

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@
88
[
99
[
1010
{
11-
"id": "test"
11+
"id": "test",
12+
"single_end": false
1213
},
1314
"test_cov-0.7.txt:md5,d41d8cd98f00b204e9800998ecf8427e"
1415
]
1516
]
1617
],
1718
"meta": {
18-
"nf-test": "0.8.4",
19-
"nextflow": "24.04.4"
19+
"nf-test": "0.9.2",
20+
"nextflow": "24.10.5"
2021
},
21-
"timestamp": "2024-08-16T15:51:10.298893"
22+
"timestamp": "2025-04-05T11:57:13.661565"
2223
},
2324
"sarscov2 - mpileup - max_cov_file - stub": {
2425
"content": [
@@ -42,17 +43,18 @@
4243
[
4344
[
4445
{
45-
"id": "test"
46+
"id": "test",
47+
"single_end": false
4648
},
4749
"test-cov-0.7.txt:md5,ccbb119522c09daa976a9015ba999329"
4850
]
4951
]
5052
],
5153
"meta": {
52-
"nf-test": "0.8.4",
53-
"nextflow": "24.04.4"
54+
"nf-test": "0.9.2",
55+
"nextflow": "24.10.5"
5456
},
55-
"timestamp": "2024-08-16T15:30:50.011"
57+
"timestamp": "2025-04-05T11:56:50.034677"
5658
},
5759
"sarscov2 - mpileup - max_cov_file": {
5860
"content": [

0 commit comments

Comments
 (0)