mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
2456ef7d99
* Add eido/validate module * Apply first batch of updates after code review * Remove readlink, update sed, update paths * Move sample table index parameter to config * Update tests/modules/eido/validate/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update tests/modules/eido/validate/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update tests/modules/eido/validate/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update tests/modules/eido/validate/test.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/eido/validate/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
38 lines
948 B
YAML
38 lines
948 B
YAML
name: "eido_validate"
|
|
description: Validate samplesheet or PEP config against a schema
|
|
keywords:
|
|
- eido
|
|
- validate
|
|
- schema
|
|
- format
|
|
- pep
|
|
tools:
|
|
- "validate":
|
|
description: "Validate samplesheet or PEP config against a schema."
|
|
homepage: "http://eido.databio.org/en/latest/"
|
|
documentation: "http://eido.databio.org/en/latest/"
|
|
doi: "10.1093/gigascience/giab077"
|
|
licence: "BSD-2-Clause"
|
|
|
|
input:
|
|
- samplesheet:
|
|
type: file
|
|
description: Samplesheet or PEP file to be validated
|
|
pattern: "*.{yaml,yml,csv}"
|
|
- schema:
|
|
type: file
|
|
description: Schema that the samplesheet will be validated against
|
|
pattern: "*.{yaml,yml}"
|
|
|
|
output:
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- log:
|
|
type: file
|
|
description: File containing validation log.
|
|
pattern: "*.log"
|
|
|
|
authors:
|
|
- "@rafalstepien"
|