mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
906577873b
* New functions.nf * Convert code to create versions.yml * Update meta.yml * update output channel * Fix more meta.yml * Manually update remaining modules * remove superflous echo * Fix misformatted meta.yml files * Fix yaml, was list instead of dict * fix version for bcftools Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
27 lines
584 B
YAML
27 lines
584 B
YAML
name: untar
|
|
description: Extract files.
|
|
keywords:
|
|
- untar
|
|
- uncompress
|
|
tools:
|
|
- untar:
|
|
description: |
|
|
Extract tar.gz files.
|
|
documentation: https://www.gnu.org/software/tar/manual/
|
|
input:
|
|
- archive:
|
|
type: file
|
|
description: File to be untar
|
|
pattern: "*.{tar}.{gz}"
|
|
output:
|
|
- untar:
|
|
type: file
|
|
description:
|
|
pattern: "*.*"
|
|
- version:
|
|
type: file
|
|
description: File containing software version
|
|
pattern: "versions.yml"
|
|
authors:
|
|
- "@joseespinosa"
|
|
- "@drpatelh"
|