{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "untar", "description": "Unpack a .tar file. When the contents of the .tar file is just a single directory,\nput the contents of the directory into the output folder instead of that directory.\n", "type": "object", "$defs": { "input arguments": { "title": "Input arguments", "type": "object", "description": "No description", "properties": { "input": { "type": "string", "format": "path", "exists": true, "description": "Tarball file to be unpacked.", "help_text": "Type: `file`, multiple: `False`, required, direction: `input`. " } } }, "output arguments": { "title": "Output arguments", "type": "object", "description": "No description", "properties": { "output": { "type": "string", "format": "path", "description": "Directory to write the contents of the .tar file to.", "help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.output\"`, direction: `output`. ", "default": "$id.$key.output" } } }, "other arguments": { "title": "Other arguments", "type": "object", "description": "No description", "properties": { "exclude": { "type": "string", "description": "Prevents any file or member whose name matches the shell wildcard (pattern) from being extracted.", "help_text": "Type: `string`, multiple: `False`, example: `\"docs/figures\"`. " } } }, "nextflow input-output arguments": { "title": "Nextflow input-output arguments", "type": "object", "description": "Input/output parameters for Nextflow itself. Please note that both publishDir and publish_dir are supported but at least one has to be configured.", "properties": { "publish_dir": { "type": "string", "description": "Path to an output directory.", "help_text": "Type: `string`, multiple: `False`, required, example: `\"output/\"`. " } } } }, "allOf": [ { "$ref": "#/$defs/input arguments" }, { "$ref": "#/$defs/output arguments" }, { "$ref": "#/$defs/other arguments" }, { "$ref": "#/$defs/nextflow input-output arguments" } ] }