Files
demultiplex/target/nextflow/io/publish/nextflow_schema.json
CI 50ab36217a Build branch main with version main (6e71519)
Build pipeline: viash-hub.demultiplex.main-wxzkf

Source commit: 6e71519815

Source message: Replace Falco with FastQC (#51)
2025-05-28 11:25:23 +00:00

119 lines
4.0 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "publish",
"description": "Publish the processed results of the run",
"type": "object",
"$defs": {
"input arguments": {
"title": "Input arguments",
"type": "object",
"description": "No description",
"properties": {
"input": {
"type": "string",
"format": "path",
"exists": true,
"description": "Directory to write fastq data to",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`. "
},
"input_sample_qc": {
"type": "array",
"items": {
"type": "string"
},
"format": "path",
"exists": true,
"description": "Directory to write sample QC output to",
"help_text": "Type: `file`, multiple: `True`, required, direction: `input`. "
},
"input_multiqc": {
"type": "string",
"format": "path",
"exists": true,
"description": "Location where to write the MultiQC report to.",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`. "
},
"input_run_information": {
"type": "string",
"format": "path",
"exists": true,
"description": "Location where to write the run information to.",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`. "
},
"input_demultiplexer_logs": {
"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": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"fastq\"`, direction: `output`. ",
"default": "fastq"
},
"output_sample_qc": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"qc/fastqc\"`, direction: `output`. ",
"default": "qc/fastqc"
},
"output_multiqc": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"qc/multiqc_report.html\"`, direction: `output`. ",
"default": "qc/multiqc_report.html"
},
"output_run_information": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"run_information.csv\"`, direction: `output`. ",
"default": "run_information.csv"
},
"output_demultiplexer_logs": {
"type": "string",
"format": "path",
"description": "",
"help_text": "Type: `file`, multiple: `False`, default: `\"demultiplexer_logs\"`, direction: `output`. ",
"default": "demultiplexer_logs"
}
}
},
"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"
}
]
}