Skip to content

Commit c41e569

Browse files
committed
Fix linting for majority vote
1 parent 349dec5 commit c41e569

File tree

3 files changed

+31
-13
lines changed

3 files changed

+31
-13
lines changed

modules/nf-core/gtdbtk/classifywf/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ channels:
44
- conda-forge
55
- bioconda
66
dependencies:
7-
- bioconda::gtdbtk=2.4.0
7+
- bioconda::gtdbtk=2.4.1

modules/nf-core/gtdbtk/classifywf/meta.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ input:
4848
mode is used (optional)
4949
pattern: "*.msh"
5050
output:
51+
- gtdb_files:
52+
- meta:
53+
type: map
54+
description: |
55+
Groovy Map containing sample information
56+
e.g. [ id:'test', single_end:false ]
57+
- "*":
58+
type: file
59+
description: All files output by GTDB-Tk.
60+
pattern: "*"
5161
- summary:
5262
- meta:
5363
type: map

modules/nf-core/gtdbtk/gtdbtoncbimajorityvote/meta.yml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
---
21
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json
32
name: "gtdbtk_gtdbtoncbimajorityvote"
4-
description: Converts the output classifications of GTDB-TK from GTDB taxonomy to NCBI taxonomy
3+
description: Converts the output classifications of GTDB-TK from GTDB taxonomy to
4+
NCBI taxonomy
55
keywords:
66
- GTDB taxonomy
77
- NCBI taxonomy
@@ -33,7 +33,7 @@ input:
3333
type: file
3434
description: All the output files from GTDB-Tk
3535
pattern: "*"
36-
36+
ontologies: []
3737
- - meta2:
3838
type: map
3939
description: |
@@ -45,7 +45,8 @@ input:
4545
description: GTDB ar53 metadata file (from https://data.ace.uq.edu.au/public/gtdb/data/releases/latest/)
4646
pattern: "*.tsv.gz"
4747
ontologies:
48-
- "http://edamontology.org/format_3475"
48+
- edam: http://edamontology.org/format_3475 # TSV
49+
- edam: http://edamontology.org/format_3989 # GZIP format
4950

5051
- - meta3:
5152
type: map
@@ -58,7 +59,8 @@ input:
5859
description: GTDB bac120 metadata file (from https://data.ace.uq.edu.au/public/gtdb/data/releases/latest/)
5960
pattern: "*.tsv.gz"
6061
ontologies:
61-
- edam: "http://edamontology.org/format_3475"
62+
- edam: http://edamontology.org/format_3475 # TSV
63+
- edam: http://edamontology.org/format_3989 # GZIP format
6264

6365
output:
6466
- tsv:
@@ -67,19 +69,25 @@ output:
6769
description: |
6870
Groovy Map containing sample information
6971
e.g. `[ id:'sample1' ]`
70-
- "*.tsv":
71-
type: file
72-
description: Output TSV mapping each genome and its GTDB taxonomy to an NCBI taxonomic lineage
73-
pattern: "*.{tsv}"
72+
pattern: "*.ncbi.tsv"
7473
ontologies:
75-
- edam: "http://edamontology.org/format_3475"
74+
- edam: http://edamontology.org/format_3475
75+
76+
- "*.ncbi.tsv":
77+
type: map
78+
description: TSV map for input genomes, mapping GTDB classification taxonomy
79+
to NCBI taxonomy
80+
pattern: "*.ncbi.tsv"
81+
ontologies:
82+
- edam: http://edamontology.org/format_3475
7683

7784
- versions:
78-
- "versions.yml":
85+
- versions.yml:
7986
type: file
8087
description: File containing software versions
8188
pattern: "versions.yml"
82-
89+
ontologies:
90+
- edam: http://edamontology.org/format_3750 # YAML
8391
authors:
8492
- "@prototaxites"
8593
maintainers:

0 commit comments

Comments
 (0)