mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
39 lines
905 B
YAML
39 lines
905 B
YAML
name: "md5sum"
|
|
description: Create an MD5 (128-bit) checksum
|
|
keywords:
|
|
- checksum
|
|
tools:
|
|
- "md5sum":
|
|
description: Create an MD5 (128-bit) checksum
|
|
homepage: "https://www.gnu.org"
|
|
documentation: "https://man7.org/linux/man-pages/man1/md5sum.1.html"
|
|
licence: GPLv3+
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- file:
|
|
type: file
|
|
description: Any file
|
|
pattern: "*.*"
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test', single_end:false ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- checksum:
|
|
type: file
|
|
description: File containing checksum
|
|
pattern: "*.md5"
|
|
|
|
authors:
|
|
- "@matthdsm"
|