Skip to content

Commit

Permalink
fix yml
Browse files Browse the repository at this point in the history
  • Loading branch information
luisas committed Jan 31, 2025
1 parent af3c78d commit e78ddd5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/nf-core/learnmsa/align/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ process LEARNMSA_ALIGN {
tuple val(meta), path(fasta)

output:
tuple val(meta), path("*.aln{.gz,}"), emit: alignment
tuple val(meta), path("*.aln"), emit: alignment
path "versions.yml" , emit: versions

when:
Expand Down
10 changes: 5 additions & 5 deletions modules/nf-core/learnmsa/align/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ input:
e.g. `[ id:'test']`
- fasta:
type: file
description: Input sequences in FASTA format. May be gz-compressed or uncompressed.
pattern: "*.{fa,fasta}{.gz,}"
description: Input sequences in FASTA format.
pattern: "*.{fa,fasta}"
output:
- alignment:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. `[ id:'test']`
- "*.aln{.gz,}":
- "*.aln":
type: file
description: Alignment file, in FASTA format. May be gzipped or uncompressed.
pattern: "*.aln{.gz,}"
description: Alignment file, in FASTA format.
pattern: "*.aln"
- versions:
- versions.yml:
type: file
Expand Down

0 comments on commit e78ddd5

Please sign in to comment.