mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 19:18:17 +00:00
3aacd46da2
* backfilled modules with meta.yml that had no license identifier * harmonized BSD license names * whitespace linting at modules/unzip/meta.yml:12 * harmonized software from US NIH-NCBI/NIST to 'US-Government-Work' * Update modules/bcftools/index/meta.yml `bcftools` is dual-licensed, use associative array to allow for multiple licenses Co-authored-by: Michael L Heuer <heuermh@acm.org> Co-authored-by: Michael L Heuer <heuermh@acm.org>
34 lines
857 B
YAML
34 lines
857 B
YAML
name: cat_cat
|
|
description: A module for concatenation of gzipped or uncompressed files
|
|
keywords:
|
|
- concatenate
|
|
- gzip
|
|
- cat
|
|
tools:
|
|
- cat:
|
|
description: Just concatenation
|
|
homepage: None
|
|
documentation: https://man7.org/linux/man-pages/man1/cat.1.html
|
|
tool_dev_url: None
|
|
licence: ['GPL-3.0-or-later']
|
|
input:
|
|
- files_in:
|
|
type: file
|
|
description: List of compressed / uncompressed files
|
|
pattern: "*"
|
|
- file_out:
|
|
type: value
|
|
description: Full name of output file with or without .gz extension
|
|
|
|
output:
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- file_out:
|
|
type: file
|
|
description: Concatenated file. Will be gzipped if file_out ends with ".gz"
|
|
pattern: "${file_out}"
|
|
|
|
authors:
|
|
- "@erikrikarddaniel"
|