Files
htrnaseq/target/nextflow/utils/listInputDir/nextflow_schema.json
CI e24f1ffc55 Build branch main with version main (60df288)
Build pipeline: viash-hub.htrnaseq.main-7kcqt

Source commit: 60df288f92

Source message: Replace ignore parameter with pools (#66)
2025-08-05 14:17:29 +00:00

80 lines
2.6 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "listInputDir",
"description": "List the contents of a directory and parse contained fastq files",
"type": "object",
"$defs": {
"arguments": {
"title": "Arguments",
"type": "object",
"description": "No description",
"properties": {
"input": {
"type": "string",
"format": "path",
"exists": true,
"description": "Path to the directory containing fastq files",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`, example: `\"fastq_dir\"`. "
},
"pools": {
"type": "array",
"items": {
"type": "string"
},
"description": "Pool names to include",
"help_text": "Type: `string`, multiple: `True`. "
},
"r1_output": {
"type": "string",
"format": "path",
"description": "Path to read 1 fastq/fasta file",
"help_text": "Type: `file`, multiple: `False`, default: `\"$id.$key.r1_output\"`, direction: `output`. ",
"default": "$id.$key.r1_output"
},
"r2_output": {
"type": "string",
"format": "path",
"description": "Path to read 2 fastq/fasta file",
"help_text": "Type: `file`, multiple: `False`, default: `\"$id.$key.r2_output\"`, direction: `output`. ",
"default": "$id.$key.r2_output"
},
"lane": {
"type": "string",
"description": "Lane nr",
"help_text": "Type: `string`, multiple: `False`. "
},
"sample": {
"type": "string",
"description": "Sample nr",
"help_text": "Type: `string`, multiple: `False`. "
},
"sample_id": {
"type": "string",
"description": "Sample name",
"help_text": "Type: `string`, multiple: `False`. "
}
}
},
"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"
}
]
}