Files
htrnaseq/target/nextflow/workflows/well_metadata/nextflow_schema.json
CI c27267ad00 Build branch htrnaseq/v0.14 with version v0.14.0 to htrnaseq on branch v0.14 (eeda989)
Build pipeline: viash-hub.htrnaseq.v0.14.0-pk2tm

Source commit: eeda989650

Source message: Bump version to v0.14.0
2025-11-17 12:51:18 +00:00

124 lines
3.9 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "well_metadata",
"description": "No description",
"type": "object",
"$defs": {
"input arguments": {
"title": "Input arguments",
"type": "object",
"description": "No description",
"properties": {
"input_r1": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "List of FASTQ files for the forward reads, 1 per well.\n",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"input_r2": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "List of FASTQ files for the forward reads, 1 per well.\n",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"star_mapping": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"barcodesFasta": {
"type": "string",
"format": "path",
"exists": true,
"description": "",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`. "
}
}
},
"output arguments": {
"title": "Output arguments",
"type": "object",
"description": "No description",
"properties": {
"output_r1": {
"type": "string",
"format": "path",
"description": "Output fastq file.",
"help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.output_r1\"`, direction: `output`. ",
"default": "$id.$key.output_r1"
},
"output_r2": {
"type": "string",
"format": "path",
"description": "Output fastq file.",
"help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.output_r2\"`, direction: `output`. ",
"default": "$id.$key.output_r2"
},
"pool": {
"type": "string",
"description": "The original pool / sample name",
"help_text": "Type: `string`, multiple: `False`. "
},
"well_id": {
"type": "string",
"description": "",
"help_text": "Type: `string`, multiple: `False`. "
},
"barcode": {
"type": "string",
"description": "",
"help_text": "Type: `string`, multiple: `False`. "
},
"n_wells": {
"type": "integer",
"description": "The number of wells in the pool is well is a part of.",
"help_text": "Type: `integer`, multiple: `False`. "
},
"well_star_mapping": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"$id.$key.well_star_mapping\"`, direction: `output`. ",
"default": "$id.$key.well_star_mapping"
}
}
},
"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/nextflow input-output arguments"
}
]
}