From 7ca593869fc9f9ce0cd0eb2be5d17dba4f5c7f36 Mon Sep 17 00:00:00 2001 From: Nico Trummer Date: Thu, 17 Oct 2024 09:58:42 +0200 Subject: [PATCH] Prettier --- assets/schema_counts_design.json | 17 ++++------------- assets/schema_input_bam.json | 20 ++++---------------- 2 files changed, 8 insertions(+), 29 deletions(-) diff --git a/assets/schema_counts_design.json b/assets/schema_counts_design.json index 58e958d..081b6d7 100644 --- a/assets/schema_counts_design.json +++ b/assets/schema_counts_design.json @@ -11,25 +11,19 @@ "type": "string", "pattern": "^\\S+$", "errorMessage": "Sample name must be provided and cannot contain spaces", - "meta": [ - "id" - ] + "meta": ["id"] }, "condition": { "type": "string", "pattern": "^\\S+$", "errorMessage": "Condition name must be provided and cannot contain spaces", - "meta": [ - "condition" - ] + "meta": ["condition"] }, "batch": { "type": "string", "pattern": "^\\S+$", "errorMessage": "Batch identifier cannot contain spaces", - "meta": [ - "batch" - ] + "meta": ["batch"] }, "counts_file": { "type": "string", @@ -39,9 +33,6 @@ "errorMessage": "Counts file must be a .csv or .txt file" } }, - "required": [ - "sample", - "condition" - ] + "required": ["sample", "condition"] } } diff --git a/assets/schema_input_bam.json b/assets/schema_input_bam.json index cf523af..9b0f569 100644 --- a/assets/schema_input_bam.json +++ b/assets/schema_input_bam.json @@ -11,25 +11,19 @@ "type": "string", "pattern": "^\\S+$", "errorMessage": "Sample name must be provided and cannot contain spaces", - "meta": [ - "id" - ] + "meta": ["id"] }, "condition": { "type": "string", "pattern": "^\\S+$", "errorMessage": "Condition name must be provided and cannot contain spaces", - "meta": [ - "condition" - ] + "meta": ["condition"] }, "assay": { "type": "string", "pattern": "^\\S+$", "errorMessage": "Assay name must be provided and cannot contain spaces", - "meta": [ - "assay" - ] + "meta": ["assay"] }, "signal": { "type": "string", @@ -46,12 +40,6 @@ "errorMessage": "Control file must be provided and must be a .bam file" } }, - "required": [ - "sample", - "condition", - "assay", - "signal", - "control" - ] + "required": ["sample", "condition", "assay", "signal", "control"] } }