mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
a740a6ff48
* Specify more guidelines on input channels * Linting * Updates based on code review * Update README.md * Fix broken sentence * feat: add megahit module, currently decompressed output * Update main.nf * Update tests/modules/megahit/test.yml Co-authored-by: Maxime Borry <maxibor@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * feat: compress all outputs, remove md5sums due to gz stochasicity * fix: wrong conda channel for pigz * fix: broken singleend tests and update meta.yml * Missed one * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fix: pigz formatting * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * Apply suggestions from code review * Added but test failing due to null on output channel * fix prefix variable * Complete checkm_lineagewf * Remove TODOs * Add description of fasta_ext parameter * Improve meta map for this context * Update meta.yml * Update modules/checkm/lineagewf/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update main.nf Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: Maxime Borry <maxibor@users.noreply.github.com> Co-authored-by: Daniel Lundin <erik.rikard.daniel@gmail.com>
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
name: checkm_lineagewf
|
|
description: CheckM provides a set of tools for assessing the quality of genomes recovered from isolates, single cells, or metagenomes.
|
|
keywords:
|
|
- checkm
|
|
- mag
|
|
- metagenome
|
|
- quality
|
|
- isolates
|
|
- microbes
|
|
- single cells
|
|
- completeness
|
|
- contamination
|
|
- bins
|
|
- genome bins
|
|
tools:
|
|
- checkm:
|
|
description: Assess the quality of microbial genomes recovered from isolates, single cells, and metagenomes.
|
|
homepage: https://ecogenomics.github.io/CheckM/
|
|
documentation: https://github.com/Ecogenomics/CheckM/wiki
|
|
tool_dev_url: https://github.com/Ecogenomics/CheckM
|
|
doi: "10.1101/gr.186072.114"
|
|
licence: ['GPL v3']
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- fasta:
|
|
type: file
|
|
description: One or a list of multiple FASTA files of each bin, with extension defined with the fasta_ext value
|
|
pattern: "*.{$fasta_ext}"
|
|
- fasta_ext:
|
|
type: value
|
|
description: The file-type extension suffix of the input FASTA files (e.g., fasta, fna, fa, fas)
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'sample', bin:'1' ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- checkm_output:
|
|
type: directory
|
|
description: CheckM output directory
|
|
pattern: "*/"
|
|
- checkm_tsv:
|
|
type: file
|
|
description: CheckM summary completeness statistics table
|
|
pattern: "*.tsv"
|
|
|
|
authors:
|
|
- "@jfy133"
|