From 617ab7b1e3ab73c17e20e562e4050f539aec93af Mon Sep 17 00:00:00 2001 From: Jakob Willforss Date: Thu, 17 Oct 2024 08:19:20 +0200 Subject: [PATCH] NA as default and non-required sex col --- assets/schema_input.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/schema_input.json b/assets/schema_input.json index 8329cfe..9eaaf0b 100644 --- a/assets/schema_input.json +++ b/assets/schema_input.json @@ -51,9 +51,10 @@ "type": "string", "meta": ["sex"], "enum": ["M", "F", "NA"], + "default": "NA", "errorMessage": "The valid input for sample sex is M, F or NA" } }, - "required": ["case", "sample", "fastq_1", "strandedness", "sex"] + "required": ["case", "sample", "fastq_1", "strandedness"] } }