From a03a022eb9679cdf1fb6e2bf27aed0d1aefc02c9 Mon Sep 17 00:00:00 2001 From: nf-core-bot Date: Sun, 27 Oct 2024 17:44:14 +0000 Subject: [PATCH] [automated] Fix code linting --- nextflow_schema.json | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index 137ea12..c993087 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -10,10 +10,7 @@ "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", @@ -41,10 +38,7 @@ }, "qin": { "type": "integer", - "enum": [ - 33, - 64 - ], + "enum": [33, 64], "default": 33, "description": "the ASCII offset (33=Sanger, 64=old Solexa).", "fa_icon": "fas fa-puzzle-piece" @@ -131,14 +125,7 @@ "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 }, "publish_dir_all_tools": {