Skip to content

Commit

Permalink
Updating UI for IRIDA-Next
Browse files Browse the repository at this point in the history
  • Loading branch information
sgsutcliffe committed Nov 14, 2024
1 parent 0dd868a commit 8206458
Showing 1 changed file with 28 additions and 9 deletions.
37 changes: 28 additions & 9 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"required": ["input", "outdir"],
"required": [
"input",
"outdir"
],
"properties": {
"input": {
"type": "string",
Expand Down Expand Up @@ -40,6 +43,18 @@
}
}
},
"additional_parameters": {
"title": "Additional Parameters",
"type": "object",
"description": "IRIDA-Next Parameters",
"default": "",
"properties": {
"rename_with_samplename": {
"type": "boolean",
"default": true
}
}
},
"institutional_config_options": {
"title": "Institutional config options",
"type": "object",
Expand Down Expand Up @@ -133,7 +148,14 @@
"description": "Method used to save pipeline results to output directory.",
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
"fa_icon": "fas fa-copy",
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
"enum": [
"symlink",
"rellink",
"link",
"copy",
"copyNoFollow",
"move"
],
"hidden": true
},
"email_on_fail": {
Expand Down Expand Up @@ -205,6 +227,9 @@
{
"$ref": "#/definitions/input_output_options"
},
{
"$ref": "#/definitions/additional_parameters"
},
{
"$ref": "#/definitions/institutional_config_options"
},
Expand All @@ -214,11 +239,5 @@
{
"$ref": "#/definitions/generic_options"
}
],
"properties": {
"rename_with_samplename": {
"type": "boolean",
"default": true
}
}
]
}

0 comments on commit 8206458

Please sign in to comment.