Files
htrnaseq/target/nextflow/utils/save_params/nextflow_schema.json
CI 44dc2ea48d Build branch htrnaseq/v0.14 with version v0.14.6 to htrnaseq on branch v0.14 (9346c55)
Build pipeline: viash-hub.htrnaseq.v0.14.6-q286w

Source commit: 9346c55e3f

Source message: Bump version to v0.14.6
2026-02-23 14:33:34 +00:00

68 lines
2.1 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "save_params",
"description": "Save parameters to a YAML file\n",
"type": "object",
"$defs": {
"inputs": {
"title": "Inputs",
"type": "object",
"description": "No description",
"properties": {
"id": {
"type": "string",
"description": "The id of the job\n",
"help_text": "Type: `string`, multiple: `False`, required. "
},
"params_yaml": {
"type": "string",
"description": "base64 encoded yaml containing the state\n",
"help_text": "Type: `string`, multiple: `False`, required. "
},
"workflow_analysis": {
"type": "string",
"description": "Base64 encoded YAML containing workflow analysis information (name and version for all workflows)\n",
"help_text": "Type: `string`, multiple: `False`. "
}
}
},
"outputs": {
"title": "Outputs",
"type": "object",
"description": "No description",
"properties": {
"output": {
"type": "string",
"format": "path",
"description": "The output YAML file\n",
"help_text": "Type: `file`, multiple: `False`, required, default: `\"params.yaml\"`, direction: `output`. ",
"default": "params.yaml"
}
}
},
"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/inputs"
},
{
"$ref": "#/$defs/outputs"
},
{
"$ref": "#/$defs/nextflow input-output arguments"
}
]
}