Skip to content

Commit

Permalink
fixed linting fastqgather and reportgather
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzalab committed Dec 10, 2024
1 parent 8feda40 commit 245a3e2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 22 deletions.
6 changes: 3 additions & 3 deletions modules/nf-core/wipertools/fastqgather/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ input:
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- fastq_folder_in:
- fastq_in:
type: file
description: Directory containing FASTQ chunks to be merged
description: List of FASTQ chunk files to be merged
pattern: "*.{fastq,fastq.gz}"
ontologies:
- edam: "http://edamontology.org/format_1930"
Expand All @@ -37,7 +37,7 @@ output:
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- "*.fastq.gz":
- "*_gather.fastq.gz":
type: file
description: The resulting FASTQ file
pattern: "*.fastq.gz"
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/wipertools/fastqwiper/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ output:
- "*.report":
type: file
description: Summary of the cleaning task
pattern: "*.{txt}"
pattern: "*.report"
ontologies:
- edam: "http://edamontology.org/format_2330"
- versions:
Expand Down
32 changes: 14 additions & 18 deletions modules/nf-core/wipertools/reportgather/meta.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/meta-schema.json
name: "wipertools_fastqgather"
description: A tool of the wipertools suite that merges FASTQ chunks produced by wipertools_fastqscatter
name: "wipertools_reportgather"
description: A tool of the wipertools suite that merges wiping reports generated by wipertools_fastqwiper
keywords:
- fastq
- report
- merge
- union
tools:
- "fastqgather":
description:
"A tool of the wipertools suite that merges FASTQ chunks produced\
\ by wipertools_fastqscatter."
- "reportgather":
description: "A tool of the wipertools suite that merges wiping reports generated by wipertools_fastqwiper."
homepage: "https://github.com/mazzalab/fastqwiper"
documentation: "https://github.com/mazzalab/fastqwiper"
tool_dev_url: "https://github.com/mazzalab/fastqwiper"
Expand All @@ -23,27 +21,25 @@ input:
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- fastq_folder_in:
- reports:
type: file
description: Directory containing FASTQ chunks to be merged
pattern: "*.{fastq,fastq.gz}"
description: List of wiping reports to be merged
pattern: "*.report"
ontologies:
- edam: "http://edamontology.org/format_1930"
- edam: "http://edamontology.org/format_3989"
- edam: "http://edamontology.org/format_2330"
output:
- fastq_out:
- report_out:
- meta:
type: map
description: |
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
- "*.fastq.gz":
- "*_gathered.report":
type: file
description: The resulting FASTQ file
pattern: "*.fastq.gz"
description: The resulting report file
pattern: "*.report"
ontologies:
- edam: "http://edamontology.org/format_1930"
- edam: "http://edamontology.org/format_3989"
- edam: "http://edamontology.org/format_2330"
- versions:
- versions.yml:
type: file
Expand Down

0 comments on commit 245a3e2

Please sign in to comment.