diff --git a/nextflow_schema.json b/nextflow_schema.json index 7f63c79278..c6036b142d 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": [ - "step", - "outdir" - ], + "required": ["step", "outdir"], "properties": { "step": { "type": "string", @@ -79,7 +76,7 @@ "fa_icon": "fas fa-clock", "description": "Estimate interval size.", "help_text": "Intervals are parts of the chopped up genome used to speed up preprocessing and variant calling. See `--intervals` for more info. \n\nChanging this parameter, changes the number of intervals that are grouped and processed together. Bed files from target sequencing can contain thousands or small intervals. Spinning up a new process for each can be quite resource intensive. Instead it can be desired to process small intervals together on larger nodes. \nIn order to make use of this parameter, no runtime estimate can be present in the bed file (column 5). ", - "default": 200000.0 + "default": 200000 }, "no_intervals": { "type": "boolean", @@ -225,11 +222,7 @@ "type": "string", "default": "bwa-mem", "fa_icon": "fas fa-puzzle-piece", - "enum": [ - "bwa-mem", - "bwa-mem2", - "dragmap" - ], + "enum": ["bwa-mem", "bwa-mem2", "dragmap"], "description": "Specify aligner to be used to map reads to reference genome.", "help_text": "`Sarek` will build missing indices automatically if not provided. Set `--bwa false` if indices should be (re-)built.\nIf `DragMap` is selected as aligner, it is recommended to skip baserecalibration with `--skip_tools baserecalibrator`. See [here](https://gatk.broadinstitute.org/hc/en-us/articles/4407897446939--How-to-Run-germline-single-sample-short-variant-discovery-in-DRAGEN-mode) for more info.\n", "hidden": true @@ -281,7 +274,7 @@ }, "ascat_min_base_qual": { "type": "number", - "default": 20.0, + "default": 20, "fa_icon": "fas fa-greater-than", "description": "Overwrite Ascat min base quality required for a read to be counted.", "hidden": true, @@ -289,7 +282,7 @@ }, "ascat_min_counts": { "type": "number", - "default": 10.0, + "default": 10, "fa_icon": "fas fa-align-center", "description": "Overwrite Ascat minimum depth required in the normal for a SNP to be considered.", "hidden": true, @@ -297,7 +290,7 @@ }, "ascat_min_map_qual": { "type": "number", - "default": 35.0, + "default": 35, "fa_icon": "fas fa-balance-scale-left", "description": "Overwrite Ascat min mapping quality required for a read to be counted.", "hidden": true, @@ -341,7 +334,7 @@ }, "cf_contamination": { "type": "number", - "default": 0.0, + "default": 0, "fa_icon": "fas fa-broom", "description": "Design known contamination value for Control-FREEC", "hidden": true, @@ -349,7 +342,7 @@ }, "cf_minqual": { "type": "number", - "default": 0.0, + "default": 0, "fa_icon": "fas fa-greater-than", "hidden": true, "description": "Minimal sequencing quality for a position to be considered in BAF analysis.", @@ -357,7 +350,7 @@ }, "cf_mincov": { "type": "number", - "default": 0.0, + "default": 0, "fa_icon": "fas fa-align-center", "hidden": true, "description": "Minimal read coverage for a position to be considered in BAF analysis.", @@ -380,7 +373,7 @@ }, "cnvkit_reference": { "type": "string", - "default": "None", + "default": null, "fa_icon": "fas fa-file", "help_text": "https://cnvkit.readthedocs.io/en/stable/pipeline.html?highlight=reference.cnn#batch", "description": "Copy-number reference for CNVkit", @@ -540,11 +533,7 @@ "type": "string", "default": "vcf", "description": "VEP output-file format.", - "enum": [ - "json", - "tab", - "vcf" - ], + "enum": ["json", "tab", "vcf"], "help_text": "Sets the format of the output-file from VEP. Available formats: json, tab and vcf.", "fa_icon": "fas fa-table", "hidden": true @@ -567,14 +556,10 @@ "ascat_genome": { "type": "string", "fa_icon": "fa-solid fa-text", - "default": "None", + "default": null, "description": "ASCAT genome.", "help_text": "If you use AWS iGenomes, this has already been set for you appropriately.\n\nMust be set to run ASCAT, either hg19 or hg38. If you use AWS iGenomes, this has already been set for you appropriately.", - "enum": [ - "None", - "hg19", - "hg38" - ], + "enum": ["None", "hg19", "hg38"], "hidden": true }, "ascat_alleles": { @@ -942,14 +927,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 }, "email": {