Skip to content

Commit 101e01c

Browse files
committed
Standardize version emission and restore EDAM comments
1 parent 31bf8a3 commit 101e01c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

modules/nf-core/smoothxg/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ process SMOOTHXG {
1313
output:
1414
tuple val(meta), path("*smoothxg.gfa"), emit: gfa
1515
path("*.maf") , optional: true, emit: maf
16-
tuple val("${task.process}"), val('smoothxg'), eval("smoothxg --version 2>&1 | cut -f 1 -d '-' | cut -f 2 -d 'v'"), topic: versions, emit: versions_smoothxg
16+
tuple val("${task.process}"), val('smoothxg'), eval("smoothxg --version 2>&1 | cut -f 1 -d '-' | cut -f 2 -d 'v'"), topic: versions, emit: versions
1717

1818
when:
1919
task.ext.when == null || task.ext.when

modules/nf-core/smoothxg/meta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ input:
2828
description: Variation graph in GFA 1.0 format
2929
pattern: "*.{gfa}"
3030
ontologies:
31-
- edam: http://edamontology.org/format_3975
31+
- edam: http://edamontology.org/format_3975 # GFA 1
3232
output:
3333
gfa:
3434
- - meta:
@@ -41,15 +41,15 @@ output:
4141
description: Linearized and simplified graph in GFA 1.0 format
4242
pattern: "*.smoothxg.{gfa}"
4343
ontologies:
44-
- edam: http://edamontology.org/format_3975
44+
- edam: http://edamontology.org/format_3975 # GFA 1
4545
maf:
4646
- "*.maf":
4747
type: file
4848
description: write the multiple sequence alignments (MSAs) in MAF format
4949
in this file (optional)
5050
pattern: "*.{maf}"
5151
ontologies: []
52-
versions_smoothxg:
52+
versions:
5353
- - ${task.process}:
5454
type: string
5555
description: The name of the process

0 commit comments

Comments
 (0)