nf-core_modules/modules/checkm/lineagewf/meta.yml
James A. Fellows Yates 03de60e6fa
Add CHECKM/QA (#2137)
* Bump checkM version and add support for pre-defined database

* Add markfile output to checkm/lineagewf and add checkm/qa

* Remove unnecessary BAM from tests

* Fix channels to ensure single meta

* Blah

* Use secondary name evwyhere

* Remove second incovcatiojn

* Don't run module directrly for join

* And for the other test

* Correct module name

* Fix name again

* Try and fix out_format 9 not being picked up

* Contains to matches to allow regex

* Fix tests (finally)

* Fix verisoning

* [automated] Fix linting with Prettier

* Update modules/checkm/qa/main.nf

Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>

Co-authored-by: nf-core-bot <core@nf-co.re>
Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>
2022-09-30 15:50:47 +02:00

65 lines
1.8 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)
- db:
type: directory
description: Optional directory pointing to checkM database to prevent re-downloading
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_output:
type: file
description: Lineage markfer file
pattern: "lineage.ms"
- checkm_tsv:
type: file
description: CheckM summary completeness statistics table
pattern: "*.tsv"
authors:
- "@jfy133"