Files
CI 10ff085552 Build branch main with version main (26bd658)
Build pipeline: viash-hub.demultiplex.main-qzwsk

Source commit: 26bd658d6e

Source message: Add detect_demultiplexer subworkflow (#52)
2025-06-10 07:25:05 +00:00

75 lines
2.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "detect_demultiplexer",
"description": "Detects the demultiplexer and accompanying sample information file which can be \nused to generate the fastq files.\n",
"type": "object",
"$defs": {
"arguments": {
"title": "Arguments",
"type": "object",
"description": "No description",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the run",
"help_text": "Type: `string`, multiple: `False`. "
},
"input": {
"type": "string",
"format": "path",
"exists": true,
"description": "Directory containing raw sequencing data",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`. "
},
"run_information": {
"type": "string",
"format": "path",
"description": "CSV file containing sample information, which will be used as \ninput for the demultiplexer",
"help_text": "Type: `file`, multiple: `False`, direction: `input`. "
},
"demultiplexer": {
"type": "string",
"description": "Demultiplexer to use, choice depends on the provider\nof the instrument that was used to generate the data.\nWhen not using --sample_sheet, specifying this argument is not\nrequired.\n",
"help_text": "Type: `string`, multiple: `False`, choices: ``bases2fastq`, `bclconvert``. ",
"enum": [
"bases2fastq",
"bclconvert"
]
},
"demultiplexer_output": {
"type": "string",
"description": "Demultiplexer program",
"help_text": "Type: `string`, multiple: `False`. "
},
"run_information_output": {
"type": "string",
"format": "path",
"description": "Sample information that can be used to demultiplex the input data",
"help_text": "Type: `file`, multiple: `False`, default: `\"$id.$key.run_information_output\"`, direction: `output`. ",
"default": "$id.$key.run_information_output"
}
}
},
"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"
}
]
}