Files
htrnaseq/target/nextflow/utils/concatRuns/nextflow_schema.json
CI ef4cabdcee Build branch main with version main (a3b7ae3)
Build pipeline: viash-hub.htrnaseq.main-fmznz

Source commit: a3b7ae3f31

Source message: update biobox and craftbox versions (#60)

* update biobox and craftbox versions

* update changelog
2025-07-25 08:53:08 +00:00

81 lines
2.5 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "concatRuns",
"description": "Concatenate well FASTQ files from different runs in order to increase sequencing depth.\n",
"type": "object",
"$defs": {
"arguments": {
"title": "Arguments",
"type": "object",
"description": "No description",
"properties": {
"input_r1": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"input_r2": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"sample_id": {
"type": "string",
"description": "",
"help_text": "Type: `string`, multiple: `False`, required. "
},
"output_r1": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"description": "Path to read 1 fastq/fasta file",
"help_text": "Type: `file`, multiple: `True`, default: `\"$id.$key.output_r1_*\"`, direction: `output`. ",
"default": "$id.$key.output_r1_*"
},
"output_r2": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"description": "Path to read 2 fastq/fasta file",
"help_text": "Type: `file`, multiple: `True`, default: `\"$id.$key.output_r2_*\"`, direction: `output`. ",
"default": "$id.$key.output_r2_*"
}
}
},
"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"
}
]
}