From 08240b5484e2b52b88ef99a82d84e427d9827e45 Mon Sep 17 00:00:00 2001 From: Robert Syme Date: Mon, 17 Jun 2024 15:04:53 +0000 Subject: [PATCH] Change gatk_vf params from integer to floats --- nextflow_schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index b3de2e1a..a1b1b1ed 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -505,13 +505,13 @@ }, "gatk_vf_fs_filter": { "type": "number", - "default": 30, + "default": 30.0, "description": "Value to be used for the FisherStrand (FS) filter", "help_text": "This parameter defines the value to use for the FisherStrand (FS) filter in the GATK variant-filtering step. \nThe value should given in a float number format. Default is 30.0" }, "gatk_vf_qd_filter": { "type": "number", - "default": 2, + "default": 2.0, "description": "Value to be used for the QualByDepth (QD) filter", "help_text": "This parameter defines the value to use for the QualByDepth (QD) filter in the GATK variant-filtering step. \nThe value should given in a float number format. Default is 2.0" }