nf-core_modules/modules/unzip/meta.yml
James A. Fellows Yates e01a98a704
module: unzip (#642)
* Specify more guidelines on input channels

* Linting

* Updates based on code review

* Update README.md

* Fix broken sentence

* Add unzip module

* Remove missing TODOs update mtea

* Apply changes after code-review from @grst

* Account for user trying to supply two input archives

* Remove debugging test

* Update modules/unzip/main.nf

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>

* Correct output path

Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
2021-08-02 09:40:57 +02:00

31 lines
821 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: "*.{version.txt}"
- unzipped_archive:
type: directory
description: Directory contents of the unzipped archive
pattern: '${archive.baseName}/'
authors:
- "@jfy133"