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>
31 lines
818 B
YAML
31 lines
818 B
YAML
name: unzip
|
|
description: Unzip ZIP archive files
|
|
keywords:
|
|
- unzip
|
|
- decompression
|
|
tools:
|
|
- unzip:
|
|
description: p7zip is a quick port of 7z.exe and 7za.exe (command line version of 7zip, see www.7-zip.org) for Unix.
|
|
homepage: https://sourceforge.net/projects/p7zip/
|
|
documentation: https://sourceforge.net/projects/p7zip/
|
|
tool_dev_url: https://sourceforge.net/projects/p7zip"
|
|
licence: "GNU LPGL"
|
|
|
|
input:
|
|
- archive:
|
|
type: file
|
|
description: ZIP file
|
|
pattern: "*.zip"
|
|
|
|
output:
|
|
- version:
|
|
type: file
|
|
description: File or directory of decompressed archive
|
|
pattern: "versions.yml"
|
|
- unzipped_archive:
|
|
type: directory
|
|
description: Directory contents of the unzipped archive
|
|
pattern: '${archive.baseName}/'
|
|
|
|
authors:
|
|
- "@jfy133"
|