Build pipeline: viash-hub.craftbox.main-q4xsw
Source commit: a80fa3ef02
Source message: `move_files_to_directory`: add support for preserving symbolic links (#13)
59 lines
2.0 KiB
JSON
59 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "move_files_to_directory",
|
|
"description": "This component copies one or multiple files to the same destination directory, creating the output directory if it doesn't exist.",
|
|
"type": "object",
|
|
"$defs": {
|
|
"arguments": {
|
|
"title": "Arguments",
|
|
"type": "object",
|
|
"description": "No description",
|
|
"properties": {
|
|
"input": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"format": "path",
|
|
"exists": true,
|
|
"description": "Paths of the files that will be copied into the output directory.",
|
|
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
|
|
},
|
|
"output": {
|
|
"type": "string",
|
|
"format": "path",
|
|
"description": "Path to output directory",
|
|
"help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.output\"`, direction: `output`. ",
|
|
"default": "$id.$key.output"
|
|
},
|
|
"keep_symbolic_links": {
|
|
"type": "boolean",
|
|
"description": "Preserve symbolic links.",
|
|
"help_text": "Type: `boolean_true`, multiple: `False`, default: `false`. ",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"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/arguments"
|
|
},
|
|
{
|
|
"$ref": "#/$defs/nextflow input-output arguments"
|
|
}
|
|
]
|
|
}
|