Files
demultiplex/src/io/untar/config.vsh.yaml
CI 54d722dcb7 Build branch main with version main (ed860be)
Build pipeline: vsh-ci-template-hp9jh

Source commit: ed860bed30

Source message: BUG: Wrong pointer to biobox dependency (#15)

* Fix pointer to biobox

* Add PR number
2024-06-24 12:48:53 +00:00

44 lines
1.1 KiB
YAML

name: untar
namespace: io
description: |
Unpack a .tar file. When the contents of the .tar file is just a single directory,
put the contents of the directory into the output folder instead of that directory.
argument_groups:
- name: Input arguments
arguments:
- name: --input
description: Tarball file to be unpacked.
type: file
required: true
- name: Output arguments
arguments:
- name: --output
description: Directory to write the contents of the .tar file to.
type: file
direction: output
required: true
- name: "Other arguments"
arguments:
- name: "--exclude"
alternatives: ["-e"]
type: string
description: Prevents any file or member whose name matches the shell wildcard (pattern) from being extracted.
example: "docs/figures"
required: false
resources:
- type: bash_script
path: script.sh
test_resources:
- type: bash_script
path: test.sh
engines:
- type: docker
image: debian:stable-slim
setup:
- type: apt
packages:
- procps
runners:
- type: executable
- type: nextflow