mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
e01a98a704
* 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>
31 lines
821 B
YAML
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"
|