From c909497158c9052fef4d740a7cb942d0d561c893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irene=20L=C3=B3pez?= Date: Mon, 5 Sep 2022 16:29:17 +0200 Subject: [PATCH 1/2] feat: New evidence field to report the sex of the analysed people sex is added to the gene_burden schema to capture the sex specific associations observed in PMID:35999217 --- opentargets.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/opentargets.json b/opentargets.json index 2e21ac0..c527ef8 100644 --- a/opentargets.json +++ b/opentargets.json @@ -654,6 +654,9 @@ "resourceScore": { "$ref": "#/definitions/resourceScore" }, + "sex": { + "$ref": "#/definitions/sex" + }, "statisticalMethod": { "$ref": "#/definitions/statisticalMethod" }, @@ -2003,6 +2006,15 @@ "description": "Score provided by datasource indicating strength of target-disease association", "minimum": 0.0 }, + "sex": { + "type": "string", + "description": "Sex of the population included in the analysis", + "enum": [ + "men", + "women" + ] + } + , "significantDriverMethods": { "type": "array", "description": "Methods to detect cancer driver genes producing significant results", From 37d2a5e92ea002b3718fd8d0aa0bcbd671f77968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irene=20L=C3=B3pez?= Date: Mon, 5 Sep 2022 17:14:21 +0200 Subject: [PATCH 2/2] fix: `sex` is an array --- opentargets.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/opentargets.json b/opentargets.json index c527ef8..5e52290 100644 --- a/opentargets.json +++ b/opentargets.json @@ -2007,12 +2007,15 @@ "minimum": 0.0 }, "sex": { - "type": "string", + "type": "array", "description": "Sex of the population included in the analysis", - "enum": [ - "men", - "women" - ] + "items": { + "type": "string", + "enum": [ + "men", + "women" + ] + } } , "significantDriverMethods": {