From b7dc96e400672dbdd834d1d2d68f470a747c2992 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 30 Aug 2022 19:02:38 -0700 Subject: [PATCH 01/51] use jq for basic transformer --- src/transformers/opentarget_transformer.ts | 20 +++++++++++--------- src/transformers/transformer.ts | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/src/transformers/opentarget_transformer.ts b/src/transformers/opentarget_transformer.ts index 85ed578..c230a56 100644 --- a/src/transformers/opentarget_transformer.ts +++ b/src/transformers/opentarget_transformer.ts @@ -1,14 +1,16 @@ import BaseTransformer from "./transformer"; - +import jq from "node-jq"; export default class OpenTargetTransformer extends BaseTransformer { - wrap(res) { - res.data = res.data.map(item => { - if ('drug' in item && "id" in item.drug && typeof item.drug.id === "string" && item.drug.id.includes("CHEMBL")) { - item.drug.id = item.drug.id.split('/').slice(-1)[0]; - } - return item; - }); - return res; + async wrap(res) { +// res.data = res.data.map(item => { +// if ('drug' in item && "id" in item.drug && typeof item.drug.id === "string" && item.drug.id.includes("CHEMBL")) { +// item.drug.id = item.drug.id.split('/').slice(-1)[0]; +// } +// return item; +// }); +// return res; + const filterString = '.data = [(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id |= (split("/") | last))] + [(.data | .[] | select(.drug.id == null))] + [(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL") | not))]'; + return await jq.run(filterString, res); } } \ No newline at end of file diff --git a/src/transformers/transformer.ts b/src/transformers/transformer.ts index 1d845b9..8c3d59c 100644 --- a/src/transformers/transformer.ts +++ b/src/transformers/transformer.ts @@ -169,7 +169,7 @@ export default class BaseTransformer { await async.eachSeries(Object.entries(responses), async ([curie, curieResponses]) => { if (Array.isArray(curieResponses) && curieResponses.length > 0) { await async.eachSeries(curieResponses, async response => { - const predicateResponse = this.jsonTransform(this.wrap(response)); + const predicateResponse = this.jsonTransform(await this.wrap(response)); await async.eachSeries(Object.entries(predicateResponse), async ([predicate, mappedResponses]) => { if (Array.isArray(mappedResponses) && mappedResponses.length > 0) { await async.eachSeries(mappedResponses, async (mappedResponse: any[]) => { From fb67caec7b7271c930d4fd7c3407c09de21f762d Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 1 Sep 2022 17:09:18 -0700 Subject: [PATCH 02/51] simplify opentarget transformer --- src/transformers/opentarget_transformer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transformers/opentarget_transformer.ts b/src/transformers/opentarget_transformer.ts index c230a56..d5011d8 100644 --- a/src/transformers/opentarget_transformer.ts +++ b/src/transformers/opentarget_transformer.ts @@ -10,7 +10,7 @@ export default class OpenTargetTransformer extends BaseTransformer { // return item; // }); // return res; - const filterString = '.data = [(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id |= (split("/") | last))] + [(.data | .[] | select(.drug.id == null))] + [(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL") | not))]'; + const filterString = '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)'; return await jq.run(filterString, res); } } \ No newline at end of file From 5739889e334919a6ae1ca4bc5e9061713fb5137b Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 20 Sep 2022 17:45:00 -0700 Subject: [PATCH 03/51] Create JQ Transfomer for BioLink --- src/index.ts | 4 +++- src/transformers/jq_transfomer.ts | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 src/transformers/jq_transfomer.ts diff --git a/src/index.ts b/src/index.ts index 94ea60c..6baa25c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,6 +7,7 @@ import OpenTargetTransformer from "./transformers/opentarget_transformer"; import BaseTransformer from "./transformers/transformer"; import TRAPITransformer from './transformers/trapi_transformer'; import EBIProteinTransformer from './transformers/ebi_protein_transformer' +import JQTransformer from "./transformers/jq_transfomer"; import { BTEQueryObject } from "./types"; const debug = require("debug")("bte:api-response-transform:index"); export { Record } from "./record"; @@ -31,7 +32,8 @@ export class Transformer { } else if (api.startsWith('SEMMED')) { this.tf = new SemmedTransformer(this.data, this.config); } else if (api === 'BioLink API') { - this.tf = new BiolinkTransformer(this.data, this.config); + // this.tf = new BiolinkTransformer(this.data, this.config); + this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }) } else if (api === 'EBI Proteins API') { this.tf = new EBIProteinTransformer(this.data, this.config) } else if (tags.includes("biothings")) { diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts new file mode 100644 index 0000000..1d6d4b1 --- /dev/null +++ b/src/transformers/jq_transfomer.ts @@ -0,0 +1,18 @@ +import BaseTransformer from "./transformer"; + +const jq = require('node-jq'); + +const filterStrings = { + 'ebi': '(select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea")', + 'ctd': '((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .}', + 'opentarget': '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)', + 'biolink': '[del(.associations), {associations: [select(.associations != null) | .associations | .[] | select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] ]}] | add' +} + +export default class JQTransformer extends BaseTransformer { + async wrap (res) { + res = JSON.parse(await jq.run(filterStrings[this.config.type], res, { input: 'json' })); + console.log("THIS IS WHAT WILL BE RETURNED", res.associations[1] ) + return res; + } +} \ No newline at end of file From 809d73e305a49c4d4f41f109911c0f8c393017dc Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 10 Oct 2022 18:07:51 -0700 Subject: [PATCH 04/51] add comments for transfomers --- src/transformers/jq_transfomer.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 1d6d4b1..dfd48ab 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -3,9 +3,10 @@ import BaseTransformer from "./transformer"; const jq = require('node-jq'); const filterStrings = { - 'ebi': '(select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea")', - 'ctd': '((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .}', - 'opentarget': '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)', + 'ebi': '(select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea")', //only take comments where dbReferences type is Rhea + 'ctd': '((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .}', //Split pubMedIDs by |, take last element of disease ids after spliting by : + 'opentarget': '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)', // split drug IDs with CHEMBL by / + // biolink: two steps - 1. split association object ids & take last (only for CHEMBL, REACT, HGNC), 2. take publications with PMID & for IDs take last element after splitting by : 'biolink': '[del(.associations), {associations: [select(.associations != null) | .associations | .[] | select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] ]}] | add' } @@ -15,4 +16,4 @@ export default class JQTransformer extends BaseTransformer { console.log("THIS IS WHAT WILL BE RETURNED", res.associations[1] ) return res; } -} \ No newline at end of file +} From 63f2cf6c5aedd9e430dce5a4d81d344e14f8d147 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 19 Oct 2022 18:13:52 -0700 Subject: [PATCH 05/51] remove extra console log --- src/transformers/jq_transfomer.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 1d6d4b1..91132e7 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -12,7 +12,6 @@ const filterStrings = { export default class JQTransformer extends BaseTransformer { async wrap (res) { res = JSON.parse(await jq.run(filterStrings[this.config.type], res, { input: 'json' })); - console.log("THIS IS WHAT WILL BE RETURNED", res.associations[1] ) return res; } } \ No newline at end of file From c881db057648831ca04374f70ff11442b50e3132 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 20 Oct 2022 17:17:55 -0700 Subject: [PATCH 06/51] use ebi api --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6baa25c..37a2d7d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,7 +35,8 @@ export class Transformer { // this.tf = new BiolinkTransformer(this.data, this.config); this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }) } else if (api === 'EBI Proteins API') { - this.tf = new EBIProteinTransformer(this.data, this.config) + // this.tf = new EBIProteinTransformer(this.data, this.config) + this.tf = new JQTransformer(this.data, { ...this.config, type: "ebi" }) } else if (tags.includes("biothings")) { this.tf = new BioThingsTransformer(this.data, this.config); } else if (tags.includes("ctd")) { From 452b97a15eb6f6f2bc1f52e02cabeba08f40e140 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 21 Oct 2022 17:57:06 -0700 Subject: [PATCH 07/51] Refactor JQ for cleaner filter strings & functions --- src/transformers/jq_transfomer.ts | 35 +++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index b965aac..7d97b43 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -2,17 +2,40 @@ import BaseTransformer from "./transformer"; const jq = require('node-jq'); +const functions = ` +# add JQ functions to be used globally here +` + const filterStrings = { - 'ebi': '(select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea")', //only take comments where dbReferences type is Rhea - 'ctd': '((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .}', //Split pubMedIDs by |, take last element of disease ids after spliting by : - 'opentarget': '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)', // split drug IDs with CHEMBL by / - // biolink: two steps - 1. split association object ids & take last (only for CHEMBL, REACT, HGNC), 2. take publications with PMID & for IDs take last element after splitting by : - 'biolink': '[del(.associations), {associations: [select(.associations != null) | .associations | .[] | select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] ]}] | add' + ebi: ` + # only take comments where dbReferences type is Rhea + (select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea") + `, + ctd: ` + # Split pubMedIDs by | + ((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | + # take last element of disease ids after spliting by : + ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .} + `, + opentarget: ` + # split drug IDs with CHEMBL by / + (.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last) + `, + biolink: ` + .associations = [ + # take associations that aren't null + select(.associations != null) | .associations | .[] | + # split association object ids & take last (only for CHEMBL, REACT, HGNC) + select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | + # take publications with PMID & for IDs take last element after splitting by : + .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] + ] + ` } export default class JQTransformer extends BaseTransformer { async wrap (res) { - res = JSON.parse(await jq.run(filterStrings[this.config.type], res, { input: 'json' })); + res = JSON.parse(await jq.run(functions+"\n"+filterStrings[this.config.type], res, { input: 'json' })); return res; } } From e32efd5680628b901371a549686880aa5b5ddaba Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 27 Oct 2022 18:17:53 -0700 Subject: [PATCH 08/51] Fix biolink & add tests for other transformers --- __test__/biolink_transformers.test.js | 38 ++++++++++++------------- __test__/ctd_transformer.test.js | 20 ++++++------- __test__/opentarget_transformer.test.js | 14 ++++----- src/jq_utils.ts | 7 +++++ src/transformers/jq_transfomer.ts | 34 ++++++++++++++-------- 5 files changed, 65 insertions(+), 48 deletions(-) create mode 100644 src/jq_utils.ts diff --git a/__test__/biolink_transformers.test.js b/__test__/biolink_transformers.test.js index 95e45e1..3eb5e26 100644 --- a/__test__/biolink_transformers.test.js +++ b/__test__/biolink_transformers.test.js @@ -2,7 +2,7 @@ * @jest-environment node */ -const biolink_tf = require("../built/transformers/biolink_transformer"); +const jq_tf = require("../built/transformers/jq_transfomer"); const fs = require("fs"); const path = require("path"); @@ -22,24 +22,24 @@ describe("test biolink transformer", () => { } }) - test("test biolink wrapper", () => { - let tf = new biolink_tf.default(input); - let res = tf.wrap(response); + test("test biolink wrapper", async () => { + let tf = new jq_tf.default(input, { type: "biolink" }); + let res = await tf.wrap(response); expect(res.associations[0].object.HGNC).toBe("10956"); expect(res.associations[0].publications[0].id).toBe("21685912"); expect(res.associations[1]).not.toHaveProperty("publications"); expect(res.associations[1]).not.toHaveProperty("provided_by"); }); - test("test biolink wrapper if no association field as root key", () => { - let tf = new biolink_tf.default(input); - let res = tf.wrap({ "data": [] }); + test("test biolink wrapper if no association field as root key", async () => { + let tf = new jq_tf.default(input, { type: "biolink" }); + let res = await tf.wrap({ "data": [] }); expect(res).toEqual({ "data": [] }) }); - test("test biolink wrapper if no object id should be prefixed", () => { - const tf = new biolink_tf.default(input); - const res = tf.wrap( + test("test biolink wrapper if no object id should be prefixed", async () => { + const tf = new jq_tf.default(input, { type: "biolink" }); + const res = await tf.wrap( { associations: [ { @@ -52,8 +52,8 @@ describe("test biolink transformer", () => { expect(res.associations[0].object.MONDO).toEqual("MONDO:12345") }); - test("test biolink wrapper if no object field present", () => { - const tf = new biolink_tf.default(input); + test("test biolink wrapper if no object field present", async () => { + const tf = new jq_tf.default(input, { type: "biolink" }); const fake_response = { associations: [ { @@ -63,12 +63,12 @@ describe("test biolink transformer", () => { } ] } - const res = tf.wrap(fake_response); + const res = await tf.wrap(fake_response); expect(res).toEqual(fake_response) }); - test("test biolink wrapper if no object.id field present", () => { - const tf = new biolink_tf.default(input); + test("test biolink wrapper if no object.id field present", async () => { + const tf = new jq_tf.default(input, { type: "biolink" }); const fake_response = { associations: [ { @@ -78,13 +78,13 @@ describe("test biolink transformer", () => { } ] } - const res = tf.wrap(fake_response); + const res = await tf.wrap(fake_response); expect(res).toEqual(fake_response) }); - test("test biolink jsonTransform function", () => { - let tf = new biolink_tf.default(input); - const wrapped_response = tf.wrap(response); + test("test biolink jsonTransform function", async () => { + let tf = new jq_tf.default(input, { type: "biolink" }); + const wrapped_response = await tf.wrap(response); let res = tf.jsonTransform(wrapped_response); expect(res).toHaveProperty("related_to"); expect(res.related_to[0].HGNC).toEqual("10956"); diff --git a/__test__/ctd_transformer.test.js b/__test__/ctd_transformer.test.js index d66a418..f599d15 100644 --- a/__test__/ctd_transformer.test.js +++ b/__test__/ctd_transformer.test.js @@ -2,7 +2,7 @@ * @jest-environment node */ -const ctd_tf = require("../built/transformers/ctd_transformer"); +const jq_tf = require("../built/transformers/jq_transfomer"); const fs = require("fs"); const path = require("path"); @@ -22,36 +22,36 @@ describe("test ctd transformer", () => { } }) - test("test ctd wrapper", () => { - let tf = new ctd_tf.default(input); - let res = tf.wrap(response); + test("test ctd wrapper", async () => { + let tf = new jq_tf.default(input, { type: "ctd" }); + let res = await tf.wrap(response); expect(res).toHaveProperty("data"); expect(res.data).toHaveLength(2); expect(res.data[0].PubMedIDs).toEqual(["21559390"]); expect(res.data[0].DiseaseID).toEqual("D008545"); }) - test("test ctd wrapper if pubmed id field is not string", () => { - const tf = new ctd_tf.default(input); + test("test ctd wrapper if pubmed id field is not string", async () => { + const tf = new jq_tf.default(input, { type: "ctd" }); const fake = [ { DiseaseID: "MESH:D008545" } ] - const res = tf.wrap(fake); + const res = await tf.wrap(fake); expect(res).toHaveProperty("data"); expect(res.data).toHaveLength(1); expect(res.data[0].PubMedIDs).toBeUndefined; }) - test("test ctd wrapper if disease id field is not string", () => { - const tf = new ctd_tf.default(input); + test("test ctd wrapper if disease id field is not string", async () => { + const tf = new jq_tf.default(input, { type: "ctd" }); const fake = [ { PubMedID: "12345" } ] - const res = tf.wrap(fake); + const res = await tf.wrap(fake); expect(res).toHaveProperty("data"); expect(res.data).toHaveLength(1); expect(res.data[0].DiseaseIDs).toBeUndefined; diff --git a/__test__/opentarget_transformer.test.js b/__test__/opentarget_transformer.test.js index ade966e..591907f 100644 --- a/__test__/opentarget_transformer.test.js +++ b/__test__/opentarget_transformer.test.js @@ -2,7 +2,7 @@ * @jest-environment node */ -const opentarget_tf = require("../built/transformers/opentarget_transformer"); +const jq_tf = require("../built/transformers/jq_transfomer"); const fs = require("fs"); const path = require("path"); @@ -23,15 +23,15 @@ describe("test opentarget transformer", () => { }) // skip these tests since we're not ingesting opentargets right now - test.skip("test opentarget wrapper", () => { - let tf = new opentarget_tf.default(input); - let res = tf.wrap(response); + test.skip("test opentarget wrapper", async () => { + let tf = new jq_tf.default(input, { type: "opentarget" }); + let res = await tf.wrap(response); expect(res).toHaveProperty("data"); expect(res.data[0].drug.id).toEqual("CHEMBL220492"); }) - test.skip("test opentarget wrapper if id field is not chembl", () => { - let tf = new opentarget_tf.default(input); + test.skip("test opentarget wrapper if id field is not chembl", async () => { + let tf = new jq_tf.default(input, { type: "opentarget" }); const fake = { data: [ { @@ -41,7 +41,7 @@ describe("test opentarget transformer", () => { } ] } - let res = tf.wrap(fake); + let res = await tf.wrap(fake); expect(res).toHaveProperty("data"); expect(res.data[0].drug.id).toEqual("http://identifiers.org/drugbank/DB0001"); }) diff --git a/src/jq_utils.ts b/src/jq_utils.ts new file mode 100644 index 0000000..0a5c5f1 --- /dev/null +++ b/src/jq_utils.ts @@ -0,0 +1,7 @@ +export const functions = ` +# example increment function +def increment: . + 1; + +# deletes key if empty array +def delifempty(k): (if k == [] then del(k) | . else . end); +` \ No newline at end of file diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 7d97b43..905ecce 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -1,11 +1,8 @@ import BaseTransformer from "./transformer"; +import { functions } from "../jq_utils"; const jq = require('node-jq'); -const functions = ` -# add JQ functions to be used globally here -` - const filterStrings = { ebi: ` # only take comments where dbReferences type is Rhea @@ -22,14 +19,27 @@ const filterStrings = { (.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last) `, biolink: ` - .associations = [ - # take associations that aren't null - select(.associations != null) | .associations | .[] | - # split association object ids & take last (only for CHEMBL, REACT, HGNC) - select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | - # take publications with PMID & for IDs take last element after splitting by : - .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] - ] + [ + del(.associations), + { + associations: ( + [ + # take associations that aren't null + (select(.associations != null) | .associations | .[] | + # split association object ids & take last (only for CHEMBL, REACT, HGNC) + select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | + # take publications with PMID & for IDs take last element after splitting by : + .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)]) + # delete publications if empty array + | delifempty(.publications) + ] + + # include associations with null object ids + [select(.associations != null) | .associations | .[] | select(.object.id == null)] + ) + } + ] | add + # delete association if empty array + | delifempty(.associations) ` } From c6d23d401738936a32430f23f9d2fa9bc6d517d2 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 28 Oct 2022 17:30:45 -0700 Subject: [PATCH 09/51] Fix EBI Transfomer --- __test__/ebi_protein_transformer.test.js | 8 ++++---- src/transformers/jq_transfomer.ts | 9 ++++++++- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/__test__/ebi_protein_transformer.test.js b/__test__/ebi_protein_transformer.test.js index 84b2c26..31421ab 100644 --- a/__test__/ebi_protein_transformer.test.js +++ b/__test__/ebi_protein_transformer.test.js @@ -2,7 +2,7 @@ * @jest-environment node */ -const ebi_tf = require("../built/transformers/ebi_protein_transformer"); +const jq_tf = require("../built/transformers/jq_transfomer"); const fs = require("fs"); const path = require("path"); @@ -22,9 +22,9 @@ describe("test EBI Protein transformer", () => { } }) - test("test ebi wrapper", () => { - let tf = new ebi_tf.default(input); - let res = tf.wrap(response); + test("test ebi wrapper", async () => { + let tf = new jq_tf.default(input, { type: "ebi" }); + let res = await tf.wrap(response); expect(res.comments[0].reaction.dbReferences).toHaveLength(1); }) }) \ No newline at end of file diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 905ecce..ce2bd50 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -6,7 +6,14 @@ const jq = require('node-jq'); const filterStrings = { ebi: ` # only take comments where dbReferences type is Rhea - (select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences | .[]) |= select(.type == "Rhea") + [ + del(.comments), + { + comments: [ + select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences = [.reaction.dbReferences | .[] | select(.type == "Rhea")] + ] + } + ] | add `, ctd: ` # Split pubMedIDs by | From c37e7c7f616b278c686397c2432013f0a6674dfc Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 28 Oct 2022 17:36:47 -0700 Subject: [PATCH 10/51] make jq strings cleaner --- src/transformers/jq_transfomer.ts | 44 ++++++++++++------------------- 1 file changed, 17 insertions(+), 27 deletions(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index ce2bd50..f66184d 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -6,14 +6,9 @@ const jq = require('node-jq'); const filterStrings = { ebi: ` # only take comments where dbReferences type is Rhea - [ - del(.comments), - { - comments: [ - select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences = [.reaction.dbReferences | .[] | select(.type == "Rhea")] - ] - } - ] | add + .comments = [ + select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences = [.reaction.dbReferences | .[] | select(.type == "Rhea")] + ] `, ctd: ` # Split pubMedIDs by | @@ -26,25 +21,20 @@ const filterStrings = { (.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last) `, biolink: ` - [ - del(.associations), - { - associations: ( - [ - # take associations that aren't null - (select(.associations != null) | .associations | .[] | - # split association object ids & take last (only for CHEMBL, REACT, HGNC) - select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | - # take publications with PMID & for IDs take last element after splitting by : - .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)]) - # delete publications if empty array - | delifempty(.publications) - ] + - # include associations with null object ids - [select(.associations != null) | .associations | .[] | select(.object.id == null)] - ) - } - ] | add + .associations = ( + [ + # take associations that aren't null + (select(.associations != null) | .associations | .[] | + # split association object ids & take last (only for CHEMBL, REACT, HGNC) + select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | + # take publications with PMID & for IDs take last element after splitting by : + .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)]) + # delete publications if empty array + | delifempty(.publications) + ] + + # include associations with null object ids + [select(.associations != null) | .associations | .[] | select(.object.id == null)] + ) # delete association if empty array | delifempty(.associations) ` From ca62d2d4e4bb3a76a95b9905de202921aa839168 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 7 Nov 2022 18:28:35 -0800 Subject: [PATCH 11/51] allow custom JQ strings from the query_operation --- src/index.ts | 10 +++++++++- src/transformers/jq_transfomer.ts | 3 ++- src/types.ts | 1 + 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 37a2d7d..d86d926 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,7 +27,15 @@ export class Transformer { debug(`api name ${api}`); let tags = this.data.edge.query_operation.tags; debug(`api tags: ${tags}`); - if (tags.includes('bte-trapi')) { + + if (!this.data.edge.query_operation.transformer) { + console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) + } + + if (this.data.edge.query_operation.transformer) { + console.log("WE DO THE OP", this.data.edge.query_operation.transformer) + this.tf = new JQTransformer(this.data, { ...this.config, custom: this.data.edge.query_operation.transformer }) + } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); } else if (api.startsWith('SEMMED')) { this.tf = new SemmedTransformer(this.data, this.config); diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index f66184d..7529c5d 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -42,7 +42,8 @@ const filterStrings = { export default class JQTransformer extends BaseTransformer { async wrap (res) { - res = JSON.parse(await jq.run(functions+"\n"+filterStrings[this.config.type], res, { input: 'json' })); + if (this.config.custom) res = JSON.parse(await jq.run(functions+"\n"+this.config.custom, res, { input: 'json' })); + else res = JSON.parse(await jq.run(functions+"\n"+filterStrings[this.config.type], res, { input: 'json' })); return res; } } diff --git a/src/types.ts b/src/types.ts index ebbada7..762ab40 100644 --- a/src/types.ts +++ b/src/types.ts @@ -24,6 +24,7 @@ interface QueryOperationInterface { request_body: object; supportBatch: boolean; inputSeparator: string; + transformer: string; } From e6a12cc5a5d4627ccacb4a79c5634166a4cc9b87 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 14 Nov 2022 17:52:12 -0800 Subject: [PATCH 12/51] add edge variable to be used in filter strings --- src/jq_utils.ts | 24 ++++++++++++++++++++++-- src/transformers/jq_transfomer.ts | 6 +++--- src/types.ts | 5 +++++ 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 0a5c5f1..e9e9550 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -1,7 +1,27 @@ -export const functions = ` +import { JQVariable, BTEKGOperationObject } from "./types" + +const functions = ` # example increment function def increment: . + 1; # deletes key if empty array def delifempty(k): (if k == [] then del(k) | . else . end); -` \ No newline at end of file +` + +function generateVariables(variables: JQVariable[]) { + let variableString = ''; + for (const variable of variables) { + variableString += `${variable.value} as ${variable.name} | `; + } + return variableString; +} + +export function generateFilterString(filterString: string, edge: BTEKGOperationObject) { + const variables = [ + { + name: '$edge', + value: JSON.stringify(edge) + } + ]; + return `${functions}\n${generateVariables(variables)}${filterString}` +} \ No newline at end of file diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 7529c5d..a7d2114 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -1,5 +1,5 @@ import BaseTransformer from "./transformer"; -import { functions } from "../jq_utils"; +import { generateFilterString } from "../jq_utils"; const jq = require('node-jq'); @@ -42,8 +42,8 @@ const filterStrings = { export default class JQTransformer extends BaseTransformer { async wrap (res) { - if (this.config.custom) res = JSON.parse(await jq.run(functions+"\n"+this.config.custom, res, { input: 'json' })); - else res = JSON.parse(await jq.run(functions+"\n"+filterStrings[this.config.type], res, { input: 'json' })); + if (this.config.custom) res = JSON.parse(await jq.run(generateFilterString(this.config.custom, this.edge), res, { input: 'json' })); + else res = JSON.parse(await jq.run(generateFilterString(filterStrings[this.config.type], this.edge), res, { input: 'json' })); return res; } } diff --git a/src/types.ts b/src/types.ts index 762ab40..38c4f6e 100644 --- a/src/types.ts +++ b/src/types.ts @@ -52,3 +52,8 @@ export interface BTEQueryObject { response: JSONDoc | JSONDoc[]; edge: BTEKGOperationObject; } + +export interface JQVariable { + name: string; + value: string; +} \ No newline at end of file From e6bc9a339add69cd553230d453ce0f64f48be8ce Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 14 Nov 2022 17:52:21 -0800 Subject: [PATCH 13/51] clean up --- src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index d86d926..89a084b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,12 +28,12 @@ export class Transformer { let tags = this.data.edge.query_operation.tags; debug(`api tags: ${tags}`); - if (!this.data.edge.query_operation.transformer) { - console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) - } + // if (!this.data.edge.query_operation.transformer) { + // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) + // } if (this.data.edge.query_operation.transformer) { - console.log("WE DO THE OP", this.data.edge.query_operation.transformer) + // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) this.tf = new JQTransformer(this.data, { ...this.config, custom: this.data.edge.query_operation.transformer }) } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); From 6693fe28de12c8be42e6b2f85bd57c807306d8c7 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 21 Nov 2022 18:02:11 -0800 Subject: [PATCH 14/51] start on a semmedb transformer --- src/jq_utils.ts | 3 +++ src/transformers/jq_transfomer.ts | 33 +++++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index e9e9550..71b24e0 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -6,6 +6,9 @@ def increment: . + 1; # deletes key if empty array def delifempty(k): (if k == [] then del(k) | . else . end); + +# sets inputted value to "empty" if empty array +def remifempty: (if . == [] then empty else . end); ` function generateVariables(variables: JQVariable[]) { diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index a7d2114..664c9f1 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -23,12 +23,14 @@ const filterStrings = { biolink: ` .associations = ( [ - # take associations that aren't null - (select(.associations != null) | .associations | .[] | - # split association object ids & take last (only for CHEMBL, REACT, HGNC) - select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | - # take publications with PMID & for IDs take last element after splitting by : - .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)]) + ( + # take associations that aren't null + select(.associations != null) | .associations | .[] | + # split association object ids & take last (only for CHEMBL, REACT, HGNC) + select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | + # take publications with PMID & for IDs take last element after splitting by : + .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] + ) # delete publications if empty array | delifempty(.publications) ] + @@ -37,6 +39,25 @@ const filterStrings = { ) # delete association if empty array | delifempty(.associations) + `, + semmedb: ` + # NOTE: Currently this still needs some functions from Biothings transformer so that needs to be figured out + map_values( + # checks if value is array and nonzero length + if (. | type) == "array" and (. | length) != 0 then + [ + # check the type for each element against edge type + .[] | if (.["@type"] == $edge.association.output_type) or (.["@type"] == "DiseaseOrPhenotypicFeature" and $edge.association.output_type == "Disease") then + # rename appropriate fields + (.UMLS = .umls | .pubmed = .pmid | del(.umls) | del (.pmid) | .) + # empty for unecessary fields + else empty end + # remove key if empty array + ] | remifempty + else + empty + end + ) ` } From 9b5070b1a3a08e96414b6184d0abafe4474e9fa9 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 22 Nov 2022 18:02:42 -0800 Subject: [PATCH 15/51] create jq string for pairCurieWithAPIResponse --- src/transformers/jq_transfomer.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 664c9f1..6a12220 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -68,3 +68,29 @@ export default class JQTransformer extends BaseTransformer { return res; } } + +/* + COULD BE ADDED (pairCurieWithAPIResponse for BioThings Transformer): + def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; + + {"query_operation": {"method": "get"}, "assocation": {"input_id": "test"}, "input": {"queryInputs": "woahsfd"}} as $edge | + + if $edge.query_operation.method == "post" then + # if response is not an array, then use response.hits + if (.response | type) == "array" then .response else .response.hits end | + reduce .[] as $item ({}; + # if the item is notfound, then proceed to next item & keep current object + if ($item | keys | contains(["notfound"])) then + . + else + generateCurie($edge.assocation.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + end + ) + else + if ($edge.input | type) == "object" then + .response as $res | generateCurie($edge.assocation.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res + else + .response as $res | generateCurie($edge.assocation.input_id; $edge.input) as $curie | {} | .[$curie] = $res + end + end +*/ \ No newline at end of file From 90bb34474024511eff612bf102a68becb7277c01 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 28 Nov 2022 17:43:24 -0800 Subject: [PATCH 16/51] Use jq_wrap parameter --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 89a084b..c029f60 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,9 +32,9 @@ export class Transformer { // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) // } - if (this.data.edge.query_operation.transformer) { + if (this.data.edge.query_operation?.transformer?.wrap_jq) { // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) - this.tf = new JQTransformer(this.data, { ...this.config, custom: this.data.edge.query_operation.transformer }) + this.tf = new JQTransformer(this.data, { ...this.config, custom: this.data.edge.query_operation.transformer.wrap_jq }) } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); } else if (api.startsWith('SEMMED')) { From ce17e57846e7264cc3060fcbbdb32ad3022d01b3 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 28 Nov 2022 17:48:17 -0800 Subject: [PATCH 17/51] making transformer into object --- src/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 38c4f6e..f7bc3d3 100644 --- a/src/types.ts +++ b/src/types.ts @@ -14,6 +14,11 @@ interface XBTEParametersObject { [key: string]: string | number; } +interface TransformerObject { + wrap_jq: string; + pair_jq: string; +} + interface QueryOperationInterface { path: string; method: string; @@ -24,7 +29,7 @@ interface QueryOperationInterface { request_body: object; supportBatch: boolean; inputSeparator: string; - transformer: string; + transformer: TransformerObject; } From ffaccc60020030f881481f9509748e286d1b85d6 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 28 Nov 2022 17:58:28 -0800 Subject: [PATCH 18/51] add generate curie function --- src/jq_utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 71b24e0..c341b25 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -9,6 +9,9 @@ def delifempty(k): (if k == [] then del(k) | . else . end); # sets inputted value to "empty" if empty array def remifempty: (if . == [] then empty else . end); + +# generates a curie from a type and id +def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; ` function generateVariables(variables: JQVariable[]) { From ac4778243653858e1488a24ee6be36e23268e27d Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 28 Nov 2022 18:16:29 -0800 Subject: [PATCH 19/51] allow pair_jq option --- src/index.ts | 10 +++++++--- src/transformers/biothings_transformer.ts | 2 +- src/transformers/jq_transfomer.ts | 15 +++++++++++---- src/transformers/transformer.ts | 12 ++++++++++-- src/types.ts | 4 ++-- 5 files changed, 31 insertions(+), 12 deletions(-) diff --git a/src/index.ts b/src/index.ts index c029f60..36f6d46 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,9 +32,13 @@ export class Transformer { // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) // } - if (this.data.edge.query_operation?.transformer?.wrap_jq) { - // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) - this.tf = new JQTransformer(this.data, { ...this.config, custom: this.data.edge.query_operation.transformer.wrap_jq }) + if (this.data.edge.query_operation?.transformer) { + // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) + this.tf = new JQTransformer(this.data, { + ...this.config, + wrap: this.data.edge.query_operation.transformer.wrap_jq, + pair: this.data.edge.query_operation.transformer.pair_jq + }) } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); } else if (api.startsWith('SEMMED')) { diff --git a/src/transformers/biothings_transformer.ts b/src/transformers/biothings_transformer.ts index a3170da..b7adc18 100644 --- a/src/transformers/biothings_transformer.ts +++ b/src/transformers/biothings_transformer.ts @@ -2,7 +2,7 @@ import BaseTransformer from "./transformer"; import { generateCurie } from '../utils'; export default class BioThingsTransformer extends BaseTransformer { - pairCurieWithAPIResponse() { + async pairCurieWithAPIResponse() { if (this.edge.query_operation.method === "post") { let res = {}; this.data.response.map(item => { diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 6a12220..ffb66d4 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -63,10 +63,17 @@ const filterStrings = { export default class JQTransformer extends BaseTransformer { async wrap (res) { - if (this.config.custom) res = JSON.parse(await jq.run(generateFilterString(this.config.custom, this.edge), res, { input: 'json' })); - else res = JSON.parse(await jq.run(generateFilterString(filterStrings[this.config.type], this.edge), res, { input: 'json' })); + if (this.config.wrap) res = JSON.parse(await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: 'json' })); + else if (filterStrings[this.config.type]) res = JSON.parse(await jq.run(generateFilterString(filterStrings[this.config.type], this.edge), res, { input: 'json' })); + else res = super.wrap(res); + return res; } + + async pairCurieWithAPIResponse () { + if (this.config.pair) return JSON.parse(await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: 'json' })); + return super.pairCurieWithAPIResponse(); + } } /* @@ -88,9 +95,9 @@ export default class JQTransformer extends BaseTransformer { ) else if ($edge.input | type) == "object" then - .response as $res | generateCurie($edge.assocation.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res + .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] else - .response as $res | generateCurie($edge.assocation.input_id; $edge.input) as $curie | {} | .[$curie] = $res + .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] end end */ \ No newline at end of file diff --git a/src/transformers/transformer.ts b/src/transformers/transformer.ts index 8c3d59c..18c7777 100644 --- a/src/transformers/transformer.ts +++ b/src/transformers/transformer.ts @@ -23,7 +23,7 @@ export default class BaseTransformer { /** * Create an object with key representing input, and value representing the output of API */ - pairCurieWithAPIResponse() { + async pairCurieWithAPIResponse() { let input = generateCurie( this.edge.association.input_id, this.edge.input.hasOwnProperty('queryInputs') ? this.edge.input["queryInputs"] : this.edge.input as string @@ -33,6 +33,14 @@ export default class BaseTransformer { }; } + /* + if 4edge.input | keys | contains(["queryInputs"]) then + {[generateCurie($edge.assocation.input_id, $edge.input.queryInputs)]: .response} + else + {[generateCurie($edge.assocation.input_id, $edge.input)]: .response} + end + */ + /** * Wrapper functions to transform API response before passing to JSON Transformer * @return {Object} - key is curie representing input, value is an array of outputs. @@ -164,7 +172,7 @@ export default class BaseTransformer { */ async transform() { let transformedRecords = []; - let responses = this.pairCurieWithAPIResponse(); + let responses = await this.pairCurieWithAPIResponse(); await async.eachSeries(Object.entries(responses), async ([curie, curieResponses]) => { if (Array.isArray(curieResponses) && curieResponses.length > 0) { diff --git a/src/types.ts b/src/types.ts index f7bc3d3..6152b00 100644 --- a/src/types.ts +++ b/src/types.ts @@ -15,8 +15,8 @@ interface XBTEParametersObject { } interface TransformerObject { - wrap_jq: string; - pair_jq: string; + wrap_jq?: string; + pair_jq?: string; } interface QueryOperationInterface { From 27f631ec10e14426cbea369f3433c336dcf506a7 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 2 Dec 2022 18:45:29 -0800 Subject: [PATCH 20/51] fix checking for transformer --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 36f6d46..e6bbb56 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,7 +32,7 @@ export class Transformer { // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) // } - if (this.data.edge.query_operation?.transformer) { + if (this.data.edge.query_operation?.transformer?.pair_jq || this.data.edge.query_operation?.transformer?.wrap_jq) { // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) this.tf = new JQTransformer(this.data, { ...this.config, From c897fd04a3e02eceace0c6bd7ae634e370000da2 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 5 Dec 2022 17:52:56 -0800 Subject: [PATCH 21/51] More merge changes from main --- __test__/base_transformer.test.ts | 4 ++-- __test__/biolink_transformers.test.ts | 2 +- __test__/biothings_transformer.test.ts | 12 ++++++------ __test__/ebi_protein_transformer.test.ts | 2 +- __test__/semmed_transformer.test.ts | 6 +++--- __test__/transformers.test.ts | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/__test__/base_transformer.test.ts b/__test__/base_transformer.test.ts index aa0bf0b..d7e8286 100644 --- a/__test__/base_transformer.test.ts +++ b/__test__/base_transformer.test.ts @@ -21,9 +21,9 @@ describe("test base transformer", () => { } }) - test("Test pairInputWithAPIResponse function", () => { + test("Test pairInputWithAPIResponse function", async () => { const tf = new base_tf(input, {}); - const res = tf.pairCurieWithAPIResponse(); + const res = await tf.pairCurieWithAPIResponse(); expect(res).toHaveProperty("DOID:9562"); expect(res["DOID:9562"]).toHaveLength(1); }) diff --git a/__test__/biolink_transformers.test.ts b/__test__/biolink_transformers.test.ts index f364ed4..c00be7c 100644 --- a/__test__/biolink_transformers.test.ts +++ b/__test__/biolink_transformers.test.ts @@ -84,7 +84,7 @@ describe("test biolink transformer", () => { test("test biolink jsonTransform function", async () => { let tf = new jq_tf(input, { type: "biolink" }); const wrapped_response = await tf.wrap(response); - let res = tf.jsonTransform(wrapped_response); + let res: JSONDoc = tf.jsonTransform(wrapped_response); expect(res).toHaveProperty("related_to"); expect(res.related_to[0].HGNC).toEqual("10956"); expect(res.related_to[0].pubmed[0]).toEqual("21685912"); diff --git a/__test__/biothings_transformer.test.ts b/__test__/biothings_transformer.test.ts index 6308e39..a730bf7 100644 --- a/__test__/biothings_transformer.test.ts +++ b/__test__/biothings_transformer.test.ts @@ -21,9 +21,9 @@ describe("test biothings transformer", () => { } }) - test("test biothings wrapper", () => { + test("test biothings wrapper", async () => { let tf = new biothings_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(2); expect(res).toHaveProperty("DRUGBANK:DB00188"); expect(res["DRUGBANK:DB00188"]).toHaveLength(2); @@ -46,9 +46,9 @@ describe("test biothings transformer", () => { } }) - test("test biothings wrapper", () => { + test("test biothings wrapper", async () => { let tf = new biothings_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(1); expect(res).toHaveProperty("NCBIGene:1017"); expect(res["NCBIGene:1017"]).toHaveLength(1); @@ -78,9 +78,9 @@ describe("test biothings transformer", () => { } }) - test("test biothings wrapper", () => { + test("test biothings wrapper", async () => { let tf = new biothings_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(1); expect(res).toHaveProperty("PUBCHEM:11373846"); expect(res["PUBCHEM:11373846"]).toHaveLength(1); diff --git a/__test__/ebi_protein_transformer.test.ts b/__test__/ebi_protein_transformer.test.ts index ea2344c..d2ad3f6 100644 --- a/__test__/ebi_protein_transformer.test.ts +++ b/__test__/ebi_protein_transformer.test.ts @@ -19,7 +19,7 @@ describe("test EBI Protein transformer", () => { }); test("test ebi wrapper", async () => { - let tf = new jq_tf(input, {}); + let tf = new jq_tf(input, {type: "ebi"}); let res = await tf.wrap(response); expect(res.comments[0].reaction.dbReferences).toHaveLength(1); }); diff --git a/__test__/semmed_transformer.test.ts b/__test__/semmed_transformer.test.ts index 7fd7c26..674c247 100644 --- a/__test__/semmed_transformer.test.ts +++ b/__test__/semmed_transformer.test.ts @@ -76,9 +76,9 @@ describe("test semmed transformer", () => { } }); - test("test semmed pairCurieWithAPIResponse", () => { + test("test semmed pairCurieWithAPIResponse", async () => { let tf = new semmed_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); expect(res["UMLS:C1332823"][0]['umls']).toBe("C1332823"); expect(res).toHaveProperty('UMLS:C1332823'); expect(res["UMLS:123"]).toBeUndefined(); @@ -98,7 +98,7 @@ describe("test semmed transformer", () => { test("add edge info", async () => { let tf = new semmed_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); let rec = res["UMLS:C1332823"][0]; rec = tf.wrap(rec); let result = await tf.formatRecords("UMLS:C1332823", rec["positively_regulates"][0]); diff --git a/__test__/transformers.test.ts b/__test__/transformers.test.ts index 3a61919..75b4ecc 100644 --- a/__test__/transformers.test.ts +++ b/__test__/transformers.test.ts @@ -147,9 +147,9 @@ describe("test biothings transformer", () => { } }); - test("test biothings pairCurieWithAPIResponse", () => { + test("test biothings pairCurieWithAPIResponse", async () => { let tf = new biothings_tf(input, {}); - let res = tf.pairCurieWithAPIResponse(); + let res = await tf.pairCurieWithAPIResponse(); expect(res["UMLS:C1332823"][0]['umls']).toBe("C1332823"); expect(res).toHaveProperty('UMLS:C1332823'); expect(res["123"]).toBeUndefined(); From 1c63e48d723cc1c55f9b6d90c7269b88e201c2b7 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 5 Dec 2022 17:54:37 -0800 Subject: [PATCH 22/51] Add jq filter string for pairCurie biothings --- src/transformers/biothings_transformer.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/transformers/biothings_transformer.ts b/src/transformers/biothings_transformer.ts index cec7629..683ae1b 100644 --- a/src/transformers/biothings_transformer.ts +++ b/src/transformers/biothings_transformer.ts @@ -2,6 +2,26 @@ import BaseTransformer from "./transformer"; import { generateCurie } from '../utils'; export default class BioThingsTransformer extends BaseTransformer { + // IN JQ: + // if $edge.query_operation.method == "post" then + // # if response is not an array, then use response.hits + // if (.response | type) == "array" then .response else .response.hits end | + // reduce .[] as $item ({}; + // # if the item is notfound, then proceed to next item & keep current object + // if ($item | keys | contains(["notfound"])) then + // . + // else + // generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + // end + // ) + // else + // if ($edge.input | type) == "object" then + // .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res + // else + // .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = $res + // end + // end + async pairCurieWithAPIResponse() { if (this.edge.query_operation.method === "post") { let res = {}; From 0ce7b80098077bb4b9e1e5f927af0d59d193fd5a Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 5 Jan 2023 18:19:53 -0800 Subject: [PATCH 23/51] initial list filter function (untested) --- src/jq_utils.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index c341b25..5222c61 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -12,6 +12,24 @@ def remifempty: (if . == [] then empty else . end); # generates a curie from a type and id def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; + +# checks if object meets any filter string +def any_filter(filter_strs): +. as $obj | . |= foreach filter_strs as $filter_str (false; . or $obj.[filter_str | split(":") | first] == filter_str | split(":") | last; .); + +# checks if object meets all filter strings +def all_filter(filter_strs): +. as $obj | . |= foreach filter_strs as $filter_str (false; . or $obj.[filter_str | split(":") | first] == filter_str | split(":") | last; .); + +# filters the list that is supplied on all conditions +def list_filter_all(filter_strs): +(filter_str | split(":") | first) as $key | (filter_str | split(":") | last) as $value | +. |= [.[] | if . | all_filter(filter_strs) then . else empty end]; + +# filters the list that is supplied on any conditions +def list_filter_any(filter_strs): +(filter_str | split(":") | first) as $key | (filter_str | split(":") | last) as $value | +. |= [.[] | if . | any_filter(filter_strs) then . else empty end]; ` function generateVariables(variables: JQVariable[]) { From d5e985ea7b440900f4314f7356c6a59c3a89bf2c Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 6 Jan 2023 17:42:32 -0800 Subject: [PATCH 24/51] Fix list filter all/any --- src/jq_utils.ts | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 5222c61..97256ca 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -15,21 +15,17 @@ def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end # checks if object meets any filter string def any_filter(filter_strs): -. as $obj | . |= foreach filter_strs as $filter_str (false; . or $obj.[filter_str | split(":") | first] == filter_str | split(":") | last; .); +. as $obj | foreach (filter_strs | .[]) as $filter_str (false; . or (($obj | .[$filter_str | split(":") | first]) == ($filter_str | split(":") | last)); .); # checks if object meets all filter strings def all_filter(filter_strs): -. as $obj | . |= foreach filter_strs as $filter_str (false; . or $obj.[filter_str | split(":") | first] == filter_str | split(":") | last; .); +. as $obj | foreach (filter_strs | .[]) as $filter_str (true; . and (($obj | .[$filter_str | split(":") | first]) == ($filter_str | split(":") | last)); .); # filters the list that is supplied on all conditions -def list_filter_all(filter_strs): -(filter_str | split(":") | first) as $key | (filter_str | split(":") | last) as $value | -. |= [.[] | if . | all_filter(filter_strs) then . else empty end]; +def list_filter_all(filter_strs): [.[] | if . | all_filter(filter_strs) then . else empty end]; # filters the list that is supplied on any conditions -def list_filter_any(filter_strs): -(filter_str | split(":") | first) as $key | (filter_str | split(":") | last) as $value | -. |= [.[] | if . | any_filter(filter_strs) then . else empty end]; +def list_filter_any(filter_strs): [.[] | if . | any_filter(filter_strs) then . else empty end]; ` function generateVariables(variables: JQVariable[]) { From c00c5afc6a0a00d0388c3b712cceffa9c8d303af Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 6 Jan 2023 18:15:23 -0800 Subject: [PATCH 25/51] nesting --- src/jq_utils.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 97256ca..dcac114 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -13,19 +13,23 @@ def remifempty: (if . == [] then empty else . end); # generates a curie from a type and id def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; +# getting a nested field from inputted object (seperated by ., ie. drugcentral.bioactivity) +def get_nested_field(field): +. as $obj | reduce (field | split(".") | .[]) as $subfield ($obj; .[$subfield]?); + # checks if object meets any filter string def any_filter(filter_strs): -. as $obj | foreach (filter_strs | .[]) as $filter_str (false; . or (($obj | .[$filter_str | split(":") | first]) == ($filter_str | split(":") | last)); .); +. as $obj | reduce (filter_strs | .[]) as $filter_str (false; . or (($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last))); # checks if object meets all filter strings def all_filter(filter_strs): -. as $obj | foreach (filter_strs | .[]) as $filter_str (true; . and (($obj | .[$filter_str | split(":") | first]) == ($filter_str | split(":") | last)); .); +. as $obj | reduce (filter_strs | .[]) as $filter_str (true; . and (($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last))); # filters the list that is supplied on all conditions -def list_filter_all(filter_strs): [.[] | if . | all_filter(filter_strs) then . else empty end]; +def list_filter_all(filter_strs): if (. | type) == "array" then [.[] | if . | all_filter(filter_strs) then . else empty end] else empty end; # filters the list that is supplied on any conditions -def list_filter_any(filter_strs): [.[] | if . | any_filter(filter_strs) then . else empty end]; +def list_filter_any(filter_strs): if (. | type) == "array" then [.[] | if . | any_filter(filter_strs) then . else empty end] else empty end; ` function generateVariables(variables: JQVariable[]) { From 2bace62c7ee644304ec9dcd6c5d327b5617677af Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Fri, 6 Jan 2023 18:22:42 -0800 Subject: [PATCH 26/51] add node-jq dependency --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 39d5e7b..558cd41 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,8 @@ "common-path-prefix": "^3.0.0", "husky": "^4.3.8", "jsonata": "^1.8.4", - "lodash": "^4.17.21" + "lodash": "^4.17.21", + "node-jq": "^2.3.4" }, "husky": { "hooks": { From 9e541c6f17204da0d7b6b0efba5af1dd06833233 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 12 Jan 2023 17:19:26 -0800 Subject: [PATCH 27/51] Multiple allowed values for list_filter_all --- src/jq_utils.ts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index dcac114..3558daf 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -19,11 +19,21 @@ def get_nested_field(field): # checks if object meets any filter string def any_filter(filter_strs): -. as $obj | reduce (filter_strs | .[]) as $filter_str (false; . or (($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last))); +. as $obj | reduce (filter_strs | .[]) as $filter_str ( + false; + . or ( + ($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last) + ) +); # checks if object meets all filter strings def all_filter(filter_strs): -. as $obj | reduce (filter_strs | .[]) as $filter_str (true; . and (($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last))); +. as $obj | reduce (filter_strs | .[]) as $filter_str ( + true; + . and ( + $obj | any_filter([$filter_str | split(":") | last | split(",") | .[] | ($filter_str | split(":") | first) + ":" + .]) + ) +); # filters the list that is supplied on all conditions def list_filter_all(filter_strs): if (. | type) == "array" then [.[] | if . | all_filter(filter_strs) then . else empty end] else empty end; From 78aecaf7d65a0e3f2e1fa236139856925ff26fea Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 14 Mar 2023 21:03:06 -0700 Subject: [PATCH 28/51] Fix ctd https://github.com/biothings/BioThings_Explorer_TRAPI/issues/583 --- src/index.ts | 2 +- src/transformers/jq_transfomer.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e6bbb56..1a486f8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -52,7 +52,7 @@ export class Transformer { } else if (tags.includes("biothings")) { this.tf = new BioThingsTransformer(this.data, this.config); } else if (tags.includes("ctd")) { - this.tf = new CTDTransformer(this.data, this.config); + this.tf = new JQTransformer(this.data, { ...this.config, type: "ctd" }); } else if (tags.includes("opentarget")) { this.tf = new OpenTargetTransformer(this.data, this.config) } else { diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index ffb66d4..7e59884 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -13,8 +13,10 @@ const filterStrings = { ctd: ` # Split pubMedIDs by | ((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | + ((.[] | select(.PubMedIds != null) | .PubMedIds) |= split("|")) | # take last element of disease ids after spliting by : - ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | {data: .} + ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | + ((.[] | select(.DiseaseId != null) | .DiseaseId) |= (split(":") | last)) | {data: .} `, opentarget: ` # split drug IDs with CHEMBL by / From a59b35a7f2c5030dd82ae9c1ecc1f7a814652773 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 14 Mar 2023 22:25:35 -0700 Subject: [PATCH 29/51] handle direct evidence split by | --- src/transformers/jq_transfomer.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 7e59884..b383832 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -14,6 +14,8 @@ const filterStrings = { # Split pubMedIDs by | ((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | ((.[] | select(.PubMedIds != null) | .PubMedIds) |= split("|")) | + # Split Direct Evidence by | + ((.[] | select(.DirectEvidence != null) | .DirectEvidence) |= split("|")) | # take last element of disease ids after spliting by : ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | ((.[] | select(.DiseaseId != null) | .DiseaseId) |= (split(":") | last)) | {data: .} From 3df9e405e5e80e8314b8a78506f5049c8819c245 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 22 Mar 2023 18:04:03 -0700 Subject: [PATCH 30/51] biothings support --- src/index.ts | 4 +- src/transformers/jq_transfomer.ts | 71 +++++++++++-------------------- 2 files changed, 27 insertions(+), 48 deletions(-) diff --git a/src/index.ts b/src/index.ts index 1a486f8..4348587 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,8 +41,6 @@ export class Transformer { }) } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); - } else if (api.startsWith('SEMMED')) { - this.tf = new SemmedTransformer(this.data, this.config); } else if (api === 'BioLink API') { // this.tf = new BiolinkTransformer(this.data, this.config); this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }) @@ -50,7 +48,7 @@ export class Transformer { // this.tf = new EBIProteinTransformer(this.data, this.config) this.tf = new JQTransformer(this.data, { ...this.config, type: "ebi" }) } else if (tags.includes("biothings")) { - this.tf = new BioThingsTransformer(this.data, this.config); + this.tf = new JQTransformer(this.data, { ...this.config, type: "biothings" }) } else if (tags.includes("ctd")) { this.tf = new JQTransformer(this.data, { ...this.config, type: "ctd" }); } else if (tags.includes("opentarget")) { diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index b383832..cb2c518 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -3,7 +3,7 @@ import { generateFilterString } from "../jq_utils"; const jq = require('node-jq'); -const filterStrings = { +const filterStringsWrap = { ebi: ` # only take comments where dbReferences type is Rhea .comments = [ @@ -43,49 +43,11 @@ const filterStrings = { ) # delete association if empty array | delifempty(.associations) - `, - semmedb: ` - # NOTE: Currently this still needs some functions from Biothings transformer so that needs to be figured out - map_values( - # checks if value is array and nonzero length - if (. | type) == "array" and (. | length) != 0 then - [ - # check the type for each element against edge type - .[] | if (.["@type"] == $edge.association.output_type) or (.["@type"] == "DiseaseOrPhenotypicFeature" and $edge.association.output_type == "Disease") then - # rename appropriate fields - (.UMLS = .umls | .pubmed = .pmid | del(.umls) | del (.pmid) | .) - # empty for unecessary fields - else empty end - # remove key if empty array - ] | remifempty - else - empty - end - ) ` } -export default class JQTransformer extends BaseTransformer { - async wrap (res) { - if (this.config.wrap) res = JSON.parse(await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: 'json' })); - else if (filterStrings[this.config.type]) res = JSON.parse(await jq.run(generateFilterString(filterStrings[this.config.type], this.edge), res, { input: 'json' })); - else res = super.wrap(res); - - return res; - } - - async pairCurieWithAPIResponse () { - if (this.config.pair) return JSON.parse(await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: 'json' })); - return super.pairCurieWithAPIResponse(); - } -} - -/* - COULD BE ADDED (pairCurieWithAPIResponse for BioThings Transformer): - def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; - - {"query_operation": {"method": "get"}, "assocation": {"input_id": "test"}, "input": {"queryInputs": "woahsfd"}} as $edge | - +const filterStringsPair = { + biothings: ` if $edge.query_operation.method == "post" then # if response is not an array, then use response.hits if (.response | type) == "array" then .response else .response.hits end | @@ -94,14 +56,33 @@ export default class JQTransformer extends BaseTransformer { if ($item | keys | contains(["notfound"])) then . else - generateCurie($edge.assocation.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] end ) else if ($edge.input | type) == "object" then - .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] + .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res else - .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] + .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = $res end end -*/ \ No newline at end of file + `, + ctd: `` +} + +export default class JQTransformer extends BaseTransformer { + async wrap (res) { + if (this.config.wrap) res = JSON.parse(await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: 'json' })); + else if (filterStringsWrap[this.config.type]) res = JSON.parse(await jq.run(generateFilterString(filterStringsWrap[this.config.type], this.edge), res, { input: 'json' })); + else res = super.wrap(res); + + return res; + } + + async pairCurieWithAPIResponse () { + if (this.config.pair) return JSON.parse(await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: 'json' })); + else if (filterStringsPair[this.config.type]) return JSON.parse(await jq.run(generateFilterString(filterStringsPair[this.config.type], this.edge), this.data, { input: 'json' })); + + return super.pairCurieWithAPIResponse(); + } +} \ No newline at end of file From 4fd7e3187d0b32bcc094470cf8ddc964c3d002c0 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 22 Mar 2023 18:08:15 -0700 Subject: [PATCH 31/51] add ctd pair --- src/transformers/jq_transfomer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index cb2c518..61c2ec0 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -67,7 +67,7 @@ const filterStringsPair = { end end `, - ctd: `` + ctd: `reduce (.response | .[]) as $item ({}; .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] = [] + .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] + [$item]) | map_values([.])` } export default class JQTransformer extends BaseTransformer { From 934eb368d31a7beae5daa4f94ec6e508dc4de35f Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 23 Mar 2023 19:24:19 -0700 Subject: [PATCH 32/51] spelling fixes --- src/transformers/transformer.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/transformers/transformer.ts b/src/transformers/transformer.ts index fb156d5..460d122 100644 --- a/src/transformers/transformer.ts +++ b/src/transformers/transformer.ts @@ -34,10 +34,10 @@ export default class BaseTransformer { } /* - if 4edge.input | keys | contains(["queryInputs"]) then - {[generateCurie($edge.assocation.input_id, $edge.input.queryInputs)]: .response} + if $edge.input | keys | contains(["queryInputs"]) then + {[generateCurie($edge.association.input_id, $edge.input.queryInputs)]: .response} else - {[generateCurie($edge.assocation.input_id, $edge.input)]: .response} + {[generateCurie($edge.association.input_id, $edge.input)]: .response} end */ From 8a6ac89da3b2ea11c396861d1575399679acc1ce Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 28 Mar 2023 18:30:50 -0700 Subject: [PATCH 33/51] remove disease id parsing from ctd --- src/transformers/jq_transfomer.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 61c2ec0..af2ce26 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -16,9 +16,7 @@ const filterStringsWrap = { ((.[] | select(.PubMedIds != null) | .PubMedIds) |= split("|")) | # Split Direct Evidence by | ((.[] | select(.DirectEvidence != null) | .DirectEvidence) |= split("|")) | - # take last element of disease ids after spliting by : - ((.[] | select(.DiseaseID != null) | .DiseaseID) |= (split(":") | last)) | - ((.[] | select(.DiseaseId != null) | .DiseaseId) |= (split(":") | last)) | {data: .} + {data: .} `, opentarget: ` # split drug IDs with CHEMBL by / @@ -85,4 +83,4 @@ export default class JQTransformer extends BaseTransformer { return super.pairCurieWithAPIResponse(); } -} \ No newline at end of file +} From 9fbcb38dc527136cb67b21b29d7510a22dfe72b1 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Tue, 28 Mar 2023 18:36:22 -0700 Subject: [PATCH 34/51] test fix --- __test__/ctd_transformer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__test__/ctd_transformer.test.ts b/__test__/ctd_transformer.test.ts index 16590bb..7d9b9f7 100644 --- a/__test__/ctd_transformer.test.ts +++ b/__test__/ctd_transformer.test.ts @@ -25,7 +25,7 @@ describe("test ctd transformer", () => { expect(res).toHaveProperty("data"); expect(res.data).toHaveLength(2); expect(res.data[0].PubMedIDs).toEqual(["21559390"]); - expect(res.data[0].DiseaseID).toEqual("D008545"); + expect(res.data[0].DiseaseID).toEqual("MESH:D008545"); }) test("test ctd wrapper if pubmed id field is not string", async () => { From ea9db147795f69884ef05983c4f038a511a60772 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 29 Mar 2023 17:37:23 -0700 Subject: [PATCH 35/51] fix https://github.com/biothings/BioThings_Explorer_TRAPI/issues/592 --- src/jq_utils.ts | 6 ++++++ src/transformers/jq_transfomer.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 3558daf..2ce8b64 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -4,6 +4,9 @@ const functions = ` # example increment function def increment: . + 1; +# converts value to array if not already +def toArray: if (. | type) == "array" then . else [.] end; + # deletes key if empty array def delifempty(k): (if k == [] then del(k) | . else . end); @@ -13,6 +16,9 @@ def remifempty: (if . == [] then empty else . end); # generates a curie from a type and id def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; +# generates a curie from a type and id [string] (by checking queryInputs) +def generateCurieWithInputs(idType; id; queryInputs): reduce (queryInputs | toArray | .[]) as $input (""; if (id | ascii_upcase | contains($input | ascii_upcase)) then $input else . end) | idType + ":" + .; + # getting a nested field from inputted object (seperated by ., ie. drugcentral.bioactivity) def get_nested_field(field): . as $obj | reduce (field | split(".") | .[]) as $subfield ($obj; .[$subfield]?); diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index af2ce26..589fadd 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -54,7 +54,7 @@ const filterStringsPair = { if ($item | keys | contains(["notfound"])) then . else - generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] end ) else From f49766ca9d836454b9fd635ca103d9fef82cd8fb Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 2 Aug 2023 15:29:47 -0700 Subject: [PATCH 36/51] fix generateCurieWithInputs to handle array --- src/jq_utils.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/jq_utils.ts b/src/jq_utils.ts index 2ce8b64..c7ef400 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -13,11 +13,14 @@ def delifempty(k): (if k == [] then del(k) | . else . end); # sets inputted value to "empty" if empty array def remifempty: (if . == [] then empty else . end); +# gets first element of array (if array) +def getfirst: if (. | type) == "array" then .[0] else . end; + # generates a curie from a type and id -def generateCurie(idType; id): if (id | type) == "array" then id[0] else id end | split(":") | last | idType + ":" + .; +def generateCurie(idType; id): id | getfirst | split(":") | last | idType + ":" + .; # generates a curie from a type and id [string] (by checking queryInputs) -def generateCurieWithInputs(idType; id; queryInputs): reduce (queryInputs | toArray | .[]) as $input (""; if (id | ascii_upcase | contains($input | ascii_upcase)) then $input else . end) | idType + ":" + .; +def generateCurieWithInputs(idType; id; queryInputs): (id | getfirst) as $id | reduce (queryInputs | toArray | .[]) as $input (""; if ($id | ascii_upcase | contains($input | ascii_upcase)) then $input else . end) | idType + ":" + .; # getting a nested field from inputted object (seperated by ., ie. drugcentral.bioactivity) def get_nested_field(field): @@ -64,4 +67,4 @@ export function generateFilterString(filterString: string, edge: BTEKGOperationO } ]; return `${functions}\n${generateVariables(variables)}${filterString}` -} \ No newline at end of file +} From 55b48c998eb9975f8369ccc0dd040453fa5748d8 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 2 Aug 2023 15:32:34 -0700 Subject: [PATCH 37/51] migrate biothings transformer test to jq --- __test__/biothings_transformer.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__test__/biothings_transformer.test.ts b/__test__/biothings_transformer.test.ts index a730bf7..ea211ef 100644 --- a/__test__/biothings_transformer.test.ts +++ b/__test__/biothings_transformer.test.ts @@ -1,5 +1,5 @@ -import biothings_tf from "../src/transformers/biothings_transformer"; +import jq_tf from "../src/transformers/jq_transfomer"; import {describe, expect, test} from '@jest/globals'; import fs from "fs"; import path from "path"; @@ -22,7 +22,7 @@ describe("test biothings transformer", () => { }) test("test biothings wrapper", async () => { - let tf = new biothings_tf(input, {}); + let tf = new jq_tf(input, {type: "biothings"}); let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(2); expect(res).toHaveProperty("DRUGBANK:DB00188"); @@ -47,7 +47,7 @@ describe("test biothings transformer", () => { }) test("test biothings wrapper", async () => { - let tf = new biothings_tf(input, {}); + let tf = new jq_tf(input, {type: "biothings"}); let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(1); expect(res).toHaveProperty("NCBIGene:1017"); @@ -79,7 +79,7 @@ describe("test biothings transformer", () => { }) test("test biothings wrapper", async () => { - let tf = new biothings_tf(input, {}); + let tf = new jq_tf(input, {type: "biothings"}); let res = await tf.pairCurieWithAPIResponse(); expect(Object.keys(res)).toHaveLength(1); expect(res).toHaveProperty("PUBCHEM:11373846"); From f2fc0d638782cf44756ca93ed957562a230170f0 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 2 Aug 2023 15:37:11 -0700 Subject: [PATCH 38/51] update biothings test more for jq --- __test__/biothings_transformer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__test__/biothings_transformer.test.ts b/__test__/biothings_transformer.test.ts index ea211ef..9cb98f4 100644 --- a/__test__/biothings_transformer.test.ts +++ b/__test__/biothings_transformer.test.ts @@ -55,7 +55,7 @@ describe("test biothings transformer", () => { }) test("test biothings transform", async () => { - let tf = new biothings_tf(input, {}); + let tf = new jq_tf(input, {type: "biothings"}); let res = await tf.transform(); expect(res).toHaveLength(27); expect(res[0]).not.toHaveProperty('pubmed'); From 7e3b524f9b2533e213b6de578771aff656c73bc0 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 2 Aug 2023 15:41:03 -0700 Subject: [PATCH 39/51] add back semmed transformer --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 4348587..1289948 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,6 +41,8 @@ export class Transformer { }) } else if (tags.includes('bte-trapi')) { this.tf = new TRAPITransformer(this.data, this.config); + } else if (api.startsWith('SEMMED')) { + this.tf = new SemmedTransformer(this.data, this.config); } else if (api === 'BioLink API') { // this.tf = new BiolinkTransformer(this.data, this.config); this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }) From 76b52e211012aebda978b807f4478a4c696d68bd Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Wed, 2 Aug 2023 16:05:11 -0700 Subject: [PATCH 40/51] update biothings jq --- src/transformers/jq_transfomer.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts index 589fadd..472e4ad 100644 --- a/src/transformers/jq_transfomer.ts +++ b/src/transformers/jq_transfomer.ts @@ -54,14 +54,18 @@ const filterStringsPair = { if ($item | keys | contains(["notfound"])) then . else - generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] + if $edge.input | type == "object" and $edge.input.queryInputs | type == "object" then + generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] + else + generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + end end ) else if ($edge.input | type) == "object" then - .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res + .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] else - .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = $res + .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] end end `, From 77f6c7fe597de4eb52b74f7a0f73aee972f7a633 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 14 Sep 2023 17:40:47 -0700 Subject: [PATCH 41/51] clean up files --- src/transformers/biothings_transformer.ts | 20 -------------------- src/transformers/opentarget_transformer.ts | 7 ------- 2 files changed, 27 deletions(-) diff --git a/src/transformers/biothings_transformer.ts b/src/transformers/biothings_transformer.ts index 683ae1b..cec7629 100644 --- a/src/transformers/biothings_transformer.ts +++ b/src/transformers/biothings_transformer.ts @@ -2,26 +2,6 @@ import BaseTransformer from "./transformer"; import { generateCurie } from '../utils'; export default class BioThingsTransformer extends BaseTransformer { - // IN JQ: - // if $edge.query_operation.method == "post" then - // # if response is not an array, then use response.hits - // if (.response | type) == "array" then .response else .response.hits end | - // reduce .[] as $item ({}; - // # if the item is notfound, then proceed to next item & keep current object - // if ($item | keys | contains(["notfound"])) then - // . - // else - // generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] - // end - // ) - // else - // if ($edge.input | type) == "object" then - // .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = $res - // else - // .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = $res - // end - // end - async pairCurieWithAPIResponse() { if (this.edge.query_operation.method === "post") { let res = {}; diff --git a/src/transformers/opentarget_transformer.ts b/src/transformers/opentarget_transformer.ts index d5011d8..69e13a9 100644 --- a/src/transformers/opentarget_transformer.ts +++ b/src/transformers/opentarget_transformer.ts @@ -3,13 +3,6 @@ import jq from "node-jq"; export default class OpenTargetTransformer extends BaseTransformer { async wrap(res) { -// res.data = res.data.map(item => { -// if ('drug' in item && "id" in item.drug && typeof item.drug.id === "string" && item.drug.id.includes("CHEMBL")) { -// item.drug.id = item.drug.id.split('/').slice(-1)[0]; -// } -// return item; -// }); -// return res; const filterString = '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)'; return await jq.run(filterString, res); } From 237524581fdbf2ac1449ad599e05304378213f68 Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:08:48 -0400 Subject: [PATCH 42/51] fix: typo, mv jq string to data/, ts formatting --- __test__/biolink_transformers.test.ts | 2 +- __test__/biothings_transformer.test.ts | 2 +- __test__/ctd_transformer.test.ts | 2 +- __test__/ebi_protein_transformer.test.ts | 2 +- __test__/opentarget_transformer.test.ts | 2 +- data/jq/pair/biothings.jq | 22 ++++++ data/jq/pair/ctd.jq | 1 + data/jq/wrap/biolink.jq | 18 +++++ data/jq/wrap/ctd.jq | 6 ++ data/jq/wrap/ebi.jq | 4 ++ data/jq/wrap/opentarget.jq | 2 + src/index.ts | 2 +- src/transformers/jq_transfomer.ts | 90 ------------------------ src/transformers/jq_transformer.ts | 57 +++++++++++++++ 14 files changed, 116 insertions(+), 96 deletions(-) create mode 100644 data/jq/pair/biothings.jq create mode 100644 data/jq/pair/ctd.jq create mode 100644 data/jq/wrap/biolink.jq create mode 100644 data/jq/wrap/ctd.jq create mode 100644 data/jq/wrap/ebi.jq create mode 100644 data/jq/wrap/opentarget.jq delete mode 100644 src/transformers/jq_transfomer.ts create mode 100644 src/transformers/jq_transformer.ts diff --git a/__test__/biolink_transformers.test.ts b/__test__/biolink_transformers.test.ts index c00be7c..cd1d8e1 100644 --- a/__test__/biolink_transformers.test.ts +++ b/__test__/biolink_transformers.test.ts @@ -1,6 +1,6 @@ import {describe, expect, test} from '@jest/globals'; -import jq_tf from "../built/transformers/jq_transfomer"; +import jq_tf from "../built/transformers/jq_transformer"; import fs from "fs"; import path from "path"; import { JSONDoc } from '../src/json_transform/types'; diff --git a/__test__/biothings_transformer.test.ts b/__test__/biothings_transformer.test.ts index 9cb98f4..8b3719a 100644 --- a/__test__/biothings_transformer.test.ts +++ b/__test__/biothings_transformer.test.ts @@ -1,5 +1,5 @@ -import jq_tf from "../src/transformers/jq_transfomer"; +import jq_tf from "../src/transformers/jq_transformer"; import {describe, expect, test} from '@jest/globals'; import fs from "fs"; import path from "path"; diff --git a/__test__/ctd_transformer.test.ts b/__test__/ctd_transformer.test.ts index 7d9b9f7..089ef2e 100644 --- a/__test__/ctd_transformer.test.ts +++ b/__test__/ctd_transformer.test.ts @@ -1,7 +1,7 @@ import {describe, expect, test} from '@jest/globals'; import fs from "fs"; import path from "path"; -import jq_tf from "../built/transformers/jq_transfomer"; +import jq_tf from "../built/transformers/jq_transformer"; describe("test ctd transformer", () => { diff --git a/__test__/ebi_protein_transformer.test.ts b/__test__/ebi_protein_transformer.test.ts index d2ad3f6..f3bc9a6 100644 --- a/__test__/ebi_protein_transformer.test.ts +++ b/__test__/ebi_protein_transformer.test.ts @@ -1,7 +1,7 @@ import { describe, expect, test } from "@jest/globals"; import fs from "fs"; import path from "path"; -import jq_tf from "../src/transformers/jq_transfomer"; +import jq_tf from "../src/transformers/jq_transformer"; describe("test EBI Protein transformer", () => { let response; diff --git a/__test__/opentarget_transformer.test.ts b/__test__/opentarget_transformer.test.ts index fe38203..470316f 100644 --- a/__test__/opentarget_transformer.test.ts +++ b/__test__/opentarget_transformer.test.ts @@ -1,5 +1,5 @@ import {describe, expect, test} from '@jest/globals'; -import jq_tf from "../built/transformers/jq_transfomer"; +import jq_tf from "../built/transformers/jq_transformer"; import fs from "fs"; import path from "path"; diff --git a/data/jq/pair/biothings.jq b/data/jq/pair/biothings.jq new file mode 100644 index 0000000..00d25b8 --- /dev/null +++ b/data/jq/pair/biothings.jq @@ -0,0 +1,22 @@ +if $edge.query_operation.method == "post" then + # if response is not an array, then use response.hits + if (.response | type) == "array" then .response else .response.hits end | + reduce .[] as $item ({}; + # if the item is notfound, then proceed to next item & keep current object + if ($item | keys | contains(["notfound"])) then + . + else + if $edge.input | type == "object" and $edge.input.queryInputs | type == "object" then + generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] + else + generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + end + end + ) +else + if ($edge.input | type) == "object" then + .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] + else + .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] + end +end diff --git a/data/jq/pair/ctd.jq b/data/jq/pair/ctd.jq new file mode 100644 index 0000000..830c945 --- /dev/null +++ b/data/jq/pair/ctd.jq @@ -0,0 +1 @@ +reduce (.response | .[]) as $item ({}; .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] = [] + .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] + [$item]) | map_values([.]) diff --git a/data/jq/wrap/biolink.jq b/data/jq/wrap/biolink.jq new file mode 100644 index 0000000..696d9d1 --- /dev/null +++ b/data/jq/wrap/biolink.jq @@ -0,0 +1,18 @@ +.associations = ( + [ + ( + # take associations that aren't null + select(.associations != null) | .associations | .[] | + # split association object ids & take last (only for CHEMBL, REACT, HGNC) + select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | + # take publications with PMID & for IDs take last element after splitting by : + .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] + ) + # delete publications if empty array + | delifempty(.publications) + ] + + # include associations with null object ids + [select(.associations != null) | .associations | .[] | select(.object.id == null)] +) +# delete association if empty array +| delifempty(.associations) diff --git a/data/jq/wrap/ctd.jq b/data/jq/wrap/ctd.jq new file mode 100644 index 0000000..7ffd766 --- /dev/null +++ b/data/jq/wrap/ctd.jq @@ -0,0 +1,6 @@ +# Split pubMedIDs by | +((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | +((.[] | select(.PubMedIds != null) | .PubMedIds) |= split("|")) | +# Split Direct Evidence by | +((.[] | select(.DirectEvidence != null) | .DirectEvidence) |= split("|")) | +{data: .} diff --git a/data/jq/wrap/ebi.jq b/data/jq/wrap/ebi.jq new file mode 100644 index 0000000..7494d30 --- /dev/null +++ b/data/jq/wrap/ebi.jq @@ -0,0 +1,4 @@ +# only take comments where dbReferences type is Rhea +.comments = [ + select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences = [.reaction.dbReferences | .[] | select(.type == "Rhea")] +] diff --git a/data/jq/wrap/opentarget.jq b/data/jq/wrap/opentarget.jq new file mode 100644 index 0000000..b437ee1 --- /dev/null +++ b/data/jq/wrap/opentarget.jq @@ -0,0 +1,2 @@ +# split drug IDs with CHEMBL by / +(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last) diff --git a/src/index.ts b/src/index.ts index 1289948..9d5b1cc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,7 @@ import OpenTargetTransformer from "./transformers/opentarget_transformer"; import BaseTransformer from "./transformers/transformer"; import TRAPITransformer from './transformers/trapi_transformer'; import EBIProteinTransformer from './transformers/ebi_protein_transformer' -import JQTransformer from "./transformers/jq_transfomer"; +import JQTransformer from "./transformers/jq_transformer"; import { BTEQueryObject } from "./types"; const debug = require("debug")("bte:api-response-transform:index"); export { Record } from "./record"; diff --git a/src/transformers/jq_transfomer.ts b/src/transformers/jq_transfomer.ts deleted file mode 100644 index 472e4ad..0000000 --- a/src/transformers/jq_transfomer.ts +++ /dev/null @@ -1,90 +0,0 @@ -import BaseTransformer from "./transformer"; -import { generateFilterString } from "../jq_utils"; - -const jq = require('node-jq'); - -const filterStringsWrap = { - ebi: ` - # only take comments where dbReferences type is Rhea - .comments = [ - select(.comments != null) | .comments | .[] | select(.reaction != null) | .reaction.dbReferences = [.reaction.dbReferences | .[] | select(.type == "Rhea")] - ] - `, - ctd: ` - # Split pubMedIDs by | - ((.[] | select(.PubMedIDs != null) | .PubMedIDs) |= split("|")) | - ((.[] | select(.PubMedIds != null) | .PubMedIds) |= split("|")) | - # Split Direct Evidence by | - ((.[] | select(.DirectEvidence != null) | .DirectEvidence) |= split("|")) | - {data: .} - `, - opentarget: ` - # split drug IDs with CHEMBL by / - (.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last) - `, - biolink: ` - .associations = ( - [ - ( - # take associations that aren't null - select(.associations != null) | .associations | .[] | - # split association object ids & take last (only for CHEMBL, REACT, HGNC) - select(.object.id != null) | (.object.id | split(":") | first) as $pref | .object[$pref] = (if $pref == "HGNC" or $pref == "NCBIGene" or $pref == "REACT" then (.object.id | split(":") | last) else .object.id end) | - # take publications with PMID & for IDs take last element after splitting by : - .publications = [foreach (.publications | .[]? | .id) as $pub ([]; []; if ($pub == null or ($pub | startswith("PMID") | not)) then empty else {id: ($pub | split(":") | last)} end)] - ) - # delete publications if empty array - | delifempty(.publications) - ] + - # include associations with null object ids - [select(.associations != null) | .associations | .[] | select(.object.id == null)] - ) - # delete association if empty array - | delifempty(.associations) - ` -} - -const filterStringsPair = { - biothings: ` - if $edge.query_operation.method == "post" then - # if response is not an array, then use response.hits - if (.response | type) == "array" then .response else .response.hits end | - reduce .[] as $item ({}; - # if the item is notfound, then proceed to next item & keep current object - if ($item | keys | contains(["notfound"])) then - . - else - if $edge.input | type == "object" and $edge.input.queryInputs | type == "object" then - generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] - else - generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] - end - end - ) - else - if ($edge.input | type) == "object" then - .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] - else - .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] - end - end - `, - ctd: `reduce (.response | .[]) as $item ({}; .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] = [] + .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] + [$item]) | map_values([.])` -} - -export default class JQTransformer extends BaseTransformer { - async wrap (res) { - if (this.config.wrap) res = JSON.parse(await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: 'json' })); - else if (filterStringsWrap[this.config.type]) res = JSON.parse(await jq.run(generateFilterString(filterStringsWrap[this.config.type], this.edge), res, { input: 'json' })); - else res = super.wrap(res); - - return res; - } - - async pairCurieWithAPIResponse () { - if (this.config.pair) return JSON.parse(await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: 'json' })); - else if (filterStringsPair[this.config.type]) return JSON.parse(await jq.run(generateFilterString(filterStringsPair[this.config.type], this.edge), this.data, { input: 'json' })); - - return super.pairCurieWithAPIResponse(); - } -} diff --git a/src/transformers/jq_transformer.ts b/src/transformers/jq_transformer.ts new file mode 100644 index 0000000..861c621 --- /dev/null +++ b/src/transformers/jq_transformer.ts @@ -0,0 +1,57 @@ +import BaseTransformer from "./transformer"; +import { generateFilterString } from "../jq_utils"; +import fs from "fs"; +import Path from "path"; + +import * as jq from "node-jq"; // If converted to import, ts compile breaks it (imports default as undefined) +import { JSONDoc } from "../json_transform/types"; + +// Get prefab JQ strings from data/jq +const filterStringsWrap = Object.fromEntries( + fs.readdirSync(Path.resolve(`${__dirname}/../../data/jq/wrap`)).map(file => { + const filePath = Path.resolve(`${__dirname}/../../data/jq/wrap/${file}`); + return [Path.parse(filePath).name, fs.readFileSync(filePath, { encoding: "utf8" })]; + }), +); + +const filterStringsPair = Object.fromEntries( + fs.readdirSync(Path.resolve(`${__dirname}/../../data/jq/pair`)).map(file => { + const filePath = Path.resolve(`${__dirname}/../../data/jq/pair/${file}`); + return [Path.parse(filePath).name, fs.readFileSync(filePath, { encoding: "utf8" })]; + }), +); + +export default class JQTransformer extends BaseTransformer { + // TODO more specific typing? + async wrap(res: JSONDoc | JSONDoc[]): Promise { + if (this.config.wrap) + res = JSON.parse( + (await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: "json" })) as string, + ); + else if (filterStringsWrap[this.config.type]) + res = JSON.parse( + (await jq.run(generateFilterString(filterStringsWrap[this.config.type], this.edge), res, { + input: "json", + })) as string, + ); + else res = super.wrap(res); + + return res; + } + + // TODO more specific typing? + async pairCurieWithAPIResponse(): Promise { + if (this.config.pair) + return JSON.parse( + (await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: "json" })) as string, + ); + else if (filterStringsPair[this.config.type]) + return JSON.parse( + (await jq.run(generateFilterString(filterStringsPair[this.config.type], this.edge), this.data, { + input: "json", + })) as string, + ); + + return super.pairCurieWithAPIResponse(); + } +} From f9a9689e779e881c829eb3407931c7878f1a5ce9 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Mon, 18 Sep 2023 17:41:10 -0700 Subject: [PATCH 43/51] Fix handling of biothings JQ, biothings/biothings_explorer#489 --- data/jq/pair/biothings.jq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/jq/pair/biothings.jq b/data/jq/pair/biothings.jq index 00d25b8..eec14bc 100644 --- a/data/jq/pair/biothings.jq +++ b/data/jq/pair/biothings.jq @@ -1,4 +1,4 @@ -if $edge.query_operation.method == "post" then +if $edge.query_operation._method == "post" then # if response is not an array, then use response.hits if (.response | type) == "array" then .response else .response.hits end | reduce .[] as $item ({}; @@ -6,7 +6,7 @@ if $edge.query_operation.method == "post" then if ($item | keys | contains(["notfound"])) then . else - if $edge.input | type == "object" and $edge.input.queryInputs | type == "object" then + if $edge.input | type == "object" then generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] else generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] From e729a8a144ef903724715c7574ec05253a678b66 Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 28 Sep 2023 17:27:47 -0700 Subject: [PATCH 44/51] better typing --- src/json_transform/types.ts | 4 ++++ src/transformers/jq_transformer.ts | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/json_transform/types.ts b/src/json_transform/types.ts index 475f3e5..bf5fe2e 100644 --- a/src/json_transform/types.ts +++ b/src/json_transform/types.ts @@ -17,4 +17,8 @@ export interface BaseTransformedObject { export interface JSONDoc { [key1: string]: any; [key2: number]: any; +} + +export interface PairedResponse { + [curie: string]: JSONDoc[] } \ No newline at end of file diff --git a/src/transformers/jq_transformer.ts b/src/transformers/jq_transformer.ts index 861c621..320811d 100644 --- a/src/transformers/jq_transformer.ts +++ b/src/transformers/jq_transformer.ts @@ -4,7 +4,7 @@ import fs from "fs"; import Path from "path"; import * as jq from "node-jq"; // If converted to import, ts compile breaks it (imports default as undefined) -import { JSONDoc } from "../json_transform/types"; +import { JSONDoc, PairedResponse } from "../json_transform/types"; // Get prefab JQ strings from data/jq const filterStringsWrap = Object.fromEntries( @@ -39,8 +39,7 @@ export default class JQTransformer extends BaseTransformer { return res; } - // TODO more specific typing? - async pairCurieWithAPIResponse(): Promise { + async pairCurieWithAPIResponse(): Promise { if (this.config.pair) return JSON.parse( (await jq.run(generateFilterString(this.config.pair, this.edge), this.data, { input: "json" })) as string, From 7ab4e7486bae568ffb8b72cef0465a978aeaef0c Mon Sep 17 00:00:00 2001 From: Rohan Juneja Date: Thu, 28 Sep 2023 18:02:13 -0700 Subject: [PATCH 45/51] fix most tests --- __test__/data/biothings/drug_response_example_edge.json | 2 +- __test__/data/biothings/mychem_example_edge.json | 2 +- __test__/data/biothings/mygene_example_edge.json | 2 +- data/jq/pair/biothings.jq | 4 ++-- src/transformers/jq_transformer.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/__test__/data/biothings/drug_response_example_edge.json b/__test__/data/biothings/drug_response_example_edge.json index 16456cb..4b6da4f 100644 --- a/__test__/data/biothings/drug_response_example_edge.json +++ b/__test__/data/biothings/drug_response_example_edge.json @@ -8,7 +8,7 @@ "size": "1000" }, "_supportBatch": false, - "method": "get", + "_method": "get", "_pathParams": [], "_server": "https://biothings.ncats.io/drug_response_kp", "_path": "/query", diff --git a/__test__/data/biothings/mychem_example_edge.json b/__test__/data/biothings/mychem_example_edge.json index 2dce07d..47d58b9 100644 --- a/__test__/data/biothings/mychem_example_edge.json +++ b/__test__/data/biothings/mychem_example_edge.json @@ -17,7 +17,7 @@ }, "_supportBatch": true, "_inputSeparator": ",", - "method": "post", + "_method": "post", "_pathParams": [], "_server": "https://mychem.info/v1", "_path": "/query", diff --git a/__test__/data/biothings/mygene_example_edge.json b/__test__/data/biothings/mygene_example_edge.json index 36d44e2..b01b575 100644 --- a/__test__/data/biothings/mygene_example_edge.json +++ b/__test__/data/biothings/mygene_example_edge.json @@ -12,7 +12,7 @@ }, "_supportBatch": true, "_inputSeparator": ",", - "method": "post", + "_method": "post", "_pathParams": [], "_server": "https://mygene.info/v3", "_path": "/query", diff --git a/data/jq/pair/biothings.jq b/data/jq/pair/biothings.jq index eec14bc..cf57f40 100644 --- a/data/jq/pair/biothings.jq +++ b/data/jq/pair/biothings.jq @@ -9,7 +9,7 @@ if $edge.query_operation._method == "post" then if $edge.input | type == "object" then generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input.queryInputs) as $curie | .[$curie] = .[$curie] + [$item] else - generateCurie($edge.association.input_id; $item.query) as $curie | .[$curie] = .[$curie] + [$item] + generateCurieWithInputs($edge.association.input_id; $item.query; $edge.input | toArray) as $curie | .[$curie] = .[$curie] + [$item] end end ) @@ -17,6 +17,6 @@ else if ($edge.input | type) == "object" then .response as $res | generateCurie($edge.association.input_id; $edge.input.queryInputs) as $curie | {} | .[$curie] = [$res] else - .response as $res | generateCurie($edge.association.input_id; $edge.input) as $curie | {} | .[$curie] = [$res] + .response as $res | generateCurie($edge.association.input_id; ($edge.input | toArray)[0]) as $curie | {} | .[$curie] = [$res] end end diff --git a/src/transformers/jq_transformer.ts b/src/transformers/jq_transformer.ts index 320811d..1489fde 100644 --- a/src/transformers/jq_transformer.ts +++ b/src/transformers/jq_transformer.ts @@ -23,7 +23,7 @@ const filterStringsPair = Object.fromEntries( export default class JQTransformer extends BaseTransformer { // TODO more specific typing? - async wrap(res: JSONDoc | JSONDoc[]): Promise { + async wrap(res: JSONDoc | JSONDoc[]): Promise { if (this.config.wrap) res = JSON.parse( (await jq.run(generateFilterString(this.config.wrap, this.edge), res, { input: "json" })) as string, From 1e3844d0d1b5bd1f0a64e1416e21c82c4c27b6da Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:43:14 -0400 Subject: [PATCH 46/51] chore: move jq utils string to data/ --- data/jq/utils.jq | 48 +++++++++++++++++++++++++++++++ src/jq_utils.ts | 75 +++++++++--------------------------------------- 2 files changed, 62 insertions(+), 61 deletions(-) create mode 100644 data/jq/utils.jq diff --git a/data/jq/utils.jq b/data/jq/utils.jq new file mode 100644 index 0000000..220755c --- /dev/null +++ b/data/jq/utils.jq @@ -0,0 +1,48 @@ +# example increment function +def increment: . + 1; + +# converts value to array if not already +def toArray: if (. | type) == "array" then . else [.] end; + +# deletes key if empty array +def delifempty(k): (if k == [] then del(k) | . else . end); + +# sets inputted value to "empty" if empty array +def remifempty: (if . == [] then empty else . end); + +# gets first element of array (if array) +def getfirst: if (. | type) == "array" then .[0] else . end; + +# generates a curie from a type and id +def generateCurie(idType; id): id | getfirst | split(":") | last | idType + ":" + .; + +# generates a curie from a type and id [string] (by checking queryInputs) +def generateCurieWithInputs(idType; id; queryInputs): (id | getfirst) as $id | reduce (queryInputs | toArray | .[]) as $input (""; if ($id | ascii_upcase | contains($input | ascii_upcase)) then $input else . end) | idType + ":" + .; + +# getting a nested field from inputted object (seperated by ., ie. drugcentral.bioactivity) +def get_nested_field(field): +. as $obj | reduce (field | split(".") | .[]) as $subfield ($obj; .[$subfield]?); + +# checks if object meets any filter string +def any_filter(filter_strs): +. as $obj | reduce (filter_strs | .[]) as $filter_str ( + false; + . or ( + ($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last) + ) +); + +# checks if object meets all filter strings +def all_filter(filter_strs): +. as $obj | reduce (filter_strs | .[]) as $filter_str ( + true; + . and ( + $obj | any_filter([$filter_str | split(":") | last | split(",") | .[] | ($filter_str | split(":") | first) + ":" + .]) + ) +); + +# filters the list that is supplied on all conditions +def list_filter_all(filter_strs): if (. | type) == "array" then [.[] | if . | all_filter(filter_strs) then . else empty end] else empty end; + +# filters the list that is supplied on any conditions +def list_filter_any(filter_strs): if (. | type) == "array" then [.[] | if . | any_filter(filter_strs) then . else empty end] else empty end; diff --git a/src/jq_utils.ts b/src/jq_utils.ts index c7ef400..d6c4d7b 100644 --- a/src/jq_utils.ts +++ b/src/jq_utils.ts @@ -1,70 +1,23 @@ -import { JQVariable, BTEKGOperationObject } from "./types" +import { JQVariable, BTEKGOperationObject } from "./types"; +import Path from "path"; +import fs from "fs"; -const functions = ` -# example increment function -def increment: . + 1; - -# converts value to array if not already -def toArray: if (. | type) == "array" then . else [.] end; - -# deletes key if empty array -def delifempty(k): (if k == [] then del(k) | . else . end); - -# sets inputted value to "empty" if empty array -def remifempty: (if . == [] then empty else . end); - -# gets first element of array (if array) -def getfirst: if (. | type) == "array" then .[0] else . end; - -# generates a curie from a type and id -def generateCurie(idType; id): id | getfirst | split(":") | last | idType + ":" + .; - -# generates a curie from a type and id [string] (by checking queryInputs) -def generateCurieWithInputs(idType; id; queryInputs): (id | getfirst) as $id | reduce (queryInputs | toArray | .[]) as $input (""; if ($id | ascii_upcase | contains($input | ascii_upcase)) then $input else . end) | idType + ":" + .; - -# getting a nested field from inputted object (seperated by ., ie. drugcentral.bioactivity) -def get_nested_field(field): -. as $obj | reduce (field | split(".") | .[]) as $subfield ($obj; .[$subfield]?); - -# checks if object meets any filter string -def any_filter(filter_strs): -. as $obj | reduce (filter_strs | .[]) as $filter_str ( - false; - . or ( - ($obj | get_nested_field($filter_str | split(":") | first)) == ($filter_str | split(":") | last) - ) -); - -# checks if object meets all filter strings -def all_filter(filter_strs): -. as $obj | reduce (filter_strs | .[]) as $filter_str ( - true; - . and ( - $obj | any_filter([$filter_str | split(":") | last | split(",") | .[] | ($filter_str | split(":") | first) + ":" + .]) - ) -); - -# filters the list that is supplied on all conditions -def list_filter_all(filter_strs): if (. | type) == "array" then [.[] | if . | all_filter(filter_strs) then . else empty end] else empty end; - -# filters the list that is supplied on any conditions -def list_filter_any(filter_strs): if (. | type) == "array" then [.[] | if . | any_filter(filter_strs) then . else empty end] else empty end; -` +const functions = fs.readFileSync(Path.resolve(`${__dirname}/../data/jq/utils.jq`), { encoding: "utf8" }); function generateVariables(variables: JQVariable[]) { - let variableString = ''; - for (const variable of variables) { - variableString += `${variable.value} as ${variable.name} | `; - } - return variableString; + let variableString = ""; + for (const variable of variables) { + variableString += `${variable.value} as ${variable.name} | `; + } + return variableString; } export function generateFilterString(filterString: string, edge: BTEKGOperationObject) { const variables = [ { - name: '$edge', - value: JSON.stringify(edge) - } + name: "$edge", + value: JSON.stringify(edge), + }, ]; - return `${functions}\n${generateVariables(variables)}${filterString}` -} + return `${functions}\n${generateVariables(variables)}${filterString}`; +} From 7df862e79a2aa3a09a354e209bde18d6c8984a11 Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:43:34 -0400 Subject: [PATCH 47/51] fix: ctd jq pair function --- data/jq/pair/ctd.jq | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/data/jq/pair/ctd.jq b/data/jq/pair/ctd.jq index 830c945..017fba1 100644 --- a/data/jq/pair/ctd.jq +++ b/data/jq/pair/ctd.jq @@ -1 +1,18 @@ -reduce (.response | .[]) as $item ({}; .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] = [] + .[generateCurie($edge.association.input_id; $item.Input | ascii_upcase)] + [$item]) | map_values([.]) +reduce (.response | .[]) as $item ( + {}; .[generateCurie($edge.association.input_id; ( + if ($edge.input | type) == "object" then + ($edge.input.queryInputs | toArray)[] | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) + else + ($edge.input | toArray) | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) + end + ))] = [] + + .[generateCurie($edge.association.input_id; ( + if ($edge.input | type) == "object" then + ($edge.input.queryInputs | toArray)[] | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) + else + ($edge.input | toArray) | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) + end + ))] + + [$item] +) | map_values([.]) +# TODO: current setup doesn't error, but only grabs one item. From 00f7c6e40242989b7fdbd82830b68f564a6325ba Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Thu, 12 Oct 2023 13:06:21 -0400 Subject: [PATCH 48/51] style: indent 2 --- src/index.ts | 94 ++++++++++++++++++++++++++-------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/src/index.ts b/src/index.ts index 9d5b1cc..0ed1f0c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,62 +5,62 @@ import CTDTransformer from "./transformers/ctd_transformer"; import SemmedTransformer from "./transformers/semmed_transformer"; import OpenTargetTransformer from "./transformers/opentarget_transformer"; import BaseTransformer from "./transformers/transformer"; -import TRAPITransformer from './transformers/trapi_transformer'; -import EBIProteinTransformer from './transformers/ebi_protein_transformer' +import TRAPITransformer from "./transformers/trapi_transformer"; +import EBIProteinTransformer from "./transformers/ebi_protein_transformer"; import JQTransformer from "./transformers/jq_transformer"; import { BTEQueryObject } from "./types"; const debug = require("debug")("bte:api-response-transform:index"); export { Record } from "./record"; export class Transformer { - private data: BTEQueryObject; - private tf: BaseTransformer; - config: any; - constructor(data: BTEQueryObject, config: any) { - this.data = data; - this.config = config; - this.route(); - } + private data: BTEQueryObject; + private tf: BaseTransformer; + config: any; + constructor(data: BTEQueryObject, config: any) { + this.data = data; + this.config = config; + this.route(); + } - route() { - let api = this.data.edge.association.api_name; - debug(`api name ${api}`); - let tags = this.data.edge.query_operation.tags; - debug(`api tags: ${tags}`); + route() { + const api = this.data.edge.association.api_name; + debug(`api name ${api}`); + const tags = this.data.edge.query_operation.tags; + debug(`api tags: ${tags}`); - // if (!this.data.edge.query_operation.transformer) { - // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) - // } + // if (!this.data.edge.query_operation.transformer) { + // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) + // } - if (this.data.edge.query_operation?.transformer?.pair_jq || this.data.edge.query_operation?.transformer?.wrap_jq) { - // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) - this.tf = new JQTransformer(this.data, { - ...this.config, - wrap: this.data.edge.query_operation.transformer.wrap_jq, - pair: this.data.edge.query_operation.transformer.pair_jq - }) - } else if (tags.includes('bte-trapi')) { - this.tf = new TRAPITransformer(this.data, this.config); - } else if (api.startsWith('SEMMED')) { - this.tf = new SemmedTransformer(this.data, this.config); - } else if (api === 'BioLink API') { - // this.tf = new BiolinkTransformer(this.data, this.config); - this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }) - } else if (api === 'EBI Proteins API') { - // this.tf = new EBIProteinTransformer(this.data, this.config) - this.tf = new JQTransformer(this.data, { ...this.config, type: "ebi" }) - } else if (tags.includes("biothings")) { - this.tf = new JQTransformer(this.data, { ...this.config, type: "biothings" }) - } else if (tags.includes("ctd")) { - this.tf = new JQTransformer(this.data, { ...this.config, type: "ctd" }); - } else if (tags.includes("opentarget")) { - this.tf = new OpenTargetTransformer(this.data, this.config) - } else { - this.tf = new BaseTransformer(this.data, this.config) - } + if (this.data.edge.query_operation?.transformer?.pair_jq || this.data.edge.query_operation?.transformer?.wrap_jq) { + // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) + this.tf = new JQTransformer(this.data, { + ...this.config, + wrap: this.data.edge.query_operation.transformer.wrap_jq, + pair: this.data.edge.query_operation.transformer.pair_jq, + }); + } else if (tags.includes("bte-trapi")) { + this.tf = new TRAPITransformer(this.data, this.config); + } else if (api.startsWith("SEMMED")) { + this.tf = new SemmedTransformer(this.data, this.config); + } else if (api === "BioLink API") { + // this.tf = new BiolinkTransformer(this.data, this.config); + this.tf = new JQTransformer(this.data, { ...this.config, type: "biolink" }); + } else if (api === "EBI Proteins API") { + // this.tf = new EBIProteinTransformer(this.data, this.config) + this.tf = new JQTransformer(this.data, { ...this.config, type: "ebi" }); + } else if (tags.includes("biothings")) { + this.tf = new JQTransformer(this.data, { ...this.config, type: "biothings" }); + } else if (tags.includes("ctd")) { + this.tf = new JQTransformer(this.data, { ...this.config, type: "ctd" }); + } else if (tags.includes("opentarget")) { + this.tf = new OpenTargetTransformer(this.data, this.config); + } else { + this.tf = new BaseTransformer(this.data, this.config); } + } - async transform() { - return await this.tf.transform(); - } + async transform() { + return await this.tf.transform(); + } } From 8d7b43731c13ced63ffc9a8d382508fecf1483c8 Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Thu, 12 Oct 2023 13:06:53 -0400 Subject: [PATCH 49/51] fix: CTD pair function batch support --- data/jq/pair/ctd.jq | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/data/jq/pair/ctd.jq b/data/jq/pair/ctd.jq index 017fba1..a912f1f 100644 --- a/data/jq/pair/ctd.jq +++ b/data/jq/pair/ctd.jq @@ -1,18 +1,23 @@ -reduce (.response | .[]) as $item ( - {}; .[generateCurie($edge.association.input_id; ( - if ($edge.input | type) == "object" then - ($edge.input.queryInputs | toArray)[] | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) - else - ($edge.input | toArray) | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) - end - ))] = [] - + .[generateCurie($edge.association.input_id; ( - if ($edge.input | type) == "object" then - ($edge.input.queryInputs | toArray)[] | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) - else - ($edge.input | toArray) | select(($item.Input | ascii_upcase) | contains(. | ascii_upcase)) - end - ))] +reduce .response[] as $item ( + {}; .[( + if ($edge.input | type) == "object" then + ($edge.input.queryInputs | toArray)[] + else + ($edge.input | toArray)[] + end + ) + | select(($item.Input | ascii_upcase | split(":") | last) == (. | ascii_upcase)) + | generateCurie($edge.association.input_id; .) + ] = [] + + .[( + if ($edge.input | type) == "object" then + ($edge.input.queryInputs | toArray)[] + else + ($edge.input | toArray)[] + end + ) + | select(($item.Input | ascii_upcase | split(":") | last) == (. | ascii_upcase)) + | generateCurie($edge.association.input_id; .) + ] + [$item] ) | map_values([.]) -# TODO: current setup doesn't error, but only grabs one item. From 549e4158a4da9da51acb05287ac29765dede65bb Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Fri, 13 Oct 2023 13:24:45 -0400 Subject: [PATCH 50/51] fix: obtain jq wrap/pair from annotation --- src/index.ts | 6 +++--- src/types.ts | 16 ++++++++++------ 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0ed1f0c..50cf253 100644 --- a/src/index.ts +++ b/src/index.ts @@ -32,12 +32,12 @@ export class Transformer { // console.log(`WE DONT DO THE OP ${api}, ${this.data.edge.query_operation}`) // } - if (this.data.edge.query_operation?.transformer?.pair_jq || this.data.edge.query_operation?.transformer?.wrap_jq) { + if (this.data.edge.query_operation?.transformer?.jq) { // console.log("WE DO THE OP", this.data.edge.query_operation.transformer) this.tf = new JQTransformer(this.data, { ...this.config, - wrap: this.data.edge.query_operation.transformer.wrap_jq, - pair: this.data.edge.query_operation.transformer.pair_jq, + wrap: this.data.edge.query_operation.transformer.jq.wrap, + pair: this.data.edge.query_operation.transformer.jq.pair, }); } else if (tags.includes("bte-trapi")) { this.tf = new TRAPITransformer(this.data, this.config); diff --git a/src/types.ts b/src/types.ts index 417f5c4..384457d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -15,8 +15,12 @@ interface XBTEParametersObject { } interface TransformerObject { - wrap_jq?: string; - pair_jq?: string; + wrap?: string; + pair?: string; +} + +interface TransformerSet { + [transformerPattern: string]: TransformerObject; } interface QueryOperationInterface { @@ -29,7 +33,7 @@ interface QueryOperationInterface { request_body: object; supportBatch: boolean; inputSeparator: string; - transformer: TransformerObject; + transformer: TransformerSet; } interface SmartAPIKGOperationObject { @@ -58,6 +62,6 @@ export interface BTEQueryObject { } export interface JQVariable { - name: string; - value: string; -} \ No newline at end of file + name: string; + value: string; +} From 521504790115b11b88e7d170737ef4f9f0744873 Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:43:05 -0400 Subject: [PATCH 51/51] style: prettier formatting --- __test__/base_transformer.test.ts | 205 +- __test__/biolink_transformers.test.ts | 161 +- __test__/biothings_transformer.test.ts | 148 +- __test__/ctd_transformer.test.ts | 93 +- __test__/data/biolink/edge.json | 96 +- __test__/data/biolink/response.json | 7456 +++-- .../biothings/drug_response_example_edge.json | 117 +- .../biothings/drug_response_get_response.json | 23707 ++++++++-------- .../data/biothings/mychem_example_edge.json | 104 +- __test__/data/biothings/mychem_post.json | 579 +- .../data/biothings/mygene_example_edge.json | 96 +- __test__/data/biothings/mygene_post.json | 383 +- __test__/data/ctd/edge.json | 82 +- __test__/data/ctd/response.json | 42 +- __test__/data/ctd/response2.json | 1483 +- __test__/data/ebi_protein/edge.json | 87 +- __test__/data/ebi_protein/response.json | 9357 +++--- __test__/data/ols/edge.json | 76 +- __test__/data/ols/response.json | 3688 ++- __test__/data/opentarget/edge.json | 82 +- __test__/data/opentarget/response.json | 1439 +- __test__/data/semmedgene/edge.json | 103 +- __test__/data/semmedgene/response.json | 436 +- __test__/ebi_protein_transformer.test.ts | 2 +- __test__/opentarget_transformer.test.ts | 74 +- __test__/record.test.ts | 101 +- __test__/semmed_transformer.test.ts | 110 +- __test__/transformers.test.ts | 248 +- __test__/utils.test.ts | 72 +- src/json_transform/index.ts | 30 +- src/json_transform/types.ts | 16 +- src/json_transform/utils.ts | 209 +- src/transformers/biolink_transformer.ts | 66 +- src/transformers/biothings_transformer.ts | 51 +- src/transformers/cord_transformer.ts | 54 +- src/transformers/ctd_transformer.ts | 39 +- src/transformers/ebi_protein_transformer.ts | 25 +- src/transformers/opentarget_transformer.ts | 11 +- src/transformers/semmed_transformer.ts | 54 +- src/transformers/transformer.ts | 433 +- src/transformers/trapi_transformer.ts | 16 +- src/utils.ts | 24 +- 42 files changed, 26010 insertions(+), 25645 deletions(-) diff --git a/__test__/base_transformer.test.ts b/__test__/base_transformer.test.ts index 7d7214a..db6a758 100644 --- a/__test__/base_transformer.test.ts +++ b/__test__/base_transformer.test.ts @@ -1,121 +1,120 @@ -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; import base_tf from "../src/transformers/transformer"; import fs from "fs"; import path from "path"; -import { JSONDoc } from '../src/json_transform/types'; +import { JSONDoc } from "../src/json_transform/types"; describe("test base transformer", () => { + let response; + let input; - let response; - let input; + beforeEach(() => { + const response_path = path.resolve(__dirname, "./data/ols/response.json"); + response = JSON.parse(fs.readFileSync(response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/ols/edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - beforeEach(() => { - const response_path = path.resolve(__dirname, './data/ols/response.json'); - response = JSON.parse(fs.readFileSync(response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/ols/edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + test("Test pairInputWithAPIResponse function", async () => { + const tf = new base_tf(input, {}); + const res = await tf.pairCurieWithAPIResponse(); + expect(res).toHaveProperty("DOID:9562"); + expect(res["DOID:9562"]).toHaveLength(1); + }); - test("Test pairInputWithAPIResponse function", async () => { - const tf = new base_tf(input, {}); - const res = await tf.pairCurieWithAPIResponse(); - expect(res).toHaveProperty("DOID:9562"); - expect(res["DOID:9562"]).toHaveLength(1); - }) + test("Test wrap function if response is not an array", () => { + const tf = new base_tf(input, {}); + const res = tf.wrap(response); + expect(res).toHaveProperty("_embedded"); + }); - test("Test wrap function if response is not an array", () => { - const tf = new base_tf(input, {}); - const res = tf.wrap(response); - expect(res).toHaveProperty("_embedded"); - }) + test("Test wrap function if response is an array", () => { + const tf = new base_tf(input, {}); + const fake = ["1"]; + const res = tf.wrap(fake); + expect(res).toHaveProperty("data"); + expect(res.data).toEqual(["1"]); + }); - test("Test wrap function if response is an array", () => { - const tf = new base_tf(input, {}); - const fake = ["1"] - const res = tf.wrap(fake); - expect(res).toHaveProperty("data"); - expect(res.data).toEqual(["1"]) - }) + test("Test jsonTransform function", () => { + const tf = new base_tf(input, {}); + const res: JSONDoc = tf.jsonTransform(response); + expect(res).toHaveProperty("has_subclass"); + expect(res.has_subclass[0]).toHaveProperty("DOID"); + expect(res.has_subclass[0].DOID).toEqual("DOID:0110596"); + expect(res.has_subclass[0].name).toEqual("primary ciliary dyskinesia 21"); + expect(res.has_subclass[0].description).toEqual([ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23.", + ]); + }); - test("Test jsonTransform function", () => { - const tf = new base_tf(input, {}); - const res: JSONDoc = tf.jsonTransform(response); - expect(res).toHaveProperty("has_subclass"); - expect(res.has_subclass[0]).toHaveProperty("DOID"); - expect(res.has_subclass[0].DOID).toEqual("DOID:0110596"); - expect(res.has_subclass[0].name).toEqual("primary ciliary dyskinesia 21"); - expect(res.has_subclass[0].description).toEqual([ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23." - ]); - }) + test("Test _updatePublications function if pubmed id is prefixed", () => { + const tf = new base_tf(input, {}); + const fake = { + ref_pmid: "PMID:1233", + }; + const res = tf._updatePublications(fake); + expect(res).not.toHaveProperty("ref_pmid"); + expect(res.publications).toEqual(["PMID:1233"]); + }); - test("Test _updatePublications function if pubmed id is prefixed", () => { - const tf = new base_tf(input, {}); - const fake = { - ref_pmid: "PMID:1233" - } - const res = tf._updatePublications(fake); - expect(res).not.toHaveProperty('ref_pmid'); - expect(res.publications).toEqual(["PMID:1233"]); - }) + test("Test _updatePublications function if pubmed id is NOT prefixed", () => { + const tf = new base_tf(input, {}); + const fake = { + ref_pmid: 1233, + }; + const res = tf._updatePublications(fake); + expect(res).not.toHaveProperty("ref_pmid"); + expect(res.publications).toEqual(["PMID:1233"]); + }); - test("Test _updatePublications function if pubmed id is NOT prefixed", () => { - const tf = new base_tf(input, {}); - const fake = { - ref_pmid: 1233 - } - const res = tf._updatePublications(fake); - expect(res).not.toHaveProperty('ref_pmid'); - expect(res.publications).toEqual(["PMID:1233"]) - }) + test("Test _updatePublications function if pmc id is prefixed", () => { + const tf = new base_tf(input, {}); + const fake = { + ref_pmcid: "PMCID:1233", + }; + const res = tf._updatePublications(fake); + expect(res).not.toHaveProperty("ref_pmcid"); + expect(res.publications).toEqual(["PMCID:1233"]); + }); - test("Test _updatePublications function if pmc id is prefixed", () => { - const tf = new base_tf(input, {}); - const fake = { - ref_pmcid: "PMCID:1233" - } - const res = tf._updatePublications(fake); - expect(res).not.toHaveProperty('ref_pmcid'); - expect(res.publications).toEqual(["PMCID:1233"]); - }) + test("Test _updatePublications function if pmc id is NOT prefixed", () => { + const tf = new base_tf(input, {}); + const fake = { + ref_pmcid: 123, + }; + const res = tf._updatePublications(fake); + expect(res).not.toHaveProperty("ref_pmcid"); + expect(res.publications).toEqual(["PMCID:123"]); + }); - test("Test _updatePublications function if pmc id is NOT prefixed", () => { - const tf = new base_tf(input, {}); - const fake = { - ref_pmcid: 123 - } - const res = tf._updatePublications(fake); - expect(res).not.toHaveProperty('ref_pmcid'); - expect(res.publications).toEqual(["PMCID:123"]) - }) + test("Test extractObjectIDs function if output id type not in result", () => { + const tf = new base_tf(input, {}); + const fake = { + kk: 1, + }; + const res = tf.extractObjectIDs(fake); + expect(res).toEqual([]); + }); - test("Test extractObjectIDs function if output id type not in result", () => { - const tf = new base_tf(input, {}); - const fake = { - kk: 1 - }; - const res = tf.extractObjectIDs(fake); - expect(res).toEqual([]); - }) + test("Test extractObjectIDs function if output id type is in result", () => { + const tf = new base_tf(input, {}); + const fake = { + DOID: 1, + }; + const res = tf.extractObjectIDs(fake); + expect(res).toEqual(["DOID:1"]); + }); - test("Test extractObjectIDs function if output id type is in result", () => { - const tf = new base_tf(input, {}); - const fake = { - DOID: 1 - }; - const res = tf.extractObjectIDs(fake); - expect(res).toEqual(["DOID:1"]); - }) - - test("Test formatRecords function if result is empty", async () => { - const tf = new base_tf(input, {}); - const fake = {}; - const res = await tf.formatRecords("NCBIGene:1017", fake); - expect(res).toEqual([]); - }) -}) + test("Test formatRecords function if result is empty", async () => { + const tf = new base_tf(input, {}); + const fake = {}; + const res = await tf.formatRecords("NCBIGene:1017", fake); + expect(res).toEqual([]); + }); +}); diff --git a/__test__/biolink_transformers.test.ts b/__test__/biolink_transformers.test.ts index cd1d8e1..57214c7 100644 --- a/__test__/biolink_transformers.test.ts +++ b/__test__/biolink_transformers.test.ts @@ -1,96 +1,93 @@ -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; import jq_tf from "../built/transformers/jq_transformer"; import fs from "fs"; import path from "path"; -import { JSONDoc } from '../src/json_transform/types'; +import { JSONDoc } from "../src/json_transform/types"; describe("test biolink transformer", () => { + let response; + let input; - let response; - let input; + beforeEach(() => { + const response_path = path.resolve(__dirname, "./data/biolink/response.json"); + response = JSON.parse(fs.readFileSync(response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/biolink/edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - beforeEach(() => { - const response_path = path.resolve(__dirname, './data/biolink/response.json'); - response = JSON.parse(fs.readFileSync(response_path, {encoding: 'utf8'})); - const edge_path = path.resolve(__dirname, './data/biolink/edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, {encoding: 'utf8'})); - input = { - response, - edge - } - }) + test("test biolink wrapper", async () => { + let tf = new jq_tf(input, { type: "biolink" }); + let res = await tf.wrap(response); + expect(res.associations[0].object.HGNC).toBe("10956"); + expect(res.associations[0].publications[0].id).toBe("21685912"); + expect(res.associations[1]).not.toHaveProperty("publications"); + expect(res.associations[1]).not.toHaveProperty("provided_by"); + }); - test("test biolink wrapper", async () => { - let tf = new jq_tf(input, { type: "biolink" }); - let res = await tf.wrap(response); - expect(res.associations[0].object.HGNC).toBe("10956"); - expect(res.associations[0].publications[0].id).toBe("21685912"); - expect(res.associations[1]).not.toHaveProperty("publications"); - expect(res.associations[1]).not.toHaveProperty("provided_by"); - }); - - test("test biolink wrapper if no association field as root key", async () => { - let tf = new jq_tf(input, { type: "biolink" }); - let res = await tf.wrap({ "data": [] }); - expect(res).toEqual({ "data": [] }) - }); + test("test biolink wrapper if no association field as root key", async () => { + let tf = new jq_tf(input, { type: "biolink" }); + let res = await tf.wrap({ data: [] }); + expect(res).toEqual({ data: [] }); + }); - test("test biolink wrapper if no object id should be prefixed", async () => { - const tf = new jq_tf(input, { type: "biolink" }); - const res = await tf.wrap( - { - associations: [ - { - object: { - id: "MONDO:12345" - } - } - ] - }); - expect(res.associations[0].object.MONDO).toEqual("MONDO:12345") + test("test biolink wrapper if no object id should be prefixed", async () => { + const tf = new jq_tf(input, { type: "biolink" }); + const res = await tf.wrap({ + associations: [ + { + object: { + id: "MONDO:12345", + }, + }, + ], }); + expect(res.associations[0].object.MONDO).toEqual("MONDO:12345"); + }); - test("test biolink wrapper if no object field present", async () => { - const tf = new jq_tf(input, { type: "biolink" }); - const fake_response = { - associations: [ - { - object1: { - id: "MONDO:12345" - } - } - ] - } - const res = await tf.wrap(fake_response); - expect(res).toEqual(fake_response) - }); + test("test biolink wrapper if no object field present", async () => { + const tf = new jq_tf(input, { type: "biolink" }); + const fake_response = { + associations: [ + { + object1: { + id: "MONDO:12345", + }, + }, + ], + }; + const res = await tf.wrap(fake_response); + expect(res).toEqual(fake_response); + }); - test("test biolink wrapper if no object.id field present", async () => { - const tf = new jq_tf(input, { type: "biolink" }); - const fake_response = { - associations: [ - { - object: { - id1: "MONDO:12345" - } - } - ] - } - const res = await tf.wrap(fake_response); - expect(res).toEqual(fake_response) - }); - - test("test biolink jsonTransform function", async () => { - let tf = new jq_tf(input, { type: "biolink" }); - const wrapped_response = await tf.wrap(response); - let res: JSONDoc = tf.jsonTransform(wrapped_response); - expect(res).toHaveProperty("related_to"); - expect(res.related_to[0].HGNC).toEqual("10956"); - expect(res.related_to[0].pubmed[0]).toEqual("21685912"); - expect(res.related_to[0].relation).toEqual("contributes to condition"); - expect(res.related_to[0].source[0]).toEqual("https://archive.monarchinitiative.org/#gwascatalog"); - expect(res.related_to[0].taxid).toEqual("NCBITaxon:9606") - }); + test("test biolink wrapper if no object.id field present", async () => { + const tf = new jq_tf(input, { type: "biolink" }); + const fake_response = { + associations: [ + { + object: { + id1: "MONDO:12345", + }, + }, + ], + }; + const res = await tf.wrap(fake_response); + expect(res).toEqual(fake_response); + }); -}) + test("test biolink jsonTransform function", async () => { + let tf = new jq_tf(input, { type: "biolink" }); + const wrapped_response = await tf.wrap(response); + let res: JSONDoc = tf.jsonTransform(wrapped_response); + expect(res).toHaveProperty("related_to"); + expect(res.related_to[0].HGNC).toEqual("10956"); + expect(res.related_to[0].pubmed[0]).toEqual("21685912"); + expect(res.related_to[0].relation).toEqual("contributes to condition"); + expect(res.related_to[0].source[0]).toEqual("https://archive.monarchinitiative.org/#gwascatalog"); + expect(res.related_to[0].taxid).toEqual("NCBITaxon:9606"); + }); +}); diff --git a/__test__/biothings_transformer.test.ts b/__test__/biothings_transformer.test.ts index 5c194fc..1af7ce7 100644 --- a/__test__/biothings_transformer.test.ts +++ b/__test__/biothings_transformer.test.ts @@ -1,89 +1,87 @@ - import jq_tf from "../src/transformers/jq_transformer"; -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; import fs from "fs"; import path from "path"; describe("test biothings transformer", () => { + describe("test biothings transformer for post query", () => { + let input; + let response; - describe("test biothings transformer for post query", () => { - let input; - let response; - - beforeAll(() => { - const post_query_response_path = path.resolve(__dirname, './data/biothings/mychem_post.json'); - response = JSON.parse(fs.readFileSync(post_query_response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/biothings/mychem_example_edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + beforeAll(() => { + const post_query_response_path = path.resolve(__dirname, "./data/biothings/mychem_post.json"); + response = JSON.parse(fs.readFileSync(post_query_response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/biothings/mychem_example_edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - test("test biothings wrapper", async () => { - let tf = new jq_tf(input, {type: "biothings"}); - let res = await tf.pairCurieWithAPIResponse(); - expect(Object.keys(res)).toHaveLength(2); - expect(res).toHaveProperty("DRUGBANK:DB00188"); - expect(res["DRUGBANK:DB00188"]).toHaveLength(2); - expect(res).not.toHaveProperty("DRUGBANK:DB0000"); - }) - }) + test("test biothings wrapper", async () => { + let tf = new jq_tf(input, { type: "biothings" }); + let res = await tf.pairCurieWithAPIResponse(); + expect(Object.keys(res)).toHaveLength(2); + expect(res).toHaveProperty("DRUGBANK:DB00188"); + expect(res["DRUGBANK:DB00188"]).toHaveLength(2); + expect(res).not.toHaveProperty("DRUGBANK:DB0000"); + }); + }); - describe("test biothings transformer for post query using mygene", () => { - let input; - let response; + describe("test biothings transformer for post query using mygene", () => { + let input; + let response; - beforeAll(() => { - const post_query_response_path = path.resolve(__dirname, './data/biothings/mygene_post.json'); - response = JSON.parse(fs.readFileSync(post_query_response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/biothings/mygene_example_edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + beforeAll(() => { + const post_query_response_path = path.resolve(__dirname, "./data/biothings/mygene_post.json"); + response = JSON.parse(fs.readFileSync(post_query_response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/biothings/mygene_example_edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - test("test biothings wrapper", async () => { - let tf = new jq_tf(input, {type: "biothings"}); - let res = await tf.pairCurieWithAPIResponse(); - expect(Object.keys(res)).toHaveLength(1); - expect(res).toHaveProperty("NCBIGene:1017"); - expect(res["NCBIGene:1017"]).toHaveLength(1); - }) + test("test biothings wrapper", async () => { + let tf = new jq_tf(input, { type: "biothings" }); + let res = await tf.pairCurieWithAPIResponse(); + expect(Object.keys(res)).toHaveLength(1); + expect(res).toHaveProperty("NCBIGene:1017"); + expect(res["NCBIGene:1017"]).toHaveLength(1); + }); - test("test biothings transform", async () => { - let tf = new jq_tf(input, {type: "biothings"}); - let res = await tf.transform(); - expect(res).toHaveLength(27); - expect(res[0]).not.toHaveProperty('ref_pmid'); - expect(res[0]).toHaveProperty('publications', ["PMID:21873635"]); - }) - }) + test("test biothings transform", async () => { + let tf = new jq_tf(input, { type: "biothings" }); + let res = await tf.transform(); + expect(res).toHaveLength(27); + expect(res[0]).not.toHaveProperty("ref_pmid"); + expect(res[0]).toHaveProperty("publications", ["PMID:21873635"]); + }); + }); - describe("test biothings transformer for get query", () => { - let input; - let response; + describe("test biothings transformer for get query", () => { + let input; + let response; - beforeAll(() => { - const get_query_response_path = path.resolve(__dirname, './data/biothings/drug_response_get_response.json'); - response = JSON.parse(fs.readFileSync(get_query_response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/biothings/drug_response_example_edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + beforeAll(() => { + const get_query_response_path = path.resolve(__dirname, "./data/biothings/drug_response_get_response.json"); + response = JSON.parse(fs.readFileSync(get_query_response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/biothings/drug_response_example_edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - test("test biothings wrapper", async () => { - let tf = new jq_tf(input, {type: "biothings"}); - let res = await tf.pairCurieWithAPIResponse(); - expect(Object.keys(res)).toHaveLength(1); - expect(res).toHaveProperty("PUBCHEM:11373846"); - expect(res["PUBCHEM:11373846"]).toHaveLength(1); - }) - }) -}) + test("test biothings wrapper", async () => { + let tf = new jq_tf(input, { type: "biothings" }); + let res = await tf.pairCurieWithAPIResponse(); + expect(Object.keys(res)).toHaveLength(1); + expect(res).toHaveProperty("PUBCHEM:11373846"); + expect(res["PUBCHEM:11373846"]).toHaveLength(1); + }); + }); +}); diff --git a/__test__/ctd_transformer.test.ts b/__test__/ctd_transformer.test.ts index 089ef2e..eca2c93 100644 --- a/__test__/ctd_transformer.test.ts +++ b/__test__/ctd_transformer.test.ts @@ -1,56 +1,55 @@ -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; import fs from "fs"; import path from "path"; import jq_tf from "../built/transformers/jq_transformer"; describe("test ctd transformer", () => { + let response; + let input; - let response; - let input; + beforeEach(() => { + const response_path = path.resolve(__dirname, "./data/ctd/response.json"); + response = JSON.parse(fs.readFileSync(response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/ctd/edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - beforeEach(() => { - const response_path = path.resolve(__dirname, './data/ctd/response.json'); - response = JSON.parse(fs.readFileSync(response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/ctd/edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + test("test ctd wrapper", async () => { + let tf = new jq_tf(input, { type: "ctd" }); + let res = await tf.wrap(response); + expect(res).toHaveProperty("data"); + expect(res.data).toHaveLength(2); + expect(res.data[0].PubMedIDs).toEqual(["21559390"]); + expect(res.data[0].DiseaseID).toEqual("MESH:D008545"); + }); - test("test ctd wrapper", async () => { - let tf = new jq_tf(input, { type: "ctd" }); - let res = await tf.wrap(response); - expect(res).toHaveProperty("data"); - expect(res.data).toHaveLength(2); - expect(res.data[0].PubMedIDs).toEqual(["21559390"]); - expect(res.data[0].DiseaseID).toEqual("MESH:D008545"); - }) + test("test ctd wrapper if pubmed id field is not string", async () => { + const tf = new jq_tf(input, { type: "ctd" }); + const fake = [ + { + DiseaseID: "MESH:D008545", + }, + ]; + const res = await tf.wrap(fake); + expect(res).toHaveProperty("data"); + expect(res.data).toHaveLength(1); + expect(res.data[0].PubMedIDs).toBeUndefined; + }); - test("test ctd wrapper if pubmed id field is not string", async () => { - const tf = new jq_tf(input, { type: "ctd" }); - const fake = [ - { - DiseaseID: "MESH:D008545" - } - ] - const res = await tf.wrap(fake); - expect(res).toHaveProperty("data"); - expect(res.data).toHaveLength(1); - expect(res.data[0].PubMedIDs).toBeUndefined; - }) - - test("test ctd wrapper if disease id field is not string", async () => { - const tf = new jq_tf(input, { type: "ctd" }); - const fake = [ - { - PubMedID: "12345" - } - ] - const res = await tf.wrap(fake); - expect(res).toHaveProperty("data"); - expect(res.data).toHaveLength(1); - expect(res.data[0].DiseaseIDs).toBeUndefined; - }) -}) + test("test ctd wrapper if disease id field is not string", async () => { + const tf = new jq_tf(input, { type: "ctd" }); + const fake = [ + { + PubMedID: "12345", + }, + ]; + const res = await tf.wrap(fake); + expect(res).toHaveProperty("data"); + expect(res.data).toHaveLength(1); + expect(res.data[0].DiseaseIDs).toBeUndefined; + }); +}); diff --git a/__test__/data/biolink/edge.json b/__test__/data/biolink/edge.json index 23c59cb..ae7099b 100644 --- a/__test__/data/biolink/edge.json +++ b/__test__/data/biolink/edge.json @@ -1,56 +1,44 @@ { - "input": "DOID:678", - "query_operation": { - "params": { - "disease_id": "{inputs[0]}", - "rows": 200 - }, - "path": "/bioentity/disease/{disease_id}/genes", - "path_params": [ - "disease_id" - ], - "method": "get", - "server": "https://api.monarchinitiative.org/api", - "tags": [ - "anatomy", - "disease", - "gene", - "phenotype", - "pathway", - "annotation", - "query", - "translator", - "biolink" - ], - "supportBatch": false + "input": "DOID:678", + "query_operation": { + "params": { + "disease_id": "{inputs[0]}", + "rows": 200 }, - "association": { - "input_id": "MONDO", - "input_type": "Disease", - "output_id": "HGNC", - "output_type": "Gene", - "predicate": "related_to", - "api_name": "BioLink API", - "smartapi": { - "id": "d22b657426375a5295e7da8a303b9893", - "meta": { - "ETag": "62f25b12c5457f6924db7929d91e7d5a2e70de291e7672aebf06fa08d1526d9d", - "github_username": "newgene", - "timestamp": "2020-05-28T00:02:40.483712", - "uptime_status": "good", - "uptime_ts": "2020-06-11T00:05:38.030503", - "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biolink/openapi.yml" - } - } - }, - "response_mapping": { - "related_to": { - "HGNC": "associations.object.HGNC", - "pubmed": "associations.publications.id", - "relation": "associations.relation.label", - "source": "associations.provided_by", - "taxid": "associations.object.taxon.id" - } - }, - "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" -} \ No newline at end of file + "path": "/bioentity/disease/{disease_id}/genes", + "path_params": ["disease_id"], + "method": "get", + "server": "https://api.monarchinitiative.org/api", + "tags": ["anatomy", "disease", "gene", "phenotype", "pathway", "annotation", "query", "translator", "biolink"], + "supportBatch": false + }, + "association": { + "input_id": "MONDO", + "input_type": "Disease", + "output_id": "HGNC", + "output_type": "Gene", + "predicate": "related_to", + "api_name": "BioLink API", + "smartapi": { + "id": "d22b657426375a5295e7da8a303b9893", + "meta": { + "ETag": "62f25b12c5457f6924db7929d91e7d5a2e70de291e7672aebf06fa08d1526d9d", + "github_username": "newgene", + "timestamp": "2020-05-28T00:02:40.483712", + "uptime_status": "good", + "uptime_ts": "2020-06-11T00:05:38.030503", + "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biolink/openapi.yml" + } + } + }, + "response_mapping": { + "related_to": { + "HGNC": "associations.object.HGNC", + "pubmed": "associations.publications.id", + "relation": "associations.relation.label", + "source": "associations.provided_by", + "taxid": "associations.object.taxon.id" + } + }, + "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" +} diff --git a/__test__/data/biolink/response.json b/__test__/data/biolink/response.json index b707993..6d272c6 100644 --- a/__test__/data/biolink/response.json +++ b/__test__/data/biolink/response.json @@ -1,4227 +1,3303 @@ { - "associations": [ + "associations": [ + { + "id": "235d96fe-7a99-4554-8cae-ed2d04e2c0c5", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:10956", + "label": "SLCO1A2", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10956", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONARCH:b8d5e5d72e9364f0e46e", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:bff6d3cb1c2f75352e05", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:10956", + "lbl": "SLCO1A2", + "meta": {} + }, + { + "id": "dbSNP:rs11568563", + "lbl": "rs11568563-?", + "meta": {} + }, + { + "id": "dbSNP:rs7966334", + "lbl": "rs7966334-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs11568563", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs7966334", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs11568563", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs7966334", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs11568563", + "pred": "GENO:0000418", + "obj": "HGNC:10956", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000084453"] + } + }, + { + "sub": "dbSNP:rs7966334", + "pred": "GENO:0000418", + "obj": "HGNC:10956", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000084453"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:21685912", + "label": null + }, + { + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "235d96fe-7a99-4554-8cae-ed2d04e2c0c5", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:10956", + "label": "SLCO1A2", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10956", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONARCH:b8d5e5d72e9364f0e46e", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:bff6d3cb1c2f75352e05", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:10956", + "lbl": "SLCO1A2", + "meta": {} + }, + { + "id": "dbSNP:rs11568563", + "lbl": "rs11568563-?", + "meta": {} + }, + { + "id": "dbSNP:rs7966334", + "lbl": "rs7966334-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs11568563", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs7966334", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs11568563", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs7966334", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b8d5e5d72e9364f0e46e", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs11568563", + "pred": "GENO:0000418", + "obj": "HGNC:10956", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000084453"] + } + }, + { + "sub": "dbSNP:rs7966334", + "pred": "GENO:0000418", + "obj": "HGNC:10956", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000084453"] + } + }, + { + "sub": "MONARCH:bff6d3cb1c2f75352e05", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ] + }, + { + "id": "ed897f98-f18f-45c7-9544-23e30cabfae5", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:11441", + "label": "STX6", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:11441", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "dbSNP:rs57113693", + "lbl": "rs57113693-?", + "meta": {} + }, + { + "id": "HGNC:11441", + "lbl": "STX6", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:b21943dda0e6cab1a2cc", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs1411478", + "lbl": "rs1411478-?", + "meta": {} + }, + { + "id": "MONARCH:b12236aef12f80911955", + "lbl": null, + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b12236aef12f80911955", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b12236aef12f80911955", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b21943dda0e6cab1a2cc", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs57113693", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs1411478", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b12236aef12f80911955", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs57113693", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b12236aef12f80911955", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b21943dda0e6cab1a2cc", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b21943dda0e6cab1a2cc", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "dbSNP:rs1411478", + "pred": "GENO:0000418", + "obj": "HGNC:11441", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000135823"] + } + }, + { + "sub": "MONARCH:b21943dda0e6cab1a2cc", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "dbSNP:rs57113693", + "pred": "GENO:0000418", + "obj": "HGNC:11441", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000135823"] + } + }, + { + "sub": "MONARCH:b12236aef12f80911955", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b21943dda0e6cab1a2cc", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs1411478", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:21685912", + "label": null + }, { - "id": "235d96fe-7a99-4554-8cae-ed2d04e2c0c5", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:10956", - "label": "SLCO1A2", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10956", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONARCH:b8d5e5d72e9364f0e46e", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:bff6d3cb1c2f75352e05", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:10956", - "lbl": "SLCO1A2", - "meta": {} - }, - { - "id": "dbSNP:rs11568563", - "lbl": "rs11568563-?", - "meta": {} - }, - { - "id": "dbSNP:rs7966334", - "lbl": "rs7966334-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs11568563", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs7966334", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs11568563", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs7966334", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs11568563", - "pred": "GENO:0000418", - "obj": "HGNC:10956", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000084453" - ] - } - }, - { - "sub": "dbSNP:rs7966334", - "pred": "GENO:0000418", - "obj": "HGNC:10956", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000084453" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - }, - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "6fe34b22-4aeb-4741-a15b-f381800432fa", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:7189", + "label": "MOBP", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:7189", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:7189", + "lbl": "MOBP", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs10675541", + "lbl": "rs10675541-?", + "meta": {} + }, + { + "id": "MONARCH:baf5fc97243ba2edc95b", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:b80135ac696316362aa5", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs1768208", + "lbl": "rs1768208-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:baf5fc97243ba2edc95b", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:baf5fc97243ba2edc95b", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs1768208", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs1768208", + "pred": "GENO:0000418", + "obj": "HGNC:7189", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000168314"] + } + }, + { + "sub": "MONARCH:b80135ac696316362aa5", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "dbSNP:rs10675541", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b80135ac696316362aa5", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "dbSNP:rs10675541", + "pred": "GENO:0000418", + "obj": "HGNC:7189", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000168314"] + } + }, + { + "sub": "MONARCH:baf5fc97243ba2edc95b", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b80135ac696316362aa5", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs10675541", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:baf5fc97243ba2edc95b", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b80135ac696316362aa5", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs1768208", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b80135ac696316362aa5", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:baf5fc97243ba2edc95b", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:21685912", + "label": null + }, + { + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "2455fad5-3def-42bd-ba80-65d7367e22f0", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "dbSNP:rs8070723", + "lbl": "rs8070723-?", + "meta": {} + }, + { + "id": "MONARCH:b480853ce4d1a34c50d5", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:b7b93d9141686602cb53", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "PMID:31059154", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs242557", + "lbl": "rs242557-G", + "meta": {} + } + ], + "edges": [ + { + "sub": "dbSNP:rs242557", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000277956"] + } + }, + { + "sub": "dbSNP:rs8070723", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b480853ce4d1a34c50d5", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs242557", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "dbSNP:rs8070723", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000186868"] + } + }, + { + "sub": "MONARCH:b480853ce4d1a34c50d5", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b480853ce4d1a34c50d5", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "dbSNP:rs8070723", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000277956"] + } + }, + { + "sub": "MONARCH:b480853ce4d1a34c50d5", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs8070723", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs242557", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs242557", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000186868"] + } + }, + { + "sub": "dbSNP:rs242557", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000276155"] + } + }, + { + "sub": "dbSNP:rs8070723", + "pred": "GENO:0000418", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000276155"] + } + }, + { + "sub": "MONARCH:b7b93d9141686602cb53", + "pred": "dc:source", + "obj": "PMID:31059154", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b480853ce4d1a34c50d5", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ { - "id": "235d96fe-7a99-4554-8cae-ed2d04e2c0c5", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:10956", - "label": "SLCO1A2", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10956", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONARCH:b8d5e5d72e9364f0e46e", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:bff6d3cb1c2f75352e05", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:10956", - "lbl": "SLCO1A2", - "meta": {} - }, - { - "id": "dbSNP:rs11568563", - "lbl": "rs11568563-?", - "meta": {} - }, - { - "id": "dbSNP:rs7966334", - "lbl": "rs7966334-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs11568563", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs7966334", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs11568563", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs7966334", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b8d5e5d72e9364f0e46e", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs11568563", - "pred": "GENO:0000418", - "obj": "HGNC:10956", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000084453" - ] - } - }, - { - "sub": "dbSNP:rs7966334", - "pred": "GENO:0000418", - "obj": "HGNC:10956", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000084453" - ] - } - }, - { - "sub": "MONARCH:bff6d3cb1c2f75352e05", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ] + "id": "PMID:21685912", + "label": null }, { - "id": "ed897f98-f18f-45c7-9544-23e30cabfae5", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:11441", - "label": "STX6", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:11441", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "dbSNP:rs57113693", - "lbl": "rs57113693-?", - "meta": {} - }, - { - "id": "HGNC:11441", - "lbl": "STX6", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:b21943dda0e6cab1a2cc", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs1411478", - "lbl": "rs1411478-?", - "meta": {} - }, - { - "id": "MONARCH:b12236aef12f80911955", - "lbl": null, - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b12236aef12f80911955", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b12236aef12f80911955", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b21943dda0e6cab1a2cc", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs57113693", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs1411478", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b12236aef12f80911955", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs57113693", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b12236aef12f80911955", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b21943dda0e6cab1a2cc", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b21943dda0e6cab1a2cc", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "dbSNP:rs1411478", - "pred": "GENO:0000418", - "obj": "HGNC:11441", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000135823" - ] - } - }, - { - "sub": "MONARCH:b21943dda0e6cab1a2cc", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "dbSNP:rs57113693", - "pred": "GENO:0000418", - "obj": "HGNC:11441", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000135823" - ] - } - }, - { - "sub": "MONARCH:b12236aef12f80911955", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b21943dda0e6cab1a2cc", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs1411478", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - }, - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "PMID:31059154", + "label": null + } + ] + }, + { + "id": "19ffb69d-c358-430c-99ce-58fbe77f0606", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:16281", + "label": "TRIM11", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:16281", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:16281", + "lbl": "TRIM11", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:30066433", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:b313d11967d1241f1a8f", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs564309", + "lbl": "rs564309-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b313d11967d1241f1a8f", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b313d11967d1241f1a8f", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "dbSNP:rs564309", + "pred": "GENO:0000418", + "obj": "HGNC:16281", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000154370"] + } + }, + { + "sub": "MONARCH:b313d11967d1241f1a8f", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs564309", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs564309", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b313d11967d1241f1a8f", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b313d11967d1241f1a8f", + "pred": "dc:source", + "obj": "PMID:30066433", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + } + ] + }, + "evidence_types": [ { - "id": "6fe34b22-4aeb-4741-a15b-f381800432fa", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:7189", - "label": "MOBP", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:7189", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:7189", - "lbl": "MOBP", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs10675541", - "lbl": "rs10675541-?", - "meta": {} - }, - { - "id": "MONARCH:baf5fc97243ba2edc95b", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:b80135ac696316362aa5", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs1768208", - "lbl": "rs1768208-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:baf5fc97243ba2edc95b", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:baf5fc97243ba2edc95b", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs1768208", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs1768208", - "pred": "GENO:0000418", - "obj": "HGNC:7189", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000168314" - ] - } - }, - { - "sub": "MONARCH:b80135ac696316362aa5", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "dbSNP:rs10675541", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b80135ac696316362aa5", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "dbSNP:rs10675541", - "pred": "GENO:0000418", - "obj": "HGNC:7189", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000168314" - ] - } - }, - { - "sub": "MONARCH:baf5fc97243ba2edc95b", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b80135ac696316362aa5", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs10675541", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:baf5fc97243ba2edc95b", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b80135ac696316362aa5", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs1768208", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b80135ac696316362aa5", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:baf5fc97243ba2edc95b", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - }, - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:30066433", + "label": null + } + ] + }, + { + "id": "3b920304-9d9e-48e5-ab6a-7206e10bd013", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:8973", + "label": "PIK3C2G", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:8973", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONARCH:b947b34d45f05ce3a4a1", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:30066433", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:8973", + "lbl": "PIK3C2G", + "meta": {} + }, + { + "id": "dbSNP:rs621042", + "lbl": "rs621042-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b947b34d45f05ce3a4a1", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs621042", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b947b34d45f05ce3a4a1", + "pred": "dc:source", + "obj": "PMID:30066433", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "dbSNP:rs621042", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b947b34d45f05ce3a4a1", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "dbSNP:rs621042", + "pred": "GENO:0000418", + "obj": "HGNC:8973", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000139144"] + } + }, + { + "sub": "MONARCH:b947b34d45f05ce3a4a1", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b947b34d45f05ce3a4a1", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + } + ] + }, + "evidence_types": [ { - "id": "2455fad5-3def-42bd-ba80-65d7367e22f0", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "dbSNP:rs8070723", - "lbl": "rs8070723-?", - "meta": {} - }, - { - "id": "MONARCH:b480853ce4d1a34c50d5", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:b7b93d9141686602cb53", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "PMID:31059154", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs242557", - "lbl": "rs242557-G", - "meta": {} - } - ], - "edges": [ - { - "sub": "dbSNP:rs242557", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000277956" - ] - } - }, - { - "sub": "dbSNP:rs8070723", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b480853ce4d1a34c50d5", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs242557", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "dbSNP:rs8070723", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000186868" - ] - } - }, - { - "sub": "MONARCH:b480853ce4d1a34c50d5", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b480853ce4d1a34c50d5", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "dbSNP:rs8070723", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000277956" - ] - } - }, - { - "sub": "MONARCH:b480853ce4d1a34c50d5", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs8070723", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs242557", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs242557", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000186868" - ] - } - }, - { - "sub": "dbSNP:rs242557", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000276155" - ] - } - }, - { - "sub": "dbSNP:rs8070723", - "pred": "GENO:0000418", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000276155" - ] - } - }, - { - "sub": "MONARCH:b7b93d9141686602cb53", - "pred": "dc:source", - "obj": "PMID:31059154", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b480853ce4d1a34c50d5", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - }, - { - "id": "PMID:31059154", - "label": null - } - ] + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:30066433", + "label": null + } + ] + }, + { + "id": "05a128c1-4f3a-46fa-8b00-14c7e40b544e", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:2720", + "label": "ASAP1", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:2720", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "dbSNP:rs2045091", + "lbl": "rs2045091-?", + "meta": {} + }, + { + "id": "HGNC:2720", + "lbl": "ASAP1", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "MONARCH:bcfb6527099eac18aad6", + "lbl": null, + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:bcfb6527099eac18aad6", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "dbSNP:rs2045091", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs2045091", + "pred": "GENO:0000418", + "obj": "HGNC:2720", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000153317"] + } + }, + { + "sub": "MONARCH:bcfb6527099eac18aad6", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:bcfb6527099eac18aad6", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:bcfb6527099eac18aad6", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs2045091", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:bcfb6527099eac18aad6", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + } + ] + }, + "evidence_types": [ { - "id": "19ffb69d-c358-430c-99ce-58fbe77f0606", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:16281", - "label": "TRIM11", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:16281", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:16281", - "lbl": "TRIM11", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:30066433", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:b313d11967d1241f1a8f", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs564309", - "lbl": "rs564309-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b313d11967d1241f1a8f", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b313d11967d1241f1a8f", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "dbSNP:rs564309", - "pred": "GENO:0000418", - "obj": "HGNC:16281", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000154370" - ] - } - }, - { - "sub": "MONARCH:b313d11967d1241f1a8f", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs564309", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs564309", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b313d11967d1241f1a8f", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b313d11967d1241f1a8f", - "pred": "dc:source", - "obj": "PMID:30066433", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:30066433", - "label": null - } - ] + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "f78c3137-3ae6-4111-96bf-3419bb5964b7", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:3255", + "label": "EIF2AK3", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:3255", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:3255", + "lbl": "EIF2AK3", + "meta": {} + }, + { + "id": "dbSNP:rs7571971", + "lbl": "rs7571971-?", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:b7793c846f45fc55317c", + "lbl": null, + "meta": {} + } + ], + "edges": [ + { + "sub": "dbSNP:rs7571971", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs7571971", + "pred": "GENO:0000418", + "obj": "HGNC:3255", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000172071"] + } + }, + { + "sub": "MONARCH:b7793c846f45fc55317c", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b7793c846f45fc55317c", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b7793c846f45fc55317c", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b7793c846f45fc55317c", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b7793c846f45fc55317c", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs7571971", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ { - "id": "3b920304-9d9e-48e5-ab6a-7206e10bd013", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:8973", - "label": "PIK3C2G", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:8973", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONARCH:b947b34d45f05ce3a4a1", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:30066433", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:8973", - "lbl": "PIK3C2G", - "meta": {} - }, - { - "id": "dbSNP:rs621042", - "lbl": "rs621042-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b947b34d45f05ce3a4a1", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs621042", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b947b34d45f05ce3a4a1", - "pred": "dc:source", - "obj": "PMID:30066433", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "dbSNP:rs621042", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b947b34d45f05ce3a4a1", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "dbSNP:rs621042", - "pred": "GENO:0000418", - "obj": "HGNC:8973", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000139144" - ] - } - }, - { - "sub": "MONARCH:b947b34d45f05ce3a4a1", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b947b34d45f05ce3a4a1", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:30066433", - "label": null - } - ] + "id": "PMID:21685912", + "label": null + } + ] + }, + { + "id": "04b97683-6366-4ae2-93d3-00fda16ef36d", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:1707", + "label": "CD8B (human)", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:1707", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONARCH:b59f9ae4664cd4dab3df", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:1707", + "lbl": "CD8B (human)", + "meta": {} + }, + { + "id": "dbSNP:rs6547705", + "lbl": "rs6547705-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b59f9ae4664cd4dab3df", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b59f9ae4664cd4dab3df", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs6547705", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs6547705", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs6547705", + "pred": "GENO:0000418", + "obj": "HGNC:1707", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000172116"] + } + }, + { + "sub": "MONARCH:b59f9ae4664cd4dab3df", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b59f9ae4664cd4dab3df", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b59f9ae4664cd4dab3df", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ { - "id": "05a128c1-4f3a-46fa-8b00-14c7e40b544e", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:2720", - "label": "ASAP1", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:2720", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "dbSNP:rs2045091", - "lbl": "rs2045091-?", - "meta": {} - }, - { - "id": "HGNC:2720", - "lbl": "ASAP1", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "MONARCH:bcfb6527099eac18aad6", - "lbl": null, - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:bcfb6527099eac18aad6", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "dbSNP:rs2045091", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs2045091", - "pred": "GENO:0000418", - "obj": "HGNC:2720", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000153317" - ] - } - }, - { - "sub": "MONARCH:bcfb6527099eac18aad6", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:bcfb6527099eac18aad6", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:bcfb6527099eac18aad6", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs2045091", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:bcfb6527099eac18aad6", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "PMID:21685912", + "label": null + } + ] + }, + { + "id": "170a17e2-6493-478b-8101-fb82c70560bb", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:10472", + "label": "RUNX2", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10472", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:10472", + "lbl": "RUNX2", + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "MONARCH:b913e48d13bd6fc4cc89", + "lbl": null, + "meta": {} + }, + { + "id": "dbSNP:rs35740963", + "lbl": "rs35740963-?", + "meta": {} + } + ], + "edges": [ + { + "sub": "dbSNP:rs35740963", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b913e48d13bd6fc4cc89", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs35740963", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "dbSNP:rs35740963", + "pred": "GENO:0000418", + "obj": "HGNC:10472", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000124813"] + } + }, + { + "sub": "MONARCH:b913e48d13bd6fc4cc89", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b913e48d13bd6fc4cc89", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b913e48d13bd6fc4cc89", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b913e48d13bd6fc4cc89", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ { - "id": "f78c3137-3ae6-4111-96bf-3419bb5964b7", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:3255", - "label": "EIF2AK3", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:3255", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:3255", - "lbl": "EIF2AK3", - "meta": {} - }, - { - "id": "dbSNP:rs7571971", - "lbl": "rs7571971-?", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:b7793c846f45fc55317c", - "lbl": null, - "meta": {} - } - ], - "edges": [ - { - "sub": "dbSNP:rs7571971", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs7571971", - "pred": "GENO:0000418", - "obj": "HGNC:3255", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000172071" - ] - } - }, - { - "sub": "MONARCH:b7793c846f45fc55317c", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b7793c846f45fc55317c", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b7793c846f45fc55317c", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b7793c846f45fc55317c", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b7793c846f45fc55317c", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs7571971", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - } - ] + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "3e415613-38f7-4b2b-89da-2b484c9b4950", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:11205", + "label": "SP1", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:11205", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "dbSNP:rs147124286", + "lbl": "rs147124286-?", + "meta": {} + }, + { + "id": "MONARCH:b3eb6fdfcaa183e0c0fd", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "PMID:30089514", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "HGNC:11205", + "lbl": "SP1", + "meta": {} + } + ], + "edges": [ + { + "sub": "dbSNP:rs147124286", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "dbSNP:rs147124286", + "pred": "GENO:0000418", + "obj": "HGNC:11205", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000185591"] + } + }, + { + "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", + "pred": "dc:source", + "obj": "PMID:30089514", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs147124286", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + } + ] + }, + "evidence_types": [ { - "id": "04b97683-6366-4ae2-93d3-00fda16ef36d", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:1707", - "label": "CD8B (human)", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:1707", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONARCH:b59f9ae4664cd4dab3df", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:1707", - "lbl": "CD8B (human)", - "meta": {} - }, - { - "id": "dbSNP:rs6547705", - "lbl": "rs6547705-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b59f9ae4664cd4dab3df", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b59f9ae4664cd4dab3df", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs6547705", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs6547705", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs6547705", - "pred": "GENO:0000418", - "obj": "HGNC:1707", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000172116" - ] - } - }, - { - "sub": "MONARCH:b59f9ae4664cd4dab3df", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b59f9ae4664cd4dab3df", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b59f9ae4664cd4dab3df", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - } - ] + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#gwascatalog"], + "publications": [ + { + "id": "PMID:30089514", + "label": null + } + ] + }, + { + "id": "97f764b2-d694-4abf-90d7-d5c1dad93e7a", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null }, + "id": "MONDO:0019037", + "label": "progressive supranuclear palsy", + "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:6119", + "label": "IRF4", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6119", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003304", + "label": "contributes to condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003304", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "dbSNP:rs12203592", + "lbl": "rs12203592-G", + "meta": {} + }, + { + "id": "MONARCH:b97a59c9a610cc0b68b6", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003304", + "lbl": "contributes to condition", + "meta": {} + }, + { + "id": "MONDO:0019037", + "lbl": "progressive supranuclear palsy", + "meta": {} + }, + { + "id": "ECO:0000213", + "lbl": "combinatorial evidence used in automatic assertion", + "meta": {} + }, + { + "id": "PMID:21685912", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:6119", + "lbl": "IRF4", + "meta": {} + } + ], + "edges": [ + { + "sub": "dbSNP:rs12203592", + "pred": "RO:0003304", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["contributes to condition"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b97a59c9a610cc0b68b6", + "pred": "RO:0002558", + "obj": "ECO:0000213", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has evidence"] + } + }, + { + "sub": "dbSNP:rs12203592", + "pred": "GENO:0000418", + "obj": "HGNC:6119", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["has_affected_feature"], + "equivalentOriginalNodeTarget": ["http://ensembl.org/id/ENSG00000137265"] + } + }, + { + "sub": "dbSNP:rs12203592", + "pred": "GENO:0000408", + "obj": "HGNC:6119", + "meta": { + "equivalentOriginalNodeSource": ["http://omim.org/entry/601900.0001"], + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["is_allele_of"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/601900"] + } + }, + { + "sub": "MONARCH:b97a59c9a610cc0b68b6", + "pred": "dc:source", + "obj": "PMID:21685912", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["source"] + } + }, + { + "sub": "MONARCH:b97a59c9a610cc0b68b6", + "pred": "OBAN:association_has_subject", + "obj": "dbSNP:rs12203592", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b97a59c9a610cc0b68b6", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0019037", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_683"] + } + }, + { + "sub": "MONARCH:b97a59c9a610cc0b68b6", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003304", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#gwascatalog"], + "lbl": ["association has predicate"] + } + } + ] + }, + "evidence_types": [ + { + "id": "ECO:0000213", + "label": "combinatorial evidence used in automatic assertion" + } + ], + "provided_by": [ + "https://archive.monarchinitiative.org/#omim.nt", + "https://archive.monarchinitiative.org/#gwascatalog" + ], + "publications": [ { - "id": "170a17e2-6493-478b-8101-fb82c70560bb", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:10472", - "label": "RUNX2", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:10472", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:10472", - "lbl": "RUNX2", - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "MONARCH:b913e48d13bd6fc4cc89", - "lbl": null, - "meta": {} - }, - { - "id": "dbSNP:rs35740963", - "lbl": "rs35740963-?", - "meta": {} - } - ], - "edges": [ - { - "sub": "dbSNP:rs35740963", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b913e48d13bd6fc4cc89", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs35740963", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "dbSNP:rs35740963", - "pred": "GENO:0000418", - "obj": "HGNC:10472", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000124813" - ] - } - }, - { - "sub": "MONARCH:b913e48d13bd6fc4cc89", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b913e48d13bd6fc4cc89", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b913e48d13bd6fc4cc89", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b913e48d13bd6fc4cc89", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "PMID:21685912", + "label": null + } + ] + }, + { + "id": "b0069ce2-0f48-4465-840d-09ad0f1385db", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null }, + "id": "MONDO:0010997", + "label": "classic progressive supranuclear palsy syndrome", + "iri": "http://purl.obolibrary.org/obo/MONDO_0010997", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" + }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003303", + "label": "causes condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003303", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "MONARCH:b0059de380c22028fe8d", + "lbl": null, + "meta": {} + }, + { + "id": "MONARCH:ba99854ec0fa3c9f9a19", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0003303", + "lbl": "causes condition", + "meta": {} + }, + { + "id": "RO:0004015", + "lbl": "is causal susceptibility factor for", + "meta": {} + }, + { + "id": "ECO:0000220", + "lbl": "sequencing assay evidence", + "meta": {} + }, + { + "id": "ECO:0000322", + "lbl": "imported manually asserted information used in automatic assertion", + "meta": {} + }, + { + "id": "MONDO:0010997", + "lbl": "classic progressive supranuclear palsy syndrome", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b0059de380c22028fe8d", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b0059de380c22028fe8d", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0004015", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:ba99854ec0fa3c9f9a19", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has subject"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/157140"] + } + }, + { + "sub": "MONARCH:ba99854ec0fa3c9f9a19", + "pred": "RO:0002558", + "obj": "ECO:0000220", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["has evidence"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0003303", + "obj": "MONDO:0010997", + "meta": { + "equivalentOriginalNodeSource": ["http://omim.org/entry/157140"], + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["causes condition"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/601104"] + } + }, + { + "sub": "MONARCH:ba99854ec0fa3c9f9a19", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0010997", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/601104"] + } + }, + { + "sub": "MONARCH:ba99854ec0fa3c9f9a19", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003303", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0004015", + "obj": "MONDO:0010997", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["is causal susceptibility factor for"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240071"] + } + }, + { + "sub": "MONARCH:b0059de380c22028fe8d", + "pred": "RO:0002558", + "obj": "ECO:0000322", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b0059de380c22028fe8d", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0010997", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240071"] + } + } + ] + }, + "evidence_types": [ { - "id": "3e415613-38f7-4b2b-89da-2b484c9b4950", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:11205", - "label": "SP1", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:11205", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "dbSNP:rs147124286", - "lbl": "rs147124286-?", - "meta": {} - }, - { - "id": "MONARCH:b3eb6fdfcaa183e0c0fd", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "PMID:30089514", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "HGNC:11205", - "lbl": "SP1", - "meta": {} - } - ], - "edges": [ - { - "sub": "dbSNP:rs147124286", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "dbSNP:rs147124286", - "pred": "GENO:0000418", - "obj": "HGNC:11205", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000185591" - ] - } - }, - { - "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", - "pred": "dc:source", - "obj": "PMID:30089514", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b3eb6fdfcaa183e0c0fd", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs147124286", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:30089514", - "label": null - } - ] + "id": "ECO:0000322", + "label": "imported manually asserted information used in automatic assertion" }, { - "id": "97f764b2-d694-4abf-90d7-d5c1dad93e7a", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0019037", - "label": "progressive supranuclear palsy", - "iri": "http://purl.obolibrary.org/obo/MONDO_0019037", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6119", - "label": "IRF4", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6119", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003304", - "label": "contributes to condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003304", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "dbSNP:rs12203592", - "lbl": "rs12203592-G", - "meta": {} - }, - { - "id": "MONARCH:b97a59c9a610cc0b68b6", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003304", - "lbl": "contributes to condition", - "meta": {} - }, - { - "id": "MONDO:0019037", - "lbl": "progressive supranuclear palsy", - "meta": {} - }, - { - "id": "ECO:0000213", - "lbl": "combinatorial evidence used in automatic assertion", - "meta": {} - }, - { - "id": "PMID:21685912", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:6119", - "lbl": "IRF4", - "meta": {} - } - ], - "edges": [ - { - "sub": "dbSNP:rs12203592", - "pred": "RO:0003304", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "contributes to condition" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b97a59c9a610cc0b68b6", - "pred": "RO:0002558", - "obj": "ECO:0000213", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "dbSNP:rs12203592", - "pred": "GENO:0000418", - "obj": "HGNC:6119", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "has_affected_feature" - ], - "equivalentOriginalNodeTarget": [ - "http://ensembl.org/id/ENSG00000137265" - ] - } - }, - { - "sub": "dbSNP:rs12203592", - "pred": "GENO:0000408", - "obj": "HGNC:6119", - "meta": { - "equivalentOriginalNodeSource": [ - "http://omim.org/entry/601900.0001" - ], - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "is_allele_of" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/601900" - ] - } - }, - { - "sub": "MONARCH:b97a59c9a610cc0b68b6", - "pred": "dc:source", - "obj": "PMID:21685912", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "source" - ] - } - }, - { - "sub": "MONARCH:b97a59c9a610cc0b68b6", - "pred": "OBAN:association_has_subject", - "obj": "dbSNP:rs12203592", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b97a59c9a610cc0b68b6", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0019037", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_683" - ] - } - }, - { - "sub": "MONARCH:b97a59c9a610cc0b68b6", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003304", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "lbl": [ - "association has predicate" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000213", - "label": "combinatorial evidence used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#omim.nt", - "https://archive.monarchinitiative.org/#gwascatalog" - ], - "publications": [ - { - "id": "PMID:21685912", - "label": null - } - ] + "id": "ECO:0000220", + "label": "sequencing assay evidence" + } + ], + "provided_by": [ + "https://archive.monarchinitiative.org/#omim.nt", + "https://archive.monarchinitiative.org/#orphanet" + ], + "publications": [] + }, + { + "id": "a3399926-b498-45c1-b0ce-592675cbab27", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0009839", + "label": "progressive supranuclear palsy-parkinsonism syndrome", + "iri": "http://purl.obolibrary.org/obo/MONDO_0009839", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0003303", + "label": "causes condition", + "iri": "http://purl.obolibrary.org/obo/RO_0003303", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONARCH:b85bcb6cf62af8d4817c", + "lbl": null, + "meta": {} + }, + { + "id": "MONDO:0009839", + "lbl": "progressive supranuclear palsy-parkinsonism syndrome", + "meta": {} + }, + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "RO:0003303", + "lbl": "causes condition", + "meta": {} + }, + { + "id": "MONARCH:b2154b8e8c6888e31250", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0004015", + "lbl": "is causal susceptibility factor for", + "meta": {} + }, + { + "id": "ECO:0000220", + "lbl": "sequencing assay evidence", + "meta": {} + }, + { + "id": "ECO:0000322", + "lbl": "imported manually asserted information used in automatic assertion", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b85bcb6cf62af8d4817c", + "pred": "RO:0002558", + "obj": "ECO:0000220", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b85bcb6cf62af8d4817c", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has subject"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/157140"] + } + }, + { + "sub": "MONARCH:b85bcb6cf62af8d4817c", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0003303", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b2154b8e8c6888e31250", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0004015", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0004015", + "obj": "MONDO:0009839", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["is causal susceptibility factor for"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240085"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0003303", + "obj": "MONDO:0009839", + "meta": { + "equivalentOriginalNodeSource": ["http://omim.org/entry/157140"], + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["causes condition"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/260540"] + } + }, + { + "sub": "MONARCH:b2154b8e8c6888e31250", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b85bcb6cf62af8d4817c", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0009839", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#omim.nt"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://omim.org/entry/260540"] + } + }, + { + "sub": "MONARCH:b2154b8e8c6888e31250", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0009839", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240085"] + } + }, + { + "sub": "MONARCH:b2154b8e8c6888e31250", + "pred": "RO:0002558", + "obj": "ECO:0000322", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["has evidence"] + } + } + ] + }, + "evidence_types": [ { - "id": "b0069ce2-0f48-4465-840d-09ad0f1385db", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0010997", - "label": "classic progressive supranuclear palsy syndrome", - "iri": "http://purl.obolibrary.org/obo/MONDO_0010997", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003303", - "label": "causes condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003303", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "MONARCH:b0059de380c22028fe8d", - "lbl": null, - "meta": {} - }, - { - "id": "MONARCH:ba99854ec0fa3c9f9a19", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0003303", - "lbl": "causes condition", - "meta": {} - }, - { - "id": "RO:0004015", - "lbl": "is causal susceptibility factor for", - "meta": {} - }, - { - "id": "ECO:0000220", - "lbl": "sequencing assay evidence", - "meta": {} - }, - { - "id": "ECO:0000322", - "lbl": "imported manually asserted information used in automatic assertion", - "meta": {} - }, - { - "id": "MONDO:0010997", - "lbl": "classic progressive supranuclear palsy syndrome", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b0059de380c22028fe8d", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b0059de380c22028fe8d", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0004015", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:ba99854ec0fa3c9f9a19", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has subject" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/157140" - ] - } - }, - { - "sub": "MONARCH:ba99854ec0fa3c9f9a19", - "pred": "RO:0002558", - "obj": "ECO:0000220", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0003303", - "obj": "MONDO:0010997", - "meta": { - "equivalentOriginalNodeSource": [ - "http://omim.org/entry/157140" - ], - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "causes condition" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/601104" - ] - } - }, - { - "sub": "MONARCH:ba99854ec0fa3c9f9a19", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0010997", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/601104" - ] - } - }, - { - "sub": "MONARCH:ba99854ec0fa3c9f9a19", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003303", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0004015", - "obj": "MONDO:0010997", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "is causal susceptibility factor for" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240071" - ] - } - }, - { - "sub": "MONARCH:b0059de380c22028fe8d", - "pred": "RO:0002558", - "obj": "ECO:0000322", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b0059de380c22028fe8d", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0010997", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240071" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000322", - "label": "imported manually asserted information used in automatic assertion" - }, - { - "id": "ECO:0000220", - "label": "sequencing assay evidence" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#omim.nt", - "https://archive.monarchinitiative.org/#orphanet" - ], - "publications": [] + "id": "ECO:0000322", + "label": "imported manually asserted information used in automatic assertion" }, { - "id": "a3399926-b498-45c1-b0ce-592675cbab27", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0009839", - "label": "progressive supranuclear palsy-parkinsonism syndrome", - "iri": "http://purl.obolibrary.org/obo/MONDO_0009839", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0003303", - "label": "causes condition", - "iri": "http://purl.obolibrary.org/obo/RO_0003303", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONARCH:b85bcb6cf62af8d4817c", - "lbl": null, - "meta": {} - }, - { - "id": "MONDO:0009839", - "lbl": "progressive supranuclear palsy-parkinsonism syndrome", - "meta": {} - }, - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "RO:0003303", - "lbl": "causes condition", - "meta": {} - }, - { - "id": "MONARCH:b2154b8e8c6888e31250", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0004015", - "lbl": "is causal susceptibility factor for", - "meta": {} - }, - { - "id": "ECO:0000220", - "lbl": "sequencing assay evidence", - "meta": {} - }, - { - "id": "ECO:0000322", - "lbl": "imported manually asserted information used in automatic assertion", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b85bcb6cf62af8d4817c", - "pred": "RO:0002558", - "obj": "ECO:0000220", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b85bcb6cf62af8d4817c", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has subject" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/157140" - ] - } - }, - { - "sub": "MONARCH:b85bcb6cf62af8d4817c", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0003303", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b2154b8e8c6888e31250", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0004015", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0004015", - "obj": "MONDO:0009839", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "is causal susceptibility factor for" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240085" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0003303", - "obj": "MONDO:0009839", - "meta": { - "equivalentOriginalNodeSource": [ - "http://omim.org/entry/157140" - ], - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "causes condition" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/260540" - ] - } - }, - { - "sub": "MONARCH:b2154b8e8c6888e31250", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b85bcb6cf62af8d4817c", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0009839", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#omim.nt" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://omim.org/entry/260540" - ] - } - }, - { - "sub": "MONARCH:b2154b8e8c6888e31250", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0009839", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240085" - ] - } - }, - { - "sub": "MONARCH:b2154b8e8c6888e31250", - "pred": "RO:0002558", - "obj": "ECO:0000322", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "has evidence" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000322", - "label": "imported manually asserted information used in automatic assertion" - }, - { - "id": "ECO:0000220", - "label": "sequencing assay evidence" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#omim.nt", - "https://archive.monarchinitiative.org/#orphanet" - ], - "publications": [] + "id": "ECO:0000220", + "label": "sequencing assay evidence" + } + ], + "provided_by": [ + "https://archive.monarchinitiative.org/#omim.nt", + "https://archive.monarchinitiative.org/#orphanet" + ], + "publications": [] + }, + { + "id": "56871cfd-f69d-4436-8269-5c77c2b9b018", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0016562", + "label": "progressive supranuclear palsy-pure akinesia with gait freezing syndrome", + "iri": "http://purl.obolibrary.org/obo/MONDO_0016562", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0004015", + "label": "is causal susceptibility factor for", + "iri": "http://purl.obolibrary.org/obo/RO_0004015", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "MONDO:0016562", + "lbl": "progressive supranuclear palsy-pure akinesia with gait freezing syndrome", + "meta": {} + }, + { + "id": "MONARCH:b5002a47e74d904319c5", + "lbl": null, + "meta": {} + }, + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "RO:0004015", + "lbl": "is causal susceptibility factor for", + "meta": {} + }, + { + "id": "ECO:0000322", + "lbl": "imported manually asserted information used in automatic assertion", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b5002a47e74d904319c5", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0004015", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0004015", + "obj": "MONDO:0016562", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["is causal susceptibility factor for"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240094"] + } + }, + { + "sub": "MONARCH:b5002a47e74d904319c5", + "pred": "RO:0002558", + "obj": "ECO:0000322", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b5002a47e74d904319c5", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b5002a47e74d904319c5", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0016562", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240094"] + } + } + ] + }, + "evidence_types": [ { - "id": "56871cfd-f69d-4436-8269-5c77c2b9b018", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0016562", - "label": "progressive supranuclear palsy-pure akinesia with gait freezing syndrome", - "iri": "http://purl.obolibrary.org/obo/MONDO_0016562", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0004015", - "label": "is causal susceptibility factor for", - "iri": "http://purl.obolibrary.org/obo/RO_0004015", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "MONDO:0016562", - "lbl": "progressive supranuclear palsy-pure akinesia with gait freezing syndrome", - "meta": {} - }, - { - "id": "MONARCH:b5002a47e74d904319c5", - "lbl": null, - "meta": {} - }, - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "RO:0004015", - "lbl": "is causal susceptibility factor for", - "meta": {} - }, - { - "id": "ECO:0000322", - "lbl": "imported manually asserted information used in automatic assertion", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b5002a47e74d904319c5", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0004015", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0004015", - "obj": "MONDO:0016562", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "is causal susceptibility factor for" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240094" - ] - } - }, - { - "sub": "MONARCH:b5002a47e74d904319c5", - "pred": "RO:0002558", - "obj": "ECO:0000322", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b5002a47e74d904319c5", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b5002a47e74d904319c5", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0016562", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240094" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000322", - "label": "imported manually asserted information used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "publications": [] + "id": "ECO:0000322", + "label": "imported manually asserted information used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#orphanet"], + "publications": [] + }, + { + "id": "048b6bf7-74b4-434f-a2f3-503b33fe1267", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0016563", + "label": "progressive supranuclear palsy-corticobasal syndrome", + "iri": "http://purl.obolibrary.org/obo/MONDO_0016563", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0004015", + "label": "is causal susceptibility factor for", + "iri": "http://purl.obolibrary.org/obo/RO_0004015", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "MONARCH:b6c862704e0c46445b7c", + "lbl": null, + "meta": {} + }, + { + "id": "RO:0004015", + "lbl": "is causal susceptibility factor for", + "meta": {} + }, + { + "id": "MONDO:0016563", + "lbl": "progressive supranuclear palsy-corticobasal syndrome", + "meta": {} + }, + { + "id": "ECO:0000322", + "lbl": "imported manually asserted information used in automatic assertion", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b6c862704e0c46445b7c", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0016563", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240103"] + } + }, + { + "sub": "MONARCH:b6c862704e0c46445b7c", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0004015", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "MONARCH:b6c862704e0c46445b7c", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has subject"] + } + }, + { + "sub": "MONARCH:b6c862704e0c46445b7c", + "pred": "RO:0002558", + "obj": "ECO:0000322", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["has evidence"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0004015", + "obj": "MONDO:0016563", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["is causal susceptibility factor for"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240103"] + } + } + ] + }, + "evidence_types": [ { - "id": "048b6bf7-74b4-434f-a2f3-503b33fe1267", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0016563", - "label": "progressive supranuclear palsy-corticobasal syndrome", - "iri": "http://purl.obolibrary.org/obo/MONDO_0016563", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0004015", - "label": "is causal susceptibility factor for", - "iri": "http://purl.obolibrary.org/obo/RO_0004015", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "MONARCH:b6c862704e0c46445b7c", - "lbl": null, - "meta": {} - }, - { - "id": "RO:0004015", - "lbl": "is causal susceptibility factor for", - "meta": {} - }, - { - "id": "MONDO:0016563", - "lbl": "progressive supranuclear palsy-corticobasal syndrome", - "meta": {} - }, - { - "id": "ECO:0000322", - "lbl": "imported manually asserted information used in automatic assertion", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b6c862704e0c46445b7c", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0016563", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240103" - ] - } - }, - { - "sub": "MONARCH:b6c862704e0c46445b7c", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0004015", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "MONARCH:b6c862704e0c46445b7c", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has subject" - ] - } - }, - { - "sub": "MONARCH:b6c862704e0c46445b7c", - "pred": "RO:0002558", - "obj": "ECO:0000322", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0004015", - "obj": "MONDO:0016563", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "is causal susceptibility factor for" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240103" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000322", - "label": "imported manually asserted information used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "publications": [] + "id": "ECO:0000322", + "label": "imported manually asserted information used in automatic assertion" + } + ], + "provided_by": ["https://archive.monarchinitiative.org/#orphanet"], + "publications": [] + }, + { + "id": "58dcad1a-3507-4a3a-86f6-a9bf337b42eb", + "type": null, + "subject": { + "taxon": { + "id": null, + "label": null + }, + "id": "MONDO:0016564", + "label": "progressive supranuclear palsy-progressive non-fluent aphasia syndrome", + "iri": "http://purl.obolibrary.org/obo/MONDO_0016564", + "category": ["disease"] + }, + "subject_eq": null, + "subject_extensions": null, + "object": { + "taxon": { + "id": "NCBITaxon:9606", + "label": "Homo sapiens" }, + "id": "HGNC:6893", + "label": "MAPT", + "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", + "category": ["gene"] + }, + "object_eq": null, + "object_extensions": null, + "relation": { + "inverse": true, + "id": "RO:0004015", + "label": "is causal susceptibility factor for", + "iri": "http://purl.obolibrary.org/obo/RO_0004015", + "category": null + }, + "slim": null, + "negated": false, + "qualifiers": null, + "evidence_graph": { + "nodes": [ + { + "id": "HGNC:6893", + "lbl": "MAPT", + "meta": {} + }, + { + "id": "MONDO:0016564", + "lbl": "progressive supranuclear palsy-progressive non-fluent aphasia syndrome", + "meta": {} + }, + { + "id": "RO:0004015", + "lbl": "is causal susceptibility factor for", + "meta": {} + }, + { + "id": "MONARCH:b8a0e2a37c1fcdf3c9a6", + "lbl": null, + "meta": {} + }, + { + "id": "ECO:0000322", + "lbl": "imported manually asserted information used in automatic assertion", + "meta": {} + } + ], + "edges": [ + { + "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", + "pred": "OBAN:association_has_predicate", + "obj": "RO:0004015", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has predicate"] + } + }, + { + "sub": "HGNC:6893", + "pred": "RO:0004015", + "obj": "MONDO:0016564", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["is causal susceptibility factor for"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240112"] + } + }, + { + "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", + "pred": "OBAN:association_has_object", + "obj": "MONDO:0016564", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has object"], + "equivalentOriginalNodeTarget": ["http://www.orpha.net/ORDO/Orphanet_240112"] + } + }, + { + "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", + "pred": "RO:0002558", + "obj": "ECO:0000322", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["has evidence"] + } + }, + { + "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", + "pred": "OBAN:association_has_subject", + "obj": "HGNC:6893", + "meta": { + "isDefinedBy": ["https://archive.monarchinitiative.org/#orphanet"], + "lbl": ["association has subject"] + } + } + ] + }, + "evidence_types": [ { - "id": "58dcad1a-3507-4a3a-86f6-a9bf337b42eb", - "type": null, - "subject": { - "taxon": { - "id": null, - "label": null - }, - "id": "MONDO:0016564", - "label": "progressive supranuclear palsy-progressive non-fluent aphasia syndrome", - "iri": "http://purl.obolibrary.org/obo/MONDO_0016564", - "category": [ - "disease" - ] - }, - "subject_eq": null, - "subject_extensions": null, - "object": { - "taxon": { - "id": "NCBITaxon:9606", - "label": "Homo sapiens" - }, - "id": "HGNC:6893", - "label": "MAPT", - "iri": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/HGNC:6893", - "category": [ - "gene" - ] - }, - "object_eq": null, - "object_extensions": null, - "relation": { - "inverse": true, - "id": "RO:0004015", - "label": "is causal susceptibility factor for", - "iri": "http://purl.obolibrary.org/obo/RO_0004015", - "category": null - }, - "slim": null, - "negated": false, - "qualifiers": null, - "evidence_graph": { - "nodes": [ - { - "id": "HGNC:6893", - "lbl": "MAPT", - "meta": {} - }, - { - "id": "MONDO:0016564", - "lbl": "progressive supranuclear palsy-progressive non-fluent aphasia syndrome", - "meta": {} - }, - { - "id": "RO:0004015", - "lbl": "is causal susceptibility factor for", - "meta": {} - }, - { - "id": "MONARCH:b8a0e2a37c1fcdf3c9a6", - "lbl": null, - "meta": {} - }, - { - "id": "ECO:0000322", - "lbl": "imported manually asserted information used in automatic assertion", - "meta": {} - } - ], - "edges": [ - { - "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", - "pred": "OBAN:association_has_predicate", - "obj": "RO:0004015", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has predicate" - ] - } - }, - { - "sub": "HGNC:6893", - "pred": "RO:0004015", - "obj": "MONDO:0016564", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "is causal susceptibility factor for" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240112" - ] - } - }, - { - "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", - "pred": "OBAN:association_has_object", - "obj": "MONDO:0016564", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has object" - ], - "equivalentOriginalNodeTarget": [ - "http://www.orpha.net/ORDO/Orphanet_240112" - ] - } - }, - { - "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", - "pred": "RO:0002558", - "obj": "ECO:0000322", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "has evidence" - ] - } - }, - { - "sub": "MONARCH:b8a0e2a37c1fcdf3c9a6", - "pred": "OBAN:association_has_subject", - "obj": "HGNC:6893", - "meta": { - "isDefinedBy": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "lbl": [ - "association has subject" - ] - } - } - ] - }, - "evidence_types": [ - { - "id": "ECO:0000322", - "label": "imported manually asserted information used in automatic assertion" - } - ], - "provided_by": [ - "https://archive.monarchinitiative.org/#orphanet" - ], - "publications": [] + "id": "ECO:0000322", + "label": "imported manually asserted information used in automatic assertion" } - ], - "compact_associations": null, - "objects": null, - "numFound": 17, - "docs": null, - "facet_counts": {}, - "highlighting": null -} \ No newline at end of file + ], + "provided_by": ["https://archive.monarchinitiative.org/#orphanet"], + "publications": [] + } + ], + "compact_associations": null, + "objects": null, + "numFound": 17, + "docs": null, + "facet_counts": {}, + "highlighting": null +} diff --git a/__test__/data/biothings/drug_response_example_edge.json b/__test__/data/biothings/drug_response_example_edge.json index 4b6da4f..af77535 100644 --- a/__test__/data/biothings/drug_response_example_edge.json +++ b/__test__/data/biothings/drug_response_example_edge.json @@ -1,63 +1,60 @@ { - "input": "11373846", - "query_operation": { - "_params": { - "fields": "association.context.disease.mondo,subject.NCBIGene,association.effect_size,association.pvalue", - "q": "object.PUBCHEM:{inputs[0]} AND association.effect_size:<0 AND association.pvalue:<0.05", - "sort": "association.pvalue", - "size": "1000" - }, - "_supportBatch": false, - "_method": "get", - "_pathParams": [], - "_server": "https://biothings.ncats.io/drug_response_kp", - "_path": "/query", - "_tags": [ - "gene", - "disease", - "chemical", - "association", - "annotation", - "query", - "translator", - "biothings", - "biothings_graph" - ] + "input": "11373846", + "query_operation": { + "_params": { + "fields": "association.context.disease.mondo,subject.NCBIGene,association.effect_size,association.pvalue", + "q": "object.PUBCHEM:{inputs[0]} AND association.effect_size:<0 AND association.pvalue:<0.05", + "sort": "association.pvalue", + "size": "1000" }, - "association": { - "input_id": "PUBCHEM", - "input_type": "ChemicalSubstance", - "output_id": "NCBIGene", - "output_type": "Gene", - "predicate": "gene_has_variant_that_contributes_to_drug_response_association", - "source": "Multiomics Provider", - "api_name": "Drug Response KP API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Multiomics Provider", - "Service Provider" - ] - } - }, - "response_mapping": { - "gene_has_variant_that_contributes_to_drug_response_association": { - "NCBIGene": "hits.subject.NCBIGene", - "effect_size": "hits.association.effect_size", - "pvalue": "hits.association.pvalue", - "disease_context": "hits.association.context.disease.mondo" - } - }, - "tags": [ - "gene", - "disease", - "chemical", - "association", - "annotation", - "query", - "translator", - "biothings", - "biothings_graph" + "_supportBatch": false, + "_method": "get", + "_pathParams": [], + "_server": "https://biothings.ncats.io/drug_response_kp", + "_path": "/query", + "_tags": [ + "gene", + "disease", + "chemical", + "association", + "annotation", + "query", + "translator", + "biothings", + "biothings_graph" ] -} \ No newline at end of file + }, + "association": { + "input_id": "PUBCHEM", + "input_type": "ChemicalSubstance", + "output_id": "NCBIGene", + "output_type": "Gene", + "predicate": "gene_has_variant_that_contributes_to_drug_response_association", + "source": "Multiomics Provider", + "api_name": "Drug Response KP API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Multiomics Provider", "Service Provider"] + } + }, + "response_mapping": { + "gene_has_variant_that_contributes_to_drug_response_association": { + "NCBIGene": "hits.subject.NCBIGene", + "effect_size": "hits.association.effect_size", + "pvalue": "hits.association.pvalue", + "disease_context": "hits.association.context.disease.mondo" + } + }, + "tags": [ + "gene", + "disease", + "chemical", + "association", + "annotation", + "query", + "translator", + "biothings", + "biothings_graph" + ] +} diff --git a/__test__/data/biothings/drug_response_get_response.json b/__test__/data/biothings/drug_response_get_response.json index d3e75f4..8f64b73 100644 --- a/__test__/data/biothings/drug_response_get_response.json +++ b/__test__/data/biothings/drug_response_get_response.json @@ -1,11925 +1,11784 @@ { - "took": 107, - "total": 737, - "max_score": null, - "hits": [ - { - "_id": "ZNF521-GSK429286A-9.986386935856386e-06-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -4.759981891973518, - "pvalue": 9.986386935856386e-06 - }, - "subject": { - "NCBIGene": "25925" - } - }, - { - "_id": "OXCT1-GSK429286A-1.674430478078408e-05-3.544863951886205", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -2.4613024423074554, - "pvalue": 1.674430478078408e-05 - }, - "subject": { - "NCBIGene": "5019" - } - }, - { - "_id": "SETD5-GSK429286A-1.7203415194557108e-05-3.57811169272866", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -2.8868944869307107, - "pvalue": 1.7203415194557108e-05 - }, - "subject": { - "NCBIGene": "55209" - } - }, - { - "_id": "GABRA5-GSK429286A-2.0485614316721425e-05-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.9163333927529296, - "pvalue": 2.0485614316721425e-05 - }, - "subject": { - "NCBIGene": "2558" - } - }, - { - "_id": "RBM47-GSK429286A-2.0519351448345077e-05-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.9160502104185593, - "pvalue": 2.0519351448345077e-05 - }, - "subject": { - "NCBIGene": "54502" - } - }, - { - "_id": "HUWE1-GSK429286A-2.091568463033719e-05-1.79788786601589", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -3.1494421809853197, - "pvalue": 2.091568463033719e-05 - }, - "subject": { - "NCBIGene": "10075" - } - }, - { - "_id": "FBXW7-GSK429286A-8.382564573327396e-05-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.9105350650114175, - "pvalue": 8.382564573327396e-05 - }, - "subject": { - "NCBIGene": "55294" - } - }, - { - "_id": "OR56A4-GSK429286A-8.484838820704394e-05-1.73783301051434", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.6803788988461217, - "pvalue": 8.484838820704394e-05 - }, - "subject": { - "NCBIGene": "120793" - } - }, - { - "_id": "ALDOC-GSK429286A-9.475961745003106e-05-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.8839401121182755, - "pvalue": 9.475961745003106e-05 - }, - "subject": { - "NCBIGene": "230" - } - }, - { - "_id": "GAA-GSK429286A-9.475961745003106e-05-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.8839401121182755, - "pvalue": 9.475961745003106e-05 - }, - "subject": { - "NCBIGene": "2548" - } - }, - { - "_id": "ACSM2B-GSK429286A-0.00012361606881385666-3.075953463161915", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6458702176611164, - "pvalue": 0.00012361606881385666 - }, - "subject": { - "NCBIGene": "348158" - } - }, - { - "_id": "PDILT-GSK429286A-0.00013723100454198644-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.582145174063579, - "pvalue": 0.00013723100454198644 - }, - "subject": { - "NCBIGene": "204474" - } - }, - { - "_id": "LOXHD1-GSK429286A-0.00016807337058247118-4.16672083686873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.5514842972604401, - "pvalue": 0.00016807337058247118 - }, - "subject": { - "NCBIGene": "125336" - } - }, - { - "_id": "MVD-GSK429286A-0.0001801095575762882-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.519558206562125, - "pvalue": 0.0001801095575762882 - }, - "subject": { - "NCBIGene": "4597" - } - }, - { - "_id": "AMBRA1-GSK429286A-0.0001878310485366954-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.509994045399673, - "pvalue": 0.0001878310485366954 - }, - "subject": { - "NCBIGene": "55626" - } - }, - { - "_id": "OR4M2-GSK429286A-0.0001963684966105715-1.73783301051434", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.53042762600363, - "pvalue": 0.0001963684966105715 - }, - "subject": { - "NCBIGene": "390538" - } - }, - { - "_id": "TMC5-GSK429286A-0.000207562159565784-3.57602591341893", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005065" - } - }, - "effect_size": -3.1499260926795136, - "pvalue": 0.000207562159565784 - }, - "subject": { - "NCBIGene": "79838" - } - }, - { - "_id": "DNAH14-GSK429286A-0.00020776534576417107-4.173031522254799", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -3.4180509829650663, - "pvalue": 0.00020776534576417107 - }, - "subject": { - "NCBIGene": "127602" - } - }, - { - "_id": "ZNF680-GSK429286A-0.00023859428420739686-4.05115991265377", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -2.518605726636893, - "pvalue": 0.00023859428420739686 - }, - "subject": { - "NCBIGene": "340252" - } - }, - { - "_id": "COL20A1-GSK429286A-0.00023971668249795074-3.160745882775875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.1365744242818914, - "pvalue": 0.00023971668249795074 - }, - "subject": { - "NCBIGene": "57642" - } - }, - { - "_id": "MINK1-GSK429286A-0.0002832390007688119-1.50583429804503", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.4730651829917587, - "pvalue": 0.0002832390007688119 - }, - "subject": { - "NCBIGene": "50488" - } - }, - { - "_id": "MBD5-GSK429286A-0.0002869481469565366-3.993587448908555", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.685339251015063, - "pvalue": 0.0002869481469565366 - }, - "subject": { - "NCBIGene": "55777" - } - }, - { - "_id": "OVCH1-GSK429286A-0.00030637922608344576-4.269479993362805", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.304965349157701, - "pvalue": 0.00030637922608344576 - }, - "subject": { - "NCBIGene": "341350" - } - }, - { - "_id": "LOXHD1-GSK429286A-0.00033058996831111375-0.316302105059935", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -2.411311460456441, - "pvalue": 0.00033058996831111375 - }, - "subject": { - "NCBIGene": "125336" - } - }, - { - "_id": "PIAS2-GSK429286A-0.00034199080650955757-4.05115991265377", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -2.445788745471296, - "pvalue": 0.00034199080650955757 - }, - "subject": { - "NCBIGene": "9063" - } - }, - { - "_id": "C2orf89-GSK429286A-0.00035311059230978375-3.07362866162946", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.39209219294725, - "pvalue": 0.00035311059230978375 - }, - "subject": { - "NCBIGene": "129293" - } - }, - { - "_id": "PRKCI-GSK429286A-0.00038992466851707003-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.3728617177660603, - "pvalue": 0.00038992466851707003 - }, - "subject": { - "NCBIGene": "5584" - } - }, - { - "_id": "LARP1-GSK429286A-0.00039430735638692035-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.3887407815393726, - "pvalue": 0.00039430735638692035 - }, - "subject": { - "NCBIGene": "23367" - } - }, - { - "_id": "PCDH12-GSK429286A-0.0004445448148851749-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.366290842170333, - "pvalue": 0.0004445448148851749 - }, - "subject": { - "NCBIGene": "51294" - } - }, - { - "_id": "EFTUD2-GSK429286A-0.0004445448148851749-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.366290842170333, - "pvalue": 0.0004445448148851749 - }, - "subject": { - "NCBIGene": "9343" - } - }, - { - "_id": "ADAM21-GSK429286A-0.0004461996671620926-4.112229887522675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.9538360026990624, - "pvalue": 0.0004461996671620926 - }, - "subject": { - "NCBIGene": "8747" - } - }, - { - "_id": "FAM22G-GSK429286A-0.0004966290255842305-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.326687151946812, - "pvalue": 0.0004966290255842305 - }, - "subject": { - "NCBIGene": "441457" - } - }, - { - "_id": "RNF152-GSK429286A-0.0005739083800821864-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.301883819823818, - "pvalue": 0.0005739083800821864 - }, - "subject": { - "NCBIGene": "220441" - } - }, - { - "_id": "PRODH-GSK429286A-0.0005739083800821864-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.301883819823818, - "pvalue": 0.0005739083800821864 - }, - "subject": { - "NCBIGene": "5625" - } - }, - { - "_id": "ANKRD11-GSK429286A-0.0005746719797215772-2.856957031103005", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -2.852053782756415, - "pvalue": 0.0005746719797215772 - }, - "subject": { - "NCBIGene": "29123" - } - }, - { - "_id": "BMS1-GSK429286A-0.0005828526092697167-4.02729116494675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -2.4369164622501094, - "pvalue": 0.0005828526092697167 - }, - "subject": { - "NCBIGene": "9790" - } - }, - { - "_id": "COBLL1-GSK429286A-0.0005828526092697167-4.02729116494675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -2.4369164622501094, - "pvalue": 0.0005828526092697167 - }, - "subject": { - "NCBIGene": "22837" - } - }, - { - "_id": "CCDC14-GSK429286A-0.0005858705559764542-3.7816208576493002", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.9173192043359406, - "pvalue": 0.0005858705559764542 - }, - "subject": { - "NCBIGene": "64770" - } - }, - { - "_id": "ARHGEF17-GSK429286A-0.0005963394292668678-2.95741448736036", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9912029317876636, - "pvalue": 0.0005963394292668678 - }, - "subject": { - "NCBIGene": "9828" - } - }, - { - "_id": "GABRB1-GSK429286A-0.0006629622184661371-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.2683626773337857, - "pvalue": 0.0006629622184661371 - }, - "subject": { - "NCBIGene": "2560" - } - }, - { - "_id": "FAM38B-GSK429286A-0.0006763054024924105-1.73783301051434", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.301094546951548, - "pvalue": 0.0006763054024924105 - }, - "subject": { - "NCBIGene": "63895" - } - }, - { - "_id": "ADGB-GSK429286A-0.0007035401158727085-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.444379805664448, - "pvalue": 0.0007035401158727085 - }, - "subject": { - "NCBIGene": "79747" - } - }, - { - "_id": "KIF1B-GSK429286A-0.0007161127141958877-2.856957031103005", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -2.7800264523564846, - "pvalue": 0.0007161127141958877 - }, - "subject": { - "NCBIGene": "23095" - } - }, - { - "_id": "SEMA6D-GSK429286A-0.000740484437429074-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.2494797996616875, - "pvalue": 0.000740484437429074 - }, - "subject": { - "NCBIGene": "80031" - } - }, - { - "_id": "ZBTB20-GSK429286A-0.0007650018601850923-4.14407705682957", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.7488043784678489, - "pvalue": 0.0007650018601850923 - }, - "subject": { - "NCBIGene": "26137" - } - }, - { - "_id": "SPEF2-GSK429286A-0.000772855342946426-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.244424609533842, - "pvalue": 0.000772855342946426 - }, - "subject": { - "NCBIGene": "79925" - } - }, - { - "_id": "LRRC1-GSK429286A-0.0007749940713420273-1.77732089365451", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005072" - } - }, - "effect_size": -2.3834286014336903, - "pvalue": 0.0007749940713420273 - }, - "subject": { - "NCBIGene": "55227" - } - }, - { - "_id": "KIAA0889-GSK429286A-0.0007879114020189485-4.43221000905504", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.111607590507235, - "pvalue": 0.0007879114020189485 - }, - "subject": { - "NCBIGene": "140710" - } - }, - { - "_id": "SF3B2-GSK429286A-0.0007987396371693481-3.00330828075829", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7374357989496605, - "pvalue": 0.0007987396371693481 - }, - "subject": { - "NCBIGene": "10992" - } - }, - { - "_id": "GABRG1-GSK429286A-0.000804402665883993-3.2698840419473703", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9330989767463562, - "pvalue": 0.000804402665883993 - }, - "subject": { - "NCBIGene": "2565" - } - }, - { - "_id": "ANXA10-GSK429286A-0.0009673742354288314-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -2.0887442736470043, - "pvalue": 0.0009673742354288314 - }, - "subject": { - "NCBIGene": "11199" - } - }, - { - "_id": "CDKL5-GSK429286A-0.0009717296003945226-2.77062877993627", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.201605492931962, - "pvalue": 0.0009717296003945226 - }, - "subject": { - "NCBIGene": "6792" - } - }, - { - "_id": "IL1RL1-GSK429286A-0.0009751282446552912-3.80365458246322", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.8771016743334825, - "pvalue": 0.0009751282446552912 - }, - "subject": { - "NCBIGene": "9173" - } - }, - { - "_id": "TMCO7-GSK429286A-0.001039689707884867-2.90082792551563", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -2.264265473992281, - "pvalue": 0.001039689707884867 - }, - "subject": { - "NCBIGene": "79613" - } - }, - { - "_id": "ZEB2-GSK429286A-0.0010432286157930285-3.863164730690035", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.8195802768365825, - "pvalue": 0.0010432286157930285 - }, - "subject": { - "NCBIGene": "9839" - } - }, - { - "_id": "ATRN-GSK429286A-0.0010727068015322066-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6993822567606092, - "pvalue": 0.0010727068015322066 - }, - "subject": { - "NCBIGene": "8455" - } - }, - { - "_id": "PTPRF-GSK429286A-0.001150744245109076-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.1591033956962447, - "pvalue": 0.001150744245109076 - }, - "subject": { - "NCBIGene": "5792" - } - }, - { - "_id": "GALNT2-GSK429286A-0.0012059945259008252-2.958817146601845", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.870337977470738, - "pvalue": 0.0012059945259008252 - }, - "subject": { - "NCBIGene": "2590" - } - }, - { - "_id": "POTEF-GSK429286A-0.0012162484103800818-3.57244683471891", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.147832709145133, - "pvalue": 0.0012162484103800818 - }, - "subject": { - "NCBIGene": "728378" - } - }, - { - "_id": "OR8B4-GSK429286A-0.0012645330465764595-3.7663339854755", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.13941151497149, - "pvalue": 0.0012645330465764595 - }, - "subject": { - "NCBIGene": "283162" - } - }, - { - "_id": "SF3B1-GSK429286A-0.0012860039848660426-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.1443180458747144, - "pvalue": 0.0012860039848660426 - }, - "subject": { - "NCBIGene": "23451" - } - }, - { - "_id": "CCDC40-GSK429286A-0.0013669370051462263-3.22874622784338", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.782567524657833, - "pvalue": 0.0013669370051462263 - }, - "subject": { - "NCBIGene": "55036" - } - }, - { - "_id": "HSPG2-GSK429286A-0.0013669370051462263-3.22874622784338", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.782567524657833, - "pvalue": 0.0013669370051462263 - }, - "subject": { - "NCBIGene": "3339" - } - }, - { - "_id": "OR2S2-GSK429286A-0.001367922570982976-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.1320086933785, - "pvalue": 0.001367922570982976 - }, - "subject": { - "NCBIGene": "56656" - } - }, - { - "_id": "APAF1-GSK429286A-0.0013964599998542303-1.73783301051434", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.160611269887668, - "pvalue": 0.0013964599998542303 - }, - "subject": { - "NCBIGene": "317" - } - }, - { - "_id": "COL10A1-GSK429286A-0.001402265279833715-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.145059464279866, - "pvalue": 0.001402265279833715 - }, - "subject": { - "NCBIGene": "1300" - } - }, - { - "_id": "SG223-GSK429286A-0.001436672835768183-3.56385515499688", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.8840350684909435, - "pvalue": 0.001436672835768183 - } - }, - { - "_id": "ZNF181-GSK429286A-0.0014973605424318402-3.7663339854755", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.1050508960596606, - "pvalue": 0.0014973605424318402 - }, - "subject": { - "NCBIGene": "339318" - } - }, - { - "_id": "NADSYN1-GSK429286A-0.0015045145205589687-3.76913930395847", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.104071919680477, - "pvalue": 0.0015045145205589687 - }, - "subject": { - "NCBIGene": "55191" - } - }, - { - "_id": "ANKS1B-GSK429286A-0.0016111796769479598-4.16700301854278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.9890546414996177, - "pvalue": 0.0016111796769479598 - }, - "subject": { - "NCBIGene": "56899" - } - }, - { - "_id": "DMBT1-GSK429286A-0.0016135057905576759-4.292566651108039", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.8617399594152455, - "pvalue": 0.0016135057905576759 - }, - "subject": { - "NCBIGene": "1755" - } - }, - { - "_id": "MYBPC2-GSK429286A-0.0016405441396345085-3.57811169272866", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -2.021903214836891, - "pvalue": 0.0016405441396345085 - }, - "subject": { - "NCBIGene": "4606" - } - }, - { - "_id": "UHMK1-GSK429286A-0.0017526210744133487-3.07362866162946", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.078950252212568, - "pvalue": 0.0017526210744133487 - }, - "subject": { - "NCBIGene": "127933" - } - }, - { - "_id": "ULK4-GSK429286A-0.0017557365181125476-3.07362866162946", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.078589864260293, - "pvalue": 0.0017557365181125476 - }, - "subject": { - "NCBIGene": "54986" - } - }, - { - "_id": "LAMA1-GSK429286A-0.0017818303602367479-4.06025879309769", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -2.858098720004819, - "pvalue": 0.0017818303602367479 - }, - "subject": { - "NCBIGene": "284217" - } - }, - { - "_id": "IGF2R-GSK429286A-0.0017818303602367479-4.06025879309769", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -2.858098720004819, - "pvalue": 0.0017818303602367479 - }, - "subject": { - "NCBIGene": "3482" - } - }, - { - "_id": "CCDC89-GSK429286A-0.0018625198165827892-3.20963262142959", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.785644355174183, - "pvalue": 0.0018625198165827892 - }, - "subject": { - "NCBIGene": "220388" - } - }, - { - "_id": "EYA2-GSK429286A-0.001866222540483312-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -2.006928250626089, - "pvalue": 0.001866222540483312 - }, - "subject": { - "NCBIGene": "2139" - } - }, - { - "_id": "RET-GSK429286A-0.001911715831715238-4.61205106306214", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -2.0159409607681495, - "pvalue": 0.001911715831715238 - }, - "subject": { - "NCBIGene": "5979" - } - }, - { - "_id": "DNAH5-GSK429286A-0.001969035630212806-4.613961788626815", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.694359099907457, - "pvalue": 0.001969035630212806 - }, - "subject": { - "NCBIGene": "1767" - } - }, - { - "_id": "ZNF193-GSK429286A-0.0020442092514068233-4.37380800230499", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -2.0046364072442517, - "pvalue": 0.0020442092514068233 - }, - "subject": { - "NCBIGene": "7746" - } - }, - { - "_id": "ATP5A1-GSK429286A-0.0020481093870889943-0.418592847200821", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -2.220002362426416, - "pvalue": 0.0020481093870889943 - }, - "subject": { - "NCBIGene": "498" - } - }, - { - "_id": "PLCL1-GSK429286A-0.00207740980027047-3.14820655990286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7810264038364303, - "pvalue": 0.00207740980027047 - }, - "subject": { - "NCBIGene": "5334" - } - }, - { - "_id": "ADAMTS5-GSK429286A-0.002117012663152227-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.0625086266083072, - "pvalue": 0.002117012663152227 - }, - "subject": { - "NCBIGene": "11096" - } - }, - { - "_id": "PCDHB13-GSK429286A-0.002258593052240435-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.026341720379189, - "pvalue": 0.002258593052240435 - }, - "subject": { - "NCBIGene": "56123" - } - }, - { - "_id": "CCDC165-GSK429286A-0.0022943079151366255-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.8828760833759777, - "pvalue": 0.0022943079151366255 - }, - "subject": { - "NCBIGene": "23255" - } - }, - { - "_id": "SPTAN1-GSK429286A-0.0023002466109568144-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.0225756959023156, - "pvalue": 0.0023002466109568144 - }, - "subject": { - "NCBIGene": "6709" - } - }, - { - "_id": "ZNF180-GSK429286A-0.002321102667877973-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.9624449742920589, - "pvalue": 0.002321102667877973 - }, - "subject": { - "NCBIGene": "7733" - } - }, - { - "_id": "NUP37-GSK429286A-0.0023281697378462664-3.57759520740764", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -2.1314134238414124, - "pvalue": 0.0023281697378462664 - }, - "subject": { - "NCBIGene": "79023" - } - }, - { - "_id": "TTN-GSK429286A-0.0025530759755872687-4.76016878449977", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.0945591295050183, - "pvalue": 0.0025530759755872687 - }, - "subject": { - "NCBIGene": "7273" - } - }, - { - "_id": "PAPPA2-GSK429286A-0.00261262878931804-4.203555645683925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -2.0069936763180367, - "pvalue": 0.00261262878931804 - }, - "subject": { - "NCBIGene": "60676" - } - }, - { - "_id": "KCNK9-GSK429286A-0.00266833565137226-3.31818348479346", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9891523407103415, - "pvalue": 0.00266833565137226 - }, - "subject": { - "NCBIGene": "51305" - } - }, - { - "_id": "PHF20L1-GSK429286A-0.002704991915127471-3.57244683471891", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9837196165227635, - "pvalue": 0.002704991915127471 - }, - "subject": { - "NCBIGene": "51105" - } - }, - { - "_id": "GEMIN5-GSK429286A-0.0027219170960914927-2.90082792551563", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -2.0433834773539847, - "pvalue": 0.0027219170960914927 - }, - "subject": { - "NCBIGene": "25929" - } - }, - { - "_id": "SHKBP1-GSK429286A-0.002750391840713144-2.14849498924522", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -2.0089905203196197, - "pvalue": 0.002750391840713144 - }, - "subject": { - "NCBIGene": "92799" - } - }, - { - "_id": "DNAH6-GSK429286A-0.0027732052486776158-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -2.0351121762250033, - "pvalue": 0.0027732052486776158 - }, - "subject": { - "NCBIGene": "1768" - } - }, - { - "_id": "NKTR-GSK429286A-0.002789973676083896-4.41844670555009", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.103951289116203, - "pvalue": 0.002789973676083896 - }, - "subject": { - "NCBIGene": "4820" - } - }, - { - "_id": "TPX2-GSK429286A-0.002789973676083896-4.41844670555009", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.103951289116203, - "pvalue": 0.002789973676083896 - }, - "subject": { - "NCBIGene": "22974" - } - }, - { - "_id": "PDE4B-GSK429286A-0.0028208520303564196-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.8867865065464517, - "pvalue": 0.0028208520303564196 - }, - "subject": { - "NCBIGene": "5142" - } - }, - { - "_id": "AKAP4-GSK429286A-0.002844600220629237-2.77062877993627", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5437431195950355, - "pvalue": 0.002844600220629237 - }, - "subject": { - "NCBIGene": "8852" - } - }, - { - "_id": "ASXL2-GSK429286A-0.0028579108216349926-3.00330828075829", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9795541118864501, - "pvalue": 0.0028579108216349926 - }, - "subject": { - "NCBIGene": "55252" - } - }, - { - "_id": "CEP152-GSK429286A-0.0029163000808997428-4.1455410000318444", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.6358913490115228, - "pvalue": 0.0029163000808997428 - }, - "subject": { - "NCBIGene": "22995" - } - }, - { - "_id": "TOP2B-GSK429286A-0.002965570559264163-4.0429181220808", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4779135004479307, - "pvalue": 0.002965570559264163 - }, - "subject": { - "NCBIGene": "7155" - } - }, - { - "_id": "IGSF10-GSK429286A-0.002966573777657188-4.09108721392841", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -2.5375761720077348, - "pvalue": 0.002966573777657188 - }, - "subject": { - "NCBIGene": "285313" - } - }, - { - "_id": "DOCK8-GSK429286A-0.0029666170064107855-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -2.1168383879765815, - "pvalue": 0.0029666170064107855 - }, - "subject": { - "NCBIGene": "81704" - } - }, - { - "_id": "IL1RL1-GSK429286A-0.0031106636978339925-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.884387827249838, - "pvalue": 0.0031106636978339925 - }, - "subject": { - "NCBIGene": "9173" - } - }, - { - "_id": "SULF1-GSK429286A-0.0031227950746103134-4.14407705682957", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.8739104808836546, - "pvalue": 0.0031227950746103134 - }, - "subject": { - "NCBIGene": "23213" - } - }, - { - "_id": "HDGF-GSK429286A-0.0031923296321197947-3.07362866162946", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9551708160138999, - "pvalue": 0.0031923296321197947 - }, - "subject": { - "NCBIGene": "3068" - } - }, - { - "_id": "OR5P3-GSK429286A-0.003242199669498957-4.56946841464662", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.9578791494446268, - "pvalue": 0.003242199669498957 - }, - "subject": { - "NCBIGene": "120066" - } - }, - { - "_id": "SLC6A11-GSK429286A-0.003280895604005821-3.384821133116895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6800200835218564, - "pvalue": 0.003280895604005821 - }, - "subject": { - "NCBIGene": "6538" - } - }, - { - "_id": "SKI-GSK429286A-0.0034167064398880104-3.31818348479346", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9371740380006484, - "pvalue": 0.0034167064398880104 - }, - "subject": { - "NCBIGene": "6497" - } - }, - { - "_id": "MLL5-GSK429286A-0.0034846932504992156-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.930474649608457, - "pvalue": 0.0034846932504992156 - }, - "subject": { - "NCBIGene": "55904" - } - }, - { - "_id": "C1orf87-GSK429286A-0.003488274487621968-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9302495485033777, - "pvalue": 0.003488274487621968 - }, - "subject": { - "NCBIGene": "127795" - } - }, - { - "_id": "STAB1-GSK429286A-0.0035386636245603622-3.75645420660895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.9343422133910195, - "pvalue": 0.0035386636245603622 - }, - "subject": { - "NCBIGene": "23166" - } - }, - { - "_id": "OR6K3-GSK429286A-0.003611209115419086-4.247487929668355", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.659376049198086, - "pvalue": 0.003611209115419086 - }, - "subject": { - "NCBIGene": "391114" - } - }, - { - "_id": "C10orf28-GSK429286A-0.003635504446234418-3.42908959156423", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6596490306591278, - "pvalue": 0.003635504446234418 - }, - "subject": { - "NCBIGene": "27291" - } - }, - { - "_id": "WDR47-GSK429286A-0.0037079461948265617-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9172251423432976, - "pvalue": 0.0037079461948265617 - }, - "subject": { - "NCBIGene": "22911" - } - }, - { - "_id": "USHBP1-GSK429286A-0.003709712950030028-4.16700301854278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.8206111156270437, - "pvalue": 0.003709712950030028 - }, - "subject": { - "NCBIGene": "83878" - } - }, - { - "_id": "ZP4-GSK429286A-0.0037625109517185097-2.86842105380479", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.9340303857168217, - "pvalue": 0.0037625109517185097 - }, - "subject": { - "NCBIGene": "57829" - } - }, - { - "_id": "ADCK3-GSK429286A-0.003775349058429465-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9133715758651764, - "pvalue": 0.003775349058429465 - }, - "subject": { - "NCBIGene": "56997" - } - }, - { - "_id": "COL11A1-GSK429286A-0.0037864037858694292-4.88016818979553", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.4936704615189165, - "pvalue": 0.0037864037858694292 - }, - "subject": { - "NCBIGene": "1301" - } - }, - { - "_id": "LRP1B-GSK429286A-0.0038749310318266-4.40645233573555", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.2296533621406884, - "pvalue": 0.0038749310318266 - }, - "subject": { - "NCBIGene": "53353" - } - }, - { - "_id": "ABLIM1-GSK429286A-0.003925254093698465-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.9050268205675223, - "pvalue": 0.003925254093698465 - }, - "subject": { - "NCBIGene": "3983" - } - }, - { - "_id": "ZNF85-GSK429286A-0.003925384822137277-3.80365458246322", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.4138338490831392, - "pvalue": 0.003925384822137277 - }, - "subject": { - "NCBIGene": "7639" - } - }, - { - "_id": "MARK1-GSK429286A-0.0039589240414073645-4.38402204410427", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.313130639622906, - "pvalue": 0.0039589240414073645 - }, - "subject": { - "NCBIGene": "4139" - } - }, - { - "_id": "DNAH5-GSK429286A-0.003972580188837839-4.7147516819227", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.5222538920775874, - "pvalue": 0.003972580188837839 - }, - "subject": { - "NCBIGene": "1767" - } - }, - { - "_id": "KIAA0146-GSK429286A-0.004002025288593886-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.8158109930977444, - "pvalue": 0.004002025288593886 - }, - "subject": { - "NCBIGene": "23514" - } - }, - { - "_id": "CCDC108-GSK429286A-0.0040986116528097-4.03090964666794", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4715000835280954, - "pvalue": 0.0040986116528097 - }, - "subject": { - "NCBIGene": "255101" - } - }, - { - "_id": "TSSC1-GSK429286A-0.004132885947825495-0.214011362919049", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -2.050527876617611, - "pvalue": 0.004132885947825495 - }, - "subject": { - "NCBIGene": "7260" - } - }, - { - "_id": "PCDHGA1-GSK429286A-0.004206295232216555-3.62266430316214", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.8893565320099632, - "pvalue": 0.004206295232216555 - }, - "subject": { - "NCBIGene": "56114" - } - }, - { - "_id": "PDZRN4-GSK429286A-0.004268348940182561-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -2.0946248258488116, - "pvalue": 0.004268348940182561 - }, - "subject": { - "NCBIGene": "29951" - } - }, - { - "_id": "AK5-GSK429286A-0.004335906324825554-3.927642283908455", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5706057622330047, - "pvalue": 0.004335906324825554 - }, - "subject": { - "NCBIGene": "26289" - } - }, - { - "_id": "IPO8-GSK429286A-0.00434286186805061-3.32663789527298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.8036388456423456, - "pvalue": 0.00434286186805061 - }, - "subject": { - "NCBIGene": "10526" - } - }, - { - "_id": "CACNA2D1-GSK429286A-0.004393683976567509-4.56538071565513", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.8890981933315385, - "pvalue": 0.004393683976567509 - }, - "subject": { - "NCBIGene": "781" - } - }, - { - "_id": "LIG1-GSK429286A-0.004402498414518176-4.2018034192842", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5604464157991227, - "pvalue": 0.004402498414518176 - }, - "subject": { - "NCBIGene": "3978" - } - }, - { - "_id": "ATP2B2-GSK429286A-0.004415327969904949-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.462172618916404, - "pvalue": 0.004415327969904949 - }, - "subject": { - "NCBIGene": "491" - } - }, - { - "_id": "ATP11B-GSK429286A-0.004443583639981424-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.7942446624195791, - "pvalue": 0.004443583639981424 - }, - "subject": { - "NCBIGene": "23200" - } - }, - { - "_id": "GOLGA6A-GSK429286A-0.004519332618639445-3.62266430316214", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.8738234615824598, - "pvalue": 0.004519332618639445 - }, - "subject": { - "NCBIGene": "342096" - } - }, - { - "_id": "SH3TC2-GSK429286A-0.004538129449460289-3.9799025308325", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.3622735893872093, - "pvalue": 0.004538129449460289 - }, - "subject": { - "NCBIGene": "79628" - } - }, - { - "_id": "KAT6B-GSK429286A-0.004559539796641346-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4095169127924019, - "pvalue": 0.004559539796641346 - }, - "subject": { - "NCBIGene": "23522" - } - }, - { - "_id": "TNRC6A-GSK429286A-0.0046190249195805395-3.9693556795079", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.8502421194190835, - "pvalue": 0.0046190249195805395 - }, - "subject": { - "NCBIGene": "27327" - } - }, - { - "_id": "GTF3C1-GSK429286A-0.004658672424409286-4.402256268702275", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.330016548285633, - "pvalue": 0.004658672424409286 - }, - "subject": { - "NCBIGene": "2975" - } - }, - { - "_id": "QSER1-GSK429286A-0.004670955925255962-3.517108963713115", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6124556550284541, - "pvalue": 0.004670955925255962 - }, - "subject": { - "NCBIGene": "79832" - } - }, - { - "_id": "CARS-GSK429286A-0.004712539711006341-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.8655628851927055, - "pvalue": 0.004712539711006341 - }, - "subject": { - "NCBIGene": "833" - } - }, - { - "_id": "CYLC1-GSK429286A-0.00480606729291335-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.8099770105020072, - "pvalue": 0.00480606729291335 - }, - "subject": { - "NCBIGene": "1538" - } - }, - { - "_id": "COL7A1-GSK429286A-0.004904670637102178-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.998026485446977, - "pvalue": 0.004904670637102178 - }, - "subject": { - "NCBIGene": "1294" - } - }, - { - "_id": "PPP3CA-GSK429286A-0.004907798056018371-3.562078170295035", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.603438979019473, - "pvalue": 0.004907798056018371 - }, - "subject": { - "NCBIGene": "5530" - } - }, - { - "_id": "ABI3BP-GSK429286A-0.004908129019193955-4.62586351232286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.4352751954735838, - "pvalue": 0.004908129019193955 - }, - "subject": { - "NCBIGene": "25890" - } - }, - { - "_id": "EPHB1-GSK429286A-0.004942023221400172-3.2150942090242003", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6064171440636117, - "pvalue": 0.004942023221400172 - }, - "subject": { - "NCBIGene": "2047" - } - }, - { - "_id": "KIAA0556-GSK429286A-0.00501569694367216-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5524919095736782, - "pvalue": 0.00501569694367216 - }, - "subject": { - "NCBIGene": "23247" - } - }, - { - "_id": "MLL3-GSK429286A-0.005208747399874977-5.087502411600415", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1611165600726157, - "pvalue": 0.005208747399874977 - }, - "subject": { - "NCBIGene": "58508" - } - }, - { - "_id": "OR5H1-GSK429286A-0.005218260923075749-3.514671743452145", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5907851389956913, - "pvalue": 0.005218260923075749 - }, - "subject": { - "NCBIGene": "26341" - } - }, - { - "_id": "DDX60-GSK429286A-0.005309708928210245-4.358901800201275", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.5805240680278392, - "pvalue": 0.005309708928210245 - }, - "subject": { - "NCBIGene": "55601" - } - }, - { - "_id": "OR4C11-GSK429286A-0.005326965610843363-3.62266430316214", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.837956176769439, - "pvalue": 0.005326965610843363 - }, - "subject": { - "NCBIGene": "219429" - } - }, - { - "_id": "ENSG00000121031-GSK429286A-0.005376315605754358-3.61700005237166", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.6236798927915808, - "pvalue": 0.005376315605754358 - } - }, - { - "_id": "UBQLN3-GSK429286A-0.00540401493718939-3.78545267250147", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3077372145549329, - "pvalue": 0.00540401493718939 - }, - "subject": { - "NCBIGene": "50613" - } - }, - { - "_id": "PCNX-GSK429286A-0.005409921167023541-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -3.0083349517132847, - "pvalue": 0.005409921167023541 - }, - "subject": { - "NCBIGene": "22990" - } - }, - { - "_id": "MYO9B-GSK429286A-0.005409921167023541-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -3.0083349517132847, - "pvalue": 0.005409921167023541 - }, - "subject": { - "NCBIGene": "4650" - } - }, - { - "_id": "TRIM66-GSK429286A-0.005409921167023541-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -3.0083349517132847, - "pvalue": 0.005409921167023541 - }, - "subject": { - "NCBIGene": "9866" - } - }, - { - "_id": "ZNF462-GSK429286A-0.005409921167023541-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -3.0083349517132847, - "pvalue": 0.005409921167023541 - }, - "subject": { - "NCBIGene": "58499" - } - }, - { - "_id": "PKD1L3-GSK429286A-0.005476755495679704-4.4810244308383105", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3120704883787113, - "pvalue": 0.005476755495679704 - }, - "subject": { - "NCBIGene": "342372" - } - }, - { - "_id": "RFWD3-GSK429286A-0.005480600077709758-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -2.3994946097921015, - "pvalue": 0.005480600077709758 - }, - "subject": { - "NCBIGene": "55159" - } - }, - { - "_id": "MAN2A1-GSK429286A-0.005502789479070656-4.28580425141191", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -2.406789982377587, - "pvalue": 0.005502789479070656 - }, - "subject": { - "NCBIGene": "4124" - } - }, - { - "_id": "EFR3A-GSK429286A-0.005566168542796208-3.539787985915205", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5786787424835638, - "pvalue": 0.005566168542796208 - }, - "subject": { - "NCBIGene": "23167" - } - }, - { - "_id": "OR4E2-GSK429286A-0.005623138803028693-3.65955963811213", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.8256993222290692, - "pvalue": 0.005623138803028693 - }, - "subject": { - "NCBIGene": "26686" - } - }, - { - "_id": "TMEM194A-GSK429286A-0.005643120159668017-3.32663789527298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.7491414240395655, - "pvalue": 0.005643120159668017 - }, - "subject": { - "NCBIGene": "23306" - } - }, - { - "_id": "ATM-GSK429286A-0.005823216732651257-4.31645412991163", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7974944701375803, - "pvalue": 0.005823216732651257 - }, - "subject": { - "NCBIGene": "472" - } - }, - { - "_id": "AP3M1-GSK429286A-0.005883528764662658-3.32663789527298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.740360820752365, - "pvalue": 0.005883528764662658 - }, - "subject": { - "NCBIGene": "26985" - } - }, - { - "_id": "BRAF-GSK429286A-0.005890403050702437-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.7625466191502641, - "pvalue": 0.005890403050702437 - }, - "subject": { - "NCBIGene": "673" - } - }, - { - "_id": "MAP2K3-GSK429286A-0.005956917111208913-3.57244683471891", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.8138702200152916, - "pvalue": 0.005956917111208913 - }, - "subject": { - "NCBIGene": "5606" - } - }, - { - "_id": "SP1-GSK429286A-0.005959448663178722-4.09277428801013", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.788690636242738, - "pvalue": 0.005959448663178722 - }, - "subject": { - "NCBIGene": "6667" - } - }, - { - "_id": "SFMBT2-GSK429286A-0.005984848007105785-4.05115991265377", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.8354415431759137, - "pvalue": 0.005984848007105785 - }, - "subject": { - "NCBIGene": "57713" - } - }, - { - "_id": "TLR4-GSK429286A-0.006017565966778977-3.5975555689405248", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5616077827331951, - "pvalue": 0.006017565966778977 - }, - "subject": { - "NCBIGene": "7099" - } - }, - { - "_id": "HK3-GSK429286A-0.006251838065987246-3.3486246207586747", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.569716650116738, - "pvalue": 0.006251838065987246 - }, - "subject": { - "NCBIGene": "3101" - } - }, - { - "_id": "OR13A1-GSK429286A-0.006282436188680345-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.8078010216725104, - "pvalue": 0.006282436188680345 - }, - "subject": { - "NCBIGene": "79290" - } - }, - { - "_id": "ANKS6-GSK429286A-0.006431581678326965-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.6907172671002133, - "pvalue": 0.006431581678326965 - }, - "subject": { - "NCBIGene": "203286" - } - }, - { - "_id": "KIF2B-GSK429286A-0.006463979267309772-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0673133084642823, - "pvalue": 0.006463979267309772 - }, - "subject": { - "NCBIGene": "84643" - } - }, - { - "_id": "SLC24A2-GSK429286A-0.006490821207727061-2.87860594366259", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.806314110770776, - "pvalue": 0.006490821207727061 - }, - "subject": { - "NCBIGene": "25769" - } - }, - { - "_id": "RELN-GSK429286A-0.006526491668909805-4.896504453718199", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.3935838060493584, - "pvalue": 0.006526491668909805 - }, - "subject": { - "NCBIGene": "5649" - } - }, - { - "_id": "C11orf2-GSK429286A-0.006530763236619834-4.14407705682957", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.7662272918021205, - "pvalue": 0.006530763236619834 - }, - "subject": { - "NCBIGene": "56912" - } - }, - { - "_id": "LRP1B-GSK429286A-0.006596618427202017-5.10882702649963", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.7506943620290997, - "pvalue": 0.006596618427202017 - }, - "subject": { - "NCBIGene": "53353" - } - }, - { - "_id": "CTNNA3-GSK429286A-0.0066164305532482775-4.35356527179141", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7860948546394284, - "pvalue": 0.0066164305532482775 - }, - "subject": { - "NCBIGene": "29119" - } - }, - { - "_id": "GALNTL1-GSK429286A-0.006731030637654201-3.57244683471891", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7867448942297341, - "pvalue": 0.006731030637654201 - }, - "subject": { - "NCBIGene": "57452" - } - }, - { - "_id": "ASPM-GSK429286A-0.006780727800714674-3.54412584521196", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -2.310179209737123, - "pvalue": 0.006780727800714674 - }, - "subject": { - "NCBIGene": "259266" - } - }, - { - "_id": "RFTN1-GSK429286A-0.006780727800714674-3.54412584521196", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -2.310179209737123, - "pvalue": 0.006780727800714674 - }, - "subject": { - "NCBIGene": "23180" - } - }, - { - "_id": "TAS2R19-GSK429286A-0.006806290358192907-3.9693556795079", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.7663210871261683, - "pvalue": 0.006806290358192907 - }, - "subject": { - "NCBIGene": "259294" - } - }, - { - "_id": "FBLN7-GSK429286A-0.006880592282983217-4.41844670555009", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.8871620536375606, - "pvalue": 0.006880592282983217 - }, - "subject": { - "NCBIGene": "129804" - } - }, - { - "_id": "SERPINA9-GSK429286A-0.007063876402922572-4.2111426619708645", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.472481046149134, - "pvalue": 0.007063876402922572 - }, - "subject": { - "NCBIGene": "327657" - } - }, - { - "_id": "PTPN4-GSK429286A-0.007068189818618982-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3339553310830434, - "pvalue": 0.007068189818618982 - }, - "subject": { - "NCBIGene": "5775" - } - }, - { - "_id": "HERC1-GSK429286A-0.007153259716263577-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3755556669452838, - "pvalue": 0.007153259716263577 - }, - "subject": { - "NCBIGene": "8925" - } - }, - { - "_id": "SIDT1-GSK429286A-0.007329160399463791-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.9338532253693037, - "pvalue": 0.007329160399463791 - }, - "subject": { - "NCBIGene": "54847" - } - }, - { - "_id": "FAT3-GSK429286A-0.007350668388151329-4.936413571430565", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.3727419411053987, - "pvalue": 0.007350668388151329 - }, - "subject": { - "NCBIGene": "120114" - } - }, - { - "_id": "NUP214-GSK429286A-0.007503904268107602-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.365602830869213, - "pvalue": 0.007503904268107602 - }, - "subject": { - "NCBIGene": "8021" - } - }, - { - "_id": "POTEJ-GSK429286A-0.007585769874706086-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.7924256332970465, - "pvalue": 0.007585769874706086 - }, - "subject": { - "NCBIGene": "653781" - } - }, - { - "_id": "TAS1R2-GSK429286A-0.007591600946734902-3.42908959156423", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5186639383348357, - "pvalue": 0.007591600946734902 - }, - "subject": { - "NCBIGene": "80834" - } - }, - { - "_id": "BAHCC1-GSK429286A-0.007621279492715463-4.03090964666794", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7549623097879363, - "pvalue": 0.007621279492715463 - }, - "subject": { - "NCBIGene": "57597" - } - }, - { - "_id": "PDGFRA-GSK429286A-0.0076999893574040456-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.6881251087894475, - "pvalue": 0.0076999893574040456 - }, - "subject": { - "NCBIGene": "5156" - } - }, - { - "_id": "GUCY2F-GSK429286A-0.00784451244211125-3.32663789527298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.6790205801375075, - "pvalue": 0.00784451244211125 - }, - "subject": { - "NCBIGene": "2986" - } - }, - { - "_id": "C10orf112-GSK429286A-0.007868235234909328-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.490624002870761, - "pvalue": 0.007868235234909328 - }, - "subject": { - "NCBIGene": "340895" - } - }, - { - "_id": "TNFAIP6-GSK429286A-0.008103090861540855-4.68161053582366", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.7032702482994404, - "pvalue": 0.008103090861540855 - }, - "subject": { - "NCBIGene": "7130" - } - }, - { - "_id": "MYST3-GSK429286A-0.008133227355573886-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7399316137587504, - "pvalue": 0.008133227355573886 - }, - "subject": { - "NCBIGene": "7994" - } - }, - { - "_id": "TECTA-GSK429286A-0.008139413450742636-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3523163095833561, - "pvalue": 0.008139413450742636 - }, - "subject": { - "NCBIGene": "7007" - } - }, - { - "_id": "DHX57-GSK429286A-0.008166970257476647-1.68929427666924", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.6357334982944878, - "pvalue": 0.008166970257476647 - }, - "subject": { - "NCBIGene": "90957" - } - }, - { - "_id": "PABPC5-GSK429286A-0.008167188446096112-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7501518268902816, - "pvalue": 0.008167188446096112 - }, - "subject": { - "NCBIGene": "140886" - } - }, - { - "_id": "HEATR7B1-GSK429286A-0.008191838021030934-3.69449914431882", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4999860320363279, - "pvalue": 0.008191838021030934 - }, - "subject": { - "NCBIGene": "339766" - } - }, - { - "_id": "ZNF626-GSK429286A-0.0082139170730736-4.56538071565513", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.7438288083990894, - "pvalue": 0.0082139170730736 - }, - "subject": { - "NCBIGene": "199777" - } - }, - { - "_id": "SLC36A1-GSK429286A-0.008271981103915658-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.6521797608371656, - "pvalue": 0.008271981103915658 - }, - "subject": { - "NCBIGene": "206358" - } - }, - { - "_id": "TPO-GSK429286A-0.008289534328343845-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.8129559543091212, - "pvalue": 0.008289534328343845 - }, - "subject": { - "NCBIGene": "7173" - } - }, - { - "_id": "PKHD1L1-GSK429286A-0.008322738879245188-4.06025879309769", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -2.276368187475028, - "pvalue": 0.008322738879245188 - }, - "subject": { - "NCBIGene": "93035" - } - }, - { - "_id": "INSRR-GSK429286A-0.008326976825865489-4.88975856447588", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.8259285018653857, - "pvalue": 0.008326976825865489 - }, - "subject": { - "NCBIGene": "3645" - } - }, - { - "_id": "NEB-GSK429286A-0.008338800977314048-4.26190373147984", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -1.8137991387234402, - "pvalue": 0.008338800977314048 - }, - "subject": { - "NCBIGene": "4703" - } - }, - { - "_id": "KPRP-GSK429286A-0.008429857239960903-3.738644928191135", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.493941028534163, - "pvalue": 0.008429857239960903 - }, - "subject": { - "NCBIGene": "448834" - } - }, - { - "_id": "ITGA10-GSK429286A-0.008474677935072946-4.68515563151345", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.6069859784053921, - "pvalue": 0.008474677935072946 - }, - "subject": { - "NCBIGene": "8515" - } - }, - { - "_id": "ADCY2-GSK429286A-0.008479996204836568-3.953995429967045", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.5160979058292146, - "pvalue": 0.008479996204836568 - }, - "subject": { - "NCBIGene": "108" - } - }, - { - "_id": "HSPA8-GSK429286A-0.008528236312189593-3.31818348479346", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7370419703559603, - "pvalue": 0.008528236312189593 - }, - "subject": { - "NCBIGene": "3312" - } - }, - { - "_id": "EPG5-GSK429286A-0.008575997623782344-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3408408581127176, - "pvalue": 0.008575997623782344 - }, - "subject": { - "NCBIGene": "57724" - } - }, - { - "_id": "RAD51AP2-GSK429286A-0.008684772698144232-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.801314342282183, - "pvalue": 0.008684772698144232 - }, - "subject": { - "NCBIGene": "729475" - } - }, - { - "_id": "ZNF714-GSK429286A-0.008691986554107151-3.97190507098411", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.9046177733347696, - "pvalue": 0.008691986554107151 - }, - "subject": { - "NCBIGene": "148206" - } - }, - { - "_id": "FLRT2-GSK429286A-0.008910037998215008-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2866951742387422, - "pvalue": 0.008910037998215008 - }, - "subject": { - "NCBIGene": "23768" - } - }, - { - "_id": "CACNA2D3-GSK429286A-0.008935123565357257-4.51013037635527", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.223064289896611, - "pvalue": 0.008935123565357257 - }, - "subject": { - "NCBIGene": "55799" - } - }, - { - "_id": "ALAS2-GSK429286A-0.00895907711815851-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.6698808150148126, - "pvalue": 0.00895907711815851 - }, - "subject": { - "NCBIGene": "212" - } - }, - { - "_id": "RANBP2-GSK429286A-0.008999226140169498-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.6688766196238396, - "pvalue": 0.008999226140169498 - }, - "subject": { - "NCBIGene": "5903" - } - }, - { - "_id": "FAT3-GSK429286A-0.008999226140169498-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.6688766196238396, - "pvalue": 0.008999226140169498 - }, - "subject": { - "NCBIGene": "120114" - } - }, - { - "_id": "SVEP1-GSK429286A-0.009002052695247604-3.80365458246322", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -2.1417506764875216, - "pvalue": 0.009002052695247604 - }, - "subject": { - "NCBIGene": "79987" - } - }, - { - "_id": "ABCA7-GSK429286A-0.009058987222878874-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7155954259607005, - "pvalue": 0.009058987222878874 - }, - "subject": { - "NCBIGene": "10347" - } - }, - { - "_id": "FAM161B-GSK429286A-0.009058987222878874-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7155954259607005, - "pvalue": 0.009058987222878874 - }, - "subject": { - "NCBIGene": "145483" - } - }, - { - "_id": "ROS1-GSK429286A-0.009058987222878874-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7155954259607005, - "pvalue": 0.009058987222878874 - }, - "subject": { - "NCBIGene": "6098" - } - }, - { - "_id": "TRPC5-GSK429286A-0.009075888802884777-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.6706396300237027, - "pvalue": 0.009075888802884777 - }, - "subject": { - "NCBIGene": "7224" - } - }, - { - "_id": "MUC17-GSK429286A-0.009263445527493998-3.733605386218955", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.5108534090816585, - "pvalue": 0.009263445527493998 - }, - "subject": { - "NCBIGene": "140453" - } - }, - { - "_id": "HNF1A-GSK429286A-0.009318050022797434-4.12704722289144", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7084559296707114, - "pvalue": 0.009318050022797434 - }, - "subject": { - "NCBIGene": "6927" - } - }, - { - "_id": "MDN1-GSK429286A-0.009512864960798782-4.173031522254799", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -2.0261048422142145, - "pvalue": 0.009512864960798782 - }, - "subject": { - "NCBIGene": "23195" - } - }, - { - "_id": "ZNF292-GSK429286A-0.009512873841273967-3.90484302166336", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7051068032566756, - "pvalue": 0.009512873841273967 - }, - "subject": { - "NCBIGene": "23036" - } - }, - { - "_id": "ARHGAP33-GSK429286A-0.009539775286661107-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.7068667215690005, - "pvalue": 0.009539775286661107 - }, - "subject": { - "NCBIGene": "115703" - } - }, - { - "_id": "TRIP11-GSK429286A-0.00960361582471461-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -2.208710341582263, - "pvalue": 0.00960361582471461 - }, - "subject": { - "NCBIGene": "9321" - } - }, - { - "_id": "COL11A2-GSK429286A-0.00960361582471461-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -2.208710341582263, - "pvalue": 0.00960361582471461 - }, - "subject": { - "NCBIGene": "1302" - } - }, - { - "_id": "SLIT3-GSK429286A-0.00962582447123994-1.69014715941067", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.5967854930024876, - "pvalue": 0.00962582447123994 - }, - "subject": { - "NCBIGene": "6586" - } - }, - { - "_id": "KAT6B-GSK429286A-0.009640008309035122-3.69055444840927", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.4976445150201292, - "pvalue": 0.009640008309035122 - }, - "subject": { - "NCBIGene": "23522" - } - }, - { - "_id": "SH3BP4-GSK429286A-0.009642635624131425-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.7058210576619184, - "pvalue": 0.009642635624131425 - }, - "subject": { - "NCBIGene": "23677" - } - }, - { - "_id": "XPO7-GSK429286A-0.009811002666872504-2.80897466809532", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -1.731366864093761, - "pvalue": 0.009811002666872504 - }, - "subject": { - "NCBIGene": "23039" - } - }, - { - "_id": "TRIM58-GSK429286A-0.010016332151229641-3.759526394523065", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2004466747590778, - "pvalue": 0.010016332151229641 - }, - "subject": { - "NCBIGene": "25893" - } - }, - { - "_id": "TAX1BP1-GSK429286A-0.01023751689105663-4.56946841464662", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.6912479635843054, - "pvalue": 0.01023751689105663 - }, - "subject": { - "NCBIGene": "8887" - } - }, - { - "_id": "DDX60L-GSK429286A-0.010406334878382223-4.68161053582366", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.121745694507482, - "pvalue": 0.010406334878382223 - }, - "subject": { - "NCBIGene": "91351" - } - }, - { - "_id": "PAPPA-GSK429286A-0.010442350837220974-4.25528230539895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.0887704623931946, - "pvalue": 0.010442350837220974 - }, - "subject": { - "NCBIGene": "5069" - } - }, - { - "_id": "KIF23-GSK429286A-0.010513134291045773-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.596189394146354, - "pvalue": 0.010513134291045773 - }, - "subject": { - "NCBIGene": "9493" - } - }, - { - "_id": "MTR-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "4548" - } - }, - { - "_id": "MMRN1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "22915" - } - }, - { - "_id": "KDM5A-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "5927" - } - }, - { - "_id": "NBAS-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "51594" - } - }, - { - "_id": "TNR-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "7143" - } - }, - { - "_id": "SCN3A-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "6328" - } - }, - { - "_id": "ZDHHC8-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "29801" - } - }, - { - "_id": "SLC10A6-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "345274" - } - }, - { - "_id": "DSCAML1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "57453" - } - }, - { - "_id": "DIP2C-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "22982" - } - }, - { - "_id": "CACNA1D-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "776" - } - }, - { - "_id": "A2ML1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "144568" - } - }, - { - "_id": "MYO16-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "23026" - } - }, - { - "_id": "ALOX12B-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "242" - } - }, - { - "_id": "CLOCK-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "9575" - } - }, - { - "_id": "ASH1L-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "55870" - } - }, - { - "_id": "MED13L-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "23389" - } - }, - { - "_id": "FREM3-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "166752" - } - }, - { - "_id": "GOLGA3-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "2802" - } - }, - { - "_id": "TEX10-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "54881" - } - }, - { - "_id": "WDR87-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "83889" - } - }, - { - "_id": "CSK-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "1445" - } - }, - { - "_id": "KCNJ1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "3758" - } - }, - { - "_id": "TMEM2-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "23670" - } - }, - { - "_id": "AGT-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "183" - } - }, - { - "_id": "AKAP9-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "10142" - } - }, - { - "_id": "PLCB3-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "5331" - } - }, - { - "_id": "POU5F1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "5460" - } - }, - { - "_id": "PTX4-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "390667" - } - }, - { - "_id": "PAPPA2-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "60676" - } - }, - { - "_id": "EWSR1-GSK429286A-0.010640726947860989-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.7174768704783654, - "pvalue": 0.010640726947860989 - }, - "subject": { - "NCBIGene": "2130" - } - }, - { - "_id": "SP100-GSK429286A-0.010663427445521895-3.8369911628109152", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4455617259772802, - "pvalue": 0.010663427445521895 - }, - "subject": { - "NCBIGene": "6672" - } - }, - { - "_id": "SMARCA4-GSK429286A-0.01067801410845297-4.62428461216954", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.7697821822455593, - "pvalue": 0.01067801410845297 - }, - "subject": { - "NCBIGene": "6597" - } - }, - { - "_id": "KCNC4-GSK429286A-0.01074218986453314-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.591359246166513, - "pvalue": 0.01074218986453314 - }, - "subject": { - "NCBIGene": "3749" - } - }, - { - "_id": "UNC5D-GSK429286A-0.010775782716906246-3.80236909800672", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.6600241060356764, - "pvalue": 0.010775782716906246 - }, - "subject": { - "NCBIGene": "137970" - } - }, - { - "_id": "ITIH1-GSK429286A-0.010841581687546425-4.6468307994429", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.1891200711789989, - "pvalue": 0.010841581687546425 - }, - "subject": { - "NCBIGene": "3697" - } - }, - { - "_id": "LONP1-GSK429286A-0.010913219947670446-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.6805309929502659, - "pvalue": 0.010913219947670446 - }, - "subject": { - "NCBIGene": "9361" - } - }, - { - "_id": "EHMT1-GSK429286A-0.010959389684614356-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.600873162475292, - "pvalue": 0.010959389684614356 - }, - "subject": { - "NCBIGene": "79813" - } - }, - { - "_id": "SLC11A2-GSK429286A-0.010986276637891583-4.62586351232286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.6342418292019516, - "pvalue": 0.010986276637891583 - }, - "subject": { - "NCBIGene": "4891" - } - }, - { - "_id": "ZP4-GSK429286A-0.011043322063838318-3.61600323641552", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1908993108043338, - "pvalue": 0.011043322063838318 - }, - "subject": { - "NCBIGene": "57829" - } - }, - { - "_id": "CROCC-GSK429286A-0.01107382105924282-3.3525504129511647", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4508136136913203, - "pvalue": 0.01107382105924282 - }, - "subject": { - "NCBIGene": "9696" - } - }, - { - "_id": "SLC26A3-GSK429286A-0.01114854589442949-4.359318900166495", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3954975942531176, - "pvalue": 0.01114854589442949 - }, - "subject": { - "NCBIGene": "1811" - } - }, - { - "_id": "TMC3-GSK429286A-0.011304182599777156-4.389385949965435", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.391903289569155, - "pvalue": 0.011304182599777156 - }, - "subject": { - "NCBIGene": "342125" - } - }, - { - "_id": "FAM71A-GSK429286A-0.011544827550165703-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6710242096379024, - "pvalue": 0.011544827550165703 - }, - "subject": { - "NCBIGene": "149647" - } - }, - { - "_id": "PAK4-GSK429286A-0.011721694710225727-3.76913930395847", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6578602558320144, - "pvalue": 0.011721694710225727 - }, - "subject": { - "NCBIGene": "10298" - } - }, - { - "_id": "AHSG-GSK429286A-0.011858469102293146-4.35356527179141", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6512189477062362, - "pvalue": 0.011858469102293146 - }, - "subject": { - "NCBIGene": "197" - } - }, - { - "_id": "ITGAE-GSK429286A-0.011897875969767045-3.37512063203981", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.6784931207195863, - "pvalue": 0.011897875969767045 - }, - "subject": { - "NCBIGene": "3682" - } - }, - { - "_id": "MYH11-GSK429286A-0.011968883031736613-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3221094695600744, - "pvalue": 0.011968883031736613 - }, - "subject": { - "NCBIGene": "4629" - } - }, - { - "_id": "KIAA0100-GSK429286A-0.012075113964676287-4.36724015797856", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6468911794387873, - "pvalue": 0.012075113964676287 - }, - "subject": { - "NCBIGene": "9703" - } - }, - { - "_id": "NCAN-GSK429286A-0.012111561692023808-4.60979226147975", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.1695617216447793, - "pvalue": 0.012111561692023808 - }, - "subject": { - "NCBIGene": "1463" - } - }, - { - "_id": "PNMT-GSK429286A-0.012259967585639428-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.6341819697570437, - "pvalue": 0.012259967585639428 - }, - "subject": { - "NCBIGene": "5409" - } - }, - { - "_id": "CCDC57-GSK429286A-0.012262901152881788-4.16672083686873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.571545773123686, - "pvalue": 0.012262901152881788 - }, - "subject": { - "NCBIGene": "284001" - } - }, - { - "_id": "ARSF-GSK429286A-0.012263727399104115-4.36724015797856", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6432132049516504, - "pvalue": 0.012263727399104115 - }, - "subject": { - "NCBIGene": "416" - } - }, - { - "_id": "TMEM146-GSK429286A-0.012414354596109161-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7935248962861616, - "pvalue": 0.012414354596109161 - }, - "subject": { - "NCBIGene": "257062" - } - }, - { - "_id": "OR2L8-GSK429286A-0.012585068860485063-4.53797398713584", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.604348677493632, - "pvalue": 0.012585068860485063 - }, - "subject": { - "NCBIGene": "391190" - } - }, - { - "_id": "KIFAP3-GSK429286A-0.012631568300204897-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5547578056399571, - "pvalue": 0.012631568300204897 - }, - "subject": { - "NCBIGene": "22920" - } - }, - { - "_id": "OR52K2-GSK429286A-0.012681504425824608-4.36724015797856", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.635246843230275, - "pvalue": 0.012681504425824608 - }, - "subject": { - "NCBIGene": "119774" - } - }, - { - "_id": "FAM5B-GSK429286A-0.012759602420588906-4.35356527179141", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2733938737195545, - "pvalue": 0.012759602420588906 - }, - "subject": { - "NCBIGene": "57795" - } - }, - { - "_id": "BTBD7-GSK429286A-0.012797981544261185-3.91467537455607", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.7616886606307312, - "pvalue": 0.012797981544261185 - }, - "subject": { - "NCBIGene": "55727" - } - }, - { - "_id": "ANKRD11-GSK429286A-0.01302660101730672-4.56538071565513", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.6329270950275272, - "pvalue": 0.01302660101730672 - }, - "subject": { - "NCBIGene": "29123" - } - }, - { - "_id": "SPTA1-GSK429286A-0.01303702695370818-3.57244683471891", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.8912074488923625, - "pvalue": 0.01303702695370818 - }, - "subject": { - "NCBIGene": "6708" - } - }, - { - "_id": "CMYA5-GSK429286A-0.01310458527065544-4.38018528309815", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.380017740888742, - "pvalue": 0.01310458527065544 - }, - "subject": { - "NCBIGene": "202333" - } - }, - { - "_id": "TPP2-GSK429286A-0.013195419872501732-3.94425677573631", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2296655549340751, - "pvalue": 0.013195419872501732 - }, - "subject": { - "NCBIGene": "7174" - } - }, - { - "_id": "SNRNP48-GSK429286A-0.013228929961872268-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5442216809698592, - "pvalue": 0.013228929961872268 - }, - "subject": { - "NCBIGene": "154007" - } - }, - { - "_id": "PRKCB-GSK429286A-0.013262538305808938-3.9698434963487346", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4002449024738464, - "pvalue": 0.013262538305808938 - }, - "subject": { - "NCBIGene": "5579" - } - }, - { - "_id": "RAI1-GSK429286A-0.013391458663964935-4.34922164336285", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.1170884400716263, - "pvalue": 0.013391458663964935 - }, - "subject": { - "NCBIGene": "10743" - } - }, - { - "_id": "DLGAP2-GSK429286A-0.013479861049018275-4.53144026818292", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2198476149562556, - "pvalue": 0.013479861049018275 - }, - "subject": { - "NCBIGene": "9228" - } - }, - { - "_id": "NBAS-GSK429286A-0.0135218958497217-4.07519670929542", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.395165892756389, - "pvalue": 0.0135218958497217 - }, - "subject": { - "NCBIGene": "51594" - } - }, - { - "_id": "HK2-GSK429286A-0.01352976240673239-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.562588510784908, - "pvalue": 0.01352976240673239 - }, - "subject": { - "NCBIGene": "3099" - } - }, - { - "_id": "CPEB2-GSK429286A-0.01388706056963947-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7613043362304235, - "pvalue": 0.01388706056963947 - }, - "subject": { - "NCBIGene": "132864" - } - }, - { - "_id": "GNPTAB-GSK429286A-0.01388706056963947-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7613043362304235, - "pvalue": 0.01388706056963947 - }, - "subject": { - "NCBIGene": "79158" - } - }, - { - "_id": "EML6-GSK429286A-0.01388706056963947-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7613043362304235, - "pvalue": 0.01388706056963947 - }, - "subject": { - "NCBIGene": "400954" - } - }, - { - "_id": "NAPSB-GSK429286A-0.01388706056963947-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7613043362304235, - "pvalue": 0.01388706056963947 - }, - "subject": { - "NCBIGene": "ENSG00000131401" - } - }, - { - "_id": "KIF16B-GSK429286A-0.013904170166908165-4.73013443065967", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2359833587478886, - "pvalue": 0.013904170166908165 - }, - "subject": { - "NCBIGene": "55614" - } - }, - { - "_id": "PMFBP1-GSK429286A-0.013957355034810636-3.12450046524093", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2116062455637417, - "pvalue": 0.013957355034810636 - }, - "subject": { - "NCBIGene": "83449" - } - }, - { - "_id": "MLL-GSK429286A-0.014004566766371856-3.90484302166336", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6144552136310732, - "pvalue": 0.014004566766371856 - }, - "subject": { - "NCBIGene": "4297" - } - }, - { - "_id": "HECW2-GSK429286A-0.014304380306774077-3.8405531509490203", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3868547816050272, - "pvalue": 0.014304380306774077 - }, - "subject": { - "NCBIGene": "57520" - } - }, - { - "_id": "GALNT13-GSK429286A-0.01439480395638011-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.6064608242117682, - "pvalue": 0.01439480395638011 - }, - "subject": { - "NCBIGene": "114805" - } - }, - { - "_id": "PCNXL2-GSK429286A-0.01439911071506362-4.41844670555009", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.70145746555375, - "pvalue": 0.01439911071506362 - }, - "subject": { - "NCBIGene": "80003" - } - }, - { - "_id": "ASH1L-GSK429286A-0.014508331192535263-3.8044104993743755", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3864323431564503, - "pvalue": 0.014508331192535263 - }, - "subject": { - "NCBIGene": "55870" - } - }, - { - "_id": "PSIP1-GSK429286A-0.014534984813374844-4.25528230539895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5224163230442893, - "pvalue": 0.014534984813374844 - }, - "subject": { - "NCBIGene": "11168" - } - }, - { - "_id": "SERPINB3-GSK429286A-0.014542867667682065-4.88275162018359", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.5656505427532907, - "pvalue": 0.014542867667682065 - }, - "subject": { - "NCBIGene": "6317" - } - }, - { - "_id": "EPPK1-GSK429286A-0.014570731911558648-3.80365458246322", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.9830514651477857, - "pvalue": 0.014570731911558648 - }, - "subject": { - "NCBIGene": "83481" - } - }, - { - "_id": "ABCA9-GSK429286A-0.014877156638716568-4.83274262575344", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.3234470319289984, - "pvalue": 0.014877156638716568 - }, - "subject": { - "NCBIGene": "10350" - } - }, - { - "_id": "PLEKHH2-GSK429286A-0.014909733994461546-3.713596966710435", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3791974998942804, - "pvalue": 0.014909733994461546 - }, - "subject": { - "NCBIGene": "130271" - } - }, - { - "_id": "PCDHB11-GSK429286A-0.014974138358699627-4.35356527179141", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2326442803234734, - "pvalue": 0.014974138358699627 - }, - "subject": { - "NCBIGene": "56125" - } - }, - { - "_id": "PEAR1-GSK429286A-0.015249446219278028-3.8197166439669754", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3735111748237663, - "pvalue": 0.015249446219278028 - }, - "subject": { - "NCBIGene": "375033" - } - }, - { - "_id": "PTPRM-GSK429286A-0.015396525817020746-2.77207377247529", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.6226372317869717, - "pvalue": 0.015396525817020746 - }, - "subject": { - "NCBIGene": "5797" - } - }, - { - "_id": "CTNNA2-GSK429286A-0.015557492511110401-4.37380800230499", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.5591151521614053, - "pvalue": 0.015557492511110401 - }, - "subject": { - "NCBIGene": "1496" - } - }, - { - "_id": "POLR1B-GSK429286A-0.015639538529807907-4.34682522432738", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5045894145069139, - "pvalue": 0.015639538529807907 - }, - "subject": { - "NCBIGene": "84172" - } - }, - { - "_id": "LAMA1-GSK429286A-0.015800228099535327-5.02737027495256", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.9147126993326099, - "pvalue": 0.015800228099535327 - }, - "subject": { - "NCBIGene": "284217" - } - }, - { - "_id": "MLLT10-GSK429286A-0.015868516986400488-4.432882426703415", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.341476442063965, - "pvalue": 0.015868516986400488 - }, - "subject": { - "NCBIGene": "8028" - } - }, - { - "_id": "FAT3-GSK429286A-0.016014086928773635-4.904779993329875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.507783085422323, - "pvalue": 0.016014086928773635 - }, - "subject": { - "NCBIGene": "120114" - } - }, - { - "_id": "SYNE2-GSK429286A-0.016014086928773635-4.904779993329875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.507783085422323, - "pvalue": 0.016014086928773635 - }, - "subject": { - "NCBIGene": "23224" - } - }, - { - "_id": "PTEN-GSK429286A-0.016014086928773635-4.904779993329875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.507783085422323, - "pvalue": 0.016014086928773635 - }, - "subject": { - "NCBIGene": "5728" - } - }, - { - "_id": "UBR5-GSK429286A-0.0160727597207335-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.644214852070753, - "pvalue": 0.0160727597207335 - }, - "subject": { - "NCBIGene": "51366" - } - }, - { - "_id": "KIAA1671-GSK429286A-0.0160727597207335-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.644214852070753, - "pvalue": 0.0160727597207335 - }, - "subject": { - "NCBIGene": "85379" - } - }, - { - "_id": "NTSR1-GSK429286A-0.01627393971883535-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.5112495955798309, - "pvalue": 0.01627393971883535 - }, - "subject": { - "NCBIGene": "4923" - } - }, - { - "_id": "TCHH-GSK429286A-0.016299974206156996-3.28495852172343", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005499" - } - }, - "effect_size": -1.881136902386124, - "pvalue": 0.016299974206156996 - }, - "subject": { - "NCBIGene": "7062" - } - }, - { - "_id": "DLL4-GSK429286A-0.016380542593412185-4.62586351232286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.54003806690466, - "pvalue": 0.016380542593412185 - }, - "subject": { - "NCBIGene": "54567" - } - }, - { - "_id": "TAF1-GSK429286A-0.01638538529680627-4.63351692933392", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1979973280748704, - "pvalue": 0.01638538529680627 - }, - "subject": { - "NCBIGene": "6872" - } - }, - { - "_id": "VANGL2-GSK429286A-0.016407468709250472-4.55660583665711", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5726191740969069, - "pvalue": 0.016407468709250472 - }, - "subject": { - "NCBIGene": "57216" - } - }, - { - "_id": "LILRB4-GSK429286A-0.01644345203025006-4.090430297880966", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.310347209812813, - "pvalue": 0.01644345203025006 - }, - "subject": { - "NCBIGene": "11006" - } - }, - { - "_id": "EPHA7-GSK429286A-0.016456781785508193-4.03090964666794", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5745230747166665, - "pvalue": 0.016456781785508193 - }, - "subject": { - "NCBIGene": "2045" - } - }, - { - "_id": "MACF1-GSK429286A-0.016465080825941236-4.904779993329875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.492373562192683, - "pvalue": 0.016465080825941236 - }, - "subject": { - "NCBIGene": "23499" - } - }, - { - "_id": "PLEC-GSK429286A-0.016465080825941236-4.904779993329875", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.492373562192683, - "pvalue": 0.016465080825941236 - }, - "subject": { - "NCBIGene": "5339" - } - }, - { - "_id": "LUM-GSK429286A-0.016672056157234494-4.35977638536549", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.3205594540251462, - "pvalue": 0.016672056157234494 - }, - "subject": { - "NCBIGene": "4060" - } - }, - { - "_id": "USH2A-GSK429286A-0.01668895787609719-2.91803862057657", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -1.0100186928867168, - "pvalue": 0.01668895787609719 - }, - "subject": { - "NCBIGene": "7399" - } - }, - { - "_id": "ALMS1-GSK429286A-0.017003168316170714-3.5355532097840747", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9783677806287843, - "pvalue": 0.017003168316170714 - }, - "subject": { - "NCBIGene": "7840" - } - }, - { - "_id": "FRMPD3-GSK429286A-0.017079589051870115-4.88975856447588", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.6408522806979866, - "pvalue": 0.017079589051870115 - }, - "subject": { - "NCBIGene": "84443" - } - }, - { - "_id": "ADCY1-GSK429286A-0.01721641771216732-4.20666826453534", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.8914663625103654, - "pvalue": 0.01721641771216732 - }, - "subject": { - "NCBIGene": "107" - } - }, - { - "_id": "USP28-GSK429286A-0.01721641771216732-4.20666826453534", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.8914663625103654, - "pvalue": 0.01721641771216732 - }, - "subject": { - "NCBIGene": "57646" - } - }, - { - "_id": "CLOCK-GSK429286A-0.017627958255816045-4.16079588379921", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3512538411479882, - "pvalue": 0.017627958255816045 - }, - "subject": { - "NCBIGene": "9575" - } - }, - { - "_id": "TTLL6-GSK429286A-0.017645688097920883-4.62663593527873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.074124126299224, - "pvalue": 0.017645688097920883 - }, - "subject": { - "NCBIGene": "284076" - } - }, - { - "_id": "TARBP2-GSK429286A-0.017648783559068307-3.97190507098411", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7022973970210291, - "pvalue": 0.017648783559068307 - }, - "subject": { - "NCBIGene": "6895" - } - }, - { - "_id": "CCDC88C-GSK429286A-0.017648783559068307-3.97190507098411", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.7022973970210291, - "pvalue": 0.017648783559068307 - }, - "subject": { - "NCBIGene": "440193" - } - }, - { - "_id": "SESTD1-GSK429286A-0.017655661433354574-4.00341193707861", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5576367061821994, - "pvalue": 0.017655661433354574 - }, - "subject": { - "NCBIGene": "91404" - } - }, - { - "_id": "FMO3-GSK429286A-0.017733315763950964-4.6300789882865505", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2866881811522766, - "pvalue": 0.017733315763950964 - }, - "subject": { - "NCBIGene": "2328" - } - }, - { - "_id": "NRAS-GSK429286A-0.017741309370144575-3.58734014183103", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -1.9499994295315772, - "pvalue": 0.017741309370144575 - }, - "subject": { - "NCBIGene": "4893" - } - }, - { - "_id": "IGSF1-GSK429286A-0.018048000307104562-4.38402204410427", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.0695823184161402, - "pvalue": 0.018048000307104562 - }, - "subject": { - "NCBIGene": "3547" - } - }, - { - "_id": "FREM3-GSK429286A-0.018154430270333536-3.77197655666978", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.5901616984844869, - "pvalue": 0.018154430270333536 - }, - "subject": { - "NCBIGene": "166752" - } - }, - { - "_id": "SLC39A14-GSK429286A-0.018281309171477248-4.34682522432738", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4561582368679402, - "pvalue": 0.018281309171477248 - }, - "subject": { - "NCBIGene": "23516" - } - }, - { - "_id": "INO80-GSK429286A-0.01837568737149164-5.10957339720454", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1815967798965943, - "pvalue": 0.01837568737149164 - }, - "subject": { - "NCBIGene": "54617" - } - }, - { - "_id": "ANO5-GSK429286A-0.01840438502264083-4.35356527179141", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1918346350385915, - "pvalue": 0.01840438502264083 - }, - "subject": { - "NCBIGene": "203859" - } - }, - { - "_id": "ABLIM3-GSK429286A-0.01852589002376071-4.112229887522675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.271710077497594, - "pvalue": 0.01852589002376071 - }, - "subject": { - "NCBIGene": "22885" - } - }, - { - "_id": "ATG2B-GSK429286A-0.018659288971845284-3.502826583277015", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3350378689264375, - "pvalue": 0.018659288971845284 - }, - "subject": { - "NCBIGene": "55102" - } - }, - { - "_id": "MYH15-GSK429286A-0.018775815360783103-0.418592847200821", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.6154847091244093, - "pvalue": 0.018775815360783103 - }, - "subject": { - "NCBIGene": "22989" - } - }, - { - "_id": "SYNE2-GSK429286A-0.018787084228424122-3.8369911628109152", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.8727463658014643, - "pvalue": 0.018787084228424122 - }, - "subject": { - "NCBIGene": "23224" - } - }, - { - "_id": "ASPM-GSK429286A-0.01885590400315773-5.300224755563", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -0.8509817563360849, - "pvalue": 0.01885590400315773 - }, - "subject": { - "NCBIGene": "259266" - } - }, - { - "_id": "FLT3-GSK429286A-0.019033364992149495-3.824357262895515", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.32472517604353, - "pvalue": 0.019033364992149495 - }, - "subject": { - "NCBIGene": "2322" - } - }, - { - "_id": "INPP5F-GSK429286A-0.019069918927341008-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.303870833290708, - "pvalue": 0.019069918927341008 - }, - "subject": { - "NCBIGene": "22876" - } - }, - { - "_id": "TRIO-GSK429286A-0.019069918927341008-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.303870833290708, - "pvalue": 0.019069918927341008 - }, - "subject": { - "NCBIGene": "7204" - } - }, - { - "_id": "DNAH3-GSK429286A-0.019069918927341008-4.82358219767493", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.303870833290708, - "pvalue": 0.019069918927341008 - }, - "subject": { - "NCBIGene": "55567" - } - }, - { - "_id": "VPS13D-GSK429286A-0.019139170528315343-4.63351692933392", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.476003154926962, - "pvalue": 0.019139170528315343 - }, - "subject": { - "NCBIGene": "55187" - } - }, - { - "_id": "LMO7-GSK429286A-0.019145138908545342-4.747401341622865", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.0919947096564486, - "pvalue": 0.019145138908545342 - }, - "subject": { - "NCBIGene": "4008" - } - }, - { - "_id": "RFPL4B-GSK429286A-0.019286822760544473-4.37380800230499", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.4597792380895311, - "pvalue": 0.019286822760544473 - }, - "subject": { - "NCBIGene": "442247" - } - }, - { - "_id": "MYOM3-GSK429286A-0.019506251296286792-3.80365458246322", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.8860080473348781, - "pvalue": 0.019506251296286792 - }, - "subject": { - "NCBIGene": "127294" - } - }, - { - "_id": "COL11A2-GSK429286A-0.01954265083694061-3.669390410097205", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9509509751012171, - "pvalue": 0.01954265083694061 - }, - "subject": { - "NCBIGene": "1302" - } - }, - { - "_id": "HECW1-GSK429286A-0.01965151214770829-4.06135228787494", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0888484880690026, - "pvalue": 0.01965151214770829 - }, - "subject": { - "NCBIGene": "23072" - } - }, - { - "_id": "WDR27-GSK429286A-0.01968982382317951-4.1488777392318745", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.7143635825727808, - "pvalue": 0.01968982382317951 - }, - "subject": { - "NCBIGene": "253769" - } - }, - { - "_id": "ZBTB20-GSK429286A-0.01969456247583201-4.4127644865903", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.485016237561722, - "pvalue": 0.01969456247583201 - }, - "subject": { - "NCBIGene": "26137" - } - }, - { - "_id": "DDX11-GSK429286A-0.01985724017732134-3.7663339854755", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5312951944147237, - "pvalue": 0.01985724017732134 - }, - "subject": { - "NCBIGene": "1663" - } - }, - { - "_id": "MDN1-GSK429286A-0.01989672352074626-1.4779590579677915", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.4283069631391097, - "pvalue": 0.01989672352074626 - }, - "subject": { - "NCBIGene": "23195" - } - }, - { - "_id": "ASTE1-GSK429286A-0.019996772960918216-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.5251984570893555, - "pvalue": 0.019996772960918216 - }, - "subject": { - "NCBIGene": "28990" - } - }, - { - "_id": "OTOG-GSK429286A-0.02008413974111855-4.368440051918275", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2921417403511815, - "pvalue": 0.02008413974111855 - }, - "subject": { - "NCBIGene": "340990" - } - }, - { - "_id": "C7orf51-GSK429286A-0.020151139197727395-3.8405531509490203", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3138921556092287, - "pvalue": 0.020151139197727395 - }, - "subject": { - "NCBIGene": "222950" - } - }, - { - "_id": "SG223-GSK429286A-0.020189739844615244-4.06025879309769", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -1.9486471641766254, - "pvalue": 0.020189739844615244 - } - }, - { - "_id": "CELSR3-GSK429286A-0.020251901210826928-3.66361730829669", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3162343547706292, - "pvalue": 0.020251901210826928 - }, - "subject": { - "NCBIGene": "1951" - } - }, - { - "_id": "USP35-GSK429286A-0.020335576483051603-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4439134251397434, - "pvalue": 0.020335576483051603 - }, - "subject": { - "NCBIGene": "57558" - } - }, - { - "_id": "UBR4-GSK429286A-0.02042504294586369-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.4686545557091626, - "pvalue": 0.02042504294586369 - }, - "subject": { - "NCBIGene": "23352" - } - }, - { - "_id": "RNF17-GSK429286A-0.02060839503247213-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1692310485790502, - "pvalue": 0.02060839503247213 - }, - "subject": { - "NCBIGene": "56163" - } - }, - { - "_id": "ALPK2-GSK429286A-0.02065152503002333-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4295930135469372, - "pvalue": 0.02065152503002333 - }, - "subject": { - "NCBIGene": "115701" - } - }, - { - "_id": "RBP3-GSK429286A-0.020713327307451013-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.4636350319206186, - "pvalue": 0.020713327307451013 - }, - "subject": { - "NCBIGene": "5949" - } - }, - { - "_id": "GRIP1-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "23426" - } - }, - { - "_id": "GNA15-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "2769" - } - }, - { - "_id": "PLXNA4-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "91584" - } - }, - { - "_id": "CAPN6-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "827" - } - }, - { - "_id": "CCDC73-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "493860" - } - }, - { - "_id": "BCKDHB-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "594" - } - }, - { - "_id": "KIFC1-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "3833" - } - }, - { - "_id": "DYRK1A-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "1859" - } - }, - { - "_id": "ANO6-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "196527" - } - }, - { - "_id": "DHX9-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "1660" - } - }, - { - "_id": "MUC19-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "283463" - } - }, - { - "_id": "C14orf43-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "91748" - } - }, - { - "_id": "TBC1D8B-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "54885" - } - }, - { - "_id": "SMARCA2-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "6595" - } - }, - { - "_id": "NPAT-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "4863" - } - }, - { - "_id": "KIAA1267-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "284058" - } - }, - { - "_id": "ADAM2-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "2515" - } - }, - { - "_id": "WDR11-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "55717" - } - }, - { - "_id": "JARID2-GSK429286A-0.020800755740459982-4.22504619786692", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.3465500499734873, - "pvalue": 0.020800755740459982 - }, - "subject": { - "NCBIGene": "3720" - } - }, - { - "_id": "FN1-GSK429286A-0.020847210022134546-4.44017631497954", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.265507329776386, - "pvalue": 0.020847210022134546 - }, - "subject": { - "NCBIGene": "2335" - } - }, - { - "_id": "ZNF441-GSK429286A-0.020924000417361317-4.51493282269302", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5125205152509038, - "pvalue": 0.020924000417361317 - }, - "subject": { - "NCBIGene": "126068" - } - }, - { - "_id": "MYOF-GSK429286A-0.020986263603933415-4.79057882176069", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.5113074740954697, - "pvalue": 0.020986263603933415 - }, - "subject": { - "NCBIGene": "26509" - } - }, - { - "_id": "DPP10-GSK429286A-0.021117783590190224-4.070193895414745", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2760616779797032, - "pvalue": 0.021117783590190224 - }, - "subject": { - "NCBIGene": "57628" - } - }, - { - "_id": "RBBP6-GSK429286A-0.021146267537161402-4.21671877951392", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.5527011561011361, - "pvalue": 0.021146267537161402 - }, - "subject": { - "NCBIGene": "5930" - } - }, - { - "_id": "XKR4-GSK429286A-0.021167287555576716-4.63351692933392", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.4512939937254346, - "pvalue": 0.021167287555576716 - }, - "subject": { - "NCBIGene": "114786" - } - }, - { - "_id": "EFHA2-GSK429286A-0.021221143360185244-4.60247738780699", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4306999683386252, - "pvalue": 0.021221143360185244 - }, - "subject": { - "NCBIGene": "286097" - } - }, - { - "_id": "CSMD1-GSK429286A-0.021251332191463183-3.28495852172343", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005499" - } - }, - "effect_size": -1.792740659305331, - "pvalue": 0.021251332191463183 - }, - "subject": { - "NCBIGene": "64478" - } - }, - { - "_id": "CCDC144B-GSK429286A-0.02137450884075705-3.98136225588065", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3012856904605687, - "pvalue": 0.02137450884075705 - }, - "subject": { - "NCBIGene": "284047" - } - }, - { - "_id": "ENSG00000171101-GSK429286A-0.021485643390388623-4.45370547607737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.2968204534789276, - "pvalue": 0.021485643390388623 - }, - "subject": { - "NCBIGene": "ENSG00000171101" - } - }, - { - "_id": "SLIT3-GSK429286A-0.02150506397859227-3.8405531509490203", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.065957954690757, - "pvalue": 0.02150506397859227 - }, - "subject": { - "NCBIGene": "6586" - } - }, - { - "_id": "CNTN1-GSK429286A-0.02155918951862394-3.9575396435008097", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2986606103846268, - "pvalue": 0.02155918951862394 - }, - "subject": { - "NCBIGene": "1272" - } - }, - { - "_id": "BAIAP3-GSK429286A-0.02157288846860101-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.5043655574218253, - "pvalue": 0.02157288846860101 - }, - "subject": { - "NCBIGene": "8938" - } - }, - { - "_id": "O52L2-GSK429286A-0.021613805632756288-3.9466906041834697", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0627931049661672, - "pvalue": 0.021613805632756288 - } - }, - { - "_id": "MYO15A-GSK429286A-0.02163146520907451-3.69449914431882", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2985909336074546, - "pvalue": 0.02163146520907451 - }, - "subject": { - "NCBIGene": "51168" - } - }, - { - "_id": "OR5B3-GSK429286A-0.02196683869474022-4.036659500163095", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.294397659189231, - "pvalue": 0.02196683869474022 - }, - "subject": { - "NCBIGene": "441608" - } - }, - { - "_id": "SP2-GSK429286A-0.022052623188626053-4.53144026818292", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4217962272760316, - "pvalue": 0.022052623188626053 - }, - "subject": { - "NCBIGene": "6668" - } - }, - { - "_id": "BOD1L-GSK429286A-0.022112951043213026-2.90082792551563", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.521784086350599, - "pvalue": 0.022112951043213026 - }, - "subject": { - "NCBIGene": "259282" - } - }, - { - "_id": "DNAH6-GSK429286A-0.022141405498406267-4.51493282269302", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1606206210437273, - "pvalue": 0.022141405498406267 - }, - "subject": { - "NCBIGene": "1768" - } - }, - { - "_id": "SYTL5-GSK429286A-0.022295760677772652-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -1.919176686438752, - "pvalue": 0.022295760677772652 - }, - "subject": { - "NCBIGene": "94122" - } - }, - { - "_id": "LAMA2-GSK429286A-0.022295760677772652-1.94738156577938", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -1.919176686438752, - "pvalue": 0.022295760677772652 - }, - "subject": { - "NCBIGene": "3908" - } - }, - { - "_id": "ARHGAP44-GSK429286A-0.022316021010521544-4.58085702572817", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.285848786294017, - "pvalue": 0.022316021010521544 - }, - "subject": { - "NCBIGene": "9912" - } - }, - { - "_id": "DDX31-GSK429286A-0.022424739245515447-4.60247738780699", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.4173655264187461, - "pvalue": 0.022424739245515447 - }, - "subject": { - "NCBIGene": "64794" - } - }, - { - "_id": "EIF2A-GSK429286A-0.022447785517961213-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.518926449925293, - "pvalue": 0.022447785517961213 - }, - "subject": { - "NCBIGene": "83939" - } - }, - { - "_id": "PRG4-GSK429286A-0.022572365262748882-2.77062877993627", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4127563861829802, - "pvalue": 0.022572365262748882 - }, - "subject": { - "NCBIGene": "10216" - } - }, - { - "_id": "PCDHGB7-GSK429286A-0.022628474636516568-4.203555645683925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4609227421317856, - "pvalue": 0.022628474636516568 - }, - "subject": { - "NCBIGene": "56099" - } - }, - { - "_id": "CDH18-GSK429286A-0.022834597807024265-3.80236909800672", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.4682449108902935, - "pvalue": 0.022834597807024265 - }, - "subject": { - "NCBIGene": "1016" - } - }, - { - "_id": "ZNF518B-GSK429286A-0.022873400276247454-3.9693556795079", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.427185963473732, - "pvalue": 0.022873400276247454 - }, - "subject": { - "NCBIGene": "85460" - } - }, - { - "_id": "GGCX-GSK429286A-0.02305539486936209-4.017160791873275", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.280937366171603, - "pvalue": 0.02305539486936209 - }, - "subject": { - "NCBIGene": "2677" - } - }, - { - "_id": "SMARCA4-GSK429286A-0.023244775352758155-4.16079588379921", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.2874587449434578, - "pvalue": 0.023244775352758155 - }, - "subject": { - "NCBIGene": "6597" - } - }, - { - "_id": "ZNF208-GSK429286A-0.023350796544782084-4.17148635740073", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0535158515252405, - "pvalue": 0.023350796544782084 - }, - "subject": { - "NCBIGene": "7757" - } - }, - { - "_id": "C12orf63-GSK429286A-0.023420706728735443-3.69055444840927", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.3015348777490625, - "pvalue": 0.023420706728735443 - }, - "subject": { - "NCBIGene": "144535" - } - }, - { - "_id": "DAGLB-GSK429286A-0.023553291356679475-4.65373702407326", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.262763898133428, - "pvalue": 0.023553291356679475 - }, - "subject": { - "NCBIGene": "221955" - } - }, - { - "_id": "SCN1A-GSK429286A-0.023562537299352152-4.3604027148849855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0506535277471345, - "pvalue": 0.023562537299352152 - }, - "subject": { - "NCBIGene": "6323" - } - }, - { - "_id": "HOXC8-GSK429286A-0.023635926347580726-2.77062877993627", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.399621481411894, - "pvalue": 0.023635926347580726 - }, - "subject": { - "NCBIGene": "3224" - } - }, - { - "_id": "ENSG00000174501-GSK429286A-0.023669901594516277-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5921489074130144, - "pvalue": 0.023669901594516277 - }, - "subject": { - "NCBIGene": "400986" - } - }, - { - "_id": "BCL9L-GSK429286A-0.0237122734889548-4.072972953511179", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2763356529802892, - "pvalue": 0.0237122734889548 - }, - "subject": { - "NCBIGene": "283149" - } - }, - { - "_id": "COL14A1-GSK429286A-0.023816021440871315-4.78011064258079", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.2912907045256614, - "pvalue": 0.023816021440871315 - }, - "subject": { - "NCBIGene": "7373" - } - }, - { - "_id": "FNDC1-GSK429286A-0.023840393732798417-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.4850180359981762, - "pvalue": 0.023840393732798417 - }, - "subject": { - "NCBIGene": "84624" - } - }, - { - "_id": "MYO10-GSK429286A-0.023873597667062794-3.54412584521196", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -1.8433017944597965, - "pvalue": 0.023873597667062794 - }, - "subject": { - "NCBIGene": "4651" - } - }, - { - "_id": "SNRNP200-GSK429286A-0.023873597667062794-3.54412584521196", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -1.8433017944597965, - "pvalue": 0.023873597667062794 - }, - "subject": { - "NCBIGene": "23020" - } - }, - { - "_id": "GPR113-GSK429286A-0.023946549579170032-4.36724015797856", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1416069947924323, - "pvalue": 0.023946549579170032 - }, - "subject": { - "NCBIGene": "165082" - } - }, - { - "_id": "NT5C1B-GSK429286A-0.024090675106496182-3.08308146727685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.48231311171977, - "pvalue": 0.024090675106496182 - }, - "subject": { - "NCBIGene": "93034" - } - }, - { - "_id": "SLC35F4-GSK429286A-0.02412164776078596-4.2937577416625246", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0489622734692987, - "pvalue": 0.02412164776078596 - }, - "subject": { - "NCBIGene": "341880" - } - }, - { - "_id": "CCDC88A-GSK429286A-0.024405884437940388-4.324912498148265", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2404448834753596, - "pvalue": 0.024405884437940388 - }, - "subject": { - "NCBIGene": "55704" - } - }, - { - "_id": "DYTN-GSK429286A-0.024465747182368092-4.2066215624614145", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2678115699324777, - "pvalue": 0.024465747182368092 - }, - "subject": { - "NCBIGene": "391475" - } - }, - { - "_id": "SIPA1L2-GSK429286A-0.024469381351877234-4.6319870474890905", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.0139857209668852, - "pvalue": 0.024469381351877234 - }, - "subject": { - "NCBIGene": "57568" - } - }, - { - "_id": "PCDHB6-GSK429286A-0.024533232121443708-4.80731904953802", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -0.9222298572152877, - "pvalue": 0.024533232121443708 - }, - "subject": { - "NCBIGene": "56130" - } - }, - { - "_id": "CD1A-GSK429286A-0.024822660026704888-4.34682522432738", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3945928265683336, - "pvalue": 0.024822660026704888 - }, - "subject": { - "NCBIGene": "909" - } - }, - { - "_id": "CAPN9-GSK429286A-0.02496343135730307-4.21671877951392", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.4905011898940987, - "pvalue": 0.02496343135730307 - }, - "subject": { - "NCBIGene": "10753" - } - }, - { - "_id": "OR2G2-GSK429286A-0.025031017609101355-4.79057882176069", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.466501827175037, - "pvalue": 0.025031017609101355 - }, - "subject": { - "NCBIGene": "81470" - } - }, - { - "_id": "ZYG11B-GSK429286A-0.025031017609101355-4.79057882176069", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.466501827175037, - "pvalue": 0.025031017609101355 - }, - "subject": { - "NCBIGene": "79699" - } - }, - { - "_id": "SMG1-GSK429286A-0.02511859139722553-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.414779131223583, - "pvalue": 0.02511859139722553 - }, - "subject": { - "NCBIGene": "23049" - } - }, - { - "_id": "NF1-GSK429286A-0.02518680393438911-4.165287260047845", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2617171507328009, - "pvalue": 0.02518680393438911 - }, - "subject": { - "NCBIGene": "4763" - } - }, - { - "_id": "PLIN5-GSK429286A-0.02560995917946891-3.9693556795079", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.39929592608643, - "pvalue": 0.02560995917946891 - }, - "subject": { - "NCBIGene": "440503" - } - }, - { - "_id": "DSTYK-GSK429286A-0.02561967726668759-5.45563588847083", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.5242007580356496, - "pvalue": 0.02561967726668759 - }, - "subject": { - "NCBIGene": "25778" - } - }, - { - "_id": "ADAMTS20-GSK429286A-0.025628558264151398-4.76016878449977", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.4584915133501462, - "pvalue": 0.025628558264151398 - }, - "subject": { - "NCBIGene": "80070" - } - }, - { - "_id": "C9orf93-GSK429286A-0.025688062537732925-5.10957339720454", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1154335878689021, - "pvalue": 0.025688062537732925 - }, - "subject": { - "NCBIGene": "203238" - } - }, - { - "_id": "ATN1-GSK429286A-0.02571343185537597-4.26106403104667", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.53891294349194, - "pvalue": 0.02571343185537597 - }, - "subject": { - "NCBIGene": "1822" - } - }, - { - "_id": "SCUBE1-GSK429286A-0.025783072118616756-4.687097749639969", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2068628379174442, - "pvalue": 0.025783072118616756 - }, - "subject": { - "NCBIGene": "80274" - } - }, - { - "_id": "PPP4R1L-GSK429286A-0.025798030569745865-4.16672083686873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3871039091468382, - "pvalue": 0.025798030569745865 - }, - "subject": { - "NCBIGene": "ENSG00000124224" - } - }, - { - "_id": "CHD1L-GSK429286A-0.02586021268937542-3.0823401622236", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005072" - } - }, - "effect_size": -1.4939368338978551, - "pvalue": 0.02586021268937542 - }, - "subject": { - "NCBIGene": "9557" - } - }, - { - "_id": "ARAP3-GSK429286A-0.025874773801875483-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3857331110638071, - "pvalue": 0.025874773801875483 - }, - "subject": { - "NCBIGene": "64411" - } - }, - { - "_id": "TLN1-GSK429286A-0.025962001245265463-4.38018528309815", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2249976511447915, - "pvalue": 0.025962001245265463 - }, - "subject": { - "NCBIGene": "7094" - } - }, - { - "_id": "SEC31A-GSK429286A-0.02600063714980166-4.510094993435905", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.2536160785053245, - "pvalue": 0.02600063714980166 - }, - "subject": { - "NCBIGene": "22872" - } - }, - { - "_id": "DDX46-GSK429286A-0.02606030744241368-4.44333229866351", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.3139443377103206, - "pvalue": 0.02606030744241368 - }, - "subject": { - "NCBIGene": "9879" - } - }, - { - "_id": "POM121L12-GSK429286A-0.02618483731707953-3.893104848062035", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0299811394476421, - "pvalue": 0.02618483731707953 - }, - "subject": { - "NCBIGene": "285877" - } - }, - { - "_id": "B4GALT2-GSK429286A-0.026246344167100286-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.399950697234539, - "pvalue": 0.026246344167100286 - }, - "subject": { - "NCBIGene": "8704" - } - }, - { - "_id": "POTEJ-GSK429286A-0.026454093726196188-3.941451328381995", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0015075" - } - }, - "effect_size": -1.5377569138174434, - "pvalue": 0.026454093726196188 - }, - "subject": { - "NCBIGene": "653781" - } - }, - { - "_id": "TNR-GSK429286A-0.0266205221048937-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5706429565008146, - "pvalue": 0.0266205221048937 - }, - "subject": { - "NCBIGene": "7143" - } - }, - { - "_id": "C20orf185-GSK429286A-0.0266205221048937-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5706429565008146, - "pvalue": 0.0266205221048937 - }, - "subject": { - "NCBIGene": "359710" - } - }, - { - "_id": "SCN4A-GSK429286A-0.026635622625154086-3.660797710936035", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0267785265033473, - "pvalue": 0.026635622625154086 - }, - "subject": { - "NCBIGene": "6329" - } - }, - { - "_id": "GIMAP8-GSK429286A-0.026767011995758233-3.58439357030024", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.4154233515167507, - "pvalue": 0.026767011995758233 - }, - "subject": { - "NCBIGene": "155038" - } - }, - { - "_id": "PRDM14-GSK429286A-0.026768274604926083-4.89250247478782", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4491534409088764, - "pvalue": 0.026768274604926083 - }, - "subject": { - "NCBIGene": "63978" - } - }, - { - "_id": "POLE-GSK429286A-0.026768274604926083-4.89250247478782", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4491534409088764, - "pvalue": 0.026768274604926083 - }, - "subject": { - "NCBIGene": "5426" - } - }, - { - "_id": "YLPM1-GSK429286A-0.02685306675262269-4.02729116494675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.4950091362574554, - "pvalue": 0.02685306675262269 - }, - "subject": { - "NCBIGene": "56252" - } - }, - { - "_id": "HRNR-GSK429286A-0.02713686057951927-4.03090964666794", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.7412941953317351, - "pvalue": 0.02713686057951927 - }, - "subject": { - "NCBIGene": "388697" - } - }, - { - "_id": "NCAM2-GSK429286A-0.02714498028444679-2.9956228930344", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005072" - } - }, - "effect_size": -1.4812665275003254, - "pvalue": 0.02714498028444679 - }, - "subject": { - "NCBIGene": "4685" - } - }, - { - "_id": "USP34-GSK429286A-0.02715767344490333-4.895322834088085", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.2586817035746516, - "pvalue": 0.02715767344490333 - }, - "subject": { - "NCBIGene": "9736" - } - }, - { - "_id": "GPR112-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "139378" - } - }, - { - "_id": "LINGO4-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "339398" - } - }, - { - "_id": "WDR70-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "55100" - } - }, - { - "_id": "B4GALNT4-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "338707" - } - }, - { - "_id": "CREBBP-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "1387" - } - }, - { - "_id": "URB2-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "9816" - } - }, - { - "_id": "ENSG00000005206-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "56928" - } - }, - { - "_id": "TMTC3-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "160418" - } - }, - { - "_id": "C5orf5-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "51306" - } - }, - { - "_id": "AHDC1-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "27245" - } - }, - { - "_id": "C14orf38-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "729665" - } - }, - { - "_id": "EFCAB8-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "388795" - } - }, - { - "_id": "DNHD1-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "144132" - } - }, - { - "_id": "EPHA2-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "1969" - } - }, - { - "_id": "NPHP3-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "27031" - } - }, - { - "_id": "TNRC6C-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "57690" - } - }, - { - "_id": "FLRT1-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "23769" - } - }, - { - "_id": "CENPJ-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "55835" - } - }, - { - "_id": "FAM135B-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "51059" - } - }, - { - "_id": "SPTBN1-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "6711" - } - }, - { - "_id": "BDP1-GSK429286A-0.02717303217956402-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -2.113621806736737, - "pvalue": 0.02717303217956402 - }, - "subject": { - "NCBIGene": "55814" - } - }, - { - "_id": "GALC-GSK429286A-0.027264431742393336-3.80236909800672", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.4215044003394954, - "pvalue": 0.027264431742393336 - }, - "subject": { - "NCBIGene": "2581" - } - }, - { - "_id": "ANKAR-GSK429286A-0.02729790353748137-4.16672083686873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3760027967702362, - "pvalue": 0.02729790353748137 - }, - "subject": { - "NCBIGene": "150709" - } - }, - { - "_id": "MAG-GSK429286A-0.027328198943021825-3.83459238271164", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.248347232963033, - "pvalue": 0.027328198943021825 - }, - "subject": { - "NCBIGene": "4099" - } - }, - { - "_id": "FLG2-GSK429286A-0.027663807067442196-4.401595238550845", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -0.9565711565377176, - "pvalue": 0.027663807067442196 - }, - "subject": { - "NCBIGene": "388698" - } - }, - { - "_id": "RB1-GSK429286A-0.028098340404808488-4.11658429494586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005499" - } - }, - "effect_size": -1.3196954544876258, - "pvalue": 0.028098340404808488 - }, - "subject": { - "NCBIGene": "5925" - } - }, - { - "_id": "MYH13-GSK429286A-0.028192177135669443-3.76913930395847", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9448207981837856, - "pvalue": 0.028192177135669443 - }, - "subject": { - "NCBIGene": "8735" - } - }, - { - "_id": "SEMA4A-GSK429286A-0.028216017854273204-4.89250247478782", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.4354707443421315, - "pvalue": 0.028216017854273204 - }, - "subject": { - "NCBIGene": "64218" - } - }, - { - "_id": "PGC-GSK429286A-0.028350541992857626-3.48972564135445", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3789667115974613, - "pvalue": 0.028350541992857626 - }, - "subject": { - "NCBIGene": "5225" - } - }, - { - "_id": "PLEKHH1-GSK429286A-0.028412333119567895-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.1335000911228603, - "pvalue": 0.028412333119567895 - }, - "subject": { - "NCBIGene": "57475" - } - }, - { - "_id": "NEK10-GSK429286A-0.02855650012428382-3.976063407921775", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2369482578145465, - "pvalue": 0.02855650012428382 - }, - "subject": { - "NCBIGene": "152110" - } - }, - { - "_id": "SLC28A3-GSK429286A-0.02888259506001081-5.52358977220436", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.4905311030821469, - "pvalue": 0.02888259506001081 - }, - "subject": { - "NCBIGene": "64078" - } - }, - { - "_id": "CCBP2-GSK429286A-0.02894118100445791-4.90375369214298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.428845635522935, - "pvalue": 0.02894118100445791 - }, - "subject": { - "NCBIGene": "1238" - } - }, - { - "_id": "ADNP2-GSK429286A-0.028976489991779226-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.2743724567971715, - "pvalue": 0.028976489991779226 - }, - "subject": { - "NCBIGene": "22850" - } - }, - { - "_id": "CABIN1-GSK429286A-0.02902899661449189-4.71847347963012", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.7297477627784044, - "pvalue": 0.02902899661449189 - }, - "subject": { - "NCBIGene": "23523" - } - }, - { - "_id": "PPIP5K2-GSK429286A-0.02902899661449189-4.71847347963012", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.7297477627784044, - "pvalue": 0.02902899661449189 - }, - "subject": { - "NCBIGene": "23262" - } - }, - { - "_id": "HEG1-GSK429286A-0.029073784990771512-4.17047427868551", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0015075" - } - }, - "effect_size": -1.627453683607896, - "pvalue": 0.029073784990771512 - }, - "subject": { - "NCBIGene": "57493" - } - }, - { - "_id": "ZNF462-GSK429286A-0.029073784990771512-4.17047427868551", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0015075" - } - }, - "effect_size": -1.627453683607896, - "pvalue": 0.029073784990771512 - }, - "subject": { - "NCBIGene": "58499" - } - }, - { - "_id": "PCDH15-GSK429286A-0.029105949592559036-5.05983986134958", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -0.8892156495101939, - "pvalue": 0.029105949592559036 - }, - "subject": { - "NCBIGene": "65217" - } - }, - { - "_id": "R3HDM2-GSK429286A-0.02913952267351592-4.16700301854278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3574195977538344, - "pvalue": 0.02913952267351592 - }, - "subject": { - "NCBIGene": "22864" - } - }, - { - "_id": "INSR-GSK429286A-0.029337644588177676-4.47663618172697", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.5588842895346768, - "pvalue": 0.029337644588177676 - }, - "subject": { - "NCBIGene": "3643" - } - }, - { - "_id": "ENSG00000183704-GSK429286A-0.0293412852626805-3.76653249642663", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -1.6530030567023057, - "pvalue": 0.0293412852626805 - }, - "subject": { - "NCBIGene": "ENSG00000183704" - } - }, - { - "_id": "FLG-GSK429286A-0.02939653952343355-3.37512063203981", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.026360799639326, - "pvalue": 0.02939653952343355 - }, - "subject": { - "NCBIGene": "2312" - } - }, - { - "_id": "AHRR-GSK429286A-0.029491160080226272-4.09108721392841", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.7056703756328737, - "pvalue": 0.029491160080226272 - }, - "subject": { - "NCBIGene": "ENSG00000063438" - } - }, - { - "_id": "SEMA3A-GSK429286A-0.029547588900241294-4.99269318216872", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.389066806477204, - "pvalue": 0.029547588900241294 - }, - "subject": { - "NCBIGene": "10371" - } - }, - { - "_id": "DPP10-GSK429286A-0.02973513506789586-3.28352198782098", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.2713683177256052, - "pvalue": 0.02973513506789586 - }, - "subject": { - "NCBIGene": "57628" - } - }, - { - "_id": "RP11-368J21.2-GSK429286A-0.029797175699480545-4.483905466141895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.1786871880492162, - "pvalue": 0.029797175699480545 - } - }, - { - "_id": "C1orf43-GSK429286A-0.030000791629635492-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5188762580844581, - "pvalue": 0.030000791629635492 - }, - "subject": { - "NCBIGene": "25912" - } - }, - { - "_id": "IGSF3-GSK429286A-0.030000791629635492-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5188762580844581, - "pvalue": 0.030000791629635492 - }, - "subject": { - "NCBIGene": "3321" - } - }, - { - "_id": "WDFY4-GSK429286A-0.030115064128917835-4.521633564046455", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.2827399825956676, - "pvalue": 0.030115064128917835 - }, - "subject": { - "NCBIGene": "57705" - } - }, - { - "_id": "DAB2IP-GSK429286A-0.03014438392906871-4.62586351232286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3889475467756047, - "pvalue": 0.03014438392906871 - }, - "subject": { - "NCBIGene": "153090" - } - }, - { - "_id": "AMIGO2-GSK429286A-0.03014438392906871-4.62586351232286", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.3889475467756047, - "pvalue": 0.03014438392906871 - }, - "subject": { - "NCBIGene": "347902" - } - }, - { - "_id": "POTEG-GSK429286A-0.030292654178714264-3.808463495134355", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0036770282442078, - "pvalue": 0.030292654178714264 - }, - "subject": { - "NCBIGene": "404785" - } - }, - { - "_id": "PIK3CA-GSK429286A-0.03031464366376529-5.45563588847083", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.018577462635304, - "pvalue": 0.03031464366376529 - }, - "subject": { - "NCBIGene": "5290" - } - }, - { - "_id": "ATM-GSK429286A-0.030481338942528573-4.9222064639702", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.8173305762229256, - "pvalue": 0.030481338942528573 - }, - "subject": { - "NCBIGene": "472" - } - }, - { - "_id": "IFT140-GSK429286A-0.030533731994444657-4.21597000567105", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3879051496541133, - "pvalue": 0.030533731994444657 - }, - "subject": { - "NCBIGene": "9742" - } - }, - { - "_id": "NF1-GSK429286A-0.030533731994444657-4.21597000567105", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3879051496541133, - "pvalue": 0.030533731994444657 - }, - "subject": { - "NCBIGene": "4763" - } - }, - { - "_id": "POLE-GSK429286A-0.030629916406810308-4.009169551838885", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.2270220748117773, - "pvalue": 0.030629916406810308 - }, - "subject": { - "NCBIGene": "5426" - } - }, - { - "_id": "LCP1-GSK429286A-0.030693689789735464-4.53144026818292", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.327262597652359, - "pvalue": 0.030693689789735464 - }, - "subject": { - "NCBIGene": "3936" - } - }, - { - "_id": "RELN-GSK429286A-0.030831938687802988-4.66570341008558", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.2742363728814108, - "pvalue": 0.030831938687802988 - }, - "subject": { - "NCBIGene": "5649" - } - }, - { - "_id": "SPTA1-GSK429286A-0.03086680696447667-5.146985150157304", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -0.8802234887693208, - "pvalue": 0.03086680696447667 - }, - "subject": { - "NCBIGene": "6708" - } - }, - { - "_id": "KRAS-GSK429286A-0.030953909077206625-5.20531435712354", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -0.9628450804347222, - "pvalue": 0.030953909077206625 - }, - "subject": { - "NCBIGene": "3845" - } - }, - { - "_id": "GPRASP1-GSK429286A-0.031165325512820818-3.957008261332155", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.216472537201437, - "pvalue": 0.031165325512820818 - }, - "subject": { - "NCBIGene": "9737" - } - }, - { - "_id": "ZNF628-GSK429286A-0.03131027365709063-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.3471114933760087, - "pvalue": 0.03131027365709063 - }, - "subject": { - "NCBIGene": "89887" - } - }, - { - "_id": "ZBTB6-GSK429286A-0.031678430534849485-4.402256268702275", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1805343118219414, - "pvalue": 0.031678430534849485 - }, - "subject": { - "NCBIGene": "10773" - } - }, - { - "_id": "TRIM49-GSK429286A-0.03181620392642961-3.75483508634143", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.2208299742651227, - "pvalue": 0.03181620392642961 - }, - "subject": { - "NCBIGene": "57093" - } - }, - { - "_id": "COL2A1-GSK429286A-0.03191238961692106-4.61753390414932", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.3393780470277756, - "pvalue": 0.03191238961692106 - }, - "subject": { - "NCBIGene": "1280" - } - }, - { - "_id": "ELN-GSK429286A-0.03206551197850165-5.02624789559927", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.3967384239776681, - "pvalue": 0.03206551197850165 - }, - "subject": { - "NCBIGene": "2006" - } - }, - { - "_id": "MYH9-GSK429286A-0.032192138574542145-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4988174282376399, - "pvalue": 0.032192138574542145 - }, - "subject": { - "NCBIGene": "4627" - } - }, - { - "_id": "ELMO1-GSK429286A-0.03236610806398077-4.25528230539895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.0380887618729737, - "pvalue": 0.03236610806398077 - }, - "subject": { - "NCBIGene": "9844" - } - }, - { - "_id": "CHD8-GSK429286A-0.03239078266969117-2.80111703496472", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -1.4027605252130186, - "pvalue": 0.03239078266969117 - }, - "subject": { - "NCBIGene": "57680" - } - }, - { - "_id": "CEP95-GSK429286A-0.032476580518533374-0.418592847200821", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.4614837308975048, - "pvalue": 0.032476580518533374 - }, - "subject": { - "NCBIGene": "90799" - } - }, - { - "_id": "TRPV6-GSK429286A-0.0324951495234642-3.539995698335", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.080137502645186, - "pvalue": 0.0324951495234642 - }, - "subject": { - "NCBIGene": "55503" - } - }, - { - "_id": "C2orf53-GSK429286A-0.03251880863836186-4.79057882176069", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.398343998419042, - "pvalue": 0.03251880863836186 - }, - "subject": { - "NCBIGene": "339779" - } - }, - { - "_id": "CAND1-GSK429286A-0.032844201280224396-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3265304474927047, - "pvalue": 0.032844201280224396 - }, - "subject": { - "NCBIGene": "55832" - } - }, - { - "_id": "CPN1-GSK429286A-0.032898007404503715-4.02729116494675", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.4196733568889017, - "pvalue": 0.032898007404503715 - }, - "subject": { - "NCBIGene": "1369" - } - }, - { - "_id": "OR2A4-GSK429286A-0.032901834531914156-4.25528230539895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.3128903142808843, - "pvalue": 0.032901834531914156 - }, - "subject": { - "NCBIGene": "79541" - } - }, - { - "_id": "PEX1-GSK429286A-0.03295389972065811-2.80897466809532", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -1.3978280048759237, - "pvalue": 0.03295389972065811 - }, - "subject": { - "NCBIGene": "5189" - } - }, - { - "_id": "CILP-GSK429286A-0.033016682291173396-4.60979226147975", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -0.9721785643088394, - "pvalue": 0.033016682291173396 - }, - "subject": { - "NCBIGene": "8483" - } - }, - { - "_id": "FANCI-GSK429286A-0.033510434612022265-3.57759520740764", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.4586231550144222, - "pvalue": 0.033510434612022265 - }, - "subject": { - "NCBIGene": "55215" - } - }, - { - "_id": "SYT9-GSK429286A-0.033518730551654066-3.98785595501973", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.310844108903668, - "pvalue": 0.033518730551654066 - }, - "subject": { - "NCBIGene": "143425" - } - }, - { - "_id": "SLC5A9-GSK429286A-0.03352360705458977-3.97190507098411", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.5121292256583247, - "pvalue": 0.03352360705458977 - }, - "subject": { - "NCBIGene": "200010" - } - }, - { - "_id": "NLRP3-GSK429286A-0.0344490260392292-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.8162619545777201, - "pvalue": 0.0344490260392292 - }, - "subject": { - "NCBIGene": "114548" - } - }, - { - "_id": "IKBKAP-GSK429286A-0.03451205952485349-4.7822251366193544", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.2047047560273185, - "pvalue": 0.03451205952485349 - }, - "subject": { - "NCBIGene": "8518" - } - }, - { - "_id": "AHNAK2-GSK429286A-0.03453375518274751-4.786688820851685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.0625599330557605, - "pvalue": 0.03453375518274751 - }, - "subject": { - "NCBIGene": "113146" - } - }, - { - "_id": "CELSR1-GSK429286A-0.03453470730328632-4.62980559754601", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.6702043024847932, - "pvalue": 0.03453470730328632 - }, - "subject": { - "NCBIGene": "9620" - } - }, - { - "_id": "PLAA-GSK429286A-0.034861183044450926-3.31818348479346", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0659864699675958, - "pvalue": 0.034861183044450926 - }, - "subject": { - "NCBIGene": "9373" - } - }, - { - "_id": "RFX8-GSK429286A-0.03488885050569817-4.24555039692748", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3825552413384603, - "pvalue": 0.03488885050569817 - }, - "subject": { - "NCBIGene": "731220" - } - }, - { - "_id": "GUCY2F-GSK429286A-0.0349908212596848-4.011223598357359", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1899533448160775, - "pvalue": 0.0349908212596848 - }, - "subject": { - "NCBIGene": "2986" - } - }, - { - "_id": "FCRL3-GSK429286A-0.0352999068247026-3.90484302166336", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0620876900461351, - "pvalue": 0.0352999068247026 - }, - "subject": { - "NCBIGene": "115352" - } - }, - { - "_id": "SFSWAP-GSK429286A-0.035320223673863914-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4703019762543046, - "pvalue": 0.035320223673863914 - }, - "subject": { - "NCBIGene": "6433" - } - }, - { - "_id": "ENSG00000093100-GSK429286A-0.035320223673863914-4.43520622038374", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4703019762543046, - "pvalue": 0.035320223673863914 - }, - "subject": { - "NCBIGene": "ENSG00000093100" - } - }, - { - "_id": "ZNF142-GSK429286A-0.03533052245447668-4.061503479924025", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.44710915260703, - "pvalue": 0.03533052245447668 - }, - "subject": { - "NCBIGene": "7701" - } - }, - { - "_id": "COL6A3-GSK429286A-0.035404384591889604-3.54065929919659", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.911039586530964, - "pvalue": 0.035404384591889604 - }, - "subject": { - "NCBIGene": "1293" - } - }, - { - "_id": "ZNF483-GSK429286A-0.03548073885543286-4.44230916293162", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1560511528811344, - "pvalue": 0.03548073885543286 - }, - "subject": { - "NCBIGene": "158399" - } - }, - { - "_id": "PKD1L2-GSK429286A-0.035696142374339976-1.4617462540800754", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.2665963721973128, - "pvalue": 0.035696142374339976 - }, - "subject": { - "NCBIGene": "114780" - } - }, - { - "_id": "TEX15-GSK429286A-0.0357960339152755-5.10957339720454", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.0481851940284268, - "pvalue": 0.0357960339152755 - }, - "subject": { - "NCBIGene": "56154" - } - }, - { - "_id": "OBSCN-GSK429286A-0.035816559540383146-4.81590476498584", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -0.8259547162679622, - "pvalue": 0.035816559540383146 - }, - "subject": { - "NCBIGene": "84033" - } - }, - { - "_id": "MKNK1-GSK429286A-0.0358252707349669-4.16700301854278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2920302841569495, - "pvalue": 0.0358252707349669 - }, - "subject": { - "NCBIGene": "8569" - } - }, - { - "_id": "FEN1-GSK429286A-0.03591762916757203-2.91803862057657", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -1.3799417939266994, - "pvalue": 0.03591762916757203 - }, - "subject": { - "NCBIGene": "2237" - } - }, - { - "_id": "TANC1-GSK429286A-0.03592500084680989-1.68909693792614", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.414401319107692, - "pvalue": 0.03592500084680989 - }, - "subject": { - "NCBIGene": "85461" - } - }, - { - "_id": "PPP1R9A-GSK429286A-0.03594914646646372-1.68949161541234", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.414197709293344, - "pvalue": 0.03594914646646372 - }, - "subject": { - "NCBIGene": "55607" - } - }, - { - "_id": "LRRIQ1-GSK429286A-0.03594914646646372-1.68949161541234", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.414197709293344, - "pvalue": 0.03594914646646372 - }, - "subject": { - "NCBIGene": "84125" - } - }, - { - "_id": "DOT1L-GSK429286A-0.03594914646646372-1.68949161541234", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.414197709293344, - "pvalue": 0.03594914646646372 - }, - "subject": { - "NCBIGene": "84444" - } - }, - { - "_id": "TG-GSK429286A-0.03605950457216628-4.713829570448145", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.2377399319413, - "pvalue": 0.03605950457216628 - }, - "subject": { - "NCBIGene": "7038" - } - }, - { - "_id": "PADI1-GSK429286A-0.03640400110015903-1.68949161541234", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.410348571812983, - "pvalue": 0.03640400110015903 - }, - "subject": { - "NCBIGene": "29943" - } - }, - { - "_id": "ZNF85-GSK429286A-0.0364990713588109-4.07626769107212", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3721531242608755, - "pvalue": 0.0364990713588109 - }, - "subject": { - "NCBIGene": "7639" - } - }, - { - "_id": "CPXM2-GSK429286A-0.03693252207120226-4.90375369214298", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3641985692780634, - "pvalue": 0.03693252207120226 - }, - "subject": { - "NCBIGene": "119587" - } - }, - { - "_id": "MYBPC3-GSK429286A-0.037245767293567385-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3332985900494838, - "pvalue": 0.037245767293567385 - }, - "subject": { - "NCBIGene": "4607" - } - }, - { - "_id": "SLC22A1-GSK429286A-0.037245767293567385-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3332985900494838, - "pvalue": 0.037245767293567385 - }, - "subject": { - "NCBIGene": "6580" - } - }, - { - "_id": "MAN1A1-GSK429286A-0.037386425072087365-4.16672083686873", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.2929758106082694, - "pvalue": 0.037386425072087365 - }, - "subject": { - "NCBIGene": "4121" - } - }, - { - "_id": "MUC16-GSK429286A-0.03749713385664021-4.14551062748334", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -0.8138771622050942, - "pvalue": 0.03749713385664021 - }, - "subject": { - "NCBIGene": "94025" - } - }, - { - "_id": "HRNR-GSK429286A-0.03763727256277872-3.70564556671847", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0007256" - } - }, - "effect_size": -1.482057603450314, - "pvalue": 0.03763727256277872 - }, - "subject": { - "NCBIGene": "388697" - } - }, - { - "_id": "LHX8-GSK429286A-0.03774612436507671-4.70874171898095", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.1230743369467866, - "pvalue": 0.03774612436507671 - }, - "subject": { - "NCBIGene": "431707" - } - }, - { - "_id": "ATP13A2-GSK429286A-0.037754479208619775-4.51493282269302", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3596549221673984, - "pvalue": 0.037754479208619775 - }, - "subject": { - "NCBIGene": "23400" - } - }, - { - "_id": "COL8A1-GSK429286A-0.03779869563179193-3.8197166439669754", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9616143990769949, - "pvalue": 0.03779869563179193 - }, - "subject": { - "NCBIGene": "1295" - } - }, - { - "_id": "ECSIT-GSK429286A-0.03782892265930752-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.3770574199543226, - "pvalue": 0.03782892265930752 - }, - "subject": { - "NCBIGene": "51295" - } - }, - { - "_id": "NCAPD3-GSK429286A-0.0379964319535641-3.97190507098411", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4739465183439948, - "pvalue": 0.0379964319535641 - }, - "subject": { - "NCBIGene": "23310" - } - }, - { - "_id": "KIAA1462-GSK429286A-0.03809181855413259-4.696924995948915", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.8203000115190316, - "pvalue": 0.03809181855413259 - }, - "subject": { - "NCBIGene": "57608" - } - }, - { - "_id": "KRT1-GSK429286A-0.03814137260437931-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.288521330294564, - "pvalue": 0.03814137260437931 - }, - "subject": { - "NCBIGene": "3848" - } - }, - { - "_id": "SEC24B-GSK429286A-0.038276780459703494-3.00461641228586", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.3461517991949057, - "pvalue": 0.038276780459703494 - }, - "subject": { - "NCBIGene": "10427" - } - }, - { - "_id": "CDH19-GSK429286A-0.03847818811563312-4.161469911066305", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9547888727202437, - "pvalue": 0.03847818811563312 - }, - "subject": { - "NCBIGene": "28513" - } - }, - { - "_id": "CSMD1-GSK429286A-0.03854726026763106-1.7562820287984915", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.0859382273146405, - "pvalue": 0.03854726026763106 - }, - "subject": { - "NCBIGene": "64478" - } - }, - { - "_id": "OR8K1-GSK429286A-0.03867181388908181-4.03090964666794", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.8901752791899785, - "pvalue": 0.03867181388908181 - }, - "subject": { - "NCBIGene": "390157" - } - }, - { - "_id": "ENPP2-GSK429286A-0.0388430618720751-4.1628725703077905", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1619227650762145, - "pvalue": 0.0388430618720751 - }, - "subject": { - "NCBIGene": "5168" - } - }, - { - "_id": "FCRL3-GSK429286A-0.03908674190885687-4.06025879309769", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005097" - } - }, - "effect_size": -1.701856940660379, - "pvalue": 0.03908674190885687 - }, - "subject": { - "NCBIGene": "115352" - } - }, - { - "_id": "ZSWIM2-GSK429286A-0.039170465029003496-4.55660583665711", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3495231436302182, - "pvalue": 0.039170465029003496 - }, - "subject": { - "NCBIGene": "151112" - } - }, - { - "_id": "SPTBN2-GSK429286A-0.03919972400660021-4.11290871495471", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.442380488434402, - "pvalue": 0.03919972400660021 - }, - "subject": { - "NCBIGene": "6712" - } - }, - { - "_id": "MUC5B-GSK429286A-0.03932843878402576-4.7435908591926506", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -0.8943236015602671, - "pvalue": 0.03932843878402576 - }, - "subject": { - "NCBIGene": "727897" - } - }, - { - "_id": "ATXN2L-GSK429286A-0.03933938754000491-4.25528230539895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2803077225809345, - "pvalue": 0.03933938754000491 - }, - "subject": { - "NCBIGene": "11273" - } - }, - { - "_id": "RBM28-GSK429286A-0.03935539926628807-0.214011362919049", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.442448797708307, - "pvalue": 0.03935539926628807 - }, - "subject": { - "NCBIGene": "55131" - } - }, - { - "_id": "HYDIN-GSK429286A-0.03949768272835199-4.52638119619984", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -0.8539883357332761, - "pvalue": 0.03949768272835199 - }, - "subject": { - "NCBIGene": "54768" - } - }, - { - "_id": "IGF2R-GSK429286A-0.03966530253137114-4.49469626458332", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.3019021986876682, - "pvalue": 0.03966530253137114 - }, - "subject": { - "NCBIGene": "3482" - } - }, - { - "_id": "IKBKE-GSK429286A-0.0398150226867383-4.20666826453534", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.589345856587452, - "pvalue": 0.0398150226867383 - }, - "subject": { - "NCBIGene": "9641" - } - }, - { - "_id": "NID2-GSK429286A-0.03989393296312285-4.51493282269302", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.8889465866181723, - "pvalue": 0.03989393296312285 - }, - "subject": { - "NCBIGene": "22795" - } - }, - { - "_id": "CYP2A13-GSK429286A-0.04004223934486022-3.8197166439669754", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9498938675330751, - "pvalue": 0.04004223934486022 - }, - "subject": { - "NCBIGene": "1553" - } - }, - { - "_id": "ASXL3-GSK429286A-0.040238378436138526-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3124021521733393, - "pvalue": 0.040238378436138526 - }, - "subject": { - "NCBIGene": "80816" - } - }, - { - "_id": "CAPS2-GSK429286A-0.04030109172931662-2.86842105380479", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -1.3549077560971643, - "pvalue": 0.04030109172931662 - }, - "subject": { - "NCBIGene": "84698" - } - }, - { - "_id": "SLC12A9-GSK429286A-0.04039849215724238-5.0779258970350405", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.9213363922441374, - "pvalue": 0.04039849215724238 - }, - "subject": { - "NCBIGene": "56996" - } - }, - { - "_id": "SCN10A-GSK429286A-0.04060920791909383-5.11468804065724", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.1023818545569575, - "pvalue": 0.04060920791909383 - }, - "subject": { - "NCBIGene": "6336" - } - }, - { - "_id": "DNASE2B-GSK429286A-0.04078120196743013-4.53144026818292", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2532849237066688, - "pvalue": 0.04078120196743013 - }, - "subject": { - "NCBIGene": "58511" - } - }, - { - "_id": "FRYL-GSK429286A-0.04092923336429858-1.80245517215323", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.0638606367201062, - "pvalue": 0.04092923336429858 - }, - "subject": { - "NCBIGene": "285527" - } - }, - { - "_id": "GALNT6-GSK429286A-0.0410857884476632-4.7821810780036245", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.1339104262598612, - "pvalue": 0.0410857884476632 - }, - "subject": { - "NCBIGene": "11226" - } - }, - { - "_id": "CPAMD8-GSK429286A-0.04109524558089025-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.3076807784549427, - "pvalue": 0.04109524558089025 - }, - "subject": { - "NCBIGene": "27151" - } - }, - { - "_id": "PTGER3-GSK429286A-0.041417896547420154-3.2213419750171948", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0988102771109114, - "pvalue": 0.041417896547420154 - }, - "subject": { - "NCBIGene": "5733" - } - }, - { - "_id": "ZNF729-GSK429286A-0.041663195539716064-4.67483467405783", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005065" - } - }, - "effect_size": -1.4917423441075464, - "pvalue": 0.041663195539716064 - }, - "subject": { - "NCBIGene": "100287226" - } - }, - { - "_id": "OR10AG1-GSK429286A-0.04173411827009312-4.8277624222289", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3312317201139732, - "pvalue": 0.04173411827009312 - }, - "subject": { - "NCBIGene": "282770" - } - }, - { - "_id": "NCOR1-GSK429286A-0.04178978040422623-5.163106851793005", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.2065207208696869, - "pvalue": 0.04178978040422623 - }, - "subject": { - "NCBIGene": "9611" - } - }, - { - "_id": "OR4C46-GSK429286A-0.04223712501950712-4.75031767107174", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.3282050350882564, - "pvalue": 0.04223712501950712 - }, - "subject": { - "NCBIGene": "119749" - } - }, - { - "_id": "ERCC6-GSK429286A-0.042494416564439814-4.71847347963012", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0004056", - "MONDO:0004163" - ] - } - }, - "effect_size": -1.5959877044241628, - "pvalue": 0.042494416564439814 - }, - "subject": { - "NCBIGene": "2074" - } - }, - { - "_id": "ANKRD30B-GSK429286A-0.042539228440861644-5.0435039535657005", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -0.9663441031378399, - "pvalue": 0.042539228440861644 - }, - "subject": { - "NCBIGene": "374860" - } - }, - { - "_id": "HMCN2-GSK429286A-0.04264969252016065-4.76016878449977", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.041786497175287, - "pvalue": 0.04264969252016065 - }, - "subject": { - "NCBIGene": "256158" - } - }, - { - "_id": "SCN11A-GSK429286A-0.042701032870770414-4.88275162018359", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -0.6882030821846639, - "pvalue": 0.042701032870770414 - }, - "subject": { - "NCBIGene": "11280" - } - }, - { - "_id": "ZFHX3-GSK429286A-0.04270875337898682-4.87154516326923", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.1102997994363515, - "pvalue": 0.04270875337898682 - }, - "subject": { - "NCBIGene": "463" - } - }, - { - "_id": "MTMR4-GSK429286A-0.042792320894062756-4.0342505779326", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1414237500948732, - "pvalue": 0.042792320894062756 - }, - "subject": { - "NCBIGene": "9110" - } - }, - { - "_id": "TAOK2-GSK429286A-0.04304562829338898-4.98842385188859", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0010150" - } - }, - "effect_size": -1.3161073375264265, - "pvalue": 0.04304562829338898 - }, - "subject": { - "NCBIGene": "9344" - } - }, - { - "_id": "GRK7-GSK429286A-0.04309099178010133-4.23364995796519", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.2926055424569058, - "pvalue": 0.04309099178010133 - }, - "subject": { - "NCBIGene": "131890" - } - }, - { - "_id": "GPR111-GSK429286A-0.04320359740835289-5.24523132853278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.0165969909908916, - "pvalue": 0.04320359740835289 - }, - "subject": { - "NCBIGene": "222611" - } - }, - { - "_id": "ILDR2-GSK429286A-0.04323677794402248-4.34682522432738", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2546032137906753, - "pvalue": 0.04323677794402248 - }, - "subject": { - "NCBIGene": "387597" - } - }, - { - "_id": "USH2A-GSK429286A-0.04329390212038727-5.06543142599629", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -0.8656001416952835, - "pvalue": 0.04329390212038727 - }, - "subject": { - "NCBIGene": "7399" - } - }, - { - "_id": "IKBKB-GSK429286A-0.043576357550582034-4.55599422052925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2560088126149669, - "pvalue": 0.043576357550582034 - }, - "subject": { - "NCBIGene": "3551" - } - }, - { - "_id": "FCGBP-GSK429286A-0.04361052752371737-4.096078175627349", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.6561949722261706, - "pvalue": 0.04361052752371737 - }, - "subject": { - "NCBIGene": "8857" - } - }, - { - "_id": "LPL-GSK429286A-0.04361066793661966-3.60000226241796", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2463920783678029, - "pvalue": 0.04361066793661966 - }, - "subject": { - "NCBIGene": "4023" - } - }, - { - "_id": "FCRL4-GSK429286A-0.04382741090916215-4.6055119934258695", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8627724389906064, - "pvalue": 0.04382741090916215 - }, - "subject": { - "NCBIGene": "83417" - } - }, - { - "_id": "NAV3-GSK429286A-0.04382741090916215-4.6055119934258695", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8627724389906064, - "pvalue": 0.04382741090916215 - }, - "subject": { - "NCBIGene": "89795" - } - }, - { - "_id": "TNKS-GSK429286A-0.04382741090916215-4.6055119934258695", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8627724389906064, - "pvalue": 0.04382741090916215 - }, - "subject": { - "NCBIGene": "8658" - } - }, - { - "_id": "PTPRG-GSK429286A-0.04382741090916215-4.6055119934258695", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8627724389906064, - "pvalue": 0.04382741090916215 - }, - "subject": { - "NCBIGene": "5793" - } - }, - { - "_id": "LMTK2-GSK429286A-0.04382741090916215-4.6055119934258695", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8627724389906064, - "pvalue": 0.04382741090916215 - }, - "subject": { - "NCBIGene": "22853" - } - }, - { - "_id": "CHD6-GSK429286A-0.04383870821694186-1.79788786601589", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005005" - } - }, - "effect_size": -1.3806417906977113, - "pvalue": 0.04383870821694186 - }, - "subject": { - "NCBIGene": "84181" - } - }, - { - "_id": "MOS-GSK429286A-0.0439239718298683-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4004202573187934, - "pvalue": 0.0439239718298683 - }, - "subject": { - "NCBIGene": "4342" - } - }, - { - "_id": "ADARB2-GSK429286A-0.0439239718298683-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4004202573187934, - "pvalue": 0.0439239718298683 - }, - "subject": { - "NCBIGene": "105" - } - }, - { - "_id": "FBXO38-GSK429286A-0.0439239718298683-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4004202573187934, - "pvalue": 0.0439239718298683 - }, - "subject": { - "NCBIGene": "81545" - } - }, - { - "_id": "RLF-GSK429286A-0.0439239718298683-4.51999954486855", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005036" - } - }, - "effect_size": -1.4004202573187934, - "pvalue": 0.0439239718298683 - }, - "subject": { - "NCBIGene": "6018" - } - }, - { - "_id": "COL24A1-GSK429286A-0.043929912626564434-4.685189690437429", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.088132302764822, - "pvalue": 0.043929912626564434 - }, - "subject": { - "NCBIGene": "255631" - } - }, - { - "_id": "ZNF462-GSK429286A-0.043964596051322156-3.384821133116895", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -0.9339801997300549, - "pvalue": 0.043964596051322156 - }, - "subject": { - "NCBIGene": "58499" - } - }, - { - "_id": "SPEG-GSK429286A-0.04416733333217014-4.24555039692748", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0111517734486088, - "pvalue": 0.04416733333217014 - }, - "subject": { - "NCBIGene": "10290" - } - }, - { - "_id": "TCEB3B-GSK429286A-0.044191582792698005-3.8725039733767", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.0932922875847684, - "pvalue": 0.044191582792698005 - }, - "subject": { - "NCBIGene": "51224" - } - }, - { - "_id": "DPY19L4-GSK429286A-0.04429169493841846-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2543560297919611, - "pvalue": 0.04429169493841846 - }, - "subject": { - "NCBIGene": "286148" - } - }, - { - "_id": "MUC4-GSK429286A-0.044549672159829884-4.647214661346365", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018177" - } - }, - "effect_size": -0.806926446301818, - "pvalue": 0.044549672159829884 - }, - "subject": { - "NCBIGene": "4585" - } - }, - { - "_id": "CNTNAP5-GSK429286A-0.04456211369630737-4.167239619841419", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.1349204449597026, - "pvalue": 0.04456211369630737 - }, - "subject": { - "NCBIGene": "129684" - } - }, - { - "_id": "ITK-GSK429286A-0.044923182069703346-4.04195834812197", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.1308066111989186, - "pvalue": 0.044923182069703346 - }, - "subject": { - "NCBIGene": "3702" - } - }, - { - "_id": "HERC2-GSK429286A-0.04493256418933855-5.337723320086", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.6947100398568937, - "pvalue": 0.04493256418933855 - }, - "subject": { - "NCBIGene": "8924" - } - }, - { - "_id": "PKHD1L1-GSK429286A-0.045072877319576043-4.5181015964799", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006047" - } - }, - "effect_size": -1.1924891343790618, - "pvalue": 0.045072877319576043 - }, - "subject": { - "NCBIGene": "93035" - } - }, - { - "_id": "ENSG00000250423-GSK429286A-0.04541844587112119-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8478431922488063, - "pvalue": 0.04541844587112119 - }, - "subject": { - "NCBIGene": "57481" - } - }, - { - "_id": "ANKRD31-GSK429286A-0.04541844587112119-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8478431922488063, - "pvalue": 0.04541844587112119 - }, - "subject": { - "NCBIGene": "256006" - } - }, - { - "_id": "POLQ-GSK429286A-0.04541844587112119-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8478431922488063, - "pvalue": 0.04541844587112119 - }, - "subject": { - "NCBIGene": "10721" - } - }, - { - "_id": "ALPK3-GSK429286A-0.04541844587112119-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.8478431922488063, - "pvalue": 0.04541844587112119 - }, - "subject": { - "NCBIGene": "57538" - } - }, - { - "_id": "MYH7-GSK429286A-0.045689498487580915-1.77732089365451", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005072" - } - }, - "effect_size": -1.3645096007058775, - "pvalue": 0.045689498487580915 - }, - "subject": { - "NCBIGene": "4625" - } - }, - { - "_id": "FBXL13-GSK429286A-0.04578218572467495-4.16700301854278", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2259405339463105, - "pvalue": 0.04578218572467495 - }, - "subject": { - "NCBIGene": "222235" - } - }, - { - "_id": "WWC3-GSK429286A-0.04611603991723872-4.355816153118435", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0000554", - "MONDO:0006143" - ] - } - }, - "effect_size": -1.4081127747316118, - "pvalue": 0.04611603991723872 - }, - "subject": { - "NCBIGene": "55841" - } - }, - { - "_id": "HRNR-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "388697" - } - }, - { - "_id": "KIAA0146-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "23514" - } - }, - { - "_id": "MYH6-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "4624" - } - }, - { - "_id": "TOPBP1-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "11073" - } - }, - { - "_id": "KIAA0284-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "283638" - } - }, - { - "_id": "WASF3-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "10810" - } - }, - { - "_id": "BOD1L-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "259282" - } - }, - { - "_id": "ESF1-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "51575" - } - }, - { - "_id": "RPTOR-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "57521" - } - }, - { - "_id": "GPATCH8-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "23131" - } - }, - { - "_id": "MEGF8-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "1954" - } - }, - { - "_id": "MAPK7-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "5598" - } - }, - { - "_id": "COL12A1-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "1303" - } - }, - { - "_id": "KIF7-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "374654" - } - }, - { - "_id": "ZNF644-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "84146" - } - }, - { - "_id": "PCDHB2-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "56133" - } - }, - { - "_id": "RP1L1-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "94137" - } - }, - { - "_id": "RANBP2-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "5903" - } - }, - { - "_id": "CSPG4-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "1464" - } - }, - { - "_id": "DOCK1-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "1793" - } - }, - { - "_id": "HOOK2-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "29911" - } - }, - { - "_id": "ARID2-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "196528" - } - }, - { - "_id": "PDZD2-GSK429286A-0.04626289901106648-4.524314197770925", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0000553" - } - }, - "effect_size": -1.838404717105691, - "pvalue": 0.04626289901106648 - }, - "subject": { - "NCBIGene": "23037" - } - }, - { - "_id": "NBEA-GSK429286A-0.04639393186153847-3.089343050601645", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018905" - } - }, - "effect_size": -0.8937030000872219, - "pvalue": 0.04639393186153847 - }, - "subject": { - "NCBIGene": "26960" - } - }, - { - "_id": "MB21D2-GSK429286A-0.0465293709415327-4.324912498148265", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.0942286553882141, - "pvalue": 0.0465293709415327 - }, - "subject": { - "NCBIGene": "151963" - } - }, - { - "_id": "AIRE-GSK429286A-0.04663874143411727-4.6390554251705804", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.0986800483367585, - "pvalue": 0.04663874143411727 - }, - "subject": { - "NCBIGene": "326" - } - }, - { - "_id": "PCF11-GSK429286A-0.0468931447821512-4.419540603916305", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.065349582204622, - "pvalue": 0.0468931447821512 - }, - "subject": { - "NCBIGene": "51585" - } - }, - { - "_id": "FBN3-GSK429286A-0.04699374539028738-3.957008261332155", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.120557068575144, - "pvalue": 0.04699374539028738 - }, - "subject": { - "NCBIGene": "84467" - } - }, - { - "_id": "OR5D14-GSK429286A-0.047037946712199276-4.9222064639702", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2282592988657068, - "pvalue": 0.047037946712199276 - }, - "subject": { - "NCBIGene": "219436" - } - }, - { - "_id": "BNC2-GSK429286A-0.04725664550445529-4.62428461216954", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.2811649968233942, - "pvalue": 0.04725664550445529 - }, - "subject": { - "NCBIGene": "54796" - } - }, - { - "_id": "DOPEY2-GSK429286A-0.0473017010352166-4.54372882563352", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.9591384933106157, - "pvalue": 0.0473017010352166 - }, - "subject": { - "NCBIGene": "9980" - } - }, - { - "_id": "PXDN-GSK429286A-0.047629830280436956-4.364632118832709", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.1129149070135107, - "pvalue": 0.047629830280436956 - }, - "subject": { - "NCBIGene": "7837" - } - }, - { - "_id": "BEST3-GSK429286A-0.047670371910591855-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2371635081261, - "pvalue": 0.047670371910591855 - }, - "subject": { - "NCBIGene": "144453" - } - }, - { - "_id": "KRT86-GSK429286A-0.047766512902948186-2.12377789357465", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005072" - } - }, - "effect_size": -1.3394873485700063, - "pvalue": 0.047766512902948186 - }, - "subject": { - "NCBIGene": "3892" - } - }, - { - "_id": "FLNB-GSK429286A-0.047780864283324155-3.54412584521196", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005170" - } - }, - "effect_size": -1.5833673324770474, - "pvalue": 0.047780864283324155 - }, - "subject": { - "NCBIGene": "2317" - } - }, - { - "_id": "GABBR1-GSK429286A-0.047783195401975884-2.459561884590745", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.0723399721625104, - "pvalue": 0.047783195401975884 - }, - "subject": { - "NCBIGene": "2550" - } - }, - { - "_id": "PABPC3-GSK429286A-0.04806314055326423-5.45438043731104", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006046" - } - }, - "effect_size": -1.3436273396161476, - "pvalue": 0.04806314055326423 - }, - "subject": { - "NCBIGene": "5042" - } - }, - { - "_id": "DNAH10-GSK429286A-0.048065099834048566-4.3112111707033005", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.1112684846631455, - "pvalue": 0.048065099834048566 - }, - "subject": { - "NCBIGene": "196385" - } - }, - { - "_id": "NLRP4-GSK429286A-0.04846327875705761-4.68161053582366", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -0.8504981829873526, - "pvalue": 0.04846327875705761 - }, - "subject": { - "NCBIGene": "147945" - } - }, - { - "_id": "CCDC33-GSK429286A-0.04855926388149771-1.755181757745865", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0004967" - } - }, - "effect_size": -1.1789911744795678, - "pvalue": 0.04855926388149771 - }, - "subject": { - "NCBIGene": "80125" - } - }, - { - "_id": "HDAC7-GSK429286A-0.048619188590668695-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.231713273897983, - "pvalue": 0.048619188590668695 - }, - "subject": { - "NCBIGene": "51564" - } - }, - { - "_id": "CSPG4-GSK429286A-0.04865338698113973-2.68383961724685", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0018874" - } - }, - "effect_size": -1.088482270729775, - "pvalue": 0.04865338698113973 - }, - "subject": { - "NCBIGene": "1464" - } - }, - { - "_id": "YTHDC1-GSK429286A-0.04866540748223191-4.10562176192737", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.2707266393149135, - "pvalue": 0.04866540748223191 - }, - "subject": { - "NCBIGene": "91746" - } - }, - { - "_id": "CNGA1-GSK429286A-0.048761515681429675-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.2399577462600304, - "pvalue": 0.048761515681429675 - }, - "subject": { - "NCBIGene": "1259" - } - }, - { - "_id": "UGT1A5-GSK429286A-0.048785268169691476-5.02355415654748", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -0.9577330383825109, - "pvalue": 0.048785268169691476 - }, - "subject": { - "NCBIGene": "54579" - } - }, - { - "_id": "BTN1A1-GSK429286A-0.049265812114825815-3.69493914020001", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -1.237011934161722, - "pvalue": 0.049265812114825815 - }, - "subject": { - "NCBIGene": "696" - } - }, - { - "_id": "ABCB8-GSK429286A-0.04928693839886909-4.37380800230499", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.2189629893925908, - "pvalue": 0.04928693839886909 - }, - "subject": { - "NCBIGene": "11194" - } - }, - { - "_id": "PRDM9-GSK429286A-0.049356046574943885-4.228177103746241", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": [ - "MONDO:0003093", - "MONDO:0005580" - ] - } - }, - "effect_size": -1.1095832287302332, - "pvalue": 0.049356046574943885 - }, - "subject": { - "NCBIGene": "56979" - } - }, - { - "_id": "OPLAH-GSK429286A-0.04940215075788177-4.95941623100301", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0008433" - } - }, - "effect_size": -1.284292348654776, - "pvalue": 0.04940215075788177 - }, - "subject": { - "NCBIGene": "26873" - } - }, - { - "_id": "NUP205-GSK429286A-0.049630820107970805-4.10433443432677", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0006256" - } - }, - "effect_size": -0.9784872126877439, - "pvalue": 0.049630820107970805 - }, - "subject": { - "NCBIGene": "23165" - } - }, - { - "_id": "STAMBPL1-GSK429286A-0.04986829476647059-4.23660382002562", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005061" - } - }, - "effect_size": -1.2027206907980774, - "pvalue": 0.04986829476647059 - }, - "subject": { - "NCBIGene": "57559" - } - }, - { - "_id": "MCM6-GSK429286A-0.04999095614425051-4.37380800230499", - "_score": null, - "association": { - "context": { - "disease": { - "mondo": "MONDO:0005012" - } - }, - "effect_size": -1.2632984088415444, - "pvalue": 0.04999095614425051 - }, - "subject": { - "NCBIGene": "4175" - } - } - ] -} \ No newline at end of file + "took": 107, + "total": 737, + "max_score": null, + "hits": [ + { + "_id": "ZNF521-GSK429286A-9.986386935856386e-06-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -4.759981891973518, + "pvalue": 9.986386935856386e-6 + }, + "subject": { + "NCBIGene": "25925" + } + }, + { + "_id": "OXCT1-GSK429286A-1.674430478078408e-05-3.544863951886205", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -2.4613024423074554, + "pvalue": 1.674430478078408e-5 + }, + "subject": { + "NCBIGene": "5019" + } + }, + { + "_id": "SETD5-GSK429286A-1.7203415194557108e-05-3.57811169272866", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -2.8868944869307107, + "pvalue": 1.7203415194557108e-5 + }, + "subject": { + "NCBIGene": "55209" + } + }, + { + "_id": "GABRA5-GSK429286A-2.0485614316721425e-05-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.9163333927529296, + "pvalue": 2.0485614316721425e-5 + }, + "subject": { + "NCBIGene": "2558" + } + }, + { + "_id": "RBM47-GSK429286A-2.0519351448345077e-05-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.9160502104185593, + "pvalue": 2.0519351448345077e-5 + }, + "subject": { + "NCBIGene": "54502" + } + }, + { + "_id": "HUWE1-GSK429286A-2.091568463033719e-05-1.79788786601589", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -3.1494421809853197, + "pvalue": 2.091568463033719e-5 + }, + "subject": { + "NCBIGene": "10075" + } + }, + { + "_id": "FBXW7-GSK429286A-8.382564573327396e-05-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.9105350650114175, + "pvalue": 8.382564573327396e-5 + }, + "subject": { + "NCBIGene": "55294" + } + }, + { + "_id": "OR56A4-GSK429286A-8.484838820704394e-05-1.73783301051434", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.6803788988461217, + "pvalue": 8.484838820704394e-5 + }, + "subject": { + "NCBIGene": "120793" + } + }, + { + "_id": "ALDOC-GSK429286A-9.475961745003106e-05-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.8839401121182755, + "pvalue": 9.475961745003106e-5 + }, + "subject": { + "NCBIGene": "230" + } + }, + { + "_id": "GAA-GSK429286A-9.475961745003106e-05-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.8839401121182755, + "pvalue": 9.475961745003106e-5 + }, + "subject": { + "NCBIGene": "2548" + } + }, + { + "_id": "ACSM2B-GSK429286A-0.00012361606881385666-3.075953463161915", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6458702176611164, + "pvalue": 0.00012361606881385666 + }, + "subject": { + "NCBIGene": "348158" + } + }, + { + "_id": "PDILT-GSK429286A-0.00013723100454198644-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.582145174063579, + "pvalue": 0.00013723100454198644 + }, + "subject": { + "NCBIGene": "204474" + } + }, + { + "_id": "LOXHD1-GSK429286A-0.00016807337058247118-4.16672083686873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.5514842972604401, + "pvalue": 0.00016807337058247118 + }, + "subject": { + "NCBIGene": "125336" + } + }, + { + "_id": "MVD-GSK429286A-0.0001801095575762882-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.519558206562125, + "pvalue": 0.0001801095575762882 + }, + "subject": { + "NCBIGene": "4597" + } + }, + { + "_id": "AMBRA1-GSK429286A-0.0001878310485366954-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.509994045399673, + "pvalue": 0.0001878310485366954 + }, + "subject": { + "NCBIGene": "55626" + } + }, + { + "_id": "OR4M2-GSK429286A-0.0001963684966105715-1.73783301051434", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.53042762600363, + "pvalue": 0.0001963684966105715 + }, + "subject": { + "NCBIGene": "390538" + } + }, + { + "_id": "TMC5-GSK429286A-0.000207562159565784-3.57602591341893", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005065" + } + }, + "effect_size": -3.1499260926795136, + "pvalue": 0.000207562159565784 + }, + "subject": { + "NCBIGene": "79838" + } + }, + { + "_id": "DNAH14-GSK429286A-0.00020776534576417107-4.173031522254799", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -3.4180509829650663, + "pvalue": 0.00020776534576417107 + }, + "subject": { + "NCBIGene": "127602" + } + }, + { + "_id": "ZNF680-GSK429286A-0.00023859428420739686-4.05115991265377", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -2.518605726636893, + "pvalue": 0.00023859428420739686 + }, + "subject": { + "NCBIGene": "340252" + } + }, + { + "_id": "COL20A1-GSK429286A-0.00023971668249795074-3.160745882775875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.1365744242818914, + "pvalue": 0.00023971668249795074 + }, + "subject": { + "NCBIGene": "57642" + } + }, + { + "_id": "MINK1-GSK429286A-0.0002832390007688119-1.50583429804503", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.4730651829917587, + "pvalue": 0.0002832390007688119 + }, + "subject": { + "NCBIGene": "50488" + } + }, + { + "_id": "MBD5-GSK429286A-0.0002869481469565366-3.993587448908555", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.685339251015063, + "pvalue": 0.0002869481469565366 + }, + "subject": { + "NCBIGene": "55777" + } + }, + { + "_id": "OVCH1-GSK429286A-0.00030637922608344576-4.269479993362805", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.304965349157701, + "pvalue": 0.00030637922608344576 + }, + "subject": { + "NCBIGene": "341350" + } + }, + { + "_id": "LOXHD1-GSK429286A-0.00033058996831111375-0.316302105059935", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -2.411311460456441, + "pvalue": 0.00033058996831111375 + }, + "subject": { + "NCBIGene": "125336" + } + }, + { + "_id": "PIAS2-GSK429286A-0.00034199080650955757-4.05115991265377", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -2.445788745471296, + "pvalue": 0.00034199080650955757 + }, + "subject": { + "NCBIGene": "9063" + } + }, + { + "_id": "C2orf89-GSK429286A-0.00035311059230978375-3.07362866162946", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.39209219294725, + "pvalue": 0.00035311059230978375 + }, + "subject": { + "NCBIGene": "129293" + } + }, + { + "_id": "PRKCI-GSK429286A-0.00038992466851707003-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.3728617177660603, + "pvalue": 0.00038992466851707003 + }, + "subject": { + "NCBIGene": "5584" + } + }, + { + "_id": "LARP1-GSK429286A-0.00039430735638692035-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.3887407815393726, + "pvalue": 0.00039430735638692035 + }, + "subject": { + "NCBIGene": "23367" + } + }, + { + "_id": "PCDH12-GSK429286A-0.0004445448148851749-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.366290842170333, + "pvalue": 0.0004445448148851749 + }, + "subject": { + "NCBIGene": "51294" + } + }, + { + "_id": "EFTUD2-GSK429286A-0.0004445448148851749-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.366290842170333, + "pvalue": 0.0004445448148851749 + }, + "subject": { + "NCBIGene": "9343" + } + }, + { + "_id": "ADAM21-GSK429286A-0.0004461996671620926-4.112229887522675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.9538360026990624, + "pvalue": 0.0004461996671620926 + }, + "subject": { + "NCBIGene": "8747" + } + }, + { + "_id": "FAM22G-GSK429286A-0.0004966290255842305-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.326687151946812, + "pvalue": 0.0004966290255842305 + }, + "subject": { + "NCBIGene": "441457" + } + }, + { + "_id": "RNF152-GSK429286A-0.0005739083800821864-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.301883819823818, + "pvalue": 0.0005739083800821864 + }, + "subject": { + "NCBIGene": "220441" + } + }, + { + "_id": "PRODH-GSK429286A-0.0005739083800821864-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.301883819823818, + "pvalue": 0.0005739083800821864 + }, + "subject": { + "NCBIGene": "5625" + } + }, + { + "_id": "ANKRD11-GSK429286A-0.0005746719797215772-2.856957031103005", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -2.852053782756415, + "pvalue": 0.0005746719797215772 + }, + "subject": { + "NCBIGene": "29123" + } + }, + { + "_id": "BMS1-GSK429286A-0.0005828526092697167-4.02729116494675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -2.4369164622501094, + "pvalue": 0.0005828526092697167 + }, + "subject": { + "NCBIGene": "9790" + } + }, + { + "_id": "COBLL1-GSK429286A-0.0005828526092697167-4.02729116494675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -2.4369164622501094, + "pvalue": 0.0005828526092697167 + }, + "subject": { + "NCBIGene": "22837" + } + }, + { + "_id": "CCDC14-GSK429286A-0.0005858705559764542-3.7816208576493002", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.9173192043359406, + "pvalue": 0.0005858705559764542 + }, + "subject": { + "NCBIGene": "64770" + } + }, + { + "_id": "ARHGEF17-GSK429286A-0.0005963394292668678-2.95741448736036", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9912029317876636, + "pvalue": 0.0005963394292668678 + }, + "subject": { + "NCBIGene": "9828" + } + }, + { + "_id": "GABRB1-GSK429286A-0.0006629622184661371-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.2683626773337857, + "pvalue": 0.0006629622184661371 + }, + "subject": { + "NCBIGene": "2560" + } + }, + { + "_id": "FAM38B-GSK429286A-0.0006763054024924105-1.73783301051434", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.301094546951548, + "pvalue": 0.0006763054024924105 + }, + "subject": { + "NCBIGene": "63895" + } + }, + { + "_id": "ADGB-GSK429286A-0.0007035401158727085-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.444379805664448, + "pvalue": 0.0007035401158727085 + }, + "subject": { + "NCBIGene": "79747" + } + }, + { + "_id": "KIF1B-GSK429286A-0.0007161127141958877-2.856957031103005", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -2.7800264523564846, + "pvalue": 0.0007161127141958877 + }, + "subject": { + "NCBIGene": "23095" + } + }, + { + "_id": "SEMA6D-GSK429286A-0.000740484437429074-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.2494797996616875, + "pvalue": 0.000740484437429074 + }, + "subject": { + "NCBIGene": "80031" + } + }, + { + "_id": "ZBTB20-GSK429286A-0.0007650018601850923-4.14407705682957", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.7488043784678489, + "pvalue": 0.0007650018601850923 + }, + "subject": { + "NCBIGene": "26137" + } + }, + { + "_id": "SPEF2-GSK429286A-0.000772855342946426-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.244424609533842, + "pvalue": 0.000772855342946426 + }, + "subject": { + "NCBIGene": "79925" + } + }, + { + "_id": "LRRC1-GSK429286A-0.0007749940713420273-1.77732089365451", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005072" + } + }, + "effect_size": -2.3834286014336903, + "pvalue": 0.0007749940713420273 + }, + "subject": { + "NCBIGene": "55227" + } + }, + { + "_id": "KIAA0889-GSK429286A-0.0007879114020189485-4.43221000905504", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.111607590507235, + "pvalue": 0.0007879114020189485 + }, + "subject": { + "NCBIGene": "140710" + } + }, + { + "_id": "SF3B2-GSK429286A-0.0007987396371693481-3.00330828075829", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7374357989496605, + "pvalue": 0.0007987396371693481 + }, + "subject": { + "NCBIGene": "10992" + } + }, + { + "_id": "GABRG1-GSK429286A-0.000804402665883993-3.2698840419473703", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9330989767463562, + "pvalue": 0.000804402665883993 + }, + "subject": { + "NCBIGene": "2565" + } + }, + { + "_id": "ANXA10-GSK429286A-0.0009673742354288314-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -2.0887442736470043, + "pvalue": 0.0009673742354288314 + }, + "subject": { + "NCBIGene": "11199" + } + }, + { + "_id": "CDKL5-GSK429286A-0.0009717296003945226-2.77062877993627", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.201605492931962, + "pvalue": 0.0009717296003945226 + }, + "subject": { + "NCBIGene": "6792" + } + }, + { + "_id": "IL1RL1-GSK429286A-0.0009751282446552912-3.80365458246322", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.8771016743334825, + "pvalue": 0.0009751282446552912 + }, + "subject": { + "NCBIGene": "9173" + } + }, + { + "_id": "TMCO7-GSK429286A-0.001039689707884867-2.90082792551563", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -2.264265473992281, + "pvalue": 0.001039689707884867 + }, + "subject": { + "NCBIGene": "79613" + } + }, + { + "_id": "ZEB2-GSK429286A-0.0010432286157930285-3.863164730690035", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.8195802768365825, + "pvalue": 0.0010432286157930285 + }, + "subject": { + "NCBIGene": "9839" + } + }, + { + "_id": "ATRN-GSK429286A-0.0010727068015322066-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6993822567606092, + "pvalue": 0.0010727068015322066 + }, + "subject": { + "NCBIGene": "8455" + } + }, + { + "_id": "PTPRF-GSK429286A-0.001150744245109076-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.1591033956962447, + "pvalue": 0.001150744245109076 + }, + "subject": { + "NCBIGene": "5792" + } + }, + { + "_id": "GALNT2-GSK429286A-0.0012059945259008252-2.958817146601845", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.870337977470738, + "pvalue": 0.0012059945259008252 + }, + "subject": { + "NCBIGene": "2590" + } + }, + { + "_id": "POTEF-GSK429286A-0.0012162484103800818-3.57244683471891", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.147832709145133, + "pvalue": 0.0012162484103800818 + }, + "subject": { + "NCBIGene": "728378" + } + }, + { + "_id": "OR8B4-GSK429286A-0.0012645330465764595-3.7663339854755", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.13941151497149, + "pvalue": 0.0012645330465764595 + }, + "subject": { + "NCBIGene": "283162" + } + }, + { + "_id": "SF3B1-GSK429286A-0.0012860039848660426-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.1443180458747144, + "pvalue": 0.0012860039848660426 + }, + "subject": { + "NCBIGene": "23451" + } + }, + { + "_id": "CCDC40-GSK429286A-0.0013669370051462263-3.22874622784338", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.782567524657833, + "pvalue": 0.0013669370051462263 + }, + "subject": { + "NCBIGene": "55036" + } + }, + { + "_id": "HSPG2-GSK429286A-0.0013669370051462263-3.22874622784338", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.782567524657833, + "pvalue": 0.0013669370051462263 + }, + "subject": { + "NCBIGene": "3339" + } + }, + { + "_id": "OR2S2-GSK429286A-0.001367922570982976-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.1320086933785, + "pvalue": 0.001367922570982976 + }, + "subject": { + "NCBIGene": "56656" + } + }, + { + "_id": "APAF1-GSK429286A-0.0013964599998542303-1.73783301051434", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.160611269887668, + "pvalue": 0.0013964599998542303 + }, + "subject": { + "NCBIGene": "317" + } + }, + { + "_id": "COL10A1-GSK429286A-0.001402265279833715-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.145059464279866, + "pvalue": 0.001402265279833715 + }, + "subject": { + "NCBIGene": "1300" + } + }, + { + "_id": "SG223-GSK429286A-0.001436672835768183-3.56385515499688", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.8840350684909435, + "pvalue": 0.001436672835768183 + } + }, + { + "_id": "ZNF181-GSK429286A-0.0014973605424318402-3.7663339854755", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.1050508960596606, + "pvalue": 0.0014973605424318402 + }, + "subject": { + "NCBIGene": "339318" + } + }, + { + "_id": "NADSYN1-GSK429286A-0.0015045145205589687-3.76913930395847", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.104071919680477, + "pvalue": 0.0015045145205589687 + }, + "subject": { + "NCBIGene": "55191" + } + }, + { + "_id": "ANKS1B-GSK429286A-0.0016111796769479598-4.16700301854278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.9890546414996177, + "pvalue": 0.0016111796769479598 + }, + "subject": { + "NCBIGene": "56899" + } + }, + { + "_id": "DMBT1-GSK429286A-0.0016135057905576759-4.292566651108039", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.8617399594152455, + "pvalue": 0.0016135057905576759 + }, + "subject": { + "NCBIGene": "1755" + } + }, + { + "_id": "MYBPC2-GSK429286A-0.0016405441396345085-3.57811169272866", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -2.021903214836891, + "pvalue": 0.0016405441396345085 + }, + "subject": { + "NCBIGene": "4606" + } + }, + { + "_id": "UHMK1-GSK429286A-0.0017526210744133487-3.07362866162946", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.078950252212568, + "pvalue": 0.0017526210744133487 + }, + "subject": { + "NCBIGene": "127933" + } + }, + { + "_id": "ULK4-GSK429286A-0.0017557365181125476-3.07362866162946", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.078589864260293, + "pvalue": 0.0017557365181125476 + }, + "subject": { + "NCBIGene": "54986" + } + }, + { + "_id": "LAMA1-GSK429286A-0.0017818303602367479-4.06025879309769", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -2.858098720004819, + "pvalue": 0.0017818303602367479 + }, + "subject": { + "NCBIGene": "284217" + } + }, + { + "_id": "IGF2R-GSK429286A-0.0017818303602367479-4.06025879309769", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -2.858098720004819, + "pvalue": 0.0017818303602367479 + }, + "subject": { + "NCBIGene": "3482" + } + }, + { + "_id": "CCDC89-GSK429286A-0.0018625198165827892-3.20963262142959", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.785644355174183, + "pvalue": 0.0018625198165827892 + }, + "subject": { + "NCBIGene": "220388" + } + }, + { + "_id": "EYA2-GSK429286A-0.001866222540483312-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -2.006928250626089, + "pvalue": 0.001866222540483312 + }, + "subject": { + "NCBIGene": "2139" + } + }, + { + "_id": "RET-GSK429286A-0.001911715831715238-4.61205106306214", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -2.0159409607681495, + "pvalue": 0.001911715831715238 + }, + "subject": { + "NCBIGene": "5979" + } + }, + { + "_id": "DNAH5-GSK429286A-0.001969035630212806-4.613961788626815", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.694359099907457, + "pvalue": 0.001969035630212806 + }, + "subject": { + "NCBIGene": "1767" + } + }, + { + "_id": "ZNF193-GSK429286A-0.0020442092514068233-4.37380800230499", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -2.0046364072442517, + "pvalue": 0.0020442092514068233 + }, + "subject": { + "NCBIGene": "7746" + } + }, + { + "_id": "ATP5A1-GSK429286A-0.0020481093870889943-0.418592847200821", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -2.220002362426416, + "pvalue": 0.0020481093870889943 + }, + "subject": { + "NCBIGene": "498" + } + }, + { + "_id": "PLCL1-GSK429286A-0.00207740980027047-3.14820655990286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7810264038364303, + "pvalue": 0.00207740980027047 + }, + "subject": { + "NCBIGene": "5334" + } + }, + { + "_id": "ADAMTS5-GSK429286A-0.002117012663152227-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.0625086266083072, + "pvalue": 0.002117012663152227 + }, + "subject": { + "NCBIGene": "11096" + } + }, + { + "_id": "PCDHB13-GSK429286A-0.002258593052240435-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.026341720379189, + "pvalue": 0.002258593052240435 + }, + "subject": { + "NCBIGene": "56123" + } + }, + { + "_id": "CCDC165-GSK429286A-0.0022943079151366255-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.8828760833759777, + "pvalue": 0.0022943079151366255 + }, + "subject": { + "NCBIGene": "23255" + } + }, + { + "_id": "SPTAN1-GSK429286A-0.0023002466109568144-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.0225756959023156, + "pvalue": 0.0023002466109568144 + }, + "subject": { + "NCBIGene": "6709" + } + }, + { + "_id": "ZNF180-GSK429286A-0.002321102667877973-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.9624449742920589, + "pvalue": 0.002321102667877973 + }, + "subject": { + "NCBIGene": "7733" + } + }, + { + "_id": "NUP37-GSK429286A-0.0023281697378462664-3.57759520740764", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -2.1314134238414124, + "pvalue": 0.0023281697378462664 + }, + "subject": { + "NCBIGene": "79023" + } + }, + { + "_id": "TTN-GSK429286A-0.0025530759755872687-4.76016878449977", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.0945591295050183, + "pvalue": 0.0025530759755872687 + }, + "subject": { + "NCBIGene": "7273" + } + }, + { + "_id": "PAPPA2-GSK429286A-0.00261262878931804-4.203555645683925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -2.0069936763180367, + "pvalue": 0.00261262878931804 + }, + "subject": { + "NCBIGene": "60676" + } + }, + { + "_id": "KCNK9-GSK429286A-0.00266833565137226-3.31818348479346", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9891523407103415, + "pvalue": 0.00266833565137226 + }, + "subject": { + "NCBIGene": "51305" + } + }, + { + "_id": "PHF20L1-GSK429286A-0.002704991915127471-3.57244683471891", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9837196165227635, + "pvalue": 0.002704991915127471 + }, + "subject": { + "NCBIGene": "51105" + } + }, + { + "_id": "GEMIN5-GSK429286A-0.0027219170960914927-2.90082792551563", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -2.0433834773539847, + "pvalue": 0.0027219170960914927 + }, + "subject": { + "NCBIGene": "25929" + } + }, + { + "_id": "SHKBP1-GSK429286A-0.002750391840713144-2.14849498924522", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -2.0089905203196197, + "pvalue": 0.002750391840713144 + }, + "subject": { + "NCBIGene": "92799" + } + }, + { + "_id": "DNAH6-GSK429286A-0.0027732052486776158-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -2.0351121762250033, + "pvalue": 0.0027732052486776158 + }, + "subject": { + "NCBIGene": "1768" + } + }, + { + "_id": "NKTR-GSK429286A-0.002789973676083896-4.41844670555009", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.103951289116203, + "pvalue": 0.002789973676083896 + }, + "subject": { + "NCBIGene": "4820" + } + }, + { + "_id": "TPX2-GSK429286A-0.002789973676083896-4.41844670555009", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.103951289116203, + "pvalue": 0.002789973676083896 + }, + "subject": { + "NCBIGene": "22974" + } + }, + { + "_id": "PDE4B-GSK429286A-0.0028208520303564196-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.8867865065464517, + "pvalue": 0.0028208520303564196 + }, + "subject": { + "NCBIGene": "5142" + } + }, + { + "_id": "AKAP4-GSK429286A-0.002844600220629237-2.77062877993627", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5437431195950355, + "pvalue": 0.002844600220629237 + }, + "subject": { + "NCBIGene": "8852" + } + }, + { + "_id": "ASXL2-GSK429286A-0.0028579108216349926-3.00330828075829", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9795541118864501, + "pvalue": 0.0028579108216349926 + }, + "subject": { + "NCBIGene": "55252" + } + }, + { + "_id": "CEP152-GSK429286A-0.0029163000808997428-4.1455410000318444", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.6358913490115228, + "pvalue": 0.0029163000808997428 + }, + "subject": { + "NCBIGene": "22995" + } + }, + { + "_id": "TOP2B-GSK429286A-0.002965570559264163-4.0429181220808", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4779135004479307, + "pvalue": 0.002965570559264163 + }, + "subject": { + "NCBIGene": "7155" + } + }, + { + "_id": "IGSF10-GSK429286A-0.002966573777657188-4.09108721392841", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -2.5375761720077348, + "pvalue": 0.002966573777657188 + }, + "subject": { + "NCBIGene": "285313" + } + }, + { + "_id": "DOCK8-GSK429286A-0.0029666170064107855-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -2.1168383879765815, + "pvalue": 0.0029666170064107855 + }, + "subject": { + "NCBIGene": "81704" + } + }, + { + "_id": "IL1RL1-GSK429286A-0.0031106636978339925-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.884387827249838, + "pvalue": 0.0031106636978339925 + }, + "subject": { + "NCBIGene": "9173" + } + }, + { + "_id": "SULF1-GSK429286A-0.0031227950746103134-4.14407705682957", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.8739104808836546, + "pvalue": 0.0031227950746103134 + }, + "subject": { + "NCBIGene": "23213" + } + }, + { + "_id": "HDGF-GSK429286A-0.0031923296321197947-3.07362866162946", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9551708160138999, + "pvalue": 0.0031923296321197947 + }, + "subject": { + "NCBIGene": "3068" + } + }, + { + "_id": "OR5P3-GSK429286A-0.003242199669498957-4.56946841464662", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.9578791494446268, + "pvalue": 0.003242199669498957 + }, + "subject": { + "NCBIGene": "120066" + } + }, + { + "_id": "SLC6A11-GSK429286A-0.003280895604005821-3.384821133116895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6800200835218564, + "pvalue": 0.003280895604005821 + }, + "subject": { + "NCBIGene": "6538" + } + }, + { + "_id": "SKI-GSK429286A-0.0034167064398880104-3.31818348479346", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9371740380006484, + "pvalue": 0.0034167064398880104 + }, + "subject": { + "NCBIGene": "6497" + } + }, + { + "_id": "MLL5-GSK429286A-0.0034846932504992156-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.930474649608457, + "pvalue": 0.0034846932504992156 + }, + "subject": { + "NCBIGene": "55904" + } + }, + { + "_id": "C1orf87-GSK429286A-0.003488274487621968-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9302495485033777, + "pvalue": 0.003488274487621968 + }, + "subject": { + "NCBIGene": "127795" + } + }, + { + "_id": "STAB1-GSK429286A-0.0035386636245603622-3.75645420660895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.9343422133910195, + "pvalue": 0.0035386636245603622 + }, + "subject": { + "NCBIGene": "23166" + } + }, + { + "_id": "OR6K3-GSK429286A-0.003611209115419086-4.247487929668355", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.659376049198086, + "pvalue": 0.003611209115419086 + }, + "subject": { + "NCBIGene": "391114" + } + }, + { + "_id": "C10orf28-GSK429286A-0.003635504446234418-3.42908959156423", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6596490306591278, + "pvalue": 0.003635504446234418 + }, + "subject": { + "NCBIGene": "27291" + } + }, + { + "_id": "WDR47-GSK429286A-0.0037079461948265617-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9172251423432976, + "pvalue": 0.0037079461948265617 + }, + "subject": { + "NCBIGene": "22911" + } + }, + { + "_id": "USHBP1-GSK429286A-0.003709712950030028-4.16700301854278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.8206111156270437, + "pvalue": 0.003709712950030028 + }, + "subject": { + "NCBIGene": "83878" + } + }, + { + "_id": "ZP4-GSK429286A-0.0037625109517185097-2.86842105380479", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.9340303857168217, + "pvalue": 0.0037625109517185097 + }, + "subject": { + "NCBIGene": "57829" + } + }, + { + "_id": "ADCK3-GSK429286A-0.003775349058429465-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9133715758651764, + "pvalue": 0.003775349058429465 + }, + "subject": { + "NCBIGene": "56997" + } + }, + { + "_id": "COL11A1-GSK429286A-0.0037864037858694292-4.88016818979553", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.4936704615189165, + "pvalue": 0.0037864037858694292 + }, + "subject": { + "NCBIGene": "1301" + } + }, + { + "_id": "LRP1B-GSK429286A-0.0038749310318266-4.40645233573555", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.2296533621406884, + "pvalue": 0.0038749310318266 + }, + "subject": { + "NCBIGene": "53353" + } + }, + { + "_id": "ABLIM1-GSK429286A-0.003925254093698465-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.9050268205675223, + "pvalue": 0.003925254093698465 + }, + "subject": { + "NCBIGene": "3983" + } + }, + { + "_id": "ZNF85-GSK429286A-0.003925384822137277-3.80365458246322", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.4138338490831392, + "pvalue": 0.003925384822137277 + }, + "subject": { + "NCBIGene": "7639" + } + }, + { + "_id": "MARK1-GSK429286A-0.0039589240414073645-4.38402204410427", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.313130639622906, + "pvalue": 0.0039589240414073645 + }, + "subject": { + "NCBIGene": "4139" + } + }, + { + "_id": "DNAH5-GSK429286A-0.003972580188837839-4.7147516819227", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.5222538920775874, + "pvalue": 0.003972580188837839 + }, + "subject": { + "NCBIGene": "1767" + } + }, + { + "_id": "KIAA0146-GSK429286A-0.004002025288593886-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.8158109930977444, + "pvalue": 0.004002025288593886 + }, + "subject": { + "NCBIGene": "23514" + } + }, + { + "_id": "CCDC108-GSK429286A-0.0040986116528097-4.03090964666794", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4715000835280954, + "pvalue": 0.0040986116528097 + }, + "subject": { + "NCBIGene": "255101" + } + }, + { + "_id": "TSSC1-GSK429286A-0.004132885947825495-0.214011362919049", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -2.050527876617611, + "pvalue": 0.004132885947825495 + }, + "subject": { + "NCBIGene": "7260" + } + }, + { + "_id": "PCDHGA1-GSK429286A-0.004206295232216555-3.62266430316214", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.8893565320099632, + "pvalue": 0.004206295232216555 + }, + "subject": { + "NCBIGene": "56114" + } + }, + { + "_id": "PDZRN4-GSK429286A-0.004268348940182561-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -2.0946248258488116, + "pvalue": 0.004268348940182561 + }, + "subject": { + "NCBIGene": "29951" + } + }, + { + "_id": "AK5-GSK429286A-0.004335906324825554-3.927642283908455", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5706057622330047, + "pvalue": 0.004335906324825554 + }, + "subject": { + "NCBIGene": "26289" + } + }, + { + "_id": "IPO8-GSK429286A-0.00434286186805061-3.32663789527298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.8036388456423456, + "pvalue": 0.00434286186805061 + }, + "subject": { + "NCBIGene": "10526" + } + }, + { + "_id": "CACNA2D1-GSK429286A-0.004393683976567509-4.56538071565513", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.8890981933315385, + "pvalue": 0.004393683976567509 + }, + "subject": { + "NCBIGene": "781" + } + }, + { + "_id": "LIG1-GSK429286A-0.004402498414518176-4.2018034192842", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5604464157991227, + "pvalue": 0.004402498414518176 + }, + "subject": { + "NCBIGene": "3978" + } + }, + { + "_id": "ATP2B2-GSK429286A-0.004415327969904949-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.462172618916404, + "pvalue": 0.004415327969904949 + }, + "subject": { + "NCBIGene": "491" + } + }, + { + "_id": "ATP11B-GSK429286A-0.004443583639981424-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.7942446624195791, + "pvalue": 0.004443583639981424 + }, + "subject": { + "NCBIGene": "23200" + } + }, + { + "_id": "GOLGA6A-GSK429286A-0.004519332618639445-3.62266430316214", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.8738234615824598, + "pvalue": 0.004519332618639445 + }, + "subject": { + "NCBIGene": "342096" + } + }, + { + "_id": "SH3TC2-GSK429286A-0.004538129449460289-3.9799025308325", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.3622735893872093, + "pvalue": 0.004538129449460289 + }, + "subject": { + "NCBIGene": "79628" + } + }, + { + "_id": "KAT6B-GSK429286A-0.004559539796641346-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4095169127924019, + "pvalue": 0.004559539796641346 + }, + "subject": { + "NCBIGene": "23522" + } + }, + { + "_id": "TNRC6A-GSK429286A-0.0046190249195805395-3.9693556795079", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.8502421194190835, + "pvalue": 0.0046190249195805395 + }, + "subject": { + "NCBIGene": "27327" + } + }, + { + "_id": "GTF3C1-GSK429286A-0.004658672424409286-4.402256268702275", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.330016548285633, + "pvalue": 0.004658672424409286 + }, + "subject": { + "NCBIGene": "2975" + } + }, + { + "_id": "QSER1-GSK429286A-0.004670955925255962-3.517108963713115", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6124556550284541, + "pvalue": 0.004670955925255962 + }, + "subject": { + "NCBIGene": "79832" + } + }, + { + "_id": "CARS-GSK429286A-0.004712539711006341-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.8655628851927055, + "pvalue": 0.004712539711006341 + }, + "subject": { + "NCBIGene": "833" + } + }, + { + "_id": "CYLC1-GSK429286A-0.00480606729291335-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.8099770105020072, + "pvalue": 0.00480606729291335 + }, + "subject": { + "NCBIGene": "1538" + } + }, + { + "_id": "COL7A1-GSK429286A-0.004904670637102178-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.998026485446977, + "pvalue": 0.004904670637102178 + }, + "subject": { + "NCBIGene": "1294" + } + }, + { + "_id": "PPP3CA-GSK429286A-0.004907798056018371-3.562078170295035", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.603438979019473, + "pvalue": 0.004907798056018371 + }, + "subject": { + "NCBIGene": "5530" + } + }, + { + "_id": "ABI3BP-GSK429286A-0.004908129019193955-4.62586351232286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.4352751954735838, + "pvalue": 0.004908129019193955 + }, + "subject": { + "NCBIGene": "25890" + } + }, + { + "_id": "EPHB1-GSK429286A-0.004942023221400172-3.2150942090242003", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6064171440636117, + "pvalue": 0.004942023221400172 + }, + "subject": { + "NCBIGene": "2047" + } + }, + { + "_id": "KIAA0556-GSK429286A-0.00501569694367216-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5524919095736782, + "pvalue": 0.00501569694367216 + }, + "subject": { + "NCBIGene": "23247" + } + }, + { + "_id": "MLL3-GSK429286A-0.005208747399874977-5.087502411600415", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1611165600726157, + "pvalue": 0.005208747399874977 + }, + "subject": { + "NCBIGene": "58508" + } + }, + { + "_id": "OR5H1-GSK429286A-0.005218260923075749-3.514671743452145", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5907851389956913, + "pvalue": 0.005218260923075749 + }, + "subject": { + "NCBIGene": "26341" + } + }, + { + "_id": "DDX60-GSK429286A-0.005309708928210245-4.358901800201275", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.5805240680278392, + "pvalue": 0.005309708928210245 + }, + "subject": { + "NCBIGene": "55601" + } + }, + { + "_id": "OR4C11-GSK429286A-0.005326965610843363-3.62266430316214", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.837956176769439, + "pvalue": 0.005326965610843363 + }, + "subject": { + "NCBIGene": "219429" + } + }, + { + "_id": "ENSG00000121031-GSK429286A-0.005376315605754358-3.61700005237166", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.6236798927915808, + "pvalue": 0.005376315605754358 + } + }, + { + "_id": "UBQLN3-GSK429286A-0.00540401493718939-3.78545267250147", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3077372145549329, + "pvalue": 0.00540401493718939 + }, + "subject": { + "NCBIGene": "50613" + } + }, + { + "_id": "PCNX-GSK429286A-0.005409921167023541-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -3.0083349517132847, + "pvalue": 0.005409921167023541 + }, + "subject": { + "NCBIGene": "22990" + } + }, + { + "_id": "MYO9B-GSK429286A-0.005409921167023541-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -3.0083349517132847, + "pvalue": 0.005409921167023541 + }, + "subject": { + "NCBIGene": "4650" + } + }, + { + "_id": "TRIM66-GSK429286A-0.005409921167023541-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -3.0083349517132847, + "pvalue": 0.005409921167023541 + }, + "subject": { + "NCBIGene": "9866" + } + }, + { + "_id": "ZNF462-GSK429286A-0.005409921167023541-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -3.0083349517132847, + "pvalue": 0.005409921167023541 + }, + "subject": { + "NCBIGene": "58499" + } + }, + { + "_id": "PKD1L3-GSK429286A-0.005476755495679704-4.4810244308383105", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3120704883787113, + "pvalue": 0.005476755495679704 + }, + "subject": { + "NCBIGene": "342372" + } + }, + { + "_id": "RFWD3-GSK429286A-0.005480600077709758-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -2.3994946097921015, + "pvalue": 0.005480600077709758 + }, + "subject": { + "NCBIGene": "55159" + } + }, + { + "_id": "MAN2A1-GSK429286A-0.005502789479070656-4.28580425141191", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -2.406789982377587, + "pvalue": 0.005502789479070656 + }, + "subject": { + "NCBIGene": "4124" + } + }, + { + "_id": "EFR3A-GSK429286A-0.005566168542796208-3.539787985915205", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5786787424835638, + "pvalue": 0.005566168542796208 + }, + "subject": { + "NCBIGene": "23167" + } + }, + { + "_id": "OR4E2-GSK429286A-0.005623138803028693-3.65955963811213", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.8256993222290692, + "pvalue": 0.005623138803028693 + }, + "subject": { + "NCBIGene": "26686" + } + }, + { + "_id": "TMEM194A-GSK429286A-0.005643120159668017-3.32663789527298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.7491414240395655, + "pvalue": 0.005643120159668017 + }, + "subject": { + "NCBIGene": "23306" + } + }, + { + "_id": "ATM-GSK429286A-0.005823216732651257-4.31645412991163", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7974944701375803, + "pvalue": 0.005823216732651257 + }, + "subject": { + "NCBIGene": "472" + } + }, + { + "_id": "AP3M1-GSK429286A-0.005883528764662658-3.32663789527298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.740360820752365, + "pvalue": 0.005883528764662658 + }, + "subject": { + "NCBIGene": "26985" + } + }, + { + "_id": "BRAF-GSK429286A-0.005890403050702437-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.7625466191502641, + "pvalue": 0.005890403050702437 + }, + "subject": { + "NCBIGene": "673" + } + }, + { + "_id": "MAP2K3-GSK429286A-0.005956917111208913-3.57244683471891", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.8138702200152916, + "pvalue": 0.005956917111208913 + }, + "subject": { + "NCBIGene": "5606" + } + }, + { + "_id": "SP1-GSK429286A-0.005959448663178722-4.09277428801013", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.788690636242738, + "pvalue": 0.005959448663178722 + }, + "subject": { + "NCBIGene": "6667" + } + }, + { + "_id": "SFMBT2-GSK429286A-0.005984848007105785-4.05115991265377", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.8354415431759137, + "pvalue": 0.005984848007105785 + }, + "subject": { + "NCBIGene": "57713" + } + }, + { + "_id": "TLR4-GSK429286A-0.006017565966778977-3.5975555689405248", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5616077827331951, + "pvalue": 0.006017565966778977 + }, + "subject": { + "NCBIGene": "7099" + } + }, + { + "_id": "HK3-GSK429286A-0.006251838065987246-3.3486246207586747", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.569716650116738, + "pvalue": 0.006251838065987246 + }, + "subject": { + "NCBIGene": "3101" + } + }, + { + "_id": "OR13A1-GSK429286A-0.006282436188680345-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.8078010216725104, + "pvalue": 0.006282436188680345 + }, + "subject": { + "NCBIGene": "79290" + } + }, + { + "_id": "ANKS6-GSK429286A-0.006431581678326965-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.6907172671002133, + "pvalue": 0.006431581678326965 + }, + "subject": { + "NCBIGene": "203286" + } + }, + { + "_id": "KIF2B-GSK429286A-0.006463979267309772-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0673133084642823, + "pvalue": 0.006463979267309772 + }, + "subject": { + "NCBIGene": "84643" + } + }, + { + "_id": "SLC24A2-GSK429286A-0.006490821207727061-2.87860594366259", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.806314110770776, + "pvalue": 0.006490821207727061 + }, + "subject": { + "NCBIGene": "25769" + } + }, + { + "_id": "RELN-GSK429286A-0.006526491668909805-4.896504453718199", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.3935838060493584, + "pvalue": 0.006526491668909805 + }, + "subject": { + "NCBIGene": "5649" + } + }, + { + "_id": "C11orf2-GSK429286A-0.006530763236619834-4.14407705682957", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.7662272918021205, + "pvalue": 0.006530763236619834 + }, + "subject": { + "NCBIGene": "56912" + } + }, + { + "_id": "LRP1B-GSK429286A-0.006596618427202017-5.10882702649963", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.7506943620290997, + "pvalue": 0.006596618427202017 + }, + "subject": { + "NCBIGene": "53353" + } + }, + { + "_id": "CTNNA3-GSK429286A-0.0066164305532482775-4.35356527179141", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7860948546394284, + "pvalue": 0.0066164305532482775 + }, + "subject": { + "NCBIGene": "29119" + } + }, + { + "_id": "GALNTL1-GSK429286A-0.006731030637654201-3.57244683471891", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7867448942297341, + "pvalue": 0.006731030637654201 + }, + "subject": { + "NCBIGene": "57452" + } + }, + { + "_id": "ASPM-GSK429286A-0.006780727800714674-3.54412584521196", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -2.310179209737123, + "pvalue": 0.006780727800714674 + }, + "subject": { + "NCBIGene": "259266" + } + }, + { + "_id": "RFTN1-GSK429286A-0.006780727800714674-3.54412584521196", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -2.310179209737123, + "pvalue": 0.006780727800714674 + }, + "subject": { + "NCBIGene": "23180" + } + }, + { + "_id": "TAS2R19-GSK429286A-0.006806290358192907-3.9693556795079", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.7663210871261683, + "pvalue": 0.006806290358192907 + }, + "subject": { + "NCBIGene": "259294" + } + }, + { + "_id": "FBLN7-GSK429286A-0.006880592282983217-4.41844670555009", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.8871620536375606, + "pvalue": 0.006880592282983217 + }, + "subject": { + "NCBIGene": "129804" + } + }, + { + "_id": "SERPINA9-GSK429286A-0.007063876402922572-4.2111426619708645", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.472481046149134, + "pvalue": 0.007063876402922572 + }, + "subject": { + "NCBIGene": "327657" + } + }, + { + "_id": "PTPN4-GSK429286A-0.007068189818618982-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3339553310830434, + "pvalue": 0.007068189818618982 + }, + "subject": { + "NCBIGene": "5775" + } + }, + { + "_id": "HERC1-GSK429286A-0.007153259716263577-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3755556669452838, + "pvalue": 0.007153259716263577 + }, + "subject": { + "NCBIGene": "8925" + } + }, + { + "_id": "SIDT1-GSK429286A-0.007329160399463791-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.9338532253693037, + "pvalue": 0.007329160399463791 + }, + "subject": { + "NCBIGene": "54847" + } + }, + { + "_id": "FAT3-GSK429286A-0.007350668388151329-4.936413571430565", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.3727419411053987, + "pvalue": 0.007350668388151329 + }, + "subject": { + "NCBIGene": "120114" + } + }, + { + "_id": "NUP214-GSK429286A-0.007503904268107602-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.365602830869213, + "pvalue": 0.007503904268107602 + }, + "subject": { + "NCBIGene": "8021" + } + }, + { + "_id": "POTEJ-GSK429286A-0.007585769874706086-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.7924256332970465, + "pvalue": 0.007585769874706086 + }, + "subject": { + "NCBIGene": "653781" + } + }, + { + "_id": "TAS1R2-GSK429286A-0.007591600946734902-3.42908959156423", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5186639383348357, + "pvalue": 0.007591600946734902 + }, + "subject": { + "NCBIGene": "80834" + } + }, + { + "_id": "BAHCC1-GSK429286A-0.007621279492715463-4.03090964666794", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7549623097879363, + "pvalue": 0.007621279492715463 + }, + "subject": { + "NCBIGene": "57597" + } + }, + { + "_id": "PDGFRA-GSK429286A-0.0076999893574040456-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.6881251087894475, + "pvalue": 0.0076999893574040456 + }, + "subject": { + "NCBIGene": "5156" + } + }, + { + "_id": "GUCY2F-GSK429286A-0.00784451244211125-3.32663789527298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.6790205801375075, + "pvalue": 0.00784451244211125 + }, + "subject": { + "NCBIGene": "2986" + } + }, + { + "_id": "C10orf112-GSK429286A-0.007868235234909328-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.490624002870761, + "pvalue": 0.007868235234909328 + }, + "subject": { + "NCBIGene": "340895" + } + }, + { + "_id": "TNFAIP6-GSK429286A-0.008103090861540855-4.68161053582366", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.7032702482994404, + "pvalue": 0.008103090861540855 + }, + "subject": { + "NCBIGene": "7130" + } + }, + { + "_id": "MYST3-GSK429286A-0.008133227355573886-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7399316137587504, + "pvalue": 0.008133227355573886 + }, + "subject": { + "NCBIGene": "7994" + } + }, + { + "_id": "TECTA-GSK429286A-0.008139413450742636-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3523163095833561, + "pvalue": 0.008139413450742636 + }, + "subject": { + "NCBIGene": "7007" + } + }, + { + "_id": "DHX57-GSK429286A-0.008166970257476647-1.68929427666924", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.6357334982944878, + "pvalue": 0.008166970257476647 + }, + "subject": { + "NCBIGene": "90957" + } + }, + { + "_id": "PABPC5-GSK429286A-0.008167188446096112-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7501518268902816, + "pvalue": 0.008167188446096112 + }, + "subject": { + "NCBIGene": "140886" + } + }, + { + "_id": "HEATR7B1-GSK429286A-0.008191838021030934-3.69449914431882", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4999860320363279, + "pvalue": 0.008191838021030934 + }, + "subject": { + "NCBIGene": "339766" + } + }, + { + "_id": "ZNF626-GSK429286A-0.0082139170730736-4.56538071565513", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.7438288083990894, + "pvalue": 0.0082139170730736 + }, + "subject": { + "NCBIGene": "199777" + } + }, + { + "_id": "SLC36A1-GSK429286A-0.008271981103915658-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.6521797608371656, + "pvalue": 0.008271981103915658 + }, + "subject": { + "NCBIGene": "206358" + } + }, + { + "_id": "TPO-GSK429286A-0.008289534328343845-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.8129559543091212, + "pvalue": 0.008289534328343845 + }, + "subject": { + "NCBIGene": "7173" + } + }, + { + "_id": "PKHD1L1-GSK429286A-0.008322738879245188-4.06025879309769", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -2.276368187475028, + "pvalue": 0.008322738879245188 + }, + "subject": { + "NCBIGene": "93035" + } + }, + { + "_id": "INSRR-GSK429286A-0.008326976825865489-4.88975856447588", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.8259285018653857, + "pvalue": 0.008326976825865489 + }, + "subject": { + "NCBIGene": "3645" + } + }, + { + "_id": "NEB-GSK429286A-0.008338800977314048-4.26190373147984", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -1.8137991387234402, + "pvalue": 0.008338800977314048 + }, + "subject": { + "NCBIGene": "4703" + } + }, + { + "_id": "KPRP-GSK429286A-0.008429857239960903-3.738644928191135", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.493941028534163, + "pvalue": 0.008429857239960903 + }, + "subject": { + "NCBIGene": "448834" + } + }, + { + "_id": "ITGA10-GSK429286A-0.008474677935072946-4.68515563151345", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.6069859784053921, + "pvalue": 0.008474677935072946 + }, + "subject": { + "NCBIGene": "8515" + } + }, + { + "_id": "ADCY2-GSK429286A-0.008479996204836568-3.953995429967045", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.5160979058292146, + "pvalue": 0.008479996204836568 + }, + "subject": { + "NCBIGene": "108" + } + }, + { + "_id": "HSPA8-GSK429286A-0.008528236312189593-3.31818348479346", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7370419703559603, + "pvalue": 0.008528236312189593 + }, + "subject": { + "NCBIGene": "3312" + } + }, + { + "_id": "EPG5-GSK429286A-0.008575997623782344-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3408408581127176, + "pvalue": 0.008575997623782344 + }, + "subject": { + "NCBIGene": "57724" + } + }, + { + "_id": "RAD51AP2-GSK429286A-0.008684772698144232-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.801314342282183, + "pvalue": 0.008684772698144232 + }, + "subject": { + "NCBIGene": "729475" + } + }, + { + "_id": "ZNF714-GSK429286A-0.008691986554107151-3.97190507098411", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.9046177733347696, + "pvalue": 0.008691986554107151 + }, + "subject": { + "NCBIGene": "148206" + } + }, + { + "_id": "FLRT2-GSK429286A-0.008910037998215008-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2866951742387422, + "pvalue": 0.008910037998215008 + }, + "subject": { + "NCBIGene": "23768" + } + }, + { + "_id": "CACNA2D3-GSK429286A-0.008935123565357257-4.51013037635527", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.223064289896611, + "pvalue": 0.008935123565357257 + }, + "subject": { + "NCBIGene": "55799" + } + }, + { + "_id": "ALAS2-GSK429286A-0.00895907711815851-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.6698808150148126, + "pvalue": 0.00895907711815851 + }, + "subject": { + "NCBIGene": "212" + } + }, + { + "_id": "RANBP2-GSK429286A-0.008999226140169498-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.6688766196238396, + "pvalue": 0.008999226140169498 + }, + "subject": { + "NCBIGene": "5903" + } + }, + { + "_id": "FAT3-GSK429286A-0.008999226140169498-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.6688766196238396, + "pvalue": 0.008999226140169498 + }, + "subject": { + "NCBIGene": "120114" + } + }, + { + "_id": "SVEP1-GSK429286A-0.009002052695247604-3.80365458246322", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -2.1417506764875216, + "pvalue": 0.009002052695247604 + }, + "subject": { + "NCBIGene": "79987" + } + }, + { + "_id": "ABCA7-GSK429286A-0.009058987222878874-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7155954259607005, + "pvalue": 0.009058987222878874 + }, + "subject": { + "NCBIGene": "10347" + } + }, + { + "_id": "FAM161B-GSK429286A-0.009058987222878874-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7155954259607005, + "pvalue": 0.009058987222878874 + }, + "subject": { + "NCBIGene": "145483" + } + }, + { + "_id": "ROS1-GSK429286A-0.009058987222878874-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7155954259607005, + "pvalue": 0.009058987222878874 + }, + "subject": { + "NCBIGene": "6098" + } + }, + { + "_id": "TRPC5-GSK429286A-0.009075888802884777-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.6706396300237027, + "pvalue": 0.009075888802884777 + }, + "subject": { + "NCBIGene": "7224" + } + }, + { + "_id": "MUC17-GSK429286A-0.009263445527493998-3.733605386218955", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.5108534090816585, + "pvalue": 0.009263445527493998 + }, + "subject": { + "NCBIGene": "140453" + } + }, + { + "_id": "HNF1A-GSK429286A-0.009318050022797434-4.12704722289144", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7084559296707114, + "pvalue": 0.009318050022797434 + }, + "subject": { + "NCBIGene": "6927" + } + }, + { + "_id": "MDN1-GSK429286A-0.009512864960798782-4.173031522254799", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -2.0261048422142145, + "pvalue": 0.009512864960798782 + }, + "subject": { + "NCBIGene": "23195" + } + }, + { + "_id": "ZNF292-GSK429286A-0.009512873841273967-3.90484302166336", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7051068032566756, + "pvalue": 0.009512873841273967 + }, + "subject": { + "NCBIGene": "23036" + } + }, + { + "_id": "ARHGAP33-GSK429286A-0.009539775286661107-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.7068667215690005, + "pvalue": 0.009539775286661107 + }, + "subject": { + "NCBIGene": "115703" + } + }, + { + "_id": "TRIP11-GSK429286A-0.00960361582471461-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -2.208710341582263, + "pvalue": 0.00960361582471461 + }, + "subject": { + "NCBIGene": "9321" + } + }, + { + "_id": "COL11A2-GSK429286A-0.00960361582471461-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -2.208710341582263, + "pvalue": 0.00960361582471461 + }, + "subject": { + "NCBIGene": "1302" + } + }, + { + "_id": "SLIT3-GSK429286A-0.00962582447123994-1.69014715941067", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.5967854930024876, + "pvalue": 0.00962582447123994 + }, + "subject": { + "NCBIGene": "6586" + } + }, + { + "_id": "KAT6B-GSK429286A-0.009640008309035122-3.69055444840927", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.4976445150201292, + "pvalue": 0.009640008309035122 + }, + "subject": { + "NCBIGene": "23522" + } + }, + { + "_id": "SH3BP4-GSK429286A-0.009642635624131425-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.7058210576619184, + "pvalue": 0.009642635624131425 + }, + "subject": { + "NCBIGene": "23677" + } + }, + { + "_id": "XPO7-GSK429286A-0.009811002666872504-2.80897466809532", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -1.731366864093761, + "pvalue": 0.009811002666872504 + }, + "subject": { + "NCBIGene": "23039" + } + }, + { + "_id": "TRIM58-GSK429286A-0.010016332151229641-3.759526394523065", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2004466747590778, + "pvalue": 0.010016332151229641 + }, + "subject": { + "NCBIGene": "25893" + } + }, + { + "_id": "TAX1BP1-GSK429286A-0.01023751689105663-4.56946841464662", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.6912479635843054, + "pvalue": 0.01023751689105663 + }, + "subject": { + "NCBIGene": "8887" + } + }, + { + "_id": "DDX60L-GSK429286A-0.010406334878382223-4.68161053582366", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.121745694507482, + "pvalue": 0.010406334878382223 + }, + "subject": { + "NCBIGene": "91351" + } + }, + { + "_id": "PAPPA-GSK429286A-0.010442350837220974-4.25528230539895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.0887704623931946, + "pvalue": 0.010442350837220974 + }, + "subject": { + "NCBIGene": "5069" + } + }, + { + "_id": "KIF23-GSK429286A-0.010513134291045773-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.596189394146354, + "pvalue": 0.010513134291045773 + }, + "subject": { + "NCBIGene": "9493" + } + }, + { + "_id": "MTR-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "4548" + } + }, + { + "_id": "MMRN1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "22915" + } + }, + { + "_id": "KDM5A-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "5927" + } + }, + { + "_id": "NBAS-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "51594" + } + }, + { + "_id": "TNR-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "7143" + } + }, + { + "_id": "SCN3A-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "6328" + } + }, + { + "_id": "ZDHHC8-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "29801" + } + }, + { + "_id": "SLC10A6-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "345274" + } + }, + { + "_id": "DSCAML1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "57453" + } + }, + { + "_id": "DIP2C-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "22982" + } + }, + { + "_id": "CACNA1D-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "776" + } + }, + { + "_id": "A2ML1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "144568" + } + }, + { + "_id": "MYO16-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "23026" + } + }, + { + "_id": "ALOX12B-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "242" + } + }, + { + "_id": "CLOCK-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "9575" + } + }, + { + "_id": "ASH1L-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "55870" + } + }, + { + "_id": "MED13L-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "23389" + } + }, + { + "_id": "FREM3-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "166752" + } + }, + { + "_id": "GOLGA3-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "2802" + } + }, + { + "_id": "TEX10-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "54881" + } + }, + { + "_id": "WDR87-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "83889" + } + }, + { + "_id": "CSK-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "1445" + } + }, + { + "_id": "KCNJ1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "3758" + } + }, + { + "_id": "TMEM2-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "23670" + } + }, + { + "_id": "AGT-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "183" + } + }, + { + "_id": "AKAP9-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "10142" + } + }, + { + "_id": "PLCB3-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "5331" + } + }, + { + "_id": "POU5F1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "5460" + } + }, + { + "_id": "PTX4-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "390667" + } + }, + { + "_id": "PAPPA2-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "60676" + } + }, + { + "_id": "EWSR1-GSK429286A-0.010640726947860989-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.7174768704783654, + "pvalue": 0.010640726947860989 + }, + "subject": { + "NCBIGene": "2130" + } + }, + { + "_id": "SP100-GSK429286A-0.010663427445521895-3.8369911628109152", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4455617259772802, + "pvalue": 0.010663427445521895 + }, + "subject": { + "NCBIGene": "6672" + } + }, + { + "_id": "SMARCA4-GSK429286A-0.01067801410845297-4.62428461216954", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.7697821822455593, + "pvalue": 0.01067801410845297 + }, + "subject": { + "NCBIGene": "6597" + } + }, + { + "_id": "KCNC4-GSK429286A-0.01074218986453314-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.591359246166513, + "pvalue": 0.01074218986453314 + }, + "subject": { + "NCBIGene": "3749" + } + }, + { + "_id": "UNC5D-GSK429286A-0.010775782716906246-3.80236909800672", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.6600241060356764, + "pvalue": 0.010775782716906246 + }, + "subject": { + "NCBIGene": "137970" + } + }, + { + "_id": "ITIH1-GSK429286A-0.010841581687546425-4.6468307994429", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.1891200711789989, + "pvalue": 0.010841581687546425 + }, + "subject": { + "NCBIGene": "3697" + } + }, + { + "_id": "LONP1-GSK429286A-0.010913219947670446-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.6805309929502659, + "pvalue": 0.010913219947670446 + }, + "subject": { + "NCBIGene": "9361" + } + }, + { + "_id": "EHMT1-GSK429286A-0.010959389684614356-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.600873162475292, + "pvalue": 0.010959389684614356 + }, + "subject": { + "NCBIGene": "79813" + } + }, + { + "_id": "SLC11A2-GSK429286A-0.010986276637891583-4.62586351232286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.6342418292019516, + "pvalue": 0.010986276637891583 + }, + "subject": { + "NCBIGene": "4891" + } + }, + { + "_id": "ZP4-GSK429286A-0.011043322063838318-3.61600323641552", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1908993108043338, + "pvalue": 0.011043322063838318 + }, + "subject": { + "NCBIGene": "57829" + } + }, + { + "_id": "CROCC-GSK429286A-0.01107382105924282-3.3525504129511647", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4508136136913203, + "pvalue": 0.01107382105924282 + }, + "subject": { + "NCBIGene": "9696" + } + }, + { + "_id": "SLC26A3-GSK429286A-0.01114854589442949-4.359318900166495", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3954975942531176, + "pvalue": 0.01114854589442949 + }, + "subject": { + "NCBIGene": "1811" + } + }, + { + "_id": "TMC3-GSK429286A-0.011304182599777156-4.389385949965435", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.391903289569155, + "pvalue": 0.011304182599777156 + }, + "subject": { + "NCBIGene": "342125" + } + }, + { + "_id": "FAM71A-GSK429286A-0.011544827550165703-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6710242096379024, + "pvalue": 0.011544827550165703 + }, + "subject": { + "NCBIGene": "149647" + } + }, + { + "_id": "PAK4-GSK429286A-0.011721694710225727-3.76913930395847", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6578602558320144, + "pvalue": 0.011721694710225727 + }, + "subject": { + "NCBIGene": "10298" + } + }, + { + "_id": "AHSG-GSK429286A-0.011858469102293146-4.35356527179141", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6512189477062362, + "pvalue": 0.011858469102293146 + }, + "subject": { + "NCBIGene": "197" + } + }, + { + "_id": "ITGAE-GSK429286A-0.011897875969767045-3.37512063203981", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.6784931207195863, + "pvalue": 0.011897875969767045 + }, + "subject": { + "NCBIGene": "3682" + } + }, + { + "_id": "MYH11-GSK429286A-0.011968883031736613-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3221094695600744, + "pvalue": 0.011968883031736613 + }, + "subject": { + "NCBIGene": "4629" + } + }, + { + "_id": "KIAA0100-GSK429286A-0.012075113964676287-4.36724015797856", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6468911794387873, + "pvalue": 0.012075113964676287 + }, + "subject": { + "NCBIGene": "9703" + } + }, + { + "_id": "NCAN-GSK429286A-0.012111561692023808-4.60979226147975", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.1695617216447793, + "pvalue": 0.012111561692023808 + }, + "subject": { + "NCBIGene": "1463" + } + }, + { + "_id": "PNMT-GSK429286A-0.012259967585639428-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.6341819697570437, + "pvalue": 0.012259967585639428 + }, + "subject": { + "NCBIGene": "5409" + } + }, + { + "_id": "CCDC57-GSK429286A-0.012262901152881788-4.16672083686873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.571545773123686, + "pvalue": 0.012262901152881788 + }, + "subject": { + "NCBIGene": "284001" + } + }, + { + "_id": "ARSF-GSK429286A-0.012263727399104115-4.36724015797856", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6432132049516504, + "pvalue": 0.012263727399104115 + }, + "subject": { + "NCBIGene": "416" + } + }, + { + "_id": "TMEM146-GSK429286A-0.012414354596109161-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7935248962861616, + "pvalue": 0.012414354596109161 + }, + "subject": { + "NCBIGene": "257062" + } + }, + { + "_id": "OR2L8-GSK429286A-0.012585068860485063-4.53797398713584", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.604348677493632, + "pvalue": 0.012585068860485063 + }, + "subject": { + "NCBIGene": "391190" + } + }, + { + "_id": "KIFAP3-GSK429286A-0.012631568300204897-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5547578056399571, + "pvalue": 0.012631568300204897 + }, + "subject": { + "NCBIGene": "22920" + } + }, + { + "_id": "OR52K2-GSK429286A-0.012681504425824608-4.36724015797856", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.635246843230275, + "pvalue": 0.012681504425824608 + }, + "subject": { + "NCBIGene": "119774" + } + }, + { + "_id": "FAM5B-GSK429286A-0.012759602420588906-4.35356527179141", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2733938737195545, + "pvalue": 0.012759602420588906 + }, + "subject": { + "NCBIGene": "57795" + } + }, + { + "_id": "BTBD7-GSK429286A-0.012797981544261185-3.91467537455607", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.7616886606307312, + "pvalue": 0.012797981544261185 + }, + "subject": { + "NCBIGene": "55727" + } + }, + { + "_id": "ANKRD11-GSK429286A-0.01302660101730672-4.56538071565513", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.6329270950275272, + "pvalue": 0.01302660101730672 + }, + "subject": { + "NCBIGene": "29123" + } + }, + { + "_id": "SPTA1-GSK429286A-0.01303702695370818-3.57244683471891", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.8912074488923625, + "pvalue": 0.01303702695370818 + }, + "subject": { + "NCBIGene": "6708" + } + }, + { + "_id": "CMYA5-GSK429286A-0.01310458527065544-4.38018528309815", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.380017740888742, + "pvalue": 0.01310458527065544 + }, + "subject": { + "NCBIGene": "202333" + } + }, + { + "_id": "TPP2-GSK429286A-0.013195419872501732-3.94425677573631", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2296655549340751, + "pvalue": 0.013195419872501732 + }, + "subject": { + "NCBIGene": "7174" + } + }, + { + "_id": "SNRNP48-GSK429286A-0.013228929961872268-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5442216809698592, + "pvalue": 0.013228929961872268 + }, + "subject": { + "NCBIGene": "154007" + } + }, + { + "_id": "PRKCB-GSK429286A-0.013262538305808938-3.9698434963487346", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4002449024738464, + "pvalue": 0.013262538305808938 + }, + "subject": { + "NCBIGene": "5579" + } + }, + { + "_id": "RAI1-GSK429286A-0.013391458663964935-4.34922164336285", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.1170884400716263, + "pvalue": 0.013391458663964935 + }, + "subject": { + "NCBIGene": "10743" + } + }, + { + "_id": "DLGAP2-GSK429286A-0.013479861049018275-4.53144026818292", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2198476149562556, + "pvalue": 0.013479861049018275 + }, + "subject": { + "NCBIGene": "9228" + } + }, + { + "_id": "NBAS-GSK429286A-0.0135218958497217-4.07519670929542", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.395165892756389, + "pvalue": 0.0135218958497217 + }, + "subject": { + "NCBIGene": "51594" + } + }, + { + "_id": "HK2-GSK429286A-0.01352976240673239-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.562588510784908, + "pvalue": 0.01352976240673239 + }, + "subject": { + "NCBIGene": "3099" + } + }, + { + "_id": "CPEB2-GSK429286A-0.01388706056963947-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7613043362304235, + "pvalue": 0.01388706056963947 + }, + "subject": { + "NCBIGene": "132864" + } + }, + { + "_id": "GNPTAB-GSK429286A-0.01388706056963947-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7613043362304235, + "pvalue": 0.01388706056963947 + }, + "subject": { + "NCBIGene": "79158" + } + }, + { + "_id": "EML6-GSK429286A-0.01388706056963947-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7613043362304235, + "pvalue": 0.01388706056963947 + }, + "subject": { + "NCBIGene": "400954" + } + }, + { + "_id": "NAPSB-GSK429286A-0.01388706056963947-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7613043362304235, + "pvalue": 0.01388706056963947 + }, + "subject": { + "NCBIGene": "ENSG00000131401" + } + }, + { + "_id": "KIF16B-GSK429286A-0.013904170166908165-4.73013443065967", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2359833587478886, + "pvalue": 0.013904170166908165 + }, + "subject": { + "NCBIGene": "55614" + } + }, + { + "_id": "PMFBP1-GSK429286A-0.013957355034810636-3.12450046524093", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2116062455637417, + "pvalue": 0.013957355034810636 + }, + "subject": { + "NCBIGene": "83449" + } + }, + { + "_id": "MLL-GSK429286A-0.014004566766371856-3.90484302166336", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6144552136310732, + "pvalue": 0.014004566766371856 + }, + "subject": { + "NCBIGene": "4297" + } + }, + { + "_id": "HECW2-GSK429286A-0.014304380306774077-3.8405531509490203", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3868547816050272, + "pvalue": 0.014304380306774077 + }, + "subject": { + "NCBIGene": "57520" + } + }, + { + "_id": "GALNT13-GSK429286A-0.01439480395638011-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.6064608242117682, + "pvalue": 0.01439480395638011 + }, + "subject": { + "NCBIGene": "114805" + } + }, + { + "_id": "PCNXL2-GSK429286A-0.01439911071506362-4.41844670555009", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.70145746555375, + "pvalue": 0.01439911071506362 + }, + "subject": { + "NCBIGene": "80003" + } + }, + { + "_id": "ASH1L-GSK429286A-0.014508331192535263-3.8044104993743755", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3864323431564503, + "pvalue": 0.014508331192535263 + }, + "subject": { + "NCBIGene": "55870" + } + }, + { + "_id": "PSIP1-GSK429286A-0.014534984813374844-4.25528230539895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5224163230442893, + "pvalue": 0.014534984813374844 + }, + "subject": { + "NCBIGene": "11168" + } + }, + { + "_id": "SERPINB3-GSK429286A-0.014542867667682065-4.88275162018359", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.5656505427532907, + "pvalue": 0.014542867667682065 + }, + "subject": { + "NCBIGene": "6317" + } + }, + { + "_id": "EPPK1-GSK429286A-0.014570731911558648-3.80365458246322", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.9830514651477857, + "pvalue": 0.014570731911558648 + }, + "subject": { + "NCBIGene": "83481" + } + }, + { + "_id": "ABCA9-GSK429286A-0.014877156638716568-4.83274262575344", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.3234470319289984, + "pvalue": 0.014877156638716568 + }, + "subject": { + "NCBIGene": "10350" + } + }, + { + "_id": "PLEKHH2-GSK429286A-0.014909733994461546-3.713596966710435", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3791974998942804, + "pvalue": 0.014909733994461546 + }, + "subject": { + "NCBIGene": "130271" + } + }, + { + "_id": "PCDHB11-GSK429286A-0.014974138358699627-4.35356527179141", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2326442803234734, + "pvalue": 0.014974138358699627 + }, + "subject": { + "NCBIGene": "56125" + } + }, + { + "_id": "PEAR1-GSK429286A-0.015249446219278028-3.8197166439669754", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3735111748237663, + "pvalue": 0.015249446219278028 + }, + "subject": { + "NCBIGene": "375033" + } + }, + { + "_id": "PTPRM-GSK429286A-0.015396525817020746-2.77207377247529", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.6226372317869717, + "pvalue": 0.015396525817020746 + }, + "subject": { + "NCBIGene": "5797" + } + }, + { + "_id": "CTNNA2-GSK429286A-0.015557492511110401-4.37380800230499", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.5591151521614053, + "pvalue": 0.015557492511110401 + }, + "subject": { + "NCBIGene": "1496" + } + }, + { + "_id": "POLR1B-GSK429286A-0.015639538529807907-4.34682522432738", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5045894145069139, + "pvalue": 0.015639538529807907 + }, + "subject": { + "NCBIGene": "84172" + } + }, + { + "_id": "LAMA1-GSK429286A-0.015800228099535327-5.02737027495256", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.9147126993326099, + "pvalue": 0.015800228099535327 + }, + "subject": { + "NCBIGene": "284217" + } + }, + { + "_id": "MLLT10-GSK429286A-0.015868516986400488-4.432882426703415", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.341476442063965, + "pvalue": 0.015868516986400488 + }, + "subject": { + "NCBIGene": "8028" + } + }, + { + "_id": "FAT3-GSK429286A-0.016014086928773635-4.904779993329875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.507783085422323, + "pvalue": 0.016014086928773635 + }, + "subject": { + "NCBIGene": "120114" + } + }, + { + "_id": "SYNE2-GSK429286A-0.016014086928773635-4.904779993329875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.507783085422323, + "pvalue": 0.016014086928773635 + }, + "subject": { + "NCBIGene": "23224" + } + }, + { + "_id": "PTEN-GSK429286A-0.016014086928773635-4.904779993329875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.507783085422323, + "pvalue": 0.016014086928773635 + }, + "subject": { + "NCBIGene": "5728" + } + }, + { + "_id": "UBR5-GSK429286A-0.0160727597207335-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.644214852070753, + "pvalue": 0.0160727597207335 + }, + "subject": { + "NCBIGene": "51366" + } + }, + { + "_id": "KIAA1671-GSK429286A-0.0160727597207335-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.644214852070753, + "pvalue": 0.0160727597207335 + }, + "subject": { + "NCBIGene": "85379" + } + }, + { + "_id": "NTSR1-GSK429286A-0.01627393971883535-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.5112495955798309, + "pvalue": 0.01627393971883535 + }, + "subject": { + "NCBIGene": "4923" + } + }, + { + "_id": "TCHH-GSK429286A-0.016299974206156996-3.28495852172343", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005499" + } + }, + "effect_size": -1.881136902386124, + "pvalue": 0.016299974206156996 + }, + "subject": { + "NCBIGene": "7062" + } + }, + { + "_id": "DLL4-GSK429286A-0.016380542593412185-4.62586351232286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.54003806690466, + "pvalue": 0.016380542593412185 + }, + "subject": { + "NCBIGene": "54567" + } + }, + { + "_id": "TAF1-GSK429286A-0.01638538529680627-4.63351692933392", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1979973280748704, + "pvalue": 0.01638538529680627 + }, + "subject": { + "NCBIGene": "6872" + } + }, + { + "_id": "VANGL2-GSK429286A-0.016407468709250472-4.55660583665711", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5726191740969069, + "pvalue": 0.016407468709250472 + }, + "subject": { + "NCBIGene": "57216" + } + }, + { + "_id": "LILRB4-GSK429286A-0.01644345203025006-4.090430297880966", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.310347209812813, + "pvalue": 0.01644345203025006 + }, + "subject": { + "NCBIGene": "11006" + } + }, + { + "_id": "EPHA7-GSK429286A-0.016456781785508193-4.03090964666794", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5745230747166665, + "pvalue": 0.016456781785508193 + }, + "subject": { + "NCBIGene": "2045" + } + }, + { + "_id": "MACF1-GSK429286A-0.016465080825941236-4.904779993329875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.492373562192683, + "pvalue": 0.016465080825941236 + }, + "subject": { + "NCBIGene": "23499" + } + }, + { + "_id": "PLEC-GSK429286A-0.016465080825941236-4.904779993329875", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.492373562192683, + "pvalue": 0.016465080825941236 + }, + "subject": { + "NCBIGene": "5339" + } + }, + { + "_id": "LUM-GSK429286A-0.016672056157234494-4.35977638536549", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.3205594540251462, + "pvalue": 0.016672056157234494 + }, + "subject": { + "NCBIGene": "4060" + } + }, + { + "_id": "USH2A-GSK429286A-0.01668895787609719-2.91803862057657", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -1.0100186928867168, + "pvalue": 0.01668895787609719 + }, + "subject": { + "NCBIGene": "7399" + } + }, + { + "_id": "ALMS1-GSK429286A-0.017003168316170714-3.5355532097840747", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9783677806287843, + "pvalue": 0.017003168316170714 + }, + "subject": { + "NCBIGene": "7840" + } + }, + { + "_id": "FRMPD3-GSK429286A-0.017079589051870115-4.88975856447588", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.6408522806979866, + "pvalue": 0.017079589051870115 + }, + "subject": { + "NCBIGene": "84443" + } + }, + { + "_id": "ADCY1-GSK429286A-0.01721641771216732-4.20666826453534", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.8914663625103654, + "pvalue": 0.01721641771216732 + }, + "subject": { + "NCBIGene": "107" + } + }, + { + "_id": "USP28-GSK429286A-0.01721641771216732-4.20666826453534", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.8914663625103654, + "pvalue": 0.01721641771216732 + }, + "subject": { + "NCBIGene": "57646" + } + }, + { + "_id": "CLOCK-GSK429286A-0.017627958255816045-4.16079588379921", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3512538411479882, + "pvalue": 0.017627958255816045 + }, + "subject": { + "NCBIGene": "9575" + } + }, + { + "_id": "TTLL6-GSK429286A-0.017645688097920883-4.62663593527873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.074124126299224, + "pvalue": 0.017645688097920883 + }, + "subject": { + "NCBIGene": "284076" + } + }, + { + "_id": "TARBP2-GSK429286A-0.017648783559068307-3.97190507098411", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7022973970210291, + "pvalue": 0.017648783559068307 + }, + "subject": { + "NCBIGene": "6895" + } + }, + { + "_id": "CCDC88C-GSK429286A-0.017648783559068307-3.97190507098411", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.7022973970210291, + "pvalue": 0.017648783559068307 + }, + "subject": { + "NCBIGene": "440193" + } + }, + { + "_id": "SESTD1-GSK429286A-0.017655661433354574-4.00341193707861", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5576367061821994, + "pvalue": 0.017655661433354574 + }, + "subject": { + "NCBIGene": "91404" + } + }, + { + "_id": "FMO3-GSK429286A-0.017733315763950964-4.6300789882865505", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2866881811522766, + "pvalue": 0.017733315763950964 + }, + "subject": { + "NCBIGene": "2328" + } + }, + { + "_id": "NRAS-GSK429286A-0.017741309370144575-3.58734014183103", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -1.9499994295315772, + "pvalue": 0.017741309370144575 + }, + "subject": { + "NCBIGene": "4893" + } + }, + { + "_id": "IGSF1-GSK429286A-0.018048000307104562-4.38402204410427", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.0695823184161402, + "pvalue": 0.018048000307104562 + }, + "subject": { + "NCBIGene": "3547" + } + }, + { + "_id": "FREM3-GSK429286A-0.018154430270333536-3.77197655666978", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.5901616984844869, + "pvalue": 0.018154430270333536 + }, + "subject": { + "NCBIGene": "166752" + } + }, + { + "_id": "SLC39A14-GSK429286A-0.018281309171477248-4.34682522432738", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4561582368679402, + "pvalue": 0.018281309171477248 + }, + "subject": { + "NCBIGene": "23516" + } + }, + { + "_id": "INO80-GSK429286A-0.01837568737149164-5.10957339720454", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1815967798965943, + "pvalue": 0.01837568737149164 + }, + "subject": { + "NCBIGene": "54617" + } + }, + { + "_id": "ANO5-GSK429286A-0.01840438502264083-4.35356527179141", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1918346350385915, + "pvalue": 0.01840438502264083 + }, + "subject": { + "NCBIGene": "203859" + } + }, + { + "_id": "ABLIM3-GSK429286A-0.01852589002376071-4.112229887522675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.271710077497594, + "pvalue": 0.01852589002376071 + }, + "subject": { + "NCBIGene": "22885" + } + }, + { + "_id": "ATG2B-GSK429286A-0.018659288971845284-3.502826583277015", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3350378689264375, + "pvalue": 0.018659288971845284 + }, + "subject": { + "NCBIGene": "55102" + } + }, + { + "_id": "MYH15-GSK429286A-0.018775815360783103-0.418592847200821", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.6154847091244093, + "pvalue": 0.018775815360783103 + }, + "subject": { + "NCBIGene": "22989" + } + }, + { + "_id": "SYNE2-GSK429286A-0.018787084228424122-3.8369911628109152", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.8727463658014643, + "pvalue": 0.018787084228424122 + }, + "subject": { + "NCBIGene": "23224" + } + }, + { + "_id": "ASPM-GSK429286A-0.01885590400315773-5.300224755563", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -0.8509817563360849, + "pvalue": 0.01885590400315773 + }, + "subject": { + "NCBIGene": "259266" + } + }, + { + "_id": "FLT3-GSK429286A-0.019033364992149495-3.824357262895515", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.32472517604353, + "pvalue": 0.019033364992149495 + }, + "subject": { + "NCBIGene": "2322" + } + }, + { + "_id": "INPP5F-GSK429286A-0.019069918927341008-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.303870833290708, + "pvalue": 0.019069918927341008 + }, + "subject": { + "NCBIGene": "22876" + } + }, + { + "_id": "TRIO-GSK429286A-0.019069918927341008-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.303870833290708, + "pvalue": 0.019069918927341008 + }, + "subject": { + "NCBIGene": "7204" + } + }, + { + "_id": "DNAH3-GSK429286A-0.019069918927341008-4.82358219767493", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.303870833290708, + "pvalue": 0.019069918927341008 + }, + "subject": { + "NCBIGene": "55567" + } + }, + { + "_id": "VPS13D-GSK429286A-0.019139170528315343-4.63351692933392", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.476003154926962, + "pvalue": 0.019139170528315343 + }, + "subject": { + "NCBIGene": "55187" + } + }, + { + "_id": "LMO7-GSK429286A-0.019145138908545342-4.747401341622865", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.0919947096564486, + "pvalue": 0.019145138908545342 + }, + "subject": { + "NCBIGene": "4008" + } + }, + { + "_id": "RFPL4B-GSK429286A-0.019286822760544473-4.37380800230499", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.4597792380895311, + "pvalue": 0.019286822760544473 + }, + "subject": { + "NCBIGene": "442247" + } + }, + { + "_id": "MYOM3-GSK429286A-0.019506251296286792-3.80365458246322", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.8860080473348781, + "pvalue": 0.019506251296286792 + }, + "subject": { + "NCBIGene": "127294" + } + }, + { + "_id": "COL11A2-GSK429286A-0.01954265083694061-3.669390410097205", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9509509751012171, + "pvalue": 0.01954265083694061 + }, + "subject": { + "NCBIGene": "1302" + } + }, + { + "_id": "HECW1-GSK429286A-0.01965151214770829-4.06135228787494", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0888484880690026, + "pvalue": 0.01965151214770829 + }, + "subject": { + "NCBIGene": "23072" + } + }, + { + "_id": "WDR27-GSK429286A-0.01968982382317951-4.1488777392318745", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.7143635825727808, + "pvalue": 0.01968982382317951 + }, + "subject": { + "NCBIGene": "253769" + } + }, + { + "_id": "ZBTB20-GSK429286A-0.01969456247583201-4.4127644865903", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.485016237561722, + "pvalue": 0.01969456247583201 + }, + "subject": { + "NCBIGene": "26137" + } + }, + { + "_id": "DDX11-GSK429286A-0.01985724017732134-3.7663339854755", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5312951944147237, + "pvalue": 0.01985724017732134 + }, + "subject": { + "NCBIGene": "1663" + } + }, + { + "_id": "MDN1-GSK429286A-0.01989672352074626-1.4779590579677915", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.4283069631391097, + "pvalue": 0.01989672352074626 + }, + "subject": { + "NCBIGene": "23195" + } + }, + { + "_id": "ASTE1-GSK429286A-0.019996772960918216-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.5251984570893555, + "pvalue": 0.019996772960918216 + }, + "subject": { + "NCBIGene": "28990" + } + }, + { + "_id": "OTOG-GSK429286A-0.02008413974111855-4.368440051918275", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2921417403511815, + "pvalue": 0.02008413974111855 + }, + "subject": { + "NCBIGene": "340990" + } + }, + { + "_id": "C7orf51-GSK429286A-0.020151139197727395-3.8405531509490203", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3138921556092287, + "pvalue": 0.020151139197727395 + }, + "subject": { + "NCBIGene": "222950" + } + }, + { + "_id": "SG223-GSK429286A-0.020189739844615244-4.06025879309769", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -1.9486471641766254, + "pvalue": 0.020189739844615244 + } + }, + { + "_id": "CELSR3-GSK429286A-0.020251901210826928-3.66361730829669", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3162343547706292, + "pvalue": 0.020251901210826928 + }, + "subject": { + "NCBIGene": "1951" + } + }, + { + "_id": "USP35-GSK429286A-0.020335576483051603-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4439134251397434, + "pvalue": 0.020335576483051603 + }, + "subject": { + "NCBIGene": "57558" + } + }, + { + "_id": "UBR4-GSK429286A-0.02042504294586369-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.4686545557091626, + "pvalue": 0.02042504294586369 + }, + "subject": { + "NCBIGene": "23352" + } + }, + { + "_id": "RNF17-GSK429286A-0.02060839503247213-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1692310485790502, + "pvalue": 0.02060839503247213 + }, + "subject": { + "NCBIGene": "56163" + } + }, + { + "_id": "ALPK2-GSK429286A-0.02065152503002333-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4295930135469372, + "pvalue": 0.02065152503002333 + }, + "subject": { + "NCBIGene": "115701" + } + }, + { + "_id": "RBP3-GSK429286A-0.020713327307451013-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.4636350319206186, + "pvalue": 0.020713327307451013 + }, + "subject": { + "NCBIGene": "5949" + } + }, + { + "_id": "GRIP1-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "23426" + } + }, + { + "_id": "GNA15-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "2769" + } + }, + { + "_id": "PLXNA4-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "91584" + } + }, + { + "_id": "CAPN6-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "827" + } + }, + { + "_id": "CCDC73-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "493860" + } + }, + { + "_id": "BCKDHB-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "594" + } + }, + { + "_id": "KIFC1-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "3833" + } + }, + { + "_id": "DYRK1A-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "1859" + } + }, + { + "_id": "ANO6-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "196527" + } + }, + { + "_id": "DHX9-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "1660" + } + }, + { + "_id": "MUC19-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "283463" + } + }, + { + "_id": "C14orf43-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "91748" + } + }, + { + "_id": "TBC1D8B-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "54885" + } + }, + { + "_id": "SMARCA2-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "6595" + } + }, + { + "_id": "NPAT-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "4863" + } + }, + { + "_id": "KIAA1267-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "284058" + } + }, + { + "_id": "ADAM2-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "2515" + } + }, + { + "_id": "WDR11-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "55717" + } + }, + { + "_id": "JARID2-GSK429286A-0.020800755740459982-4.22504619786692", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.3465500499734873, + "pvalue": 0.020800755740459982 + }, + "subject": { + "NCBIGene": "3720" + } + }, + { + "_id": "FN1-GSK429286A-0.020847210022134546-4.44017631497954", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.265507329776386, + "pvalue": 0.020847210022134546 + }, + "subject": { + "NCBIGene": "2335" + } + }, + { + "_id": "ZNF441-GSK429286A-0.020924000417361317-4.51493282269302", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5125205152509038, + "pvalue": 0.020924000417361317 + }, + "subject": { + "NCBIGene": "126068" + } + }, + { + "_id": "MYOF-GSK429286A-0.020986263603933415-4.79057882176069", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.5113074740954697, + "pvalue": 0.020986263603933415 + }, + "subject": { + "NCBIGene": "26509" + } + }, + { + "_id": "DPP10-GSK429286A-0.021117783590190224-4.070193895414745", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2760616779797032, + "pvalue": 0.021117783590190224 + }, + "subject": { + "NCBIGene": "57628" + } + }, + { + "_id": "RBBP6-GSK429286A-0.021146267537161402-4.21671877951392", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.5527011561011361, + "pvalue": 0.021146267537161402 + }, + "subject": { + "NCBIGene": "5930" + } + }, + { + "_id": "XKR4-GSK429286A-0.021167287555576716-4.63351692933392", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.4512939937254346, + "pvalue": 0.021167287555576716 + }, + "subject": { + "NCBIGene": "114786" + } + }, + { + "_id": "EFHA2-GSK429286A-0.021221143360185244-4.60247738780699", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4306999683386252, + "pvalue": 0.021221143360185244 + }, + "subject": { + "NCBIGene": "286097" + } + }, + { + "_id": "CSMD1-GSK429286A-0.021251332191463183-3.28495852172343", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005499" + } + }, + "effect_size": -1.792740659305331, + "pvalue": 0.021251332191463183 + }, + "subject": { + "NCBIGene": "64478" + } + }, + { + "_id": "CCDC144B-GSK429286A-0.02137450884075705-3.98136225588065", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3012856904605687, + "pvalue": 0.02137450884075705 + }, + "subject": { + "NCBIGene": "284047" + } + }, + { + "_id": "ENSG00000171101-GSK429286A-0.021485643390388623-4.45370547607737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.2968204534789276, + "pvalue": 0.021485643390388623 + }, + "subject": { + "NCBIGene": "ENSG00000171101" + } + }, + { + "_id": "SLIT3-GSK429286A-0.02150506397859227-3.8405531509490203", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.065957954690757, + "pvalue": 0.02150506397859227 + }, + "subject": { + "NCBIGene": "6586" + } + }, + { + "_id": "CNTN1-GSK429286A-0.02155918951862394-3.9575396435008097", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2986606103846268, + "pvalue": 0.02155918951862394 + }, + "subject": { + "NCBIGene": "1272" + } + }, + { + "_id": "BAIAP3-GSK429286A-0.02157288846860101-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.5043655574218253, + "pvalue": 0.02157288846860101 + }, + "subject": { + "NCBIGene": "8938" + } + }, + { + "_id": "O52L2-GSK429286A-0.021613805632756288-3.9466906041834697", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0627931049661672, + "pvalue": 0.021613805632756288 + } + }, + { + "_id": "MYO15A-GSK429286A-0.02163146520907451-3.69449914431882", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2985909336074546, + "pvalue": 0.02163146520907451 + }, + "subject": { + "NCBIGene": "51168" + } + }, + { + "_id": "OR5B3-GSK429286A-0.02196683869474022-4.036659500163095", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.294397659189231, + "pvalue": 0.02196683869474022 + }, + "subject": { + "NCBIGene": "441608" + } + }, + { + "_id": "SP2-GSK429286A-0.022052623188626053-4.53144026818292", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4217962272760316, + "pvalue": 0.022052623188626053 + }, + "subject": { + "NCBIGene": "6668" + } + }, + { + "_id": "BOD1L-GSK429286A-0.022112951043213026-2.90082792551563", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.521784086350599, + "pvalue": 0.022112951043213026 + }, + "subject": { + "NCBIGene": "259282" + } + }, + { + "_id": "DNAH6-GSK429286A-0.022141405498406267-4.51493282269302", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1606206210437273, + "pvalue": 0.022141405498406267 + }, + "subject": { + "NCBIGene": "1768" + } + }, + { + "_id": "SYTL5-GSK429286A-0.022295760677772652-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -1.919176686438752, + "pvalue": 0.022295760677772652 + }, + "subject": { + "NCBIGene": "94122" + } + }, + { + "_id": "LAMA2-GSK429286A-0.022295760677772652-1.94738156577938", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -1.919176686438752, + "pvalue": 0.022295760677772652 + }, + "subject": { + "NCBIGene": "3908" + } + }, + { + "_id": "ARHGAP44-GSK429286A-0.022316021010521544-4.58085702572817", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.285848786294017, + "pvalue": 0.022316021010521544 + }, + "subject": { + "NCBIGene": "9912" + } + }, + { + "_id": "DDX31-GSK429286A-0.022424739245515447-4.60247738780699", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.4173655264187461, + "pvalue": 0.022424739245515447 + }, + "subject": { + "NCBIGene": "64794" + } + }, + { + "_id": "EIF2A-GSK429286A-0.022447785517961213-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.518926449925293, + "pvalue": 0.022447785517961213 + }, + "subject": { + "NCBIGene": "83939" + } + }, + { + "_id": "PRG4-GSK429286A-0.022572365262748882-2.77062877993627", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4127563861829802, + "pvalue": 0.022572365262748882 + }, + "subject": { + "NCBIGene": "10216" + } + }, + { + "_id": "PCDHGB7-GSK429286A-0.022628474636516568-4.203555645683925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4609227421317856, + "pvalue": 0.022628474636516568 + }, + "subject": { + "NCBIGene": "56099" + } + }, + { + "_id": "CDH18-GSK429286A-0.022834597807024265-3.80236909800672", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.4682449108902935, + "pvalue": 0.022834597807024265 + }, + "subject": { + "NCBIGene": "1016" + } + }, + { + "_id": "ZNF518B-GSK429286A-0.022873400276247454-3.9693556795079", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.427185963473732, + "pvalue": 0.022873400276247454 + }, + "subject": { + "NCBIGene": "85460" + } + }, + { + "_id": "GGCX-GSK429286A-0.02305539486936209-4.017160791873275", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.280937366171603, + "pvalue": 0.02305539486936209 + }, + "subject": { + "NCBIGene": "2677" + } + }, + { + "_id": "SMARCA4-GSK429286A-0.023244775352758155-4.16079588379921", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.2874587449434578, + "pvalue": 0.023244775352758155 + }, + "subject": { + "NCBIGene": "6597" + } + }, + { + "_id": "ZNF208-GSK429286A-0.023350796544782084-4.17148635740073", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0535158515252405, + "pvalue": 0.023350796544782084 + }, + "subject": { + "NCBIGene": "7757" + } + }, + { + "_id": "C12orf63-GSK429286A-0.023420706728735443-3.69055444840927", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.3015348777490625, + "pvalue": 0.023420706728735443 + }, + "subject": { + "NCBIGene": "144535" + } + }, + { + "_id": "DAGLB-GSK429286A-0.023553291356679475-4.65373702407326", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.262763898133428, + "pvalue": 0.023553291356679475 + }, + "subject": { + "NCBIGene": "221955" + } + }, + { + "_id": "SCN1A-GSK429286A-0.023562537299352152-4.3604027148849855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0506535277471345, + "pvalue": 0.023562537299352152 + }, + "subject": { + "NCBIGene": "6323" + } + }, + { + "_id": "HOXC8-GSK429286A-0.023635926347580726-2.77062877993627", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.399621481411894, + "pvalue": 0.023635926347580726 + }, + "subject": { + "NCBIGene": "3224" + } + }, + { + "_id": "ENSG00000174501-GSK429286A-0.023669901594516277-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5921489074130144, + "pvalue": 0.023669901594516277 + }, + "subject": { + "NCBIGene": "400986" + } + }, + { + "_id": "BCL9L-GSK429286A-0.0237122734889548-4.072972953511179", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2763356529802892, + "pvalue": 0.0237122734889548 + }, + "subject": { + "NCBIGene": "283149" + } + }, + { + "_id": "COL14A1-GSK429286A-0.023816021440871315-4.78011064258079", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.2912907045256614, + "pvalue": 0.023816021440871315 + }, + "subject": { + "NCBIGene": "7373" + } + }, + { + "_id": "FNDC1-GSK429286A-0.023840393732798417-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.4850180359981762, + "pvalue": 0.023840393732798417 + }, + "subject": { + "NCBIGene": "84624" + } + }, + { + "_id": "MYO10-GSK429286A-0.023873597667062794-3.54412584521196", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -1.8433017944597965, + "pvalue": 0.023873597667062794 + }, + "subject": { + "NCBIGene": "4651" + } + }, + { + "_id": "SNRNP200-GSK429286A-0.023873597667062794-3.54412584521196", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -1.8433017944597965, + "pvalue": 0.023873597667062794 + }, + "subject": { + "NCBIGene": "23020" + } + }, + { + "_id": "GPR113-GSK429286A-0.023946549579170032-4.36724015797856", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1416069947924323, + "pvalue": 0.023946549579170032 + }, + "subject": { + "NCBIGene": "165082" + } + }, + { + "_id": "NT5C1B-GSK429286A-0.024090675106496182-3.08308146727685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.48231311171977, + "pvalue": 0.024090675106496182 + }, + "subject": { + "NCBIGene": "93034" + } + }, + { + "_id": "SLC35F4-GSK429286A-0.02412164776078596-4.2937577416625246", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0489622734692987, + "pvalue": 0.02412164776078596 + }, + "subject": { + "NCBIGene": "341880" + } + }, + { + "_id": "CCDC88A-GSK429286A-0.024405884437940388-4.324912498148265", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2404448834753596, + "pvalue": 0.024405884437940388 + }, + "subject": { + "NCBIGene": "55704" + } + }, + { + "_id": "DYTN-GSK429286A-0.024465747182368092-4.2066215624614145", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2678115699324777, + "pvalue": 0.024465747182368092 + }, + "subject": { + "NCBIGene": "391475" + } + }, + { + "_id": "SIPA1L2-GSK429286A-0.024469381351877234-4.6319870474890905", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.0139857209668852, + "pvalue": 0.024469381351877234 + }, + "subject": { + "NCBIGene": "57568" + } + }, + { + "_id": "PCDHB6-GSK429286A-0.024533232121443708-4.80731904953802", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -0.9222298572152877, + "pvalue": 0.024533232121443708 + }, + "subject": { + "NCBIGene": "56130" + } + }, + { + "_id": "CD1A-GSK429286A-0.024822660026704888-4.34682522432738", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3945928265683336, + "pvalue": 0.024822660026704888 + }, + "subject": { + "NCBIGene": "909" + } + }, + { + "_id": "CAPN9-GSK429286A-0.02496343135730307-4.21671877951392", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.4905011898940987, + "pvalue": 0.02496343135730307 + }, + "subject": { + "NCBIGene": "10753" + } + }, + { + "_id": "OR2G2-GSK429286A-0.025031017609101355-4.79057882176069", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.466501827175037, + "pvalue": 0.025031017609101355 + }, + "subject": { + "NCBIGene": "81470" + } + }, + { + "_id": "ZYG11B-GSK429286A-0.025031017609101355-4.79057882176069", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.466501827175037, + "pvalue": 0.025031017609101355 + }, + "subject": { + "NCBIGene": "79699" + } + }, + { + "_id": "SMG1-GSK429286A-0.02511859139722553-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.414779131223583, + "pvalue": 0.02511859139722553 + }, + "subject": { + "NCBIGene": "23049" + } + }, + { + "_id": "NF1-GSK429286A-0.02518680393438911-4.165287260047845", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2617171507328009, + "pvalue": 0.02518680393438911 + }, + "subject": { + "NCBIGene": "4763" + } + }, + { + "_id": "PLIN5-GSK429286A-0.02560995917946891-3.9693556795079", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.39929592608643, + "pvalue": 0.02560995917946891 + }, + "subject": { + "NCBIGene": "440503" + } + }, + { + "_id": "DSTYK-GSK429286A-0.02561967726668759-5.45563588847083", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.5242007580356496, + "pvalue": 0.02561967726668759 + }, + "subject": { + "NCBIGene": "25778" + } + }, + { + "_id": "ADAMTS20-GSK429286A-0.025628558264151398-4.76016878449977", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.4584915133501462, + "pvalue": 0.025628558264151398 + }, + "subject": { + "NCBIGene": "80070" + } + }, + { + "_id": "C9orf93-GSK429286A-0.025688062537732925-5.10957339720454", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1154335878689021, + "pvalue": 0.025688062537732925 + }, + "subject": { + "NCBIGene": "203238" + } + }, + { + "_id": "ATN1-GSK429286A-0.02571343185537597-4.26106403104667", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.53891294349194, + "pvalue": 0.02571343185537597 + }, + "subject": { + "NCBIGene": "1822" + } + }, + { + "_id": "SCUBE1-GSK429286A-0.025783072118616756-4.687097749639969", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2068628379174442, + "pvalue": 0.025783072118616756 + }, + "subject": { + "NCBIGene": "80274" + } + }, + { + "_id": "PPP4R1L-GSK429286A-0.025798030569745865-4.16672083686873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3871039091468382, + "pvalue": 0.025798030569745865 + }, + "subject": { + "NCBIGene": "ENSG00000124224" + } + }, + { + "_id": "CHD1L-GSK429286A-0.02586021268937542-3.0823401622236", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005072" + } + }, + "effect_size": -1.4939368338978551, + "pvalue": 0.02586021268937542 + }, + "subject": { + "NCBIGene": "9557" + } + }, + { + "_id": "ARAP3-GSK429286A-0.025874773801875483-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3857331110638071, + "pvalue": 0.025874773801875483 + }, + "subject": { + "NCBIGene": "64411" + } + }, + { + "_id": "TLN1-GSK429286A-0.025962001245265463-4.38018528309815", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2249976511447915, + "pvalue": 0.025962001245265463 + }, + "subject": { + "NCBIGene": "7094" + } + }, + { + "_id": "SEC31A-GSK429286A-0.02600063714980166-4.510094993435905", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.2536160785053245, + "pvalue": 0.02600063714980166 + }, + "subject": { + "NCBIGene": "22872" + } + }, + { + "_id": "DDX46-GSK429286A-0.02606030744241368-4.44333229866351", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.3139443377103206, + "pvalue": 0.02606030744241368 + }, + "subject": { + "NCBIGene": "9879" + } + }, + { + "_id": "POM121L12-GSK429286A-0.02618483731707953-3.893104848062035", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0299811394476421, + "pvalue": 0.02618483731707953 + }, + "subject": { + "NCBIGene": "285877" + } + }, + { + "_id": "B4GALT2-GSK429286A-0.026246344167100286-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.399950697234539, + "pvalue": 0.026246344167100286 + }, + "subject": { + "NCBIGene": "8704" + } + }, + { + "_id": "POTEJ-GSK429286A-0.026454093726196188-3.941451328381995", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0015075" + } + }, + "effect_size": -1.5377569138174434, + "pvalue": 0.026454093726196188 + }, + "subject": { + "NCBIGene": "653781" + } + }, + { + "_id": "TNR-GSK429286A-0.0266205221048937-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5706429565008146, + "pvalue": 0.0266205221048937 + }, + "subject": { + "NCBIGene": "7143" + } + }, + { + "_id": "C20orf185-GSK429286A-0.0266205221048937-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5706429565008146, + "pvalue": 0.0266205221048937 + }, + "subject": { + "NCBIGene": "359710" + } + }, + { + "_id": "SCN4A-GSK429286A-0.026635622625154086-3.660797710936035", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0267785265033473, + "pvalue": 0.026635622625154086 + }, + "subject": { + "NCBIGene": "6329" + } + }, + { + "_id": "GIMAP8-GSK429286A-0.026767011995758233-3.58439357030024", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.4154233515167507, + "pvalue": 0.026767011995758233 + }, + "subject": { + "NCBIGene": "155038" + } + }, + { + "_id": "PRDM14-GSK429286A-0.026768274604926083-4.89250247478782", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4491534409088764, + "pvalue": 0.026768274604926083 + }, + "subject": { + "NCBIGene": "63978" + } + }, + { + "_id": "POLE-GSK429286A-0.026768274604926083-4.89250247478782", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4491534409088764, + "pvalue": 0.026768274604926083 + }, + "subject": { + "NCBIGene": "5426" + } + }, + { + "_id": "YLPM1-GSK429286A-0.02685306675262269-4.02729116494675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.4950091362574554, + "pvalue": 0.02685306675262269 + }, + "subject": { + "NCBIGene": "56252" + } + }, + { + "_id": "HRNR-GSK429286A-0.02713686057951927-4.03090964666794", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.7412941953317351, + "pvalue": 0.02713686057951927 + }, + "subject": { + "NCBIGene": "388697" + } + }, + { + "_id": "NCAM2-GSK429286A-0.02714498028444679-2.9956228930344", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005072" + } + }, + "effect_size": -1.4812665275003254, + "pvalue": 0.02714498028444679 + }, + "subject": { + "NCBIGene": "4685" + } + }, + { + "_id": "USP34-GSK429286A-0.02715767344490333-4.895322834088085", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.2586817035746516, + "pvalue": 0.02715767344490333 + }, + "subject": { + "NCBIGene": "9736" + } + }, + { + "_id": "GPR112-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "139378" + } + }, + { + "_id": "LINGO4-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "339398" + } + }, + { + "_id": "WDR70-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "55100" + } + }, + { + "_id": "B4GALNT4-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "338707" + } + }, + { + "_id": "CREBBP-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "1387" + } + }, + { + "_id": "URB2-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "9816" + } + }, + { + "_id": "ENSG00000005206-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "56928" + } + }, + { + "_id": "TMTC3-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "160418" + } + }, + { + "_id": "C5orf5-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "51306" + } + }, + { + "_id": "AHDC1-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "27245" + } + }, + { + "_id": "C14orf38-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "729665" + } + }, + { + "_id": "EFCAB8-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "388795" + } + }, + { + "_id": "DNHD1-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "144132" + } + }, + { + "_id": "EPHA2-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "1969" + } + }, + { + "_id": "NPHP3-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "27031" + } + }, + { + "_id": "TNRC6C-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "57690" + } + }, + { + "_id": "FLRT1-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "23769" + } + }, + { + "_id": "CENPJ-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "55835" + } + }, + { + "_id": "FAM135B-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "51059" + } + }, + { + "_id": "SPTBN1-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "6711" + } + }, + { + "_id": "BDP1-GSK429286A-0.02717303217956402-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -2.113621806736737, + "pvalue": 0.02717303217956402 + }, + "subject": { + "NCBIGene": "55814" + } + }, + { + "_id": "GALC-GSK429286A-0.027264431742393336-3.80236909800672", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.4215044003394954, + "pvalue": 0.027264431742393336 + }, + "subject": { + "NCBIGene": "2581" + } + }, + { + "_id": "ANKAR-GSK429286A-0.02729790353748137-4.16672083686873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3760027967702362, + "pvalue": 0.02729790353748137 + }, + "subject": { + "NCBIGene": "150709" + } + }, + { + "_id": "MAG-GSK429286A-0.027328198943021825-3.83459238271164", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.248347232963033, + "pvalue": 0.027328198943021825 + }, + "subject": { + "NCBIGene": "4099" + } + }, + { + "_id": "FLG2-GSK429286A-0.027663807067442196-4.401595238550845", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -0.9565711565377176, + "pvalue": 0.027663807067442196 + }, + "subject": { + "NCBIGene": "388698" + } + }, + { + "_id": "RB1-GSK429286A-0.028098340404808488-4.11658429494586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005499" + } + }, + "effect_size": -1.3196954544876258, + "pvalue": 0.028098340404808488 + }, + "subject": { + "NCBIGene": "5925" + } + }, + { + "_id": "MYH13-GSK429286A-0.028192177135669443-3.76913930395847", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9448207981837856, + "pvalue": 0.028192177135669443 + }, + "subject": { + "NCBIGene": "8735" + } + }, + { + "_id": "SEMA4A-GSK429286A-0.028216017854273204-4.89250247478782", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.4354707443421315, + "pvalue": 0.028216017854273204 + }, + "subject": { + "NCBIGene": "64218" + } + }, + { + "_id": "PGC-GSK429286A-0.028350541992857626-3.48972564135445", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3789667115974613, + "pvalue": 0.028350541992857626 + }, + "subject": { + "NCBIGene": "5225" + } + }, + { + "_id": "PLEKHH1-GSK429286A-0.028412333119567895-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.1335000911228603, + "pvalue": 0.028412333119567895 + }, + "subject": { + "NCBIGene": "57475" + } + }, + { + "_id": "NEK10-GSK429286A-0.02855650012428382-3.976063407921775", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2369482578145465, + "pvalue": 0.02855650012428382 + }, + "subject": { + "NCBIGene": "152110" + } + }, + { + "_id": "SLC28A3-GSK429286A-0.02888259506001081-5.52358977220436", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.4905311030821469, + "pvalue": 0.02888259506001081 + }, + "subject": { + "NCBIGene": "64078" + } + }, + { + "_id": "CCBP2-GSK429286A-0.02894118100445791-4.90375369214298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.428845635522935, + "pvalue": 0.02894118100445791 + }, + "subject": { + "NCBIGene": "1238" + } + }, + { + "_id": "ADNP2-GSK429286A-0.028976489991779226-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.2743724567971715, + "pvalue": 0.028976489991779226 + }, + "subject": { + "NCBIGene": "22850" + } + }, + { + "_id": "CABIN1-GSK429286A-0.02902899661449189-4.71847347963012", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.7297477627784044, + "pvalue": 0.02902899661449189 + }, + "subject": { + "NCBIGene": "23523" + } + }, + { + "_id": "PPIP5K2-GSK429286A-0.02902899661449189-4.71847347963012", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.7297477627784044, + "pvalue": 0.02902899661449189 + }, + "subject": { + "NCBIGene": "23262" + } + }, + { + "_id": "HEG1-GSK429286A-0.029073784990771512-4.17047427868551", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0015075" + } + }, + "effect_size": -1.627453683607896, + "pvalue": 0.029073784990771512 + }, + "subject": { + "NCBIGene": "57493" + } + }, + { + "_id": "ZNF462-GSK429286A-0.029073784990771512-4.17047427868551", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0015075" + } + }, + "effect_size": -1.627453683607896, + "pvalue": 0.029073784990771512 + }, + "subject": { + "NCBIGene": "58499" + } + }, + { + "_id": "PCDH15-GSK429286A-0.029105949592559036-5.05983986134958", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -0.8892156495101939, + "pvalue": 0.029105949592559036 + }, + "subject": { + "NCBIGene": "65217" + } + }, + { + "_id": "R3HDM2-GSK429286A-0.02913952267351592-4.16700301854278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3574195977538344, + "pvalue": 0.02913952267351592 + }, + "subject": { + "NCBIGene": "22864" + } + }, + { + "_id": "INSR-GSK429286A-0.029337644588177676-4.47663618172697", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.5588842895346768, + "pvalue": 0.029337644588177676 + }, + "subject": { + "NCBIGene": "3643" + } + }, + { + "_id": "ENSG00000183704-GSK429286A-0.0293412852626805-3.76653249642663", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -1.6530030567023057, + "pvalue": 0.0293412852626805 + }, + "subject": { + "NCBIGene": "ENSG00000183704" + } + }, + { + "_id": "FLG-GSK429286A-0.02939653952343355-3.37512063203981", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.026360799639326, + "pvalue": 0.02939653952343355 + }, + "subject": { + "NCBIGene": "2312" + } + }, + { + "_id": "AHRR-GSK429286A-0.029491160080226272-4.09108721392841", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.7056703756328737, + "pvalue": 0.029491160080226272 + }, + "subject": { + "NCBIGene": "ENSG00000063438" + } + }, + { + "_id": "SEMA3A-GSK429286A-0.029547588900241294-4.99269318216872", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.389066806477204, + "pvalue": 0.029547588900241294 + }, + "subject": { + "NCBIGene": "10371" + } + }, + { + "_id": "DPP10-GSK429286A-0.02973513506789586-3.28352198782098", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.2713683177256052, + "pvalue": 0.02973513506789586 + }, + "subject": { + "NCBIGene": "57628" + } + }, + { + "_id": "RP11-368J21.2-GSK429286A-0.029797175699480545-4.483905466141895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.1786871880492162, + "pvalue": 0.029797175699480545 + } + }, + { + "_id": "C1orf43-GSK429286A-0.030000791629635492-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5188762580844581, + "pvalue": 0.030000791629635492 + }, + "subject": { + "NCBIGene": "25912" + } + }, + { + "_id": "IGSF3-GSK429286A-0.030000791629635492-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5188762580844581, + "pvalue": 0.030000791629635492 + }, + "subject": { + "NCBIGene": "3321" + } + }, + { + "_id": "WDFY4-GSK429286A-0.030115064128917835-4.521633564046455", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.2827399825956676, + "pvalue": 0.030115064128917835 + }, + "subject": { + "NCBIGene": "57705" + } + }, + { + "_id": "DAB2IP-GSK429286A-0.03014438392906871-4.62586351232286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3889475467756047, + "pvalue": 0.03014438392906871 + }, + "subject": { + "NCBIGene": "153090" + } + }, + { + "_id": "AMIGO2-GSK429286A-0.03014438392906871-4.62586351232286", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.3889475467756047, + "pvalue": 0.03014438392906871 + }, + "subject": { + "NCBIGene": "347902" + } + }, + { + "_id": "POTEG-GSK429286A-0.030292654178714264-3.808463495134355", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0036770282442078, + "pvalue": 0.030292654178714264 + }, + "subject": { + "NCBIGene": "404785" + } + }, + { + "_id": "PIK3CA-GSK429286A-0.03031464366376529-5.45563588847083", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.018577462635304, + "pvalue": 0.03031464366376529 + }, + "subject": { + "NCBIGene": "5290" + } + }, + { + "_id": "ATM-GSK429286A-0.030481338942528573-4.9222064639702", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.8173305762229256, + "pvalue": 0.030481338942528573 + }, + "subject": { + "NCBIGene": "472" + } + }, + { + "_id": "IFT140-GSK429286A-0.030533731994444657-4.21597000567105", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3879051496541133, + "pvalue": 0.030533731994444657 + }, + "subject": { + "NCBIGene": "9742" + } + }, + { + "_id": "NF1-GSK429286A-0.030533731994444657-4.21597000567105", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3879051496541133, + "pvalue": 0.030533731994444657 + }, + "subject": { + "NCBIGene": "4763" + } + }, + { + "_id": "POLE-GSK429286A-0.030629916406810308-4.009169551838885", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.2270220748117773, + "pvalue": 0.030629916406810308 + }, + "subject": { + "NCBIGene": "5426" + } + }, + { + "_id": "LCP1-GSK429286A-0.030693689789735464-4.53144026818292", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.327262597652359, + "pvalue": 0.030693689789735464 + }, + "subject": { + "NCBIGene": "3936" + } + }, + { + "_id": "RELN-GSK429286A-0.030831938687802988-4.66570341008558", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.2742363728814108, + "pvalue": 0.030831938687802988 + }, + "subject": { + "NCBIGene": "5649" + } + }, + { + "_id": "SPTA1-GSK429286A-0.03086680696447667-5.146985150157304", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -0.8802234887693208, + "pvalue": 0.03086680696447667 + }, + "subject": { + "NCBIGene": "6708" + } + }, + { + "_id": "KRAS-GSK429286A-0.030953909077206625-5.20531435712354", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -0.9628450804347222, + "pvalue": 0.030953909077206625 + }, + "subject": { + "NCBIGene": "3845" + } + }, + { + "_id": "GPRASP1-GSK429286A-0.031165325512820818-3.957008261332155", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.216472537201437, + "pvalue": 0.031165325512820818 + }, + "subject": { + "NCBIGene": "9737" + } + }, + { + "_id": "ZNF628-GSK429286A-0.03131027365709063-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.3471114933760087, + "pvalue": 0.03131027365709063 + }, + "subject": { + "NCBIGene": "89887" + } + }, + { + "_id": "ZBTB6-GSK429286A-0.031678430534849485-4.402256268702275", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1805343118219414, + "pvalue": 0.031678430534849485 + }, + "subject": { + "NCBIGene": "10773" + } + }, + { + "_id": "TRIM49-GSK429286A-0.03181620392642961-3.75483508634143", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.2208299742651227, + "pvalue": 0.03181620392642961 + }, + "subject": { + "NCBIGene": "57093" + } + }, + { + "_id": "COL2A1-GSK429286A-0.03191238961692106-4.61753390414932", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.3393780470277756, + "pvalue": 0.03191238961692106 + }, + "subject": { + "NCBIGene": "1280" + } + }, + { + "_id": "ELN-GSK429286A-0.03206551197850165-5.02624789559927", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.3967384239776681, + "pvalue": 0.03206551197850165 + }, + "subject": { + "NCBIGene": "2006" + } + }, + { + "_id": "MYH9-GSK429286A-0.032192138574542145-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4988174282376399, + "pvalue": 0.032192138574542145 + }, + "subject": { + "NCBIGene": "4627" + } + }, + { + "_id": "ELMO1-GSK429286A-0.03236610806398077-4.25528230539895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.0380887618729737, + "pvalue": 0.03236610806398077 + }, + "subject": { + "NCBIGene": "9844" + } + }, + { + "_id": "CHD8-GSK429286A-0.03239078266969117-2.80111703496472", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -1.4027605252130186, + "pvalue": 0.03239078266969117 + }, + "subject": { + "NCBIGene": "57680" + } + }, + { + "_id": "CEP95-GSK429286A-0.032476580518533374-0.418592847200821", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.4614837308975048, + "pvalue": 0.032476580518533374 + }, + "subject": { + "NCBIGene": "90799" + } + }, + { + "_id": "TRPV6-GSK429286A-0.0324951495234642-3.539995698335", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.080137502645186, + "pvalue": 0.0324951495234642 + }, + "subject": { + "NCBIGene": "55503" + } + }, + { + "_id": "C2orf53-GSK429286A-0.03251880863836186-4.79057882176069", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.398343998419042, + "pvalue": 0.03251880863836186 + }, + "subject": { + "NCBIGene": "339779" + } + }, + { + "_id": "CAND1-GSK429286A-0.032844201280224396-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3265304474927047, + "pvalue": 0.032844201280224396 + }, + "subject": { + "NCBIGene": "55832" + } + }, + { + "_id": "CPN1-GSK429286A-0.032898007404503715-4.02729116494675", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.4196733568889017, + "pvalue": 0.032898007404503715 + }, + "subject": { + "NCBIGene": "1369" + } + }, + { + "_id": "OR2A4-GSK429286A-0.032901834531914156-4.25528230539895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.3128903142808843, + "pvalue": 0.032901834531914156 + }, + "subject": { + "NCBIGene": "79541" + } + }, + { + "_id": "PEX1-GSK429286A-0.03295389972065811-2.80897466809532", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -1.3978280048759237, + "pvalue": 0.03295389972065811 + }, + "subject": { + "NCBIGene": "5189" + } + }, + { + "_id": "CILP-GSK429286A-0.033016682291173396-4.60979226147975", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -0.9721785643088394, + "pvalue": 0.033016682291173396 + }, + "subject": { + "NCBIGene": "8483" + } + }, + { + "_id": "FANCI-GSK429286A-0.033510434612022265-3.57759520740764", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.4586231550144222, + "pvalue": 0.033510434612022265 + }, + "subject": { + "NCBIGene": "55215" + } + }, + { + "_id": "SYT9-GSK429286A-0.033518730551654066-3.98785595501973", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.310844108903668, + "pvalue": 0.033518730551654066 + }, + "subject": { + "NCBIGene": "143425" + } + }, + { + "_id": "SLC5A9-GSK429286A-0.03352360705458977-3.97190507098411", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.5121292256583247, + "pvalue": 0.03352360705458977 + }, + "subject": { + "NCBIGene": "200010" + } + }, + { + "_id": "NLRP3-GSK429286A-0.0344490260392292-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.8162619545777201, + "pvalue": 0.0344490260392292 + }, + "subject": { + "NCBIGene": "114548" + } + }, + { + "_id": "IKBKAP-GSK429286A-0.03451205952485349-4.7822251366193544", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.2047047560273185, + "pvalue": 0.03451205952485349 + }, + "subject": { + "NCBIGene": "8518" + } + }, + { + "_id": "AHNAK2-GSK429286A-0.03453375518274751-4.786688820851685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.0625599330557605, + "pvalue": 0.03453375518274751 + }, + "subject": { + "NCBIGene": "113146" + } + }, + { + "_id": "CELSR1-GSK429286A-0.03453470730328632-4.62980559754601", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.6702043024847932, + "pvalue": 0.03453470730328632 + }, + "subject": { + "NCBIGene": "9620" + } + }, + { + "_id": "PLAA-GSK429286A-0.034861183044450926-3.31818348479346", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0659864699675958, + "pvalue": 0.034861183044450926 + }, + "subject": { + "NCBIGene": "9373" + } + }, + { + "_id": "RFX8-GSK429286A-0.03488885050569817-4.24555039692748", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3825552413384603, + "pvalue": 0.03488885050569817 + }, + "subject": { + "NCBIGene": "731220" + } + }, + { + "_id": "GUCY2F-GSK429286A-0.0349908212596848-4.011223598357359", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1899533448160775, + "pvalue": 0.0349908212596848 + }, + "subject": { + "NCBIGene": "2986" + } + }, + { + "_id": "FCRL3-GSK429286A-0.0352999068247026-3.90484302166336", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0620876900461351, + "pvalue": 0.0352999068247026 + }, + "subject": { + "NCBIGene": "115352" + } + }, + { + "_id": "SFSWAP-GSK429286A-0.035320223673863914-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4703019762543046, + "pvalue": 0.035320223673863914 + }, + "subject": { + "NCBIGene": "6433" + } + }, + { + "_id": "ENSG00000093100-GSK429286A-0.035320223673863914-4.43520622038374", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4703019762543046, + "pvalue": 0.035320223673863914 + }, + "subject": { + "NCBIGene": "ENSG00000093100" + } + }, + { + "_id": "ZNF142-GSK429286A-0.03533052245447668-4.061503479924025", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.44710915260703, + "pvalue": 0.03533052245447668 + }, + "subject": { + "NCBIGene": "7701" + } + }, + { + "_id": "COL6A3-GSK429286A-0.035404384591889604-3.54065929919659", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.911039586530964, + "pvalue": 0.035404384591889604 + }, + "subject": { + "NCBIGene": "1293" + } + }, + { + "_id": "ZNF483-GSK429286A-0.03548073885543286-4.44230916293162", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1560511528811344, + "pvalue": 0.03548073885543286 + }, + "subject": { + "NCBIGene": "158399" + } + }, + { + "_id": "PKD1L2-GSK429286A-0.035696142374339976-1.4617462540800754", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.2665963721973128, + "pvalue": 0.035696142374339976 + }, + "subject": { + "NCBIGene": "114780" + } + }, + { + "_id": "TEX15-GSK429286A-0.0357960339152755-5.10957339720454", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.0481851940284268, + "pvalue": 0.0357960339152755 + }, + "subject": { + "NCBIGene": "56154" + } + }, + { + "_id": "OBSCN-GSK429286A-0.035816559540383146-4.81590476498584", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -0.8259547162679622, + "pvalue": 0.035816559540383146 + }, + "subject": { + "NCBIGene": "84033" + } + }, + { + "_id": "MKNK1-GSK429286A-0.0358252707349669-4.16700301854278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2920302841569495, + "pvalue": 0.0358252707349669 + }, + "subject": { + "NCBIGene": "8569" + } + }, + { + "_id": "FEN1-GSK429286A-0.03591762916757203-2.91803862057657", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -1.3799417939266994, + "pvalue": 0.03591762916757203 + }, + "subject": { + "NCBIGene": "2237" + } + }, + { + "_id": "TANC1-GSK429286A-0.03592500084680989-1.68909693792614", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.414401319107692, + "pvalue": 0.03592500084680989 + }, + "subject": { + "NCBIGene": "85461" + } + }, + { + "_id": "PPP1R9A-GSK429286A-0.03594914646646372-1.68949161541234", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.414197709293344, + "pvalue": 0.03594914646646372 + }, + "subject": { + "NCBIGene": "55607" + } + }, + { + "_id": "LRRIQ1-GSK429286A-0.03594914646646372-1.68949161541234", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.414197709293344, + "pvalue": 0.03594914646646372 + }, + "subject": { + "NCBIGene": "84125" + } + }, + { + "_id": "DOT1L-GSK429286A-0.03594914646646372-1.68949161541234", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.414197709293344, + "pvalue": 0.03594914646646372 + }, + "subject": { + "NCBIGene": "84444" + } + }, + { + "_id": "TG-GSK429286A-0.03605950457216628-4.713829570448145", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.2377399319413, + "pvalue": 0.03605950457216628 + }, + "subject": { + "NCBIGene": "7038" + } + }, + { + "_id": "PADI1-GSK429286A-0.03640400110015903-1.68949161541234", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.410348571812983, + "pvalue": 0.03640400110015903 + }, + "subject": { + "NCBIGene": "29943" + } + }, + { + "_id": "ZNF85-GSK429286A-0.0364990713588109-4.07626769107212", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3721531242608755, + "pvalue": 0.0364990713588109 + }, + "subject": { + "NCBIGene": "7639" + } + }, + { + "_id": "CPXM2-GSK429286A-0.03693252207120226-4.90375369214298", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3641985692780634, + "pvalue": 0.03693252207120226 + }, + "subject": { + "NCBIGene": "119587" + } + }, + { + "_id": "MYBPC3-GSK429286A-0.037245767293567385-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3332985900494838, + "pvalue": 0.037245767293567385 + }, + "subject": { + "NCBIGene": "4607" + } + }, + { + "_id": "SLC22A1-GSK429286A-0.037245767293567385-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3332985900494838, + "pvalue": 0.037245767293567385 + }, + "subject": { + "NCBIGene": "6580" + } + }, + { + "_id": "MAN1A1-GSK429286A-0.037386425072087365-4.16672083686873", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.2929758106082694, + "pvalue": 0.037386425072087365 + }, + "subject": { + "NCBIGene": "4121" + } + }, + { + "_id": "MUC16-GSK429286A-0.03749713385664021-4.14551062748334", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -0.8138771622050942, + "pvalue": 0.03749713385664021 + }, + "subject": { + "NCBIGene": "94025" + } + }, + { + "_id": "HRNR-GSK429286A-0.03763727256277872-3.70564556671847", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0007256" + } + }, + "effect_size": -1.482057603450314, + "pvalue": 0.03763727256277872 + }, + "subject": { + "NCBIGene": "388697" + } + }, + { + "_id": "LHX8-GSK429286A-0.03774612436507671-4.70874171898095", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.1230743369467866, + "pvalue": 0.03774612436507671 + }, + "subject": { + "NCBIGene": "431707" + } + }, + { + "_id": "ATP13A2-GSK429286A-0.037754479208619775-4.51493282269302", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3596549221673984, + "pvalue": 0.037754479208619775 + }, + "subject": { + "NCBIGene": "23400" + } + }, + { + "_id": "COL8A1-GSK429286A-0.03779869563179193-3.8197166439669754", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9616143990769949, + "pvalue": 0.03779869563179193 + }, + "subject": { + "NCBIGene": "1295" + } + }, + { + "_id": "ECSIT-GSK429286A-0.03782892265930752-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.3770574199543226, + "pvalue": 0.03782892265930752 + }, + "subject": { + "NCBIGene": "51295" + } + }, + { + "_id": "NCAPD3-GSK429286A-0.0379964319535641-3.97190507098411", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4739465183439948, + "pvalue": 0.0379964319535641 + }, + "subject": { + "NCBIGene": "23310" + } + }, + { + "_id": "KIAA1462-GSK429286A-0.03809181855413259-4.696924995948915", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.8203000115190316, + "pvalue": 0.03809181855413259 + }, + "subject": { + "NCBIGene": "57608" + } + }, + { + "_id": "KRT1-GSK429286A-0.03814137260437931-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.288521330294564, + "pvalue": 0.03814137260437931 + }, + "subject": { + "NCBIGene": "3848" + } + }, + { + "_id": "SEC24B-GSK429286A-0.038276780459703494-3.00461641228586", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.3461517991949057, + "pvalue": 0.038276780459703494 + }, + "subject": { + "NCBIGene": "10427" + } + }, + { + "_id": "CDH19-GSK429286A-0.03847818811563312-4.161469911066305", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9547888727202437, + "pvalue": 0.03847818811563312 + }, + "subject": { + "NCBIGene": "28513" + } + }, + { + "_id": "CSMD1-GSK429286A-0.03854726026763106-1.7562820287984915", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.0859382273146405, + "pvalue": 0.03854726026763106 + }, + "subject": { + "NCBIGene": "64478" + } + }, + { + "_id": "OR8K1-GSK429286A-0.03867181388908181-4.03090964666794", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.8901752791899785, + "pvalue": 0.03867181388908181 + }, + "subject": { + "NCBIGene": "390157" + } + }, + { + "_id": "ENPP2-GSK429286A-0.0388430618720751-4.1628725703077905", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1619227650762145, + "pvalue": 0.0388430618720751 + }, + "subject": { + "NCBIGene": "5168" + } + }, + { + "_id": "FCRL3-GSK429286A-0.03908674190885687-4.06025879309769", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005097" + } + }, + "effect_size": -1.701856940660379, + "pvalue": 0.03908674190885687 + }, + "subject": { + "NCBIGene": "115352" + } + }, + { + "_id": "ZSWIM2-GSK429286A-0.039170465029003496-4.55660583665711", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3495231436302182, + "pvalue": 0.039170465029003496 + }, + "subject": { + "NCBIGene": "151112" + } + }, + { + "_id": "SPTBN2-GSK429286A-0.03919972400660021-4.11290871495471", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.442380488434402, + "pvalue": 0.03919972400660021 + }, + "subject": { + "NCBIGene": "6712" + } + }, + { + "_id": "MUC5B-GSK429286A-0.03932843878402576-4.7435908591926506", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -0.8943236015602671, + "pvalue": 0.03932843878402576 + }, + "subject": { + "NCBIGene": "727897" + } + }, + { + "_id": "ATXN2L-GSK429286A-0.03933938754000491-4.25528230539895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2803077225809345, + "pvalue": 0.03933938754000491 + }, + "subject": { + "NCBIGene": "11273" + } + }, + { + "_id": "RBM28-GSK429286A-0.03935539926628807-0.214011362919049", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.442448797708307, + "pvalue": 0.03935539926628807 + }, + "subject": { + "NCBIGene": "55131" + } + }, + { + "_id": "HYDIN-GSK429286A-0.03949768272835199-4.52638119619984", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -0.8539883357332761, + "pvalue": 0.03949768272835199 + }, + "subject": { + "NCBIGene": "54768" + } + }, + { + "_id": "IGF2R-GSK429286A-0.03966530253137114-4.49469626458332", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.3019021986876682, + "pvalue": 0.03966530253137114 + }, + "subject": { + "NCBIGene": "3482" + } + }, + { + "_id": "IKBKE-GSK429286A-0.0398150226867383-4.20666826453534", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.589345856587452, + "pvalue": 0.0398150226867383 + }, + "subject": { + "NCBIGene": "9641" + } + }, + { + "_id": "NID2-GSK429286A-0.03989393296312285-4.51493282269302", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.8889465866181723, + "pvalue": 0.03989393296312285 + }, + "subject": { + "NCBIGene": "22795" + } + }, + { + "_id": "CYP2A13-GSK429286A-0.04004223934486022-3.8197166439669754", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9498938675330751, + "pvalue": 0.04004223934486022 + }, + "subject": { + "NCBIGene": "1553" + } + }, + { + "_id": "ASXL3-GSK429286A-0.040238378436138526-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3124021521733393, + "pvalue": 0.040238378436138526 + }, + "subject": { + "NCBIGene": "80816" + } + }, + { + "_id": "CAPS2-GSK429286A-0.04030109172931662-2.86842105380479", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -1.3549077560971643, + "pvalue": 0.04030109172931662 + }, + "subject": { + "NCBIGene": "84698" + } + }, + { + "_id": "SLC12A9-GSK429286A-0.04039849215724238-5.0779258970350405", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.9213363922441374, + "pvalue": 0.04039849215724238 + }, + "subject": { + "NCBIGene": "56996" + } + }, + { + "_id": "SCN10A-GSK429286A-0.04060920791909383-5.11468804065724", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.1023818545569575, + "pvalue": 0.04060920791909383 + }, + "subject": { + "NCBIGene": "6336" + } + }, + { + "_id": "DNASE2B-GSK429286A-0.04078120196743013-4.53144026818292", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2532849237066688, + "pvalue": 0.04078120196743013 + }, + "subject": { + "NCBIGene": "58511" + } + }, + { + "_id": "FRYL-GSK429286A-0.04092923336429858-1.80245517215323", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.0638606367201062, + "pvalue": 0.04092923336429858 + }, + "subject": { + "NCBIGene": "285527" + } + }, + { + "_id": "GALNT6-GSK429286A-0.0410857884476632-4.7821810780036245", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.1339104262598612, + "pvalue": 0.0410857884476632 + }, + "subject": { + "NCBIGene": "11226" + } + }, + { + "_id": "CPAMD8-GSK429286A-0.04109524558089025-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.3076807784549427, + "pvalue": 0.04109524558089025 + }, + "subject": { + "NCBIGene": "27151" + } + }, + { + "_id": "PTGER3-GSK429286A-0.041417896547420154-3.2213419750171948", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0988102771109114, + "pvalue": 0.041417896547420154 + }, + "subject": { + "NCBIGene": "5733" + } + }, + { + "_id": "ZNF729-GSK429286A-0.041663195539716064-4.67483467405783", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005065" + } + }, + "effect_size": -1.4917423441075464, + "pvalue": 0.041663195539716064 + }, + "subject": { + "NCBIGene": "100287226" + } + }, + { + "_id": "OR10AG1-GSK429286A-0.04173411827009312-4.8277624222289", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3312317201139732, + "pvalue": 0.04173411827009312 + }, + "subject": { + "NCBIGene": "282770" + } + }, + { + "_id": "NCOR1-GSK429286A-0.04178978040422623-5.163106851793005", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.2065207208696869, + "pvalue": 0.04178978040422623 + }, + "subject": { + "NCBIGene": "9611" + } + }, + { + "_id": "OR4C46-GSK429286A-0.04223712501950712-4.75031767107174", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.3282050350882564, + "pvalue": 0.04223712501950712 + }, + "subject": { + "NCBIGene": "119749" + } + }, + { + "_id": "ERCC6-GSK429286A-0.042494416564439814-4.71847347963012", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0004056", "MONDO:0004163"] + } + }, + "effect_size": -1.5959877044241628, + "pvalue": 0.042494416564439814 + }, + "subject": { + "NCBIGene": "2074" + } + }, + { + "_id": "ANKRD30B-GSK429286A-0.042539228440861644-5.0435039535657005", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -0.9663441031378399, + "pvalue": 0.042539228440861644 + }, + "subject": { + "NCBIGene": "374860" + } + }, + { + "_id": "HMCN2-GSK429286A-0.04264969252016065-4.76016878449977", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.041786497175287, + "pvalue": 0.04264969252016065 + }, + "subject": { + "NCBIGene": "256158" + } + }, + { + "_id": "SCN11A-GSK429286A-0.042701032870770414-4.88275162018359", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -0.6882030821846639, + "pvalue": 0.042701032870770414 + }, + "subject": { + "NCBIGene": "11280" + } + }, + { + "_id": "ZFHX3-GSK429286A-0.04270875337898682-4.87154516326923", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.1102997994363515, + "pvalue": 0.04270875337898682 + }, + "subject": { + "NCBIGene": "463" + } + }, + { + "_id": "MTMR4-GSK429286A-0.042792320894062756-4.0342505779326", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1414237500948732, + "pvalue": 0.042792320894062756 + }, + "subject": { + "NCBIGene": "9110" + } + }, + { + "_id": "TAOK2-GSK429286A-0.04304562829338898-4.98842385188859", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0010150" + } + }, + "effect_size": -1.3161073375264265, + "pvalue": 0.04304562829338898 + }, + "subject": { + "NCBIGene": "9344" + } + }, + { + "_id": "GRK7-GSK429286A-0.04309099178010133-4.23364995796519", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.2926055424569058, + "pvalue": 0.04309099178010133 + }, + "subject": { + "NCBIGene": "131890" + } + }, + { + "_id": "GPR111-GSK429286A-0.04320359740835289-5.24523132853278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.0165969909908916, + "pvalue": 0.04320359740835289 + }, + "subject": { + "NCBIGene": "222611" + } + }, + { + "_id": "ILDR2-GSK429286A-0.04323677794402248-4.34682522432738", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2546032137906753, + "pvalue": 0.04323677794402248 + }, + "subject": { + "NCBIGene": "387597" + } + }, + { + "_id": "USH2A-GSK429286A-0.04329390212038727-5.06543142599629", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -0.8656001416952835, + "pvalue": 0.04329390212038727 + }, + "subject": { + "NCBIGene": "7399" + } + }, + { + "_id": "IKBKB-GSK429286A-0.043576357550582034-4.55599422052925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2560088126149669, + "pvalue": 0.043576357550582034 + }, + "subject": { + "NCBIGene": "3551" + } + }, + { + "_id": "FCGBP-GSK429286A-0.04361052752371737-4.096078175627349", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.6561949722261706, + "pvalue": 0.04361052752371737 + }, + "subject": { + "NCBIGene": "8857" + } + }, + { + "_id": "LPL-GSK429286A-0.04361066793661966-3.60000226241796", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2463920783678029, + "pvalue": 0.04361066793661966 + }, + "subject": { + "NCBIGene": "4023" + } + }, + { + "_id": "FCRL4-GSK429286A-0.04382741090916215-4.6055119934258695", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8627724389906064, + "pvalue": 0.04382741090916215 + }, + "subject": { + "NCBIGene": "83417" + } + }, + { + "_id": "NAV3-GSK429286A-0.04382741090916215-4.6055119934258695", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8627724389906064, + "pvalue": 0.04382741090916215 + }, + "subject": { + "NCBIGene": "89795" + } + }, + { + "_id": "TNKS-GSK429286A-0.04382741090916215-4.6055119934258695", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8627724389906064, + "pvalue": 0.04382741090916215 + }, + "subject": { + "NCBIGene": "8658" + } + }, + { + "_id": "PTPRG-GSK429286A-0.04382741090916215-4.6055119934258695", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8627724389906064, + "pvalue": 0.04382741090916215 + }, + "subject": { + "NCBIGene": "5793" + } + }, + { + "_id": "LMTK2-GSK429286A-0.04382741090916215-4.6055119934258695", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8627724389906064, + "pvalue": 0.04382741090916215 + }, + "subject": { + "NCBIGene": "22853" + } + }, + { + "_id": "CHD6-GSK429286A-0.04383870821694186-1.79788786601589", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005005" + } + }, + "effect_size": -1.3806417906977113, + "pvalue": 0.04383870821694186 + }, + "subject": { + "NCBIGene": "84181" + } + }, + { + "_id": "MOS-GSK429286A-0.0439239718298683-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4004202573187934, + "pvalue": 0.0439239718298683 + }, + "subject": { + "NCBIGene": "4342" + } + }, + { + "_id": "ADARB2-GSK429286A-0.0439239718298683-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4004202573187934, + "pvalue": 0.0439239718298683 + }, + "subject": { + "NCBIGene": "105" + } + }, + { + "_id": "FBXO38-GSK429286A-0.0439239718298683-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4004202573187934, + "pvalue": 0.0439239718298683 + }, + "subject": { + "NCBIGene": "81545" + } + }, + { + "_id": "RLF-GSK429286A-0.0439239718298683-4.51999954486855", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005036" + } + }, + "effect_size": -1.4004202573187934, + "pvalue": 0.0439239718298683 + }, + "subject": { + "NCBIGene": "6018" + } + }, + { + "_id": "COL24A1-GSK429286A-0.043929912626564434-4.685189690437429", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.088132302764822, + "pvalue": 0.043929912626564434 + }, + "subject": { + "NCBIGene": "255631" + } + }, + { + "_id": "ZNF462-GSK429286A-0.043964596051322156-3.384821133116895", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -0.9339801997300549, + "pvalue": 0.043964596051322156 + }, + "subject": { + "NCBIGene": "58499" + } + }, + { + "_id": "SPEG-GSK429286A-0.04416733333217014-4.24555039692748", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0111517734486088, + "pvalue": 0.04416733333217014 + }, + "subject": { + "NCBIGene": "10290" + } + }, + { + "_id": "TCEB3B-GSK429286A-0.044191582792698005-3.8725039733767", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.0932922875847684, + "pvalue": 0.044191582792698005 + }, + "subject": { + "NCBIGene": "51224" + } + }, + { + "_id": "DPY19L4-GSK429286A-0.04429169493841846-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2543560297919611, + "pvalue": 0.04429169493841846 + }, + "subject": { + "NCBIGene": "286148" + } + }, + { + "_id": "MUC4-GSK429286A-0.044549672159829884-4.647214661346365", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018177" + } + }, + "effect_size": -0.806926446301818, + "pvalue": 0.044549672159829884 + }, + "subject": { + "NCBIGene": "4585" + } + }, + { + "_id": "CNTNAP5-GSK429286A-0.04456211369630737-4.167239619841419", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.1349204449597026, + "pvalue": 0.04456211369630737 + }, + "subject": { + "NCBIGene": "129684" + } + }, + { + "_id": "ITK-GSK429286A-0.044923182069703346-4.04195834812197", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.1308066111989186, + "pvalue": 0.044923182069703346 + }, + "subject": { + "NCBIGene": "3702" + } + }, + { + "_id": "HERC2-GSK429286A-0.04493256418933855-5.337723320086", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.6947100398568937, + "pvalue": 0.04493256418933855 + }, + "subject": { + "NCBIGene": "8924" + } + }, + { + "_id": "PKHD1L1-GSK429286A-0.045072877319576043-4.5181015964799", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006047" + } + }, + "effect_size": -1.1924891343790618, + "pvalue": 0.045072877319576043 + }, + "subject": { + "NCBIGene": "93035" + } + }, + { + "_id": "ENSG00000250423-GSK429286A-0.04541844587112119-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8478431922488063, + "pvalue": 0.04541844587112119 + }, + "subject": { + "NCBIGene": "57481" + } + }, + { + "_id": "ANKRD31-GSK429286A-0.04541844587112119-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8478431922488063, + "pvalue": 0.04541844587112119 + }, + "subject": { + "NCBIGene": "256006" + } + }, + { + "_id": "POLQ-GSK429286A-0.04541844587112119-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8478431922488063, + "pvalue": 0.04541844587112119 + }, + "subject": { + "NCBIGene": "10721" + } + }, + { + "_id": "ALPK3-GSK429286A-0.04541844587112119-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.8478431922488063, + "pvalue": 0.04541844587112119 + }, + "subject": { + "NCBIGene": "57538" + } + }, + { + "_id": "MYH7-GSK429286A-0.045689498487580915-1.77732089365451", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005072" + } + }, + "effect_size": -1.3645096007058775, + "pvalue": 0.045689498487580915 + }, + "subject": { + "NCBIGene": "4625" + } + }, + { + "_id": "FBXL13-GSK429286A-0.04578218572467495-4.16700301854278", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2259405339463105, + "pvalue": 0.04578218572467495 + }, + "subject": { + "NCBIGene": "222235" + } + }, + { + "_id": "WWC3-GSK429286A-0.04611603991723872-4.355816153118435", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0000554", "MONDO:0006143"] + } + }, + "effect_size": -1.4081127747316118, + "pvalue": 0.04611603991723872 + }, + "subject": { + "NCBIGene": "55841" + } + }, + { + "_id": "HRNR-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "388697" + } + }, + { + "_id": "KIAA0146-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "23514" + } + }, + { + "_id": "MYH6-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "4624" + } + }, + { + "_id": "TOPBP1-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "11073" + } + }, + { + "_id": "KIAA0284-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "283638" + } + }, + { + "_id": "WASF3-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "10810" + } + }, + { + "_id": "BOD1L-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "259282" + } + }, + { + "_id": "ESF1-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "51575" + } + }, + { + "_id": "RPTOR-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "57521" + } + }, + { + "_id": "GPATCH8-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "23131" + } + }, + { + "_id": "MEGF8-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "1954" + } + }, + { + "_id": "MAPK7-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "5598" + } + }, + { + "_id": "COL12A1-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "1303" + } + }, + { + "_id": "KIF7-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "374654" + } + }, + { + "_id": "ZNF644-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "84146" + } + }, + { + "_id": "PCDHB2-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "56133" + } + }, + { + "_id": "RP1L1-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "94137" + } + }, + { + "_id": "RANBP2-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "5903" + } + }, + { + "_id": "CSPG4-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "1464" + } + }, + { + "_id": "DOCK1-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "1793" + } + }, + { + "_id": "HOOK2-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "29911" + } + }, + { + "_id": "ARID2-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "196528" + } + }, + { + "_id": "PDZD2-GSK429286A-0.04626289901106648-4.524314197770925", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0000553" + } + }, + "effect_size": -1.838404717105691, + "pvalue": 0.04626289901106648 + }, + "subject": { + "NCBIGene": "23037" + } + }, + { + "_id": "NBEA-GSK429286A-0.04639393186153847-3.089343050601645", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018905" + } + }, + "effect_size": -0.8937030000872219, + "pvalue": 0.04639393186153847 + }, + "subject": { + "NCBIGene": "26960" + } + }, + { + "_id": "MB21D2-GSK429286A-0.0465293709415327-4.324912498148265", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.0942286553882141, + "pvalue": 0.0465293709415327 + }, + "subject": { + "NCBIGene": "151963" + } + }, + { + "_id": "AIRE-GSK429286A-0.04663874143411727-4.6390554251705804", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.0986800483367585, + "pvalue": 0.04663874143411727 + }, + "subject": { + "NCBIGene": "326" + } + }, + { + "_id": "PCF11-GSK429286A-0.0468931447821512-4.419540603916305", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.065349582204622, + "pvalue": 0.0468931447821512 + }, + "subject": { + "NCBIGene": "51585" + } + }, + { + "_id": "FBN3-GSK429286A-0.04699374539028738-3.957008261332155", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.120557068575144, + "pvalue": 0.04699374539028738 + }, + "subject": { + "NCBIGene": "84467" + } + }, + { + "_id": "OR5D14-GSK429286A-0.047037946712199276-4.9222064639702", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2282592988657068, + "pvalue": 0.047037946712199276 + }, + "subject": { + "NCBIGene": "219436" + } + }, + { + "_id": "BNC2-GSK429286A-0.04725664550445529-4.62428461216954", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.2811649968233942, + "pvalue": 0.04725664550445529 + }, + "subject": { + "NCBIGene": "54796" + } + }, + { + "_id": "DOPEY2-GSK429286A-0.0473017010352166-4.54372882563352", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.9591384933106157, + "pvalue": 0.0473017010352166 + }, + "subject": { + "NCBIGene": "9980" + } + }, + { + "_id": "PXDN-GSK429286A-0.047629830280436956-4.364632118832709", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.1129149070135107, + "pvalue": 0.047629830280436956 + }, + "subject": { + "NCBIGene": "7837" + } + }, + { + "_id": "BEST3-GSK429286A-0.047670371910591855-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2371635081261, + "pvalue": 0.047670371910591855 + }, + "subject": { + "NCBIGene": "144453" + } + }, + { + "_id": "KRT86-GSK429286A-0.047766512902948186-2.12377789357465", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005072" + } + }, + "effect_size": -1.3394873485700063, + "pvalue": 0.047766512902948186 + }, + "subject": { + "NCBIGene": "3892" + } + }, + { + "_id": "FLNB-GSK429286A-0.047780864283324155-3.54412584521196", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005170" + } + }, + "effect_size": -1.5833673324770474, + "pvalue": 0.047780864283324155 + }, + "subject": { + "NCBIGene": "2317" + } + }, + { + "_id": "GABBR1-GSK429286A-0.047783195401975884-2.459561884590745", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.0723399721625104, + "pvalue": 0.047783195401975884 + }, + "subject": { + "NCBIGene": "2550" + } + }, + { + "_id": "PABPC3-GSK429286A-0.04806314055326423-5.45438043731104", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006046" + } + }, + "effect_size": -1.3436273396161476, + "pvalue": 0.04806314055326423 + }, + "subject": { + "NCBIGene": "5042" + } + }, + { + "_id": "DNAH10-GSK429286A-0.048065099834048566-4.3112111707033005", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.1112684846631455, + "pvalue": 0.048065099834048566 + }, + "subject": { + "NCBIGene": "196385" + } + }, + { + "_id": "NLRP4-GSK429286A-0.04846327875705761-4.68161053582366", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -0.8504981829873526, + "pvalue": 0.04846327875705761 + }, + "subject": { + "NCBIGene": "147945" + } + }, + { + "_id": "CCDC33-GSK429286A-0.04855926388149771-1.755181757745865", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0004967" + } + }, + "effect_size": -1.1789911744795678, + "pvalue": 0.04855926388149771 + }, + "subject": { + "NCBIGene": "80125" + } + }, + { + "_id": "HDAC7-GSK429286A-0.048619188590668695-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.231713273897983, + "pvalue": 0.048619188590668695 + }, + "subject": { + "NCBIGene": "51564" + } + }, + { + "_id": "CSPG4-GSK429286A-0.04865338698113973-2.68383961724685", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0018874" + } + }, + "effect_size": -1.088482270729775, + "pvalue": 0.04865338698113973 + }, + "subject": { + "NCBIGene": "1464" + } + }, + { + "_id": "YTHDC1-GSK429286A-0.04866540748223191-4.10562176192737", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.2707266393149135, + "pvalue": 0.04866540748223191 + }, + "subject": { + "NCBIGene": "91746" + } + }, + { + "_id": "CNGA1-GSK429286A-0.048761515681429675-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.2399577462600304, + "pvalue": 0.048761515681429675 + }, + "subject": { + "NCBIGene": "1259" + } + }, + { + "_id": "UGT1A5-GSK429286A-0.048785268169691476-5.02355415654748", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -0.9577330383825109, + "pvalue": 0.048785268169691476 + }, + "subject": { + "NCBIGene": "54579" + } + }, + { + "_id": "BTN1A1-GSK429286A-0.049265812114825815-3.69493914020001", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -1.237011934161722, + "pvalue": 0.049265812114825815 + }, + "subject": { + "NCBIGene": "696" + } + }, + { + "_id": "ABCB8-GSK429286A-0.04928693839886909-4.37380800230499", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.2189629893925908, + "pvalue": 0.04928693839886909 + }, + "subject": { + "NCBIGene": "11194" + } + }, + { + "_id": "PRDM9-GSK429286A-0.049356046574943885-4.228177103746241", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": ["MONDO:0003093", "MONDO:0005580"] + } + }, + "effect_size": -1.1095832287302332, + "pvalue": 0.049356046574943885 + }, + "subject": { + "NCBIGene": "56979" + } + }, + { + "_id": "OPLAH-GSK429286A-0.04940215075788177-4.95941623100301", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0008433" + } + }, + "effect_size": -1.284292348654776, + "pvalue": 0.04940215075788177 + }, + "subject": { + "NCBIGene": "26873" + } + }, + { + "_id": "NUP205-GSK429286A-0.049630820107970805-4.10433443432677", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0006256" + } + }, + "effect_size": -0.9784872126877439, + "pvalue": 0.049630820107970805 + }, + "subject": { + "NCBIGene": "23165" + } + }, + { + "_id": "STAMBPL1-GSK429286A-0.04986829476647059-4.23660382002562", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005061" + } + }, + "effect_size": -1.2027206907980774, + "pvalue": 0.04986829476647059 + }, + "subject": { + "NCBIGene": "57559" + } + }, + { + "_id": "MCM6-GSK429286A-0.04999095614425051-4.37380800230499", + "_score": null, + "association": { + "context": { + "disease": { + "mondo": "MONDO:0005012" + } + }, + "effect_size": -1.2632984088415444, + "pvalue": 0.04999095614425051 + }, + "subject": { + "NCBIGene": "4175" + } + } + ] +} diff --git a/__test__/data/biothings/mychem_example_edge.json b/__test__/data/biothings/mychem_example_edge.json index 47d58b9..b7f8586 100644 --- a/__test__/data/biothings/mychem_example_edge.json +++ b/__test__/data/biothings/mychem_example_edge.json @@ -1,65 +1,45 @@ { - "input": [ - "DB00188", - "DB00184", - "DB0000" - ], - "query_operation": { - "_params": { - "fields": "drugbank.enzymes" - }, - "_requestBody": { - "body": { - "q": "{inputs[0]}", - "scopes": "drugbank.id" - }, - "header": "application/x-www-form-urlencoded" - }, - "_supportBatch": true, - "_inputSeparator": ",", - "_method": "post", - "_pathParams": [], - "_server": "https://mychem.info/v1", - "_path": "/query", - "_tags": [ - "chemical", - "drug", - "annotation", - "query", - "translator", - "biothings" - ] + "input": ["DB00188", "DB00184", "DB0000"], + "query_operation": { + "_params": { + "fields": "drugbank.enzymes" }, - "association": { - "input_id": "DRUGBANK", - "input_type": "ChemicalSubstance", - "output_id": "SYMBOL", - "output_type": "Gene", - "predicate": "metabolic_processing_affected_by", - "source": "drugbank", - "api_name": "MyChem.info API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Service Provider" - ] - } + "_requestBody": { + "body": { + "q": "{inputs[0]}", + "scopes": "drugbank.id" + }, + "header": "application/x-www-form-urlencoded" }, - "response_mapping": { - "metabolic_processing_affected_by": { - "name": "drugbank.enzymes.name", - "SYMBOL": "drugbank.enzymes.gene_name", - "function": "drugbank.enzymes.general_function", - "action": "drugbank.enzymes.actions" - } - }, - "tags": [ - "chemical", - "drug", - "annotation", - "query", - "translator", - "biothings" - ] -} \ No newline at end of file + "_supportBatch": true, + "_inputSeparator": ",", + "_method": "post", + "_pathParams": [], + "_server": "https://mychem.info/v1", + "_path": "/query", + "_tags": ["chemical", "drug", "annotation", "query", "translator", "biothings"] + }, + "association": { + "input_id": "DRUGBANK", + "input_type": "ChemicalSubstance", + "output_id": "SYMBOL", + "output_type": "Gene", + "predicate": "metabolic_processing_affected_by", + "source": "drugbank", + "api_name": "MyChem.info API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Service Provider"] + } + }, + "response_mapping": { + "metabolic_processing_affected_by": { + "name": "drugbank.enzymes.name", + "SYMBOL": "drugbank.enzymes.gene_name", + "function": "drugbank.enzymes.general_function", + "action": "drugbank.enzymes.actions" + } + }, + "tags": ["chemical", "drug", "annotation", "query", "translator", "biothings"] +} diff --git a/__test__/data/biothings/mychem_post.json b/__test__/data/biothings/mychem_post.json index 48a751e..2136214 100644 --- a/__test__/data/biothings/mychem_post.json +++ b/__test__/data/biothings/mychem_post.json @@ -1,337 +1,250 @@ [ - { - "query": "DB00188", - "fake": true - }, - { - "query": "DB00188", - "_id": "GXJABQQUPOEUTA-RDJZCZTQSA-N", - "_score": 6.163889, - "drugbank": { - "_license": "http://bit.ly/2PSfZTD", - "enzymes": [ - { - "actions": "substrate", - "gene_name": "CYP3A4", - "general_function": "Vitamin d3 25-hydroxylase activity", - "id": "BE0002638", - "known_action": "no", - "name": "Cytochrome P450 3A4", - "organism": "Humans", - "pmids": [ - 22087865, - 26622646, - 15764713, - 16443666 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It performs a variety of oxidation reactions (e.g. caffeine 8-oxidation, omeprazole sulphoxidation, midazolam 1'-hydroxylation and midazolam 4-hydroxylation) of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,8-cineole 2-exo-monooxygenase. The enzyme also hydroxylates etoposide (PubMed:11159812). Catalyzes 4-beta-hydroxylation of cholesterol. May catalyze 25-hydroxylation of cholesterol in vitro (PubMed:21576599).", - "uniprot": "P08684" - }, - { - "actions": [ - "substrate", - "inhibitor" - ], - "gene_name": "CYP2C19", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003536", - "known_action": "no", - "name": "Cytochrome P450 2C19", - "organism": "Humans", - "pmids": [ - 19515014, - 15764713, - 16103134, - 16443666 - ], - "source": "Swiss-Prot", - "specific_function": "Responsible for the metabolism of a number of therapeutic agents such as the anticonvulsant drug S-mephenytoin, omeprazole, proguanil, certain barbiturates, diazepam, propranolol, citalopram and imipramine.", - "uniprot": "P33261" - }, - { - "actions": "substrate", - "gene_name": "CYP2D6", - "general_function": "Steroid hydroxylase activity", - "id": "BE0002363", - "name": "Cytochrome P450 2D6", - "organism": "Humans", - "pmids": [ - 19515014, - 16103134, - 15764713 - ], - "source": "Swiss-Prot", - "specific_function": "Responsible for the metabolism of many drugs and environmental chemicals that it oxidizes. It is involved in the metabolism of drugs such as antiarrhythmics, adrenoceptor antagonists, and tricyclic antidepressants.", - "uniprot": "P10635" - }, - { - "actions": [ - "substrate", - "inhibitor" - ], - "gene_name": "CYP1A2", - "general_function": "Oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen", - "id": "BE0002433", - "known_action": "no", - "name": "Cytochrome P450 1A2", - "organism": "Humans", - "pmids": [ - 15764713 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Most active in catalyzing 2-hydroxylation. Caffeine is metabolized primarily by cytochrome CYP1A2 in the liver through an initial N3-demethylation. Also acts in the metabolism of aflatoxin B1 and acetaminophen. Participates in the bioactivation of carcinogenic aromatic and heterocyclic amines. Catalizes the N-hydroxylation of heterocyclic amines and the O-deethylation of phenacetin.", - "uniprot": "P05177" - }, - { - "actions": [ - "substrate", - "inhibitor" - ], - "gene_name": "CYP2C9", - "general_function": "Steroid hydroxylase activity", - "id": "BE0002793", - "known_action": "no", - "name": "Cytochrome P450 2C9", - "organism": "Humans", - "pmids": [ - 15764713, - 16443666, - 16103134 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. This enzyme contributes to the wide pharmacokinetics variability of the metabolism of drugs such as S-warfarin, diclofenac, phenytoin, tolbutamide and losartan.", - "uniprot": "P11712" - } - ] + { + "query": "DB00188", + "fake": true + }, + { + "query": "DB00188", + "_id": "GXJABQQUPOEUTA-RDJZCZTQSA-N", + "_score": 6.163889, + "drugbank": { + "_license": "http://bit.ly/2PSfZTD", + "enzymes": [ + { + "actions": "substrate", + "gene_name": "CYP3A4", + "general_function": "Vitamin d3 25-hydroxylase activity", + "id": "BE0002638", + "known_action": "no", + "name": "Cytochrome P450 3A4", + "organism": "Humans", + "pmids": [22087865, 26622646, 15764713, 16443666], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It performs a variety of oxidation reactions (e.g. caffeine 8-oxidation, omeprazole sulphoxidation, midazolam 1'-hydroxylation and midazolam 4-hydroxylation) of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,8-cineole 2-exo-monooxygenase. The enzyme also hydroxylates etoposide (PubMed:11159812). Catalyzes 4-beta-hydroxylation of cholesterol. May catalyze 25-hydroxylation of cholesterol in vitro (PubMed:21576599).", + "uniprot": "P08684" + }, + { + "actions": ["substrate", "inhibitor"], + "gene_name": "CYP2C19", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003536", + "known_action": "no", + "name": "Cytochrome P450 2C19", + "organism": "Humans", + "pmids": [19515014, 15764713, 16103134, 16443666], + "source": "Swiss-Prot", + "specific_function": "Responsible for the metabolism of a number of therapeutic agents such as the anticonvulsant drug S-mephenytoin, omeprazole, proguanil, certain barbiturates, diazepam, propranolol, citalopram and imipramine.", + "uniprot": "P33261" + }, + { + "actions": "substrate", + "gene_name": "CYP2D6", + "general_function": "Steroid hydroxylase activity", + "id": "BE0002363", + "name": "Cytochrome P450 2D6", + "organism": "Humans", + "pmids": [19515014, 16103134, 15764713], + "source": "Swiss-Prot", + "specific_function": "Responsible for the metabolism of many drugs and environmental chemicals that it oxidizes. It is involved in the metabolism of drugs such as antiarrhythmics, adrenoceptor antagonists, and tricyclic antidepressants.", + "uniprot": "P10635" + }, + { + "actions": ["substrate", "inhibitor"], + "gene_name": "CYP1A2", + "general_function": "Oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen", + "id": "BE0002433", + "known_action": "no", + "name": "Cytochrome P450 1A2", + "organism": "Humans", + "pmids": [15764713], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Most active in catalyzing 2-hydroxylation. Caffeine is metabolized primarily by cytochrome CYP1A2 in the liver through an initial N3-demethylation. Also acts in the metabolism of aflatoxin B1 and acetaminophen. Participates in the bioactivation of carcinogenic aromatic and heterocyclic amines. Catalizes the N-hydroxylation of heterocyclic amines and the O-deethylation of phenacetin.", + "uniprot": "P05177" + }, + { + "actions": ["substrate", "inhibitor"], + "gene_name": "CYP2C9", + "general_function": "Steroid hydroxylase activity", + "id": "BE0002793", + "known_action": "no", + "name": "Cytochrome P450 2C9", + "organism": "Humans", + "pmids": [15764713, 16443666, 16103134], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. This enzyme contributes to the wide pharmacokinetics variability of the metabolism of drugs such as S-warfarin, diclofenac, phenytoin, tolbutamide and losartan.", + "uniprot": "P11712" } - }, - { - "query": "DB00184", - "_id": "SNICXCGAKADSCV-JTQLQIEISA-N", - "_score": 6.411114, - "drugbank": { - "_license": "http://bit.ly/2PSfZTD", - "enzymes": [ - { - "actions": [ - "substrate", - "inhibitor" - ], - "gene_name": "CYP2A6", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003336", - "name": "Cytochrome P450 2A6", - "organism": "Humans", - "pmids": [ - 10350185, - 22869927, - 11678779, - 14757175 - ], - "source": "Swiss-Prot", - "specific_function": "Exhibits a high coumarin 7-hydroxylase activity. Can act in the hydroxylation of the anti-cancer drugs cyclophosphamide and ifosphamide. Competent in the metabolic activation of aflatoxin B1. Constitutes the major nicotine C-oxidase. Acts as a 1,4-cineole 2-exo-monooxygenase. Possesses low phenacetin O-deethylation activity.", - "uniprot": "P11509" - }, - { - "actions": [ - "substrate", - "inhibitor", - "inducer" - ], - "gene_name": "CYP2E1", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003533", - "name": "Cytochrome P450 2E1", - "organism": "Humans", - "pmids": [ - 12711639, - 11719700, - 10350185, - 12750430, - 20233178, - 8328992 - ], - "source": "Swiss-Prot", - "specific_function": "Metabolizes several precarcinogens, drugs, and solvents to reactive metabolites. Inactivates a number of drugs and xenobiotics and also bioactivates many xenobiotic substrates to their hepatotoxic or carcinogenic forms.", - "uniprot": "P05181" - }, - { - "actions": "substrate", - "gene_name": "CYP2A13", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003534", - "name": "Cytochrome P450 2A13", - "organism": "Humans", - "pmids": [ - 16188955, - 15196988, - 15528319 - ], - "source": "Swiss-Prot", - "specific_function": "Exhibits a coumarin 7-hydroxylase activity. Active in the metabolic activation of hexamethylphosphoramide, N,N-dimethylaniline, 2'-methoxyacetophenone, N-nitrosomethylphenylamine, and the tobacco-specific carcinogen, 4-(methylnitrosamino)-1-(3-pyridyl)-1-butanone. Possesses phenacetin O-deethylation activity.", - "uniprot": "Q16696" - }, - { - "actions": "substrate", - "gene_name": "CYP2B6", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003549", - "name": "Cytochrome P450 2B6", - "organism": "Humans", - "pmids": [ - 10350185, - 11996015 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,4-cineole 2-exo-monooxygenase.", - "uniprot": "P20813" - }, - { - "actions": [ - "substrate", - "inducer" - ], - "gene_name": "CYP1A1", - "general_function": "Vitamin d 24-hydroxylase activity", - "id": "BE0003543", - "name": "Cytochrome P450 1A1", - "organism": "Humans", - "pmids": [ - 11849738, - 10427467, - 10350185 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics.", - "uniprot": "P04798" - }, - { - "actions": [ - "substrate", - "inducer" - ], - "gene_name": "CYP1A2", - "general_function": "Oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen", - "id": "BE0002433", - "name": "Cytochrome P450 1A2", - "organism": "Humans", - "pmids": [ - 21599724, - 10427467, - 10350185, - 20932495 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Most active in catalyzing 2-hydroxylation. Caffeine is metabolized primarily by cytochrome CYP1A2 in the liver through an initial N3-demethylation. Also acts in the metabolism of aflatoxin B1 and acetaminophen. Participates in the bioactivation of carcinogenic aromatic and heterocyclic amines. Catalizes the N-hydroxylation of heterocyclic amines and the O-deethylation of phenacetin.", - "uniprot": "P05177" - }, - { - "actions": "substrate", - "gene_name": "CYP2C19", - "general_function": "Steroid hydroxylase activity", - "id": "BE0003536", - "name": "Cytochrome P450 2C19", - "organism": "Humans", - "pmids": [ - 10350185 - ], - "source": "Swiss-Prot", - "specific_function": "Responsible for the metabolism of a number of therapeutic agents such as the anticonvulsant drug S-mephenytoin, omeprazole, proguanil, certain barbiturates, diazepam, propranolol, citalopram and imipramine.", - "uniprot": "P33261" - }, - { - "actions": "substrate", - "gene_name": "CYP2C8", - "general_function": "Steroid hydroxylase activity", - "id": "BE0002887", - "name": "Cytochrome P450 2C8", - "organism": "Humans", - "pmids": [ - 10350185 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. In the epoxidation of arachidonic acid it generates only 14,15- and 11,12-cis-epoxyeicosatrienoic acids. It is the principal enzyme responsible for the metabolism the anti-cancer drug paclitaxel (taxol).", - "uniprot": "P10632" - }, - { - "actions": "substrate", - "gene_name": "CYP2C9", - "general_function": "Steroid hydroxylase activity", - "id": "BE0002793", - "name": "Cytochrome P450 2C9", - "organism": "Humans", - "pmids": [ - 10350185 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. This enzyme contributes to the wide pharmacokinetics variability of the metabolism of drugs such as S-warfarin, diclofenac, phenytoin, tolbutamide and losartan.", - "uniprot": "P11712" - }, - { - "actions": "substrate", - "gene_name": "CYP2D6", - "general_function": "Steroid hydroxylase activity", - "id": "BE0002363", - "name": "Cytochrome P450 2D6", - "organism": "Humans", - "pmids": [ - 10350185, - 8807663, - 26287939 - ], - "source": "Swiss-Prot", - "specific_function": "Responsible for the metabolism of many drugs and environmental chemicals that it oxidizes. It is involved in the metabolism of drugs such as antiarrhythmics, adrenoceptor antagonists, and tricyclic antidepressants.", - "uniprot": "P10635" - }, - { - "actions": "substrate", - "gene_name": "CYP3A4", - "general_function": "Vitamin d3 25-hydroxylase activity", - "id": "BE0002638", - "name": "Cytochrome P450 3A4", - "organism": "Humans", - "pmids": [ - 10350185 - ], - "source": "Swiss-Prot", - "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It performs a variety of oxidation reactions (e.g. caffeine 8-oxidation, omeprazole sulphoxidation, midazolam 1'-hydroxylation and midazolam 4-hydroxylation) of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,8-cineole 2-exo-monooxygenase. The enzyme also hydroxylates etoposide (PubMed:11159812). Catalyzes 4-beta-hydroxylation of cholesterol. May catalyze 25-hydroxylation of cholesterol in vitro (PubMed:21576599).", - "uniprot": "P08684" - }, - { - "actions": "inhibitor", - "gene_name": "MAOA", - "general_function": "Serotonin binding", - "id": "BE0002198", - "name": "Amine oxidase [flavin-containing] A", - "organism": "Humans", - "pmids": [ - 21636610, - 19142115 - ], - "source": "Swiss-Prot", - "specific_function": "Catalyzes the oxidative deamination of biogenic and xenobiotic amines and has important functions in the metabolism of neuroactive and vasoactive amines in the central nervous system and peripheral tissues. MAOA preferentially oxidizes biogenic amines such as 5-hydroxytryptamine (5-HT), norepinephrine and epinephrine.", - "uniprot": "P21397" - }, - { - "actions": "inhibitor", - "gene_name": "MAOB", - "general_function": "Primary amine oxidase activity", - "id": "BE0002196", - "name": "Amine oxidase [flavin-containing] B", - "organism": "Humans", - "pmids": [ - 21636610 - ], - "source": "Swiss-Prot", - "specific_function": "Catalyzes the oxidative deamination of biogenic and xenobiotic amines and has important functions in the metabolism of neuroactive and vasoactive amines in the central nervous system and peripheral tissues. MAOB preferentially degrades benzylamine and phenylethylamine.", - "uniprot": "P27338" - } - ] + ] + } + }, + { + "query": "DB00184", + "_id": "SNICXCGAKADSCV-JTQLQIEISA-N", + "_score": 6.411114, + "drugbank": { + "_license": "http://bit.ly/2PSfZTD", + "enzymes": [ + { + "actions": ["substrate", "inhibitor"], + "gene_name": "CYP2A6", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003336", + "name": "Cytochrome P450 2A6", + "organism": "Humans", + "pmids": [10350185, 22869927, 11678779, 14757175], + "source": "Swiss-Prot", + "specific_function": "Exhibits a high coumarin 7-hydroxylase activity. Can act in the hydroxylation of the anti-cancer drugs cyclophosphamide and ifosphamide. Competent in the metabolic activation of aflatoxin B1. Constitutes the major nicotine C-oxidase. Acts as a 1,4-cineole 2-exo-monooxygenase. Possesses low phenacetin O-deethylation activity.", + "uniprot": "P11509" + }, + { + "actions": ["substrate", "inhibitor", "inducer"], + "gene_name": "CYP2E1", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003533", + "name": "Cytochrome P450 2E1", + "organism": "Humans", + "pmids": [12711639, 11719700, 10350185, 12750430, 20233178, 8328992], + "source": "Swiss-Prot", + "specific_function": "Metabolizes several precarcinogens, drugs, and solvents to reactive metabolites. Inactivates a number of drugs and xenobiotics and also bioactivates many xenobiotic substrates to their hepatotoxic or carcinogenic forms.", + "uniprot": "P05181" + }, + { + "actions": "substrate", + "gene_name": "CYP2A13", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003534", + "name": "Cytochrome P450 2A13", + "organism": "Humans", + "pmids": [16188955, 15196988, 15528319], + "source": "Swiss-Prot", + "specific_function": "Exhibits a coumarin 7-hydroxylase activity. Active in the metabolic activation of hexamethylphosphoramide, N,N-dimethylaniline, 2'-methoxyacetophenone, N-nitrosomethylphenylamine, and the tobacco-specific carcinogen, 4-(methylnitrosamino)-1-(3-pyridyl)-1-butanone. Possesses phenacetin O-deethylation activity.", + "uniprot": "Q16696" + }, + { + "actions": "substrate", + "gene_name": "CYP2B6", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003549", + "name": "Cytochrome P450 2B6", + "organism": "Humans", + "pmids": [10350185, 11996015], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,4-cineole 2-exo-monooxygenase.", + "uniprot": "P20813" + }, + { + "actions": ["substrate", "inducer"], + "gene_name": "CYP1A1", + "general_function": "Vitamin d 24-hydroxylase activity", + "id": "BE0003543", + "name": "Cytochrome P450 1A1", + "organism": "Humans", + "pmids": [11849738, 10427467, 10350185], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics.", + "uniprot": "P04798" + }, + { + "actions": ["substrate", "inducer"], + "gene_name": "CYP1A2", + "general_function": "Oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced flavin or flavoprotein as one donor, and incorporation of one atom of oxygen", + "id": "BE0002433", + "name": "Cytochrome P450 1A2", + "organism": "Humans", + "pmids": [21599724, 10427467, 10350185, 20932495], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Most active in catalyzing 2-hydroxylation. Caffeine is metabolized primarily by cytochrome CYP1A2 in the liver through an initial N3-demethylation. Also acts in the metabolism of aflatoxin B1 and acetaminophen. Participates in the bioactivation of carcinogenic aromatic and heterocyclic amines. Catalizes the N-hydroxylation of heterocyclic amines and the O-deethylation of phenacetin.", + "uniprot": "P05177" + }, + { + "actions": "substrate", + "gene_name": "CYP2C19", + "general_function": "Steroid hydroxylase activity", + "id": "BE0003536", + "name": "Cytochrome P450 2C19", + "organism": "Humans", + "pmids": [10350185], + "source": "Swiss-Prot", + "specific_function": "Responsible for the metabolism of a number of therapeutic agents such as the anticonvulsant drug S-mephenytoin, omeprazole, proguanil, certain barbiturates, diazepam, propranolol, citalopram and imipramine.", + "uniprot": "P33261" + }, + { + "actions": "substrate", + "gene_name": "CYP2C8", + "general_function": "Steroid hydroxylase activity", + "id": "BE0002887", + "name": "Cytochrome P450 2C8", + "organism": "Humans", + "pmids": [10350185], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. In the epoxidation of arachidonic acid it generates only 14,15- and 11,12-cis-epoxyeicosatrienoic acids. It is the principal enzyme responsible for the metabolism the anti-cancer drug paclitaxel (taxol).", + "uniprot": "P10632" + }, + { + "actions": "substrate", + "gene_name": "CYP2C9", + "general_function": "Steroid hydroxylase activity", + "id": "BE0002793", + "name": "Cytochrome P450 2C9", + "organism": "Humans", + "pmids": [10350185], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It oxidizes a variety of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. This enzyme contributes to the wide pharmacokinetics variability of the metabolism of drugs such as S-warfarin, diclofenac, phenytoin, tolbutamide and losartan.", + "uniprot": "P11712" + }, + { + "actions": "substrate", + "gene_name": "CYP2D6", + "general_function": "Steroid hydroxylase activity", + "id": "BE0002363", + "name": "Cytochrome P450 2D6", + "organism": "Humans", + "pmids": [10350185, 8807663, 26287939], + "source": "Swiss-Prot", + "specific_function": "Responsible for the metabolism of many drugs and environmental chemicals that it oxidizes. It is involved in the metabolism of drugs such as antiarrhythmics, adrenoceptor antagonists, and tricyclic antidepressants.", + "uniprot": "P10635" + }, + { + "actions": "substrate", + "gene_name": "CYP3A4", + "general_function": "Vitamin d3 25-hydroxylase activity", + "id": "BE0002638", + "name": "Cytochrome P450 3A4", + "organism": "Humans", + "pmids": [10350185], + "source": "Swiss-Prot", + "specific_function": "Cytochromes P450 are a group of heme-thiolate monooxygenases. In liver microsomes, this enzyme is involved in an NADPH-dependent electron transport pathway. It performs a variety of oxidation reactions (e.g. caffeine 8-oxidation, omeprazole sulphoxidation, midazolam 1'-hydroxylation and midazolam 4-hydroxylation) of structurally unrelated compounds, including steroids, fatty acids, and xenobiotics. Acts as a 1,8-cineole 2-exo-monooxygenase. The enzyme also hydroxylates etoposide (PubMed:11159812). Catalyzes 4-beta-hydroxylation of cholesterol. May catalyze 25-hydroxylation of cholesterol in vitro (PubMed:21576599).", + "uniprot": "P08684" + }, + { + "actions": "inhibitor", + "gene_name": "MAOA", + "general_function": "Serotonin binding", + "id": "BE0002198", + "name": "Amine oxidase [flavin-containing] A", + "organism": "Humans", + "pmids": [21636610, 19142115], + "source": "Swiss-Prot", + "specific_function": "Catalyzes the oxidative deamination of biogenic and xenobiotic amines and has important functions in the metabolism of neuroactive and vasoactive amines in the central nervous system and peripheral tissues. MAOA preferentially oxidizes biogenic amines such as 5-hydroxytryptamine (5-HT), norepinephrine and epinephrine.", + "uniprot": "P21397" + }, + { + "actions": "inhibitor", + "gene_name": "MAOB", + "general_function": "Primary amine oxidase activity", + "id": "BE0002196", + "name": "Amine oxidase [flavin-containing] B", + "organism": "Humans", + "pmids": [21636610], + "source": "Swiss-Prot", + "specific_function": "Catalyzes the oxidative deamination of biogenic and xenobiotic amines and has important functions in the metabolism of neuroactive and vasoactive amines in the central nervous system and peripheral tissues. MAOB preferentially degrades benzylamine and phenylethylamine.", + "uniprot": "P27338" } - }, - { - "query": "DBOOOO", - "notfound": true + ] } -] \ No newline at end of file + }, + { + "query": "DBOOOO", + "notfound": true + } +] diff --git a/__test__/data/biothings/mygene_example_edge.json b/__test__/data/biothings/mygene_example_edge.json index b01b575..0ba1e8d 100644 --- a/__test__/data/biothings/mygene_example_edge.json +++ b/__test__/data/biothings/mygene_example_edge.json @@ -1,58 +1,44 @@ { - "query_operation": { - "_params": { - "fields": "go.BP" - }, - "_requestBody": { - "body": { - "q": "{inputs[0]}", - "scopes": "entrezgene" - }, - "header": "application/x-www-form-urlencoded" - }, - "_supportBatch": true, - "_inputSeparator": ",", - "_method": "post", - "_pathParams": [], - "_server": "https://mygene.info/v3", - "_path": "/query", - "_tags": [ - "gene", - "annotation", - "query", - "translator", - "biothings" - ] + "query_operation": { + "_params": { + "fields": "go.BP" }, - "association": { - "input_id": "NCBIGene", - "input_type": "Gene", - "output_id": "GO", - "output_type": "BiologicalProcess", - "predicate": "functional_association", - "source": "entrez", - "api_name": "MyGene.info API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Service Provider" - ] - } + "_requestBody": { + "body": { + "q": "{inputs[0]}", + "scopes": "entrezgene" + }, + "header": "application/x-www-form-urlencoded" }, - "response_mapping": { - "functional_association": { - "evidence": "go.BP.evidence", - "GO": "go.BP.id", - "pubmed": "go.BP.pubmed", - "term": "go.BP.term" - } - }, - "tags": [ - "gene", - "annotation", - "query", - "translator", - "biothings" - ] -} \ No newline at end of file + "_supportBatch": true, + "_inputSeparator": ",", + "_method": "post", + "_pathParams": [], + "_server": "https://mygene.info/v3", + "_path": "/query", + "_tags": ["gene", "annotation", "query", "translator", "biothings"] + }, + "association": { + "input_id": "NCBIGene", + "input_type": "Gene", + "output_id": "GO", + "output_type": "BiologicalProcess", + "predicate": "functional_association", + "source": "entrez", + "api_name": "MyGene.info API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Service Provider"] + } + }, + "response_mapping": { + "functional_association": { + "evidence": "go.BP.evidence", + "GO": "go.BP.id", + "pubmed": "go.BP.pubmed", + "term": "go.BP.term" + } + }, + "tags": ["gene", "annotation", "query", "translator", "biothings"] +} diff --git a/__test__/data/biothings/mygene_post.json b/__test__/data/biothings/mygene_post.json index 2fb6c5c..3d3c897 100644 --- a/__test__/data/biothings/mygene_post.json +++ b/__test__/data/biothings/mygene_post.json @@ -1,196 +1,193 @@ [ - { - "query": "1017", - "_id": "1017", - "_score": 23.263514, - "go": { - "BP": [ - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0000082", - "pubmed": 21873635, - "term": "G1/S transition of mitotic cell cycle" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0000082", - "term": "G1/S transition of mitotic cell cycle" - }, - { - "evidence": "NAS", - "gocategory": "BP", - "id": "GO:0000086", - "pubmed": 1653904, - "term": "G2/M transition of mitotic cell cycle" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0000086", - "term": "G2/M transition of mitotic cell cycle" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0006260", - "pubmed": 19238148, - "term": "DNA replication" - }, - { - "evidence": "IEA", - "gocategory": "BP", - "id": "GO:0006281", - "term": "DNA repair" - }, - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0006468", - "pubmed": 21873635, - "term": "protein phosphorylation" - }, - { - "evidence": "IDA", - "gocategory": "BP", - "id": "GO:0006468", - "pubmed": [ - 12944431, - 28666995 - ], - "term": "protein phosphorylation" - }, - { - "evidence": "IMP", - "gocategory": "BP", - "id": "GO:0006468", - "pubmed": 29203878, - "term": "protein phosphorylation" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0006977", - "term": "DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest" - }, - { - "evidence": "IMP", - "gocategory": "BP", - "id": "GO:0007099", - "pubmed": 26297806, - "term": "centriole replication" - }, - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0007165", - "pubmed": 21873635, - "term": "signal transduction" - }, - { - "evidence": "IEP", - "gocategory": "BP", - "id": "GO:0007265", - "pubmed": 9054499, - "term": "Ras protein signal transduction" - }, - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0008284", - "pubmed": 21873635, - "term": "positive regulation of cell population proliferation" - }, - { - "evidence": "IDA", - "gocategory": "BP", - "id": "GO:0008284", - "pubmed": 10767298, - "term": "positive regulation of cell population proliferation" - }, - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0010389", - "pubmed": 21873635, - "term": "regulation of G2/M transition of mitotic cell cycle" - }, - { - "evidence": "IBA", - "gocategory": "BP", - "id": "GO:0010468", - "pubmed": 21873635, - "term": "regulation of gene expression" - }, - { - "evidence": "IDA", - "gocategory": "BP", - "id": "GO:0016572", - "pubmed": 11746698, - "term": "histone phosphorylation" - }, - { - "evidence": "IDA", - "gocategory": "BP", - "id": "GO:0018105", - "pubmed": 23184662, - "term": "peptidyl-serine phosphorylation" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0031145", - "term": "anaphase-promoting complex-dependent catabolic process" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0031571", - "pubmed": 21319273, - "term": "mitotic G1 DNA damage checkpoint" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0051298", - "pubmed": 19238148, - "term": "centrosome duplication" - }, - { - "evidence": "IEA", - "gocategory": "BP", - "id": "GO:0051301", - "term": "cell division" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0051321", - "pubmed": 19238148, - "term": "meiotic cell cycle" - }, - { - "evidence": "IDA", - "gocategory": "BP", - "id": "GO:0060968", - "pubmed": 20935635, - "term": "regulation of gene silencing" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:0071732", - "pubmed": 20079829, - "term": "cellular response to nitric oxide" - }, - { - "evidence": "TAS", - "gocategory": "BP", - "id": "GO:1901796", - "term": "regulation of signal transduction by p53 class mediator" - } - ] + { + "query": "1017", + "_id": "1017", + "_score": 23.263514, + "go": { + "BP": [ + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0000082", + "pubmed": 21873635, + "term": "G1/S transition of mitotic cell cycle" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0000082", + "term": "G1/S transition of mitotic cell cycle" + }, + { + "evidence": "NAS", + "gocategory": "BP", + "id": "GO:0000086", + "pubmed": 1653904, + "term": "G2/M transition of mitotic cell cycle" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0000086", + "term": "G2/M transition of mitotic cell cycle" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0006260", + "pubmed": 19238148, + "term": "DNA replication" + }, + { + "evidence": "IEA", + "gocategory": "BP", + "id": "GO:0006281", + "term": "DNA repair" + }, + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0006468", + "pubmed": 21873635, + "term": "protein phosphorylation" + }, + { + "evidence": "IDA", + "gocategory": "BP", + "id": "GO:0006468", + "pubmed": [12944431, 28666995], + "term": "protein phosphorylation" + }, + { + "evidence": "IMP", + "gocategory": "BP", + "id": "GO:0006468", + "pubmed": 29203878, + "term": "protein phosphorylation" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0006977", + "term": "DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest" + }, + { + "evidence": "IMP", + "gocategory": "BP", + "id": "GO:0007099", + "pubmed": 26297806, + "term": "centriole replication" + }, + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0007165", + "pubmed": 21873635, + "term": "signal transduction" + }, + { + "evidence": "IEP", + "gocategory": "BP", + "id": "GO:0007265", + "pubmed": 9054499, + "term": "Ras protein signal transduction" + }, + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0008284", + "pubmed": 21873635, + "term": "positive regulation of cell population proliferation" + }, + { + "evidence": "IDA", + "gocategory": "BP", + "id": "GO:0008284", + "pubmed": 10767298, + "term": "positive regulation of cell population proliferation" + }, + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0010389", + "pubmed": 21873635, + "term": "regulation of G2/M transition of mitotic cell cycle" + }, + { + "evidence": "IBA", + "gocategory": "BP", + "id": "GO:0010468", + "pubmed": 21873635, + "term": "regulation of gene expression" + }, + { + "evidence": "IDA", + "gocategory": "BP", + "id": "GO:0016572", + "pubmed": 11746698, + "term": "histone phosphorylation" + }, + { + "evidence": "IDA", + "gocategory": "BP", + "id": "GO:0018105", + "pubmed": 23184662, + "term": "peptidyl-serine phosphorylation" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0031145", + "term": "anaphase-promoting complex-dependent catabolic process" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0031571", + "pubmed": 21319273, + "term": "mitotic G1 DNA damage checkpoint" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0051298", + "pubmed": 19238148, + "term": "centrosome duplication" + }, + { + "evidence": "IEA", + "gocategory": "BP", + "id": "GO:0051301", + "term": "cell division" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0051321", + "pubmed": 19238148, + "term": "meiotic cell cycle" + }, + { + "evidence": "IDA", + "gocategory": "BP", + "id": "GO:0060968", + "pubmed": 20935635, + "term": "regulation of gene silencing" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:0071732", + "pubmed": 20079829, + "term": "cellular response to nitric oxide" + }, + { + "evidence": "TAS", + "gocategory": "BP", + "id": "GO:1901796", + "term": "regulation of signal transduction by p53 class mediator" } + ] } -] \ No newline at end of file + } +] diff --git a/__test__/data/ctd/edge.json b/__test__/data/ctd/edge.json index 992f360..9eaa93a 100644 --- a/__test__/data/ctd/edge.json +++ b/__test__/data/ctd/edge.json @@ -1,47 +1,39 @@ { - "input": "1017", - "query_operation": { - "_params": { - "inputType": "gene", - "report": "diseases_curated", - "format": "json", - "inputTerms": "{inputs[0]}" - }, - "_supportBatch": false, - "method": "get", - "_pathParams": [], - "_server": "http://ctdbase.org/tools", - "_path": "/batchQuery.go", - "_tags": [ - "translator", - "ctd" - ] + "input": "1017", + "query_operation": { + "_params": { + "inputType": "gene", + "report": "diseases_curated", + "format": "json", + "inputTerms": "{inputs[0]}" }, - "association": { - "input_id": "NCBIGene", - "input_type": "Gene", - "output_id": "MESH", - "output_type": "Disease", - "predicate": "related_to", - "source": "CTD", - "api_name": "CTD API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Service Provider" - ] - } - }, - "response_mapping": { - "related_to": { - "MESH": "data.DiseaseID", - "name": "data.DiseaseName", - "pubmed": "data.PubMedIDs" - } - }, - "tags": [ - "translator", - "ctd" - ] -} \ No newline at end of file + "_supportBatch": false, + "method": "get", + "_pathParams": [], + "_server": "http://ctdbase.org/tools", + "_path": "/batchQuery.go", + "_tags": ["translator", "ctd"] + }, + "association": { + "input_id": "NCBIGene", + "input_type": "Gene", + "output_id": "MESH", + "output_type": "Disease", + "predicate": "related_to", + "source": "CTD", + "api_name": "CTD API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Service Provider"] + } + }, + "response_mapping": { + "related_to": { + "MESH": "data.DiseaseID", + "name": "data.DiseaseName", + "pubmed": "data.PubMedIDs" + } + }, + "tags": ["translator", "ctd"] +} diff --git a/__test__/data/ctd/response.json b/__test__/data/ctd/response.json index 08a9a2b..9f2b67c 100644 --- a/__test__/data/ctd/response.json +++ b/__test__/data/ctd/response.json @@ -1,22 +1,22 @@ [ - { - "DirectEvidence": "marker/mechanism", - "DiseaseCategories": "Cancer", - "DiseaseID": "MESH:D008545", - "DiseaseName": "Melanoma", - "GeneID": "1017", - "GeneSymbol": "CDK2", - "Input": "1017", - "PubMedIDs": "21559390" - }, - { - "DirectEvidence": "marker/mechanism", - "DiseaseCategories": "Cancer", - "DiseaseID": "MESH:D000077195", - "DiseaseName": "Squamous Cell Carcinoma of Head and Neck", - "GeneID": "1017", - "GeneSymbol": "CDK2", - "Input": "1017", - "PubMedIDs": "29464035" - } -] \ No newline at end of file + { + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer", + "DiseaseID": "MESH:D008545", + "DiseaseName": "Melanoma", + "GeneID": "1017", + "GeneSymbol": "CDK2", + "Input": "1017", + "PubMedIDs": "21559390" + }, + { + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer", + "DiseaseID": "MESH:D000077195", + "DiseaseName": "Squamous Cell Carcinoma of Head and Neck", + "GeneID": "1017", + "GeneSymbol": "CDK2", + "Input": "1017", + "PubMedIDs": "29464035" + } +] diff --git a/__test__/data/ctd/response2.json b/__test__/data/ctd/response2.json index 39c353e..8f0a95f 100644 --- a/__test__/data/ctd/response2.json +++ b/__test__/data/ctd/response2.json @@ -1 +1,1482 @@ -[{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pregnancy complication","DiseaseID":"MESH:D000022","DiseaseName":"Abortion, Spontaneous","Input":"d003634","PubMedIDs":"16120699"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Digestive system disease","DiseaseID":"MESH:D018248","DiseaseName":"Adenoma, Liver Cell","Input":"d003634","PubMedIDs":"12597452"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Occupational disease","DiseaseID":"MESH:D000382","DiseaseName":"Agricultural Workers' Diseases","Input":"d003634","PubMedIDs":"12584743|16487989|17182642|17495700|17932376|17975796|19541724|20061368|20730623|24064777"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D053627","DiseaseName":"Asthenozoospermia","Input":"d003634","PubMedIDs":"19303595"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Respiratory tract disease","DiseaseID":"MESH:D001249","DiseaseName":"Asthma","Input":"d003634","PubMedIDs":"17932376|19541724"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D053713","DiseaseName":"Azoospermia","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Skin disease","DiseaseID":"MESH:D001943","DiseaseName":"Breast Neoplasms","Input":"d003634","PubMedIDs":"12709520|16792888|17938728"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)|Respiratory tract disease","DiseaseID":"MESH:D029481","DiseaseName":"Bronchitis, Chronic","Input":"d003634","PubMedIDs":"17495700|17975796"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Digestive system disease","DiseaseID":"MESH:D006528","DiseaseName":"Carcinoma, Hepatocellular","Input":"d003634","PubMedIDs":"12597452|21035526|6667461"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease|Pathology (anatomical condition)","DiseaseID":"MESH:D006332","DiseaseName":"Cardiomegaly","Input":"d003634","PubMedIDs":"27325568"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D056486","DiseaseName":"Chemical and Drug Induced Liver Injury","Input":"d003634","PubMedIDs":"11272408|18675336"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D002653","DiseaseName":"Child Behavior Disorders","Input":"d003634","PubMedIDs":"27466755"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D003072","DiseaseName":"Cognition Disorders","Input":"d003634","PubMedIDs":"26630154"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Digestive system disease","DiseaseID":"MESH:D003110","DiseaseName":"Colonic Neoplasms","Input":"d003634","PubMedIDs":"20730623"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Congenital abnormality","DiseaseID":"MESH:D000013","DiseaseName":"Congenital Abnormalities","Input":"d003634","PubMedIDs":"15095906"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseID":"MESH:D009358","DiseaseName":"Congenital, Hereditary, and Neonatal Diseases and Abnormalities","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Congenital abnormality|Endocrine system disease|Urogenital disease (male)","DiseaseID":"MESH:D003456","DiseaseName":"Cryptorchidism","Input":"d003634","PubMedIDs":"16835070"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D003866","DiseaseName":"Depressive Disorder","Input":"d003634","PubMedIDs":"28263910"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Metabolic disease","DiseaseID":"MESH:D003920","DiseaseName":"Diabetes Mellitus","Input":"d003634","PubMedIDs":"31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseID":"MESH:D064420","DiseaseName":"Drug-Related Side Effects and Adverse Reactions","Input":"d003634","PubMedIDs":"2370251"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Respiratory tract disease|Signs and symptoms","DiseaseID":"MESH:D004417","DiseaseName":"Dyspnea","Input":"d003634","PubMedIDs":"16487989"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Occupational disease|Respiratory tract disease","DiseaseID":"MESH:D005203","DiseaseName":"Farmer's Lung","Input":"d003634","PubMedIDs":"17182642"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D005234","DiseaseName":"Fatty Liver","Input":"d003634","PubMedIDs":"31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Fetal disease|Pathology (process)|Pregnancy complication","DiseaseID":"MESH:D005317","DiseaseName":"Fetal Growth Retardation","Input":"d003634","PubMedIDs":"22310945"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D005334","DiseaseName":"Fever","Input":"d003634","PubMedIDs":"3088650"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D006505","DiseaseName":"Hepatitis","Input":"d003634","PubMedIDs":"16487989"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease|Pathology (anatomical condition)","DiseaseID":"MESH:D006529","DiseaseName":"Hepatomegaly","Input":"d003634","PubMedIDs":"11272408|23684557|2387028"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease","DiseaseID":"MESH:D006973","DiseaseName":"Hypertension","Input":"d003634","PubMedIDs":"27325568"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease","DiseaseID":"MESH:D007037","DiseaseName":"Hypothyroidism","Input":"d003634","PubMedIDs":"20061368|24064777"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Infant-newborn disease","DiseaseID":"MESH:D007232","DiseaseName":"Infant, Newborn, Diseases","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D007248","DiseaseName":"Infertility, Male","Input":"d003634","PubMedIDs":"17157474|17192596|19303595"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease","DiseaseID":"MESH:D007333","DiseaseName":"Insulin Resistance","Input":"d003634","PubMedIDs":"31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D007674","DiseaseName":"Kidney Diseases","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder|Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D007859","DiseaseName":"Learning Disabilities","Input":"d003634","PubMedIDs":"7589230"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease|Pathology (process)","DiseaseID":"MESH:D008103","DiseaseName":"Liver Cirrhosis","Input":"d003634","PubMedIDs":"32508177"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D008107","DiseaseName":"Liver Diseases","Input":"d003634","PubMedIDs":"15729006"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Digestive system disease","DiseaseID":"MESH:D008113","DiseaseName":"Liver Neoplasms","Input":"d003634","PubMedIDs":"11948501|15975961|2431762|3621148"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism|therapeutic","DiseaseCategories":"Cancer|Digestive system disease","DiseaseID":"MESH:D008114","DiseaseName":"Liver Neoplasms, Experimental","Input":"d003634","PubMedIDs":"21035526|3787112|6191977|6499117|7817132|838519"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Immune system disease|Lymphatic disease","DiseaseID":"MESH:D008228","DiseaseName":"Lymphoma, Non-Hodgkin","Input":"d003634","PubMedIDs":"22328999|25018334|25337994"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D000071069","DiseaseName":"Multiple Chronic Conditions","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D009207","DiseaseName":"Myoclonus","Input":"d003634","PubMedIDs":"1316118|2986413|311446|37558|520416|6378651|7991214"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer","DiseaseID":"MESH:D009369","DiseaseName":"Neoplasms","Input":"d003634","PubMedIDs":"23684557|8820588"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D019954","DiseaseName":"Neurobehavioral Manifestations","Input":"d003634","PubMedIDs":"26414943"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nutrition disorder|Signs and symptoms","DiseaseID":"MESH:D009765","DiseaseName":"Obesity","Input":"d003634","PubMedIDs":"21298090|31682807|31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D009845","DiseaseName":"Oligospermia","Input":"d003634","PubMedIDs":"19303595"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Urogenital disease (female)","DiseaseID":"MESH:D010049","DiseaseName":"Ovarian Diseases","Input":"d003634","PubMedIDs":"30207508|31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nutrition disorder|Signs and symptoms","DiseaseID":"MESH:D050177","DiseaseName":"Overweight","Input":"d003634","PubMedIDs":"22027556|31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseID":"MESH:D011041","DiseaseName":"Poisoning","Input":"d003634","PubMedIDs":"18594997|2436354|28743278|4116490"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Metabolic disease","DiseaseID":"MESH:D011236","DiseaseName":"Prediabetic State","Input":"d003634","PubMedIDs":"31746186"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pregnancy complication","DiseaseID":"MESH:D011297","DiseaseName":"Prenatal Exposure Delayed Effects","Input":"d003634","PubMedIDs":"26414943|28263910|30822522|31682807|31755359"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D011469","DiseaseName":"Prostatic Diseases","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cancer|Urogenital disease (male)","DiseaseID":"MESH:D011471","DiseaseName":"Prostatic Neoplasms","Input":"d003634","PubMedIDs":"12584743"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D012021","DiseaseName":"Reflex, Abnormal","Input":"d003634","PubMedIDs":"3798479"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D012640","DiseaseName":"Seizures","Input":"d003634","PubMedIDs":"7991214"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Urogenital disease (male)","DiseaseID":"MESH:D013733","DiseaseName":"Testicular Diseases","Input":"d003634","PubMedIDs":"31682807"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D014202","DiseaseName":"Tremor","Input":"d003634","PubMedIDs":"2412143|2581196|3088650|3929313"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D014570","DiseaseName":"Urologic Diseases","Input":"d003634","PubMedIDs":"16487989"},{"CasRN":"50-29-3","ChemicalID":"D003634","ChemicalName":"DDT","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nutrition disorder","DiseaseID":"MESH:D014808","DiseaseName":"Vitamin D Deficiency","Input":"d003634","PubMedIDs":"22295072"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D000170","DiseaseName":"Acrodynia","Input":"mercury","PubMedIDs":"18485443"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D058186","DiseaseName":"Acute Kidney Injury","Input":"mercury","PubMedIDs":"21073006|21821123"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms|Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D000419","DiseaseName":"Albuminuria","Input":"mercury","PubMedIDs":"18335109"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease|Nervous system disease","DiseaseID":"MESH:D000690","DiseaseName":"Amyotrophic Lateral Sclerosis","Input":"mercury","PubMedIDs":"27377857"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D000782","DiseaseName":"Aneuploidy","Input":"mercury","PubMedIDs":"30763314"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Respiratory tract disease","DiseaseID":"MESH:D001249","DiseaseName":"Asthma","Input":"mercury","PubMedIDs":"20562055"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D001289","DiseaseName":"Attention Deficit Disorder with Hyperactivity","Input":"mercury","PubMedIDs":"33765546"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D000067877","DiseaseName":"Autism Spectrum Disorder","Input":"mercury","PubMedIDs":"24284360|33765546"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D001321","DiseaseName":"Autistic Disorder","Input":"mercury","PubMedIDs":"17497416|24676906"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease","DiseaseID":"MESH:D001327","DiseaseName":"Autoimmune Diseases","Input":"mercury","PubMedIDs":"10820171|10857791|11007760|11171521|11490030|12743535|12825236|14599845|14616778|15522122|16634805|18641331|20176347|22136142|22578563|24818014|25237059|28453771|8513597|9931279"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D001724","DiseaseName":"Birth Weight","Input":"mercury","PubMedIDs":"20194072|32585550"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D001835","DiseaseName":"Body Weight","Input":"mercury","PubMedIDs":"23824410"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease|Genetic disease (inborn)","DiseaseID":"MESH:D002311","DiseaseName":"Cardiomyopathy, Dilated","Input":"mercury","PubMedIDs":"10334427"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease","DiseaseID":"MESH:D002318","DiseaseName":"Cardiovascular Diseases","Input":"mercury","PubMedIDs":"18093879|20308036|20554312|22184584"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Eye disease","DiseaseID":"MESH:D002386","DiseaseName":"Cataract","Input":"mercury","PubMedIDs":"20716509"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D002493","DiseaseName":"Central Nervous System Diseases","Input":"mercury","PubMedIDs":"21998611"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D056486","DiseaseName":"Chemical and Drug Induced Liver Injury","Input":"mercury","PubMedIDs":"22888199"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D002869","DiseaseName":"Chromosome Aberrations","Input":"mercury","PubMedIDs":"17176674"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D003072","DiseaseName":"Cognition Disorders","Input":"mercury","PubMedIDs":"18226494"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Congenital abnormality","DiseaseID":"MESH:D000013","DiseaseName":"Congenital Abnormalities","Input":"mercury","PubMedIDs":"24830451"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseID":"MESH:D009358","DiseaseName":"Congenital, Hereditary, and Neonatal Diseases and Abnormalities","Input":"mercury","PubMedIDs":"18501191"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease","DiseaseID":"MESH:D003324","DiseaseName":"Coronary Artery Disease","Input":"mercury","PubMedIDs":"28431391"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Skin disease","DiseaseID":"MESH:D017449","DiseaseName":"Dermatitis, Allergic Contact","Input":"mercury","PubMedIDs":"16823706"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Metabolic disease","DiseaseID":"MESH:D003920","DiseaseName":"Diabetes Mellitus","Input":"mercury","PubMedIDs":"23423697"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"therapeutic","DiseaseCategories":"Endocrine system disease|Immune system disease|Metabolic disease","DiseaseID":"MESH:D003922","DiseaseName":"Diabetes Mellitus, Type 1","Input":"mercury","PubMedIDs":"11529910"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Metabolic disease","DiseaseID":"MESH:D003924","DiseaseName":"Diabetes Mellitus, Type 2","Input":"mercury","PubMedIDs":"26497629"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Eye disease","DiseaseID":"MESH:D015352","DiseaseName":"Dry Eye Syndromes","Input":"mercury","PubMedIDs":"30746909"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Skin disease","DiseaseID":"MESH:D005076","DiseaseName":"Exanthema","Input":"mercury","PubMedIDs":"11390425"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Eye disease","DiseaseID":"MESH:D005128","DiseaseName":"Eye Diseases","Input":"mercury","PubMedIDs":"21473382"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Digestive system disease","DiseaseID":"MESH:D005234","DiseaseName":"Fatty Liver","Input":"mercury","PubMedIDs":"21126940"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D005262","DiseaseName":"Feminization","Input":"mercury","PubMedIDs":"22300406"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D015433","DiseaseName":"Glomerulonephritis, Membranous","Input":"mercury","PubMedIDs":"20089494"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Blood disease|Immune system disease|Signs and symptoms","DiseaseID":"MESH:D006942","DiseaseName":"Hypergammaglobulinemia","Input":"mercury","PubMedIDs":"11490030|18314309|25237059"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease","DiseaseID":"MESH:D006943","DiseaseName":"Hyperglycemia","Input":"mercury","PubMedIDs":"15531641"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease","DiseaseID":"MESH:D006967","DiseaseName":"Hypersensitivity","Input":"mercury","PubMedIDs":"10886235"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease","DiseaseID":"MESH:D006968","DiseaseName":"Hypersensitivity, Delayed","Input":"mercury","PubMedIDs":"11379047"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Cardiovascular disease","DiseaseID":"MESH:D006973","DiseaseName":"Hypertension","Input":"mercury","PubMedIDs":"23824410|26612503"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease","DiseaseID":"MESH:D015228","DiseaseName":"Hypertriglyceridemia","Input":"mercury","PubMedIDs":"23824410"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease","DiseaseID":"MESH:D007154","DiseaseName":"Immune System Diseases","Input":"mercury","PubMedIDs":"12849721|22080037"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease","DiseaseID":"MESH:D007160","DiseaseName":"Immunoproliferative Disorders","Input":"mercury","PubMedIDs":"12594276"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)","DiseaseID":"MESH:D007247","DiseaseName":"Infertility, Female","Input":"mercury","PubMedIDs":"12371497"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (male)","DiseaseID":"MESH:D007248","DiseaseName":"Infertility, Male","Input":"mercury","PubMedIDs":"16136024"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D007249","DiseaseName":"Inflammation","Input":"mercury","PubMedIDs":"16428073|25237059|28453771|8874531"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder|Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D008607","DiseaseName":"Intellectual Disability","Input":"mercury","PubMedIDs":"22300406"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D007674","DiseaseName":"Kidney Diseases","Input":"mercury","PubMedIDs":"11090055|17068093|17934191|18540850|21206114"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder|Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D007859","DiseaseName":"Learning Disabilities","Input":"mercury","PubMedIDs":"23742082"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Skin disease","DiseaseID":"MESH:D017512","DiseaseName":"Lichenoid Eruptions","Input":"mercury","PubMedIDs":"18393961"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Immune system disease|Lymphatic disease","DiseaseID":"MESH:D008232","DiseaseName":"Lymphoproliferative Disorders","Input":"mercury","PubMedIDs":"18314309"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D008569","DiseaseName":"Memory Disorders","Input":"mercury","PubMedIDs":"23742082"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseID":"MESH:D008630","DiseaseName":"Mercury Poisoning","Input":"mercury","PubMedIDs":"16891999|18155151|18329067|18365070|18501191|18594997|19039081|19040355|21206114|21821123|22018916|22174729|23330093|24319713|24522097|26678598"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D020262","DiseaseName":"Mercury Poisoning, Nervous System","Input":"mercury","PubMedIDs":"18226494|18950830|21984480|30076900|7781173"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease","DiseaseID":"MESH:D024821","DiseaseName":"Metabolic Syndrome","Input":"mercury","PubMedIDs":"19221698|23824410|25053396|27420091|32176304"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D048629","DiseaseName":"Micronuclei, Chromosome-Defective","Input":"mercury","PubMedIDs":"17456398"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Metabolic disease","DiseaseID":"MESH:D028361","DiseaseName":"Mitochondrial Diseases","Input":"mercury","PubMedIDs":"21146384"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D051346","DiseaseName":"Mobility Limitation","Input":"mercury","PubMedIDs":"25056781"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D009069","DiseaseName":"Movement Disorders","Input":"mercury","PubMedIDs":"19628251"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D009395","DiseaseName":"Nephritis, Interstitial","Input":"mercury","PubMedIDs":"10820171"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D009402","DiseaseName":"Nephrosis, Lipoid","Input":"mercury","PubMedIDs":"2947217"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D009404","DiseaseName":"Nephrotic Syndrome","Input":"mercury","PubMedIDs":"2947217"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (process)","DiseaseID":"MESH:D009410","DiseaseName":"Nerve Degeneration","Input":"mercury","PubMedIDs":"19288233"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D009422","DiseaseName":"Nervous System Diseases","Input":"mercury","PubMedIDs":"20929057"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D019954","DiseaseName":"Neurobehavioral Manifestations","Input":"mercury","PubMedIDs":"21124968|23827881|25056781|25109824|25748564"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Mental disorder","DiseaseID":"MESH:D065886","DiseaseName":"Neurodevelopmental Disorders","Input":"mercury","PubMedIDs":"27262785"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D009461","DiseaseName":"Neurologic Manifestations","Input":"mercury","PubMedIDs":"22184584"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D020258","DiseaseName":"Neurotoxicity Syndromes","Input":"mercury","PubMedIDs":"20222982|20226812"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nutrition disorder|Signs and symptoms","DiseaseID":"MESH:D009765","DiseaseName":"Obesity","Input":"mercury","PubMedIDs":"23824410|28029015"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease|Signs and symptoms","DiseaseID":"MESH:D010468","DiseaseName":"Perceptual Disorders","Input":"mercury","PubMedIDs":"26658153"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Nervous system disease","DiseaseID":"MESH:D010523","DiseaseName":"Peripheral Nervous System Diseases","Input":"mercury","PubMedIDs":"21998611"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Endocrine system disease|Metabolic disease","DiseaseID":"MESH:D011236","DiseaseName":"Prediabetic State","Input":"mercury","PubMedIDs":"26497629"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pregnancy complication","DiseaseID":"MESH:D047928","DiseaseName":"Premature Birth","Input":"mercury","PubMedIDs":"32575788"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pregnancy complication","DiseaseID":"MESH:D011297","DiseaseName":"Prenatal Exposure Delayed Effects","Input":"mercury","PubMedIDs":"20194072|23603214|25748564|27262785|31421448|32176304"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pregnancy complication","DiseaseID":"MESH:D049188","DiseaseName":"Prenatal Injuries","Input":"mercury","PubMedIDs":"18501191"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms|Urogenital disease (female)|Urogenital disease (male)","DiseaseID":"MESH:D011507","DiseaseName":"Proteinuria","Input":"mercury","PubMedIDs":"10820171|2947217"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Respiratory tract disease","DiseaseID":"MESH:D012128","DiseaseName":"Respiratory Distress Syndrome","Input":"mercury","PubMedIDs":"26678598"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D012816","DiseaseName":"Signs and Symptoms","Input":"mercury","PubMedIDs":"25404430"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Pathology (anatomical condition)","DiseaseID":"MESH:D013163","DiseaseName":"Splenomegaly","Input":"mercury","PubMedIDs":"12928768|25237059"},{"CasRN":"7439-97-6","ChemicalID":"D008628","ChemicalName":"Mercury","DirectEvidence":"marker/mechanism","DiseaseCategories":"Signs and symptoms","DiseaseID":"MESH:D015431","DiseaseName":"Weight Loss","Input":"mercury","PubMedIDs":"12928768|30103553"}] \ No newline at end of file +[ + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pregnancy complication", + "DiseaseID": "MESH:D000022", + "DiseaseName": "Abortion, Spontaneous", + "Input": "d003634", + "PubMedIDs": "16120699" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Digestive system disease", + "DiseaseID": "MESH:D018248", + "DiseaseName": "Adenoma, Liver Cell", + "Input": "d003634", + "PubMedIDs": "12597452" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Occupational disease", + "DiseaseID": "MESH:D000382", + "DiseaseName": "Agricultural Workers' Diseases", + "Input": "d003634", + "PubMedIDs": "12584743|16487989|17182642|17495700|17932376|17975796|19541724|20061368|20730623|24064777" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D053627", + "DiseaseName": "Asthenozoospermia", + "Input": "d003634", + "PubMedIDs": "19303595" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Respiratory tract disease", + "DiseaseID": "MESH:D001249", + "DiseaseName": "Asthma", + "Input": "d003634", + "PubMedIDs": "17932376|19541724" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D053713", + "DiseaseName": "Azoospermia", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Skin disease", + "DiseaseID": "MESH:D001943", + "DiseaseName": "Breast Neoplasms", + "Input": "d003634", + "PubMedIDs": "12709520|16792888|17938728" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)|Respiratory tract disease", + "DiseaseID": "MESH:D029481", + "DiseaseName": "Bronchitis, Chronic", + "Input": "d003634", + "PubMedIDs": "17495700|17975796" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Digestive system disease", + "DiseaseID": "MESH:D006528", + "DiseaseName": "Carcinoma, Hepatocellular", + "Input": "d003634", + "PubMedIDs": "12597452|21035526|6667461" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease|Pathology (anatomical condition)", + "DiseaseID": "MESH:D006332", + "DiseaseName": "Cardiomegaly", + "Input": "d003634", + "PubMedIDs": "27325568" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D056486", + "DiseaseName": "Chemical and Drug Induced Liver Injury", + "Input": "d003634", + "PubMedIDs": "11272408|18675336" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D002653", + "DiseaseName": "Child Behavior Disorders", + "Input": "d003634", + "PubMedIDs": "27466755" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D003072", + "DiseaseName": "Cognition Disorders", + "Input": "d003634", + "PubMedIDs": "26630154" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Digestive system disease", + "DiseaseID": "MESH:D003110", + "DiseaseName": "Colonic Neoplasms", + "Input": "d003634", + "PubMedIDs": "20730623" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Congenital abnormality", + "DiseaseID": "MESH:D000013", + "DiseaseName": "Congenital Abnormalities", + "Input": "d003634", + "PubMedIDs": "15095906" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseID": "MESH:D009358", + "DiseaseName": "Congenital, Hereditary, and Neonatal Diseases and Abnormalities", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Congenital abnormality|Endocrine system disease|Urogenital disease (male)", + "DiseaseID": "MESH:D003456", + "DiseaseName": "Cryptorchidism", + "Input": "d003634", + "PubMedIDs": "16835070" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D003866", + "DiseaseName": "Depressive Disorder", + "Input": "d003634", + "PubMedIDs": "28263910" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Metabolic disease", + "DiseaseID": "MESH:D003920", + "DiseaseName": "Diabetes Mellitus", + "Input": "d003634", + "PubMedIDs": "31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseID": "MESH:D064420", + "DiseaseName": "Drug-Related Side Effects and Adverse Reactions", + "Input": "d003634", + "PubMedIDs": "2370251" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Respiratory tract disease|Signs and symptoms", + "DiseaseID": "MESH:D004417", + "DiseaseName": "Dyspnea", + "Input": "d003634", + "PubMedIDs": "16487989" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Occupational disease|Respiratory tract disease", + "DiseaseID": "MESH:D005203", + "DiseaseName": "Farmer's Lung", + "Input": "d003634", + "PubMedIDs": "17182642" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D005234", + "DiseaseName": "Fatty Liver", + "Input": "d003634", + "PubMedIDs": "31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Fetal disease|Pathology (process)|Pregnancy complication", + "DiseaseID": "MESH:D005317", + "DiseaseName": "Fetal Growth Retardation", + "Input": "d003634", + "PubMedIDs": "22310945" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D005334", + "DiseaseName": "Fever", + "Input": "d003634", + "PubMedIDs": "3088650" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D006505", + "DiseaseName": "Hepatitis", + "Input": "d003634", + "PubMedIDs": "16487989" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease|Pathology (anatomical condition)", + "DiseaseID": "MESH:D006529", + "DiseaseName": "Hepatomegaly", + "Input": "d003634", + "PubMedIDs": "11272408|23684557|2387028" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease", + "DiseaseID": "MESH:D006973", + "DiseaseName": "Hypertension", + "Input": "d003634", + "PubMedIDs": "27325568" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease", + "DiseaseID": "MESH:D007037", + "DiseaseName": "Hypothyroidism", + "Input": "d003634", + "PubMedIDs": "20061368|24064777" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Infant-newborn disease", + "DiseaseID": "MESH:D007232", + "DiseaseName": "Infant, Newborn, Diseases", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D007248", + "DiseaseName": "Infertility, Male", + "Input": "d003634", + "PubMedIDs": "17157474|17192596|19303595" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease", + "DiseaseID": "MESH:D007333", + "DiseaseName": "Insulin Resistance", + "Input": "d003634", + "PubMedIDs": "31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D007674", + "DiseaseName": "Kidney Diseases", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder|Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D007859", + "DiseaseName": "Learning Disabilities", + "Input": "d003634", + "PubMedIDs": "7589230" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease|Pathology (process)", + "DiseaseID": "MESH:D008103", + "DiseaseName": "Liver Cirrhosis", + "Input": "d003634", + "PubMedIDs": "32508177" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D008107", + "DiseaseName": "Liver Diseases", + "Input": "d003634", + "PubMedIDs": "15729006" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Digestive system disease", + "DiseaseID": "MESH:D008113", + "DiseaseName": "Liver Neoplasms", + "Input": "d003634", + "PubMedIDs": "11948501|15975961|2431762|3621148" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism|therapeutic", + "DiseaseCategories": "Cancer|Digestive system disease", + "DiseaseID": "MESH:D008114", + "DiseaseName": "Liver Neoplasms, Experimental", + "Input": "d003634", + "PubMedIDs": "21035526|3787112|6191977|6499117|7817132|838519" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Immune system disease|Lymphatic disease", + "DiseaseID": "MESH:D008228", + "DiseaseName": "Lymphoma, Non-Hodgkin", + "Input": "d003634", + "PubMedIDs": "22328999|25018334|25337994" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D000071069", + "DiseaseName": "Multiple Chronic Conditions", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D009207", + "DiseaseName": "Myoclonus", + "Input": "d003634", + "PubMedIDs": "1316118|2986413|311446|37558|520416|6378651|7991214" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer", + "DiseaseID": "MESH:D009369", + "DiseaseName": "Neoplasms", + "Input": "d003634", + "PubMedIDs": "23684557|8820588" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D019954", + "DiseaseName": "Neurobehavioral Manifestations", + "Input": "d003634", + "PubMedIDs": "26414943" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nutrition disorder|Signs and symptoms", + "DiseaseID": "MESH:D009765", + "DiseaseName": "Obesity", + "Input": "d003634", + "PubMedIDs": "21298090|31682807|31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D009845", + "DiseaseName": "Oligospermia", + "Input": "d003634", + "PubMedIDs": "19303595" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Urogenital disease (female)", + "DiseaseID": "MESH:D010049", + "DiseaseName": "Ovarian Diseases", + "Input": "d003634", + "PubMedIDs": "30207508|31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nutrition disorder|Signs and symptoms", + "DiseaseID": "MESH:D050177", + "DiseaseName": "Overweight", + "Input": "d003634", + "PubMedIDs": "22027556|31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseID": "MESH:D011041", + "DiseaseName": "Poisoning", + "Input": "d003634", + "PubMedIDs": "18594997|2436354|28743278|4116490" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Metabolic disease", + "DiseaseID": "MESH:D011236", + "DiseaseName": "Prediabetic State", + "Input": "d003634", + "PubMedIDs": "31746186" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pregnancy complication", + "DiseaseID": "MESH:D011297", + "DiseaseName": "Prenatal Exposure Delayed Effects", + "Input": "d003634", + "PubMedIDs": "26414943|28263910|30822522|31682807|31755359" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D011469", + "DiseaseName": "Prostatic Diseases", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cancer|Urogenital disease (male)", + "DiseaseID": "MESH:D011471", + "DiseaseName": "Prostatic Neoplasms", + "Input": "d003634", + "PubMedIDs": "12584743" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D012021", + "DiseaseName": "Reflex, Abnormal", + "Input": "d003634", + "PubMedIDs": "3798479" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D012640", + "DiseaseName": "Seizures", + "Input": "d003634", + "PubMedIDs": "7991214" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Urogenital disease (male)", + "DiseaseID": "MESH:D013733", + "DiseaseName": "Testicular Diseases", + "Input": "d003634", + "PubMedIDs": "31682807" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D014202", + "DiseaseName": "Tremor", + "Input": "d003634", + "PubMedIDs": "2412143|2581196|3088650|3929313" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D014570", + "DiseaseName": "Urologic Diseases", + "Input": "d003634", + "PubMedIDs": "16487989" + }, + { + "CasRN": "50-29-3", + "ChemicalID": "D003634", + "ChemicalName": "DDT", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nutrition disorder", + "DiseaseID": "MESH:D014808", + "DiseaseName": "Vitamin D Deficiency", + "Input": "d003634", + "PubMedIDs": "22295072" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D000170", + "DiseaseName": "Acrodynia", + "Input": "mercury", + "PubMedIDs": "18485443" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D058186", + "DiseaseName": "Acute Kidney Injury", + "Input": "mercury", + "PubMedIDs": "21073006|21821123" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms|Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D000419", + "DiseaseName": "Albuminuria", + "Input": "mercury", + "PubMedIDs": "18335109" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease|Nervous system disease", + "DiseaseID": "MESH:D000690", + "DiseaseName": "Amyotrophic Lateral Sclerosis", + "Input": "mercury", + "PubMedIDs": "27377857" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D000782", + "DiseaseName": "Aneuploidy", + "Input": "mercury", + "PubMedIDs": "30763314" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Respiratory tract disease", + "DiseaseID": "MESH:D001249", + "DiseaseName": "Asthma", + "Input": "mercury", + "PubMedIDs": "20562055" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D001289", + "DiseaseName": "Attention Deficit Disorder with Hyperactivity", + "Input": "mercury", + "PubMedIDs": "33765546" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D000067877", + "DiseaseName": "Autism Spectrum Disorder", + "Input": "mercury", + "PubMedIDs": "24284360|33765546" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D001321", + "DiseaseName": "Autistic Disorder", + "Input": "mercury", + "PubMedIDs": "17497416|24676906" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease", + "DiseaseID": "MESH:D001327", + "DiseaseName": "Autoimmune Diseases", + "Input": "mercury", + "PubMedIDs": "10820171|10857791|11007760|11171521|11490030|12743535|12825236|14599845|14616778|15522122|16634805|18641331|20176347|22136142|22578563|24818014|25237059|28453771|8513597|9931279" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D001724", + "DiseaseName": "Birth Weight", + "Input": "mercury", + "PubMedIDs": "20194072|32585550" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D001835", + "DiseaseName": "Body Weight", + "Input": "mercury", + "PubMedIDs": "23824410" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease|Genetic disease (inborn)", + "DiseaseID": "MESH:D002311", + "DiseaseName": "Cardiomyopathy, Dilated", + "Input": "mercury", + "PubMedIDs": "10334427" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease", + "DiseaseID": "MESH:D002318", + "DiseaseName": "Cardiovascular Diseases", + "Input": "mercury", + "PubMedIDs": "18093879|20308036|20554312|22184584" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Eye disease", + "DiseaseID": "MESH:D002386", + "DiseaseName": "Cataract", + "Input": "mercury", + "PubMedIDs": "20716509" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D002493", + "DiseaseName": "Central Nervous System Diseases", + "Input": "mercury", + "PubMedIDs": "21998611" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D056486", + "DiseaseName": "Chemical and Drug Induced Liver Injury", + "Input": "mercury", + "PubMedIDs": "22888199" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D002869", + "DiseaseName": "Chromosome Aberrations", + "Input": "mercury", + "PubMedIDs": "17176674" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D003072", + "DiseaseName": "Cognition Disorders", + "Input": "mercury", + "PubMedIDs": "18226494" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Congenital abnormality", + "DiseaseID": "MESH:D000013", + "DiseaseName": "Congenital Abnormalities", + "Input": "mercury", + "PubMedIDs": "24830451" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseID": "MESH:D009358", + "DiseaseName": "Congenital, Hereditary, and Neonatal Diseases and Abnormalities", + "Input": "mercury", + "PubMedIDs": "18501191" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease", + "DiseaseID": "MESH:D003324", + "DiseaseName": "Coronary Artery Disease", + "Input": "mercury", + "PubMedIDs": "28431391" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Skin disease", + "DiseaseID": "MESH:D017449", + "DiseaseName": "Dermatitis, Allergic Contact", + "Input": "mercury", + "PubMedIDs": "16823706" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Metabolic disease", + "DiseaseID": "MESH:D003920", + "DiseaseName": "Diabetes Mellitus", + "Input": "mercury", + "PubMedIDs": "23423697" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "therapeutic", + "DiseaseCategories": "Endocrine system disease|Immune system disease|Metabolic disease", + "DiseaseID": "MESH:D003922", + "DiseaseName": "Diabetes Mellitus, Type 1", + "Input": "mercury", + "PubMedIDs": "11529910" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Metabolic disease", + "DiseaseID": "MESH:D003924", + "DiseaseName": "Diabetes Mellitus, Type 2", + "Input": "mercury", + "PubMedIDs": "26497629" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Eye disease", + "DiseaseID": "MESH:D015352", + "DiseaseName": "Dry Eye Syndromes", + "Input": "mercury", + "PubMedIDs": "30746909" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Skin disease", + "DiseaseID": "MESH:D005076", + "DiseaseName": "Exanthema", + "Input": "mercury", + "PubMedIDs": "11390425" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Eye disease", + "DiseaseID": "MESH:D005128", + "DiseaseName": "Eye Diseases", + "Input": "mercury", + "PubMedIDs": "21473382" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Digestive system disease", + "DiseaseID": "MESH:D005234", + "DiseaseName": "Fatty Liver", + "Input": "mercury", + "PubMedIDs": "21126940" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D005262", + "DiseaseName": "Feminization", + "Input": "mercury", + "PubMedIDs": "22300406" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D015433", + "DiseaseName": "Glomerulonephritis, Membranous", + "Input": "mercury", + "PubMedIDs": "20089494" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Blood disease|Immune system disease|Signs and symptoms", + "DiseaseID": "MESH:D006942", + "DiseaseName": "Hypergammaglobulinemia", + "Input": "mercury", + "PubMedIDs": "11490030|18314309|25237059" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease", + "DiseaseID": "MESH:D006943", + "DiseaseName": "Hyperglycemia", + "Input": "mercury", + "PubMedIDs": "15531641" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease", + "DiseaseID": "MESH:D006967", + "DiseaseName": "Hypersensitivity", + "Input": "mercury", + "PubMedIDs": "10886235" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease", + "DiseaseID": "MESH:D006968", + "DiseaseName": "Hypersensitivity, Delayed", + "Input": "mercury", + "PubMedIDs": "11379047" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Cardiovascular disease", + "DiseaseID": "MESH:D006973", + "DiseaseName": "Hypertension", + "Input": "mercury", + "PubMedIDs": "23824410|26612503" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease", + "DiseaseID": "MESH:D015228", + "DiseaseName": "Hypertriglyceridemia", + "Input": "mercury", + "PubMedIDs": "23824410" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease", + "DiseaseID": "MESH:D007154", + "DiseaseName": "Immune System Diseases", + "Input": "mercury", + "PubMedIDs": "12849721|22080037" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease", + "DiseaseID": "MESH:D007160", + "DiseaseName": "Immunoproliferative Disorders", + "Input": "mercury", + "PubMedIDs": "12594276" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)", + "DiseaseID": "MESH:D007247", + "DiseaseName": "Infertility, Female", + "Input": "mercury", + "PubMedIDs": "12371497" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (male)", + "DiseaseID": "MESH:D007248", + "DiseaseName": "Infertility, Male", + "Input": "mercury", + "PubMedIDs": "16136024" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D007249", + "DiseaseName": "Inflammation", + "Input": "mercury", + "PubMedIDs": "16428073|25237059|28453771|8874531" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder|Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D008607", + "DiseaseName": "Intellectual Disability", + "Input": "mercury", + "PubMedIDs": "22300406" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D007674", + "DiseaseName": "Kidney Diseases", + "Input": "mercury", + "PubMedIDs": "11090055|17068093|17934191|18540850|21206114" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder|Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D007859", + "DiseaseName": "Learning Disabilities", + "Input": "mercury", + "PubMedIDs": "23742082" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Skin disease", + "DiseaseID": "MESH:D017512", + "DiseaseName": "Lichenoid Eruptions", + "Input": "mercury", + "PubMedIDs": "18393961" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Immune system disease|Lymphatic disease", + "DiseaseID": "MESH:D008232", + "DiseaseName": "Lymphoproliferative Disorders", + "Input": "mercury", + "PubMedIDs": "18314309" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D008569", + "DiseaseName": "Memory Disorders", + "Input": "mercury", + "PubMedIDs": "23742082" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseID": "MESH:D008630", + "DiseaseName": "Mercury Poisoning", + "Input": "mercury", + "PubMedIDs": "16891999|18155151|18329067|18365070|18501191|18594997|19039081|19040355|21206114|21821123|22018916|22174729|23330093|24319713|24522097|26678598" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D020262", + "DiseaseName": "Mercury Poisoning, Nervous System", + "Input": "mercury", + "PubMedIDs": "18226494|18950830|21984480|30076900|7781173" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease", + "DiseaseID": "MESH:D024821", + "DiseaseName": "Metabolic Syndrome", + "Input": "mercury", + "PubMedIDs": "19221698|23824410|25053396|27420091|32176304" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D048629", + "DiseaseName": "Micronuclei, Chromosome-Defective", + "Input": "mercury", + "PubMedIDs": "17456398" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Metabolic disease", + "DiseaseID": "MESH:D028361", + "DiseaseName": "Mitochondrial Diseases", + "Input": "mercury", + "PubMedIDs": "21146384" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D051346", + "DiseaseName": "Mobility Limitation", + "Input": "mercury", + "PubMedIDs": "25056781" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D009069", + "DiseaseName": "Movement Disorders", + "Input": "mercury", + "PubMedIDs": "19628251" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D009395", + "DiseaseName": "Nephritis, Interstitial", + "Input": "mercury", + "PubMedIDs": "10820171" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D009402", + "DiseaseName": "Nephrosis, Lipoid", + "Input": "mercury", + "PubMedIDs": "2947217" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D009404", + "DiseaseName": "Nephrotic Syndrome", + "Input": "mercury", + "PubMedIDs": "2947217" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (process)", + "DiseaseID": "MESH:D009410", + "DiseaseName": "Nerve Degeneration", + "Input": "mercury", + "PubMedIDs": "19288233" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D009422", + "DiseaseName": "Nervous System Diseases", + "Input": "mercury", + "PubMedIDs": "20929057" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D019954", + "DiseaseName": "Neurobehavioral Manifestations", + "Input": "mercury", + "PubMedIDs": "21124968|23827881|25056781|25109824|25748564" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Mental disorder", + "DiseaseID": "MESH:D065886", + "DiseaseName": "Neurodevelopmental Disorders", + "Input": "mercury", + "PubMedIDs": "27262785" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D009461", + "DiseaseName": "Neurologic Manifestations", + "Input": "mercury", + "PubMedIDs": "22184584" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D020258", + "DiseaseName": "Neurotoxicity Syndromes", + "Input": "mercury", + "PubMedIDs": "20222982|20226812" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nutrition disorder|Signs and symptoms", + "DiseaseID": "MESH:D009765", + "DiseaseName": "Obesity", + "Input": "mercury", + "PubMedIDs": "23824410|28029015" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease|Signs and symptoms", + "DiseaseID": "MESH:D010468", + "DiseaseName": "Perceptual Disorders", + "Input": "mercury", + "PubMedIDs": "26658153" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Nervous system disease", + "DiseaseID": "MESH:D010523", + "DiseaseName": "Peripheral Nervous System Diseases", + "Input": "mercury", + "PubMedIDs": "21998611" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Endocrine system disease|Metabolic disease", + "DiseaseID": "MESH:D011236", + "DiseaseName": "Prediabetic State", + "Input": "mercury", + "PubMedIDs": "26497629" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pregnancy complication", + "DiseaseID": "MESH:D047928", + "DiseaseName": "Premature Birth", + "Input": "mercury", + "PubMedIDs": "32575788" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pregnancy complication", + "DiseaseID": "MESH:D011297", + "DiseaseName": "Prenatal Exposure Delayed Effects", + "Input": "mercury", + "PubMedIDs": "20194072|23603214|25748564|27262785|31421448|32176304" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pregnancy complication", + "DiseaseID": "MESH:D049188", + "DiseaseName": "Prenatal Injuries", + "Input": "mercury", + "PubMedIDs": "18501191" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms|Urogenital disease (female)|Urogenital disease (male)", + "DiseaseID": "MESH:D011507", + "DiseaseName": "Proteinuria", + "Input": "mercury", + "PubMedIDs": "10820171|2947217" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Respiratory tract disease", + "DiseaseID": "MESH:D012128", + "DiseaseName": "Respiratory Distress Syndrome", + "Input": "mercury", + "PubMedIDs": "26678598" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D012816", + "DiseaseName": "Signs and Symptoms", + "Input": "mercury", + "PubMedIDs": "25404430" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Pathology (anatomical condition)", + "DiseaseID": "MESH:D013163", + "DiseaseName": "Splenomegaly", + "Input": "mercury", + "PubMedIDs": "12928768|25237059" + }, + { + "CasRN": "7439-97-6", + "ChemicalID": "D008628", + "ChemicalName": "Mercury", + "DirectEvidence": "marker/mechanism", + "DiseaseCategories": "Signs and symptoms", + "DiseaseID": "MESH:D015431", + "DiseaseName": "Weight Loss", + "Input": "mercury", + "PubMedIDs": "12928768|30103553" + } +] diff --git a/__test__/data/ebi_protein/edge.json b/__test__/data/ebi_protein/edge.json index 4d6ff30..a83799b 100644 --- a/__test__/data/ebi_protein/edge.json +++ b/__test__/data/ebi_protein/edge.json @@ -1,51 +1,40 @@ { - "input": "Q93099", - "query_operation": { - "params": { - "accession": "{inputs[0]}" - }, - "path": "/proteins/{accession}", - "path_params": [ - "accession" - ], - "method": "get", - "server": "https://www.ebi.ac.uk/proteins/api", - "tags": [ - "anatomy", - "disease", - "gene", - "phenotype", - "pathway", - "annotation", - "query", - "translator" - ], - "supportBatch": false + "input": "Q93099", + "query_operation": { + "params": { + "accession": "{inputs[0]}" }, - "association": { - "input_id": "UniProtKB", - "input_type": "Protein", - "output_id": "RHEA", - "output_type": "MolecularActivity", - "predicate": "related_to", - "api_name": "EBI Proteins API", - "smartapi": { - "id": "d22b657426375a5295e7da8a303b9893", - "meta": { - "ETag": "62f25b12c5457f6924db7929d91e7d5a2e70de291e7672aebf06fa08d1526d9d", - "github_username": "newgene", - "timestamp": "2020-05-28T00:02:40.483712", - "uptime_status": "good", - "uptime_ts": "2020-06-11T00:05:38.030503", - "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biolink/openapi.yml" - } - } - }, - "response_mapping": { - "related_to": { - "RHEA": "comments.reaction.dbReferences.id", - "name": "comments.reaction.name" - } - }, - "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" -} \ No newline at end of file + "path": "/proteins/{accession}", + "path_params": ["accession"], + "method": "get", + "server": "https://www.ebi.ac.uk/proteins/api", + "tags": ["anatomy", "disease", "gene", "phenotype", "pathway", "annotation", "query", "translator"], + "supportBatch": false + }, + "association": { + "input_id": "UniProtKB", + "input_type": "Protein", + "output_id": "RHEA", + "output_type": "MolecularActivity", + "predicate": "related_to", + "api_name": "EBI Proteins API", + "smartapi": { + "id": "d22b657426375a5295e7da8a303b9893", + "meta": { + "ETag": "62f25b12c5457f6924db7929d91e7d5a2e70de291e7672aebf06fa08d1526d9d", + "github_username": "newgene", + "timestamp": "2020-05-28T00:02:40.483712", + "uptime_status": "good", + "uptime_ts": "2020-06-11T00:05:38.030503", + "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/biolink/openapi.yml" + } + } + }, + "response_mapping": { + "related_to": { + "RHEA": "comments.reaction.dbReferences.id", + "name": "comments.reaction.name" + } + }, + "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" +} diff --git a/__test__/data/ebi_protein/response.json b/__test__/data/ebi_protein/response.json index 5dd49a9..2905521 100644 --- a/__test__/data/ebi_protein/response.json +++ b/__test__/data/ebi_protein/response.json @@ -1,4743 +1,4650 @@ { - "accession": "Q93099", - "id": "HGD_HUMAN", - "proteinExistence": "Evidence at protein level", - "info": { - "type": "Swiss-Prot", - "created": "1997-11-01", - "modified": "2021-04-07", - "version": 192 - }, - "organism": { - "taxonomy": 9606, - "names": [ - { - "type": "scientific", - "value": "Homo sapiens" - }, - { - "type": "common", - "value": "Human" - } + "accession": "Q93099", + "id": "HGD_HUMAN", + "proteinExistence": "Evidence at protein level", + "info": { + "type": "Swiss-Prot", + "created": "1997-11-01", + "modified": "2021-04-07", + "version": 192 + }, + "organism": { + "taxonomy": 9606, + "names": [ + { + "type": "scientific", + "value": "Homo sapiens" + }, + { + "type": "common", + "value": "Human" + } + ], + "lineage": [ + "Eukaryota", + "Metazoa", + "Chordata", + "Craniata", + "Vertebrata", + "Euteleostomi", + "Mammalia", + "Eutheria", + "Euarchontoglires", + "Primates", + "Haplorrhini", + "Catarrhini", + "Hominidae", + "Homo" + ] + }, + "secondaryAccession": ["A8K417", "B2R8Z0"], + "protein": { + "recommendedName": { + "fullName": { + "value": "Homogentisate 1,2-dioxygenase" + }, + "ecNumber": [ + { + "value": "1.13.11.5" + } + ] + }, + "alternativeName": [ + { + "fullName": { + "value": "Homogentisate oxygenase" + } + }, + { + "fullName": { + "value": "Homogentisic acid oxidase" + } + }, + { + "fullName": { + "value": "Homogentisicase" + } + } + ] + }, + "gene": [ + { + "name": { + "value": "HGD" + }, + "synonyms": [ + { + "value": "HGO" + } + ] + } + ], + "comments": [ + { + "type": "CATALYTIC_ACTIVITY", + "reaction": { + "name": "homogentisate + O2 = 4-maleylacetoacetate + H(+)", + "dbReferences": [ + { + "type": "Rhea", + "id": "RHEA:15449" + }, + { + "type": "ChEBI", + "id": "CHEBI:15378" + }, + { + "type": "ChEBI", + "id": "CHEBI:15379" + }, + { + "type": "ChEBI", + "id": "CHEBI:16169" + }, + { + "type": "ChEBI", + "id": "CHEBI:17105" + } ], - "lineage": [ - "Eukaryota", - "Metazoa", - "Chordata", - "Craniata", - "Vertebrata", - "Euteleostomi", - "Mammalia", - "Eutheria", - "Euarchontoglires", - "Primates", - "Haplorrhini", - "Catarrhini", - "Hominidae", - "Homo" - ] + "ecNumber": "1.13.11.5" + } }, - "secondaryAccession": [ - "A8K417", - "B2R8Z0" - ], - "protein": { - "recommendedName": { - "fullName": { - "value": "Homogentisate 1,2-dioxygenase" - }, - "ecNumber": [ - { - "value": "1.13.11.5" - } - ] - }, - "alternativeName": [ - { - "fullName": { - "value": "Homogentisate oxygenase" - } - }, - { - "fullName": { - "value": "Homogentisic acid oxidase" - } - }, + { + "type": "COFACTOR", + "cofactors": [ + { + "name": "Fe cation", + "dbReference": { + "type": "CHEBI", + "id": "CHEBI:24875" + } + } + ] + }, + { + "type": "PATHWAY", + "text": [ + { + "value": "Amino-acid degradation; L-phenylalanine degradation; acetoacetate and fumarate from L-phenylalanine: step 4/6" + } + ] + }, + { + "type": "SUBUNIT", + "text": [ + { + "value": "Homohexamer arranged as a dimer of trimers", + "evidences": [ { - "fullName": { - "value": "Homogentisicase" - } + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10876237", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10876237", + "alternativeUrl": "https://europepmc.org/abstract/MED/10876237" + } } - ] + ] + } + ] }, - "gene": [ + { + "type": "INTERACTION", + "interactions": [ + { + "accession1": "Q93099", + "accession2": "Q93099", + "gene": "HGD", + "interactor1": "EBI-3907760", + "interactor2": "EBI-3907760", + "organismDiffer": false, + "experiments": 4 + }, + { + "accession1": "Q93099", + "accession2": "Q96HA8", + "gene": "NTAQ1", + "interactor1": "EBI-3907760", + "interactor2": "EBI-741158", + "organismDiffer": false, + "experiments": 3 + }, + { + "accession1": "Q93099", + "accession2": "P54274", + "gene": "TERF1", + "interactor1": "EBI-3907760", + "interactor2": "EBI-710997", + "organismDiffer": false, + "experiments": 2 + } + ] + }, + { + "type": "TISSUE_SPECIFICITY", + "text": [ { - "name": { - "value": "HGD" - }, - "synonyms": [ - { - "value": "HGO" - } - ] + "value": "Highest expression in the prostate, small intestine, colon, kidney and liver" } - ], - "comments": [ - { - "type": "CATALYTIC_ACTIVITY", - "reaction": { - "name": "homogentisate + O2 = 4-maleylacetoacetate + H(+)", - "dbReferences": [ - { - "type": "Rhea", - "id": "RHEA:15449" - }, - { - "type": "ChEBI", - "id": "CHEBI:15378" - }, - { - "type": "ChEBI", - "id": "CHEBI:15379" - }, - { - "type": "ChEBI", - "id": "CHEBI:16169" - }, - { - "type": "ChEBI", - "id": "CHEBI:17105" - } - ], - "ecNumber": "1.13.11.5" + ] + }, + { + "type": "DISEASE", + "diseaseId": "Alkaptonuria", + "acronym": "AKU", + "dbReference": { + "type": "MIM", + "id": "203500" + }, + "description": { + "value": "An autosomal recessive error of metabolism characterized by an increase in the level of homogentisic acid. The clinical manifestations are urine that turns dark on standing and alkalinization, black ochronotic pigmentation of cartilage and collagenous tissues, and spine arthritis.", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" } - }, - { - "type": "COFACTOR", - "cofactors": [ - { - "name": "Fe cation", - "dbReference": { - "type": "CHEBI", - "id": "CHEBI:24875" - } - } - ] - }, - { - "type": "PATHWAY", - "text": [ - { - "value": "Amino-acid degradation; L-phenylalanine degradation; acetoacetate and fumarate from L-phenylalanine: step 4/6" - } - ] - }, - { - "type": "SUBUNIT", - "text": [ - { - "value": "Homohexamer arranged as a dimer of trimers", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10876237", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10876237", - "alternativeUrl": "https://europepmc.org/abstract/MED/10876237" - } - } - ] - } - ] - }, - { - "type": "INTERACTION", - "interactions": [ - { - "accession1": "Q93099", - "accession2": "Q93099", - "gene": "HGD", - "interactor1": "EBI-3907760", - "interactor2": "EBI-3907760", - "organismDiffer": false, - "experiments": 4 - }, - { - "accession1": "Q93099", - "accession2": "Q96HA8", - "gene": "NTAQ1", - "interactor1": "EBI-3907760", - "interactor2": "EBI-741158", - "organismDiffer": false, - "experiments": 3 - }, - { - "accession1": "Q93099", - "accession2": "P54274", - "gene": "TERF1", - "interactor1": "EBI-3907760", - "interactor2": "EBI-710997", - "organismDiffer": false, - "experiments": 2 - } - ] - }, - { - "type": "TISSUE_SPECIFICITY", - "text": [ - { - "value": "Highest expression in the prostate, small intestine, colon, kidney and liver" - } - ] - }, - { - "type": "DISEASE", - "diseaseId": "Alkaptonuria", - "acronym": "AKU", - "dbReference": { - "type": "MIM", - "id": "203500" - }, - "description": { - "value": "An autosomal recessive error of metabolism characterized by an increase in the level of homogentisic acid. The clinical manifestations are urine that turns dark on standing and alkalinization, black ochronotic pigmentation of cartilage and collagenous tissues, and spine arthritis.", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10340975", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", - "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10594001", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", - "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21437689", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", - "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23353776", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23353776", - "alternativeUrl": "https://europepmc.org/abstract/MED/23353776" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "8782815", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", - "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9154114", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9154114", - "alternativeUrl": "https://europepmc.org/abstract/MED/9154114" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9630082", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9630082", - "alternativeUrl": "https://europepmc.org/abstract/MED/9630082" - } - } - ] - }, - "text": [ - { - "value": "The disease is caused by variants affecting the gene represented in this entry" - } - ] - }, + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10340975", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", + "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10594001", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", + "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21437689", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", + "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23353776", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23353776", + "alternativeUrl": "https://europepmc.org/abstract/MED/23353776" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "8782815", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", + "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9154114", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9154114", + "alternativeUrl": "https://europepmc.org/abstract/MED/9154114" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9630082", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9630082", + "alternativeUrl": "https://europepmc.org/abstract/MED/9630082" + } + } + ] + }, + "text": [ { - "type": "SIMILARITY", - "text": [ - { - "value": "Belongs to the homogentisate dioxygenase family", - "evidences": [ - { - "code": "ECO:0000305" - } - ] - } - ] + "value": "The disease is caused by variants affecting the gene represented in this entry" } - ], - "features": [ - { - "type": "CHAIN", - "category": "MOLECULE_PROCESSING", - "ftId": "PRO_0000220240", - "description": "Homogentisate 1,2-dioxygenase", - "begin": "1", - "end": "445", - "molecule": "" - }, - { - "type": "METAL", - "category": "DOMAINS_AND_SITES", - "description": "Iron", - "begin": "335", - "end": "335", - "molecule": "" - }, - { - "type": "METAL", - "category": "DOMAINS_AND_SITES", - "description": "Iron", - "begin": "341", - "end": "341", - "molecule": "" - }, - { - "type": "METAL", - "category": "DOMAINS_AND_SITES", - "description": "Iron", - "begin": "371", - "end": "371", - "molecule": "" - }, - { - "type": "MOD_RES", - "category": "PTM", - "description": "N6-acetyllysine", - "begin": "98", - "end": "98", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PubMed", - "id": "19608861", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19608861", - "alternativeUrl": "https://europepmc.org/abstract/MED/19608861" - } - } - ] - }, - { - "type": "MOD_RES", - "category": "PTM", - "description": "N6-succinyllysine", - "begin": "414", - "end": "414", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000250", - "source": { - "name": "UniProtKB", - "id": "O09173", - "url": "https://www.uniprot.org/uniprot/O09173" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073076", - "description": "in AKU; dbSNP:rs200412910", - "alternativeSequence": "A", - "begin": "3", - "end": "3", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073077", - "description": "in AKU; dbSNP:rs1458752246", - "alternativeSequence": "K", - "begin": "13", - "end": "13", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073078", - "description": "in AKU", - "alternativeSequence": "N", - "begin": "18", - "end": "18", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_009618", - "description": "in AKU", - "alternativeSequence": "P", - "begin": "25", - "end": "25", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10340975", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", - "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073079", - "description": "in AKU", - "alternativeSequence": "R", - "begin": "33", - "end": "33", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005272", - "description": "in AKU; dbSNP:rs373921680", - "alternativeSequence": "A", - "begin": "42", - "end": "42", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073080", - "description": "in AKU; dbSNP:rs1049246177", - "alternativeSequence": "F", - "begin": "44", - "end": "44", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073081", - "description": "in AKU; dbSNP:rs200808744", - "alternativeSequence": "Q", - "begin": "53", - "end": "53", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005273", - "description": "in AKU", - "alternativeSequence": "G", - "begin": "60", - "end": "60", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073082", - "description": "in AKU; dbSNP:rs1324654414", - "alternativeSequence": "P", - "begin": "61", - "end": "61", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005274", - "description": "in AKU; dbSNP:rs1174584850", - "alternativeSequence": "C", - "begin": "62", - "end": "62", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073083", - "description": "in AKU", - "alternativeSequence": "L", - "begin": "73", - "end": "73", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_049353", - "description": "in dbSNP:rs2255543", - "alternativeSequence": "H", - "begin": "80", - "end": "80", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "14702039", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/14702039", - "alternativeUrl": "https://europepmc.org/abstract/MED/14702039" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "15489334", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/15489334", - "alternativeUrl": "https://europepmc.org/abstract/MED/15489334" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "8782815", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", - "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9244427", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9244427", - "alternativeUrl": "https://europepmc.org/abstract/MED/9244427" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "Citation", - "id": "Ref.2", - "url": "https://www.uniprot.org/uniprot/Q93099#ref2" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "Citation", - "id": "Ref.6", - "url": "https://www.uniprot.org/uniprot/Q93099#ref6" - } - }, - { - "code": "ECO:0007744", - "source": { - "name": "PubMed", - "id": "24275569", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/24275569", - "alternativeUrl": "https://europepmc.org/abstract/MED/24275569" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073084", - "description": "in AKU", - "alternativeSequence": "T", - "begin": "92", - "end": "92", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005275", - "description": "in AKU", - "alternativeSequence": "G", - "begin": "97", - "end": "97", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073085", - "description": "in AKU", - "alternativeSequence": "R", - "begin": "97", - "end": "97", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073086", - "description": "in AKU; dbSNP:rs755734596", - "alternativeSequence": "R", - "begin": "115", - "end": "115", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073087", - "description": "in AKU; dbSNP:rs569846003", - "alternativeSequence": "P", - "begin": "116", - "end": "116", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073088", - "description": "in AKU; dbSNP:rs752153829", - "alternativeSequence": "F", - "begin": "120", - "end": "120", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073089", - "description": "in AKU; dbSNP:rs149165166", - "alternativeSequence": "W", - "begin": "120", - "end": "120", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005276", - "description": "in AKU", - "alternativeSequence": "D", - "begin": "122", - "end": "122", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073090", - "description": "in AKU; dbSNP:rs544956641", - "alternativeSequence": "V", - "begin": "122", - "end": "122", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073091", - "description": "in AKU; dbSNP:rs374473331", - "alternativeSequence": "A", - "begin": "123", - "end": "123", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073092", - "description": "in AKU; dbSNP:rs564979861", - "alternativeSequence": "R", - "begin": "123", - "end": "123", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073093", - "description": "in AKU", - "alternativeSequence": "P", - "begin": "137", - "end": "137", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073094", - "description": "in AKU; dbSNP:rs1553717936", - "alternativeSequence": "A", - "begin": "152", - "end": "152", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005277", - "description": "in AKU; dbSNP:rs775274569", - "alternativeSequence": "G", - "begin": "153", - "end": "153", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073095", - "description": "in AKU; dbSNP:rs375396766", - "alternativeSequence": "L", - "begin": "158", - "end": "158", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005278", - "description": "in AKU; loss of activity; most prevalent mutation in Slovak and Czech patients; dbSNP:rs28941783", - "alternativeSequence": "R", - "begin": "161", - "end": "161", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9154114", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9154114", - "alternativeUrl": "https://europepmc.org/abstract/MED/9154114" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073096", - "description": "in AKU; dbSNP:rs780173554", - "alternativeSequence": "D", - "begin": "168", - "end": "168", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_009619", - "description": "in AKU; loss of activity; dbSNP:rs375283568", - "alternativeSequence": "K", - "begin": "168", - "end": "168", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9630082", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9630082", - "alternativeUrl": "https://europepmc.org/abstract/MED/9630082" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073097", - "description": "in AKU; dbSNP:rs756134838", - "alternativeSequence": "L", - "begin": "169", - "end": "169", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073098", - "description": "in AKU", - "alternativeSequence": "N", - "begin": "171", - "end": "171", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073099", - "description": "", - "alternativeSequence": "T", - "begin": "172", - "end": "172", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073100", - "description": "in AKU", - "alternativeSequence": "G", - "begin": "178", - "end": "178", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073101", - "description": "in AKU; dbSNP:rs1349543050", - "alternativeSequence": "R", - "begin": "183", - "end": "183", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073102", - "description": "in AKU; dbSNP:rs756255206", - "alternativeSequence": "G", - "begin": "187", - "end": "187", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005279", - "description": "in AKU", - "alternativeSequence": "I", - "begin": "189", - "end": "189", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073103", - "description": "in AKU; dbSNP:rs1414279737", - "alternativeSequence": "G", - "begin": "197", - "end": "197", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005280", - "description": "in AKU; dbSNP:rs767201131", - "alternativeSequence": "T", - "begin": "216", - "end": "216", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073104", - "description": "in AKU", - "alternativeSequence": "W", - "begin": "217", - "end": "217", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073105", - "description": "in AKU", - "alternativeSequence": "S", - "begin": "219", - "end": "219", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005281", - "description": "in AKU; dbSNP:rs562853291", - "alternativeSequence": "H", - "begin": "225", - "end": "225", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073106", - "description": "in AKU", - "alternativeSequence": "L", - "begin": "225", - "end": "225", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073107", - "description": "in AKU; dbSNP:rs562853291", - "alternativeSequence": "P", - "begin": "225", - "end": "225", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005282", - "description": "in AKU", - "alternativeSequence": "S", - "begin": "227", - "end": "227", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21437689", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", - "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005283", - "description": "in AKU; complete loss of activity; dbSNP:rs28942100", - "alternativeSequence": "S", - "begin": "230", - "end": "230", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "8782815", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", - "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005284", - "description": "in AKU", - "alternativeSequence": "T", - "begin": "230", - "end": "230", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073108", - "description": "in AKU", - "alternativeSequence": "F", - "begin": "245", - "end": "245", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073109", - "description": "in AKU; dbSNP:rs759843592", - "alternativeSequence": "P", - "begin": "258", - "end": "258", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073110", - "description": "in AKU; dbSNP:rs756522409", - "alternativeSequence": "R", - "begin": "269", - "end": "269", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_009620", - "description": "in AKU; dbSNP:rs120074174", - "alternativeSequence": "R", - "begin": "270", - "end": "270", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073111", - "description": "in AKU; dbSNP:rs1160502581", - "alternativeSequence": "N", - "begin": "276", - "end": "276", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005285", - "description": "in AKU; dbSNP:rs754428438", - "alternativeSequence": "E", - "begin": "291", - "end": "291", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10205262", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", - "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005286", - "description": "in AKU; dbSNP:rs120074170", - "alternativeSequence": "G", - "begin": "300", - "end": "300", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "8782815", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", - "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073112", - "description": "in AKU", - "alternativeSequence": "P", - "begin": "321", - "end": "321", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073113", - "description": "in AKU", - "alternativeSequence": "C", - "begin": "329", - "end": "329", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23353776", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23353776", - "alternativeUrl": "https://europepmc.org/abstract/MED/23353776" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_008744", - "description": "in AKU; dbSNP:rs120074171", - "alternativeSequence": "S", - "begin": "330", - "end": "330", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10594001", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", - "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073114", - "description": "in AKU", - "alternativeSequence": "D", - "begin": "337", - "end": "337", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073115", - "description": "in AKU; dbSNP:rs764037565", - "alternativeSequence": "L", - "begin": "359", - "end": "359", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073116", - "description": "in AKU", - "alternativeSequence": "A", - "begin": "360", - "end": "360", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073117", - "description": "in AKU; dbSNP:rs368717991", - "alternativeSequence": "R", - "begin": "360", - "end": "360", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073118", - "description": "in AKU; dbSNP:rs765219004", - "alternativeSequence": "R", - "begin": "361", - "end": "361", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073119", - "description": "in AKU", - "alternativeSequence": "E", - "begin": "362", - "end": "362", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_005287", - "description": "in AKU; loss of activity; dbSNP:rs120074173", - "alternativeSequence": "V", - "begin": "368", - "end": "368", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10340975", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", - "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10482952", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", - "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10594001", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", - "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "9529363", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", - "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073120", - "description": "in AKU; dbSNP:rs765912447", - "alternativeSequence": "N", - "begin": "369", - "end": "369", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21437689", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", - "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_008745", - "description": "in AKU; dbSNP:rs120074172", - "alternativeSequence": "R", - "begin": "371", - "end": "371", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "10594001", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", - "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073121", - "description": "in AKU; dbSNP:rs138558042", - "alternativeSequence": "L", - "begin": "373", - "end": "373", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073122", - "description": "in AKU; dbSNP:rs981454067", - "alternativeSequence": "H", - "begin": "374", - "end": "374", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23430897", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", - "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25681086", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", - "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" - } - } - ] - }, - { - "type": "VARIANT", - "category": "VARIANTS", - "ftId": "VAR_073123", - "description": "in AKU; dbSNP:rs767159114", - "alternativeSequence": "Q", - "begin": "401", - "end": "401", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19862842", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", - "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" - } - } - ] - }, - { - "type": "CONFLICT", - "category": "SEQUENCE_INFORMATION", - "description": "in Ref. 4; BAF83471", - "alternativeSequence": "R", - "begin": "383", - "end": "383", - "molecule": "", - "evidences": [ - { - "code": "ECO:0000305" - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "6", - "end": "8", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "14", - "end": "17", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "36", - "end": "38", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "40", - "end": "47", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "53", - "end": "55", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "58", - "end": "65", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "85", - "end": "87", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "95", - "end": "97", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "TURN", - "category": "STRUCTURAL", - "begin": "105", - "end": "107", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "TURN", - "category": "STRUCTURAL", - "begin": "112", - "end": "115", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "116", - "end": "123", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "125", - "end": "127", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "131", - "end": "138", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "144", - "end": "161", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "163", - "end": "167", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "170", - "end": "174", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "178", - "end": "182", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, + ] + }, + { + "type": "SIMILARITY", + "text": [ { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "188", - "end": "191", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "193", - "end": "205", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "214", - "end": "216", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "224", - "end": "226", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "227", - "end": "230", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "238", - "end": "249", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "252", - "end": "260", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "265", - "end": "271", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "275", - "end": "278", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "279", - "end": "281", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "288", - "end": "291", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "295", - "end": "298", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "299", - "end": "304", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "311", - "end": "318", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "320", - "end": "323", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "326", - "end": "328", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "340", - "end": "347", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "362", - "end": "365", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "375", - "end": "383", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "389", - "end": "392", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "STRAND", - "category": "STRUCTURAL", - "begin": "396", - "end": "404", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] - }, - { - "type": "HELIX", - "category": "STRUCTURAL", - "begin": "410", - "end": "415", - "molecule": "", - "evidences": [ - { - "code": "ECO:0007744", - "source": { - "name": "PDB", - "id": "1EYB", - "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" - } - } - ] + "value": "Belongs to the homogentisate dioxygenase family", + "evidences": [ + { + "code": "ECO:0000305" + } + ] + } + ] + } + ], + "features": [ + { + "type": "CHAIN", + "category": "MOLECULE_PROCESSING", + "ftId": "PRO_0000220240", + "description": "Homogentisate 1,2-dioxygenase", + "begin": "1", + "end": "445", + "molecule": "" + }, + { + "type": "METAL", + "category": "DOMAINS_AND_SITES", + "description": "Iron", + "begin": "335", + "end": "335", + "molecule": "" + }, + { + "type": "METAL", + "category": "DOMAINS_AND_SITES", + "description": "Iron", + "begin": "341", + "end": "341", + "molecule": "" + }, + { + "type": "METAL", + "category": "DOMAINS_AND_SITES", + "description": "Iron", + "begin": "371", + "end": "371", + "molecule": "" + }, + { + "type": "MOD_RES", + "category": "PTM", + "description": "N6-acetyllysine", + "begin": "98", + "end": "98", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PubMed", + "id": "19608861", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19608861", + "alternativeUrl": "https://europepmc.org/abstract/MED/19608861" + } + } + ] + }, + { + "type": "MOD_RES", + "category": "PTM", + "description": "N6-succinyllysine", + "begin": "414", + "end": "414", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000250", + "source": { + "name": "UniProtKB", + "id": "O09173", + "url": "https://www.uniprot.org/uniprot/O09173" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073076", + "description": "in AKU; dbSNP:rs200412910", + "alternativeSequence": "A", + "begin": "3", + "end": "3", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073077", + "description": "in AKU; dbSNP:rs1458752246", + "alternativeSequence": "K", + "begin": "13", + "end": "13", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073078", + "description": "in AKU", + "alternativeSequence": "N", + "begin": "18", + "end": "18", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_009618", + "description": "in AKU", + "alternativeSequence": "P", + "begin": "25", + "end": "25", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10340975", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", + "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073079", + "description": "in AKU", + "alternativeSequence": "R", + "begin": "33", + "end": "33", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005272", + "description": "in AKU; dbSNP:rs373921680", + "alternativeSequence": "A", + "begin": "42", + "end": "42", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073080", + "description": "in AKU; dbSNP:rs1049246177", + "alternativeSequence": "F", + "begin": "44", + "end": "44", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073081", + "description": "in AKU; dbSNP:rs200808744", + "alternativeSequence": "Q", + "begin": "53", + "end": "53", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005273", + "description": "in AKU", + "alternativeSequence": "G", + "begin": "60", + "end": "60", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073082", + "description": "in AKU; dbSNP:rs1324654414", + "alternativeSequence": "P", + "begin": "61", + "end": "61", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005274", + "description": "in AKU; dbSNP:rs1174584850", + "alternativeSequence": "C", + "begin": "62", + "end": "62", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073083", + "description": "in AKU", + "alternativeSequence": "L", + "begin": "73", + "end": "73", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_049353", + "description": "in dbSNP:rs2255543", + "alternativeSequence": "H", + "begin": "80", + "end": "80", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "14702039", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/14702039", + "alternativeUrl": "https://europepmc.org/abstract/MED/14702039" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "15489334", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/15489334", + "alternativeUrl": "https://europepmc.org/abstract/MED/15489334" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "8782815", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", + "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9244427", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9244427", + "alternativeUrl": "https://europepmc.org/abstract/MED/9244427" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "Citation", + "id": "Ref.2", + "url": "https://www.uniprot.org/uniprot/Q93099#ref2" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "Citation", + "id": "Ref.6", + "url": "https://www.uniprot.org/uniprot/Q93099#ref6" + } + }, + { + "code": "ECO:0007744", + "source": { + "name": "PubMed", + "id": "24275569", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/24275569", + "alternativeUrl": "https://europepmc.org/abstract/MED/24275569" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073084", + "description": "in AKU", + "alternativeSequence": "T", + "begin": "92", + "end": "92", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005275", + "description": "in AKU", + "alternativeSequence": "G", + "begin": "97", + "end": "97", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073085", + "description": "in AKU", + "alternativeSequence": "R", + "begin": "97", + "end": "97", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073086", + "description": "in AKU; dbSNP:rs755734596", + "alternativeSequence": "R", + "begin": "115", + "end": "115", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073087", + "description": "in AKU; dbSNP:rs569846003", + "alternativeSequence": "P", + "begin": "116", + "end": "116", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073088", + "description": "in AKU; dbSNP:rs752153829", + "alternativeSequence": "F", + "begin": "120", + "end": "120", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073089", + "description": "in AKU; dbSNP:rs149165166", + "alternativeSequence": "W", + "begin": "120", + "end": "120", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005276", + "description": "in AKU", + "alternativeSequence": "D", + "begin": "122", + "end": "122", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073090", + "description": "in AKU; dbSNP:rs544956641", + "alternativeSequence": "V", + "begin": "122", + "end": "122", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073091", + "description": "in AKU; dbSNP:rs374473331", + "alternativeSequence": "A", + "begin": "123", + "end": "123", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073092", + "description": "in AKU; dbSNP:rs564979861", + "alternativeSequence": "R", + "begin": "123", + "end": "123", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073093", + "description": "in AKU", + "alternativeSequence": "P", + "begin": "137", + "end": "137", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073094", + "description": "in AKU; dbSNP:rs1553717936", + "alternativeSequence": "A", + "begin": "152", + "end": "152", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005277", + "description": "in AKU; dbSNP:rs775274569", + "alternativeSequence": "G", + "begin": "153", + "end": "153", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073095", + "description": "in AKU; dbSNP:rs375396766", + "alternativeSequence": "L", + "begin": "158", + "end": "158", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005278", + "description": "in AKU; loss of activity; most prevalent mutation in Slovak and Czech patients; dbSNP:rs28941783", + "alternativeSequence": "R", + "begin": "161", + "end": "161", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9154114", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9154114", + "alternativeUrl": "https://europepmc.org/abstract/MED/9154114" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073096", + "description": "in AKU; dbSNP:rs780173554", + "alternativeSequence": "D", + "begin": "168", + "end": "168", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_009619", + "description": "in AKU; loss of activity; dbSNP:rs375283568", + "alternativeSequence": "K", + "begin": "168", + "end": "168", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9630082", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9630082", + "alternativeUrl": "https://europepmc.org/abstract/MED/9630082" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073097", + "description": "in AKU; dbSNP:rs756134838", + "alternativeSequence": "L", + "begin": "169", + "end": "169", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073098", + "description": "in AKU", + "alternativeSequence": "N", + "begin": "171", + "end": "171", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073099", + "description": "", + "alternativeSequence": "T", + "begin": "172", + "end": "172", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073100", + "description": "in AKU", + "alternativeSequence": "G", + "begin": "178", + "end": "178", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073101", + "description": "in AKU; dbSNP:rs1349543050", + "alternativeSequence": "R", + "begin": "183", + "end": "183", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073102", + "description": "in AKU; dbSNP:rs756255206", + "alternativeSequence": "G", + "begin": "187", + "end": "187", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005279", + "description": "in AKU", + "alternativeSequence": "I", + "begin": "189", + "end": "189", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073103", + "description": "in AKU; dbSNP:rs1414279737", + "alternativeSequence": "G", + "begin": "197", + "end": "197", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005280", + "description": "in AKU; dbSNP:rs767201131", + "alternativeSequence": "T", + "begin": "216", + "end": "216", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073104", + "description": "in AKU", + "alternativeSequence": "W", + "begin": "217", + "end": "217", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073105", + "description": "in AKU", + "alternativeSequence": "S", + "begin": "219", + "end": "219", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005281", + "description": "in AKU; dbSNP:rs562853291", + "alternativeSequence": "H", + "begin": "225", + "end": "225", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073106", + "description": "in AKU", + "alternativeSequence": "L", + "begin": "225", + "end": "225", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073107", + "description": "in AKU; dbSNP:rs562853291", + "alternativeSequence": "P", + "begin": "225", + "end": "225", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005282", + "description": "in AKU", + "alternativeSequence": "S", + "begin": "227", + "end": "227", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21437689", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", + "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005283", + "description": "in AKU; complete loss of activity; dbSNP:rs28942100", + "alternativeSequence": "S", + "begin": "230", + "end": "230", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "8782815", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", + "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005284", + "description": "in AKU", + "alternativeSequence": "T", + "begin": "230", + "end": "230", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073108", + "description": "in AKU", + "alternativeSequence": "F", + "begin": "245", + "end": "245", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073109", + "description": "in AKU; dbSNP:rs759843592", + "alternativeSequence": "P", + "begin": "258", + "end": "258", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073110", + "description": "in AKU; dbSNP:rs756522409", + "alternativeSequence": "R", + "begin": "269", + "end": "269", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_009620", + "description": "in AKU; dbSNP:rs120074174", + "alternativeSequence": "R", + "begin": "270", + "end": "270", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073111", + "description": "in AKU; dbSNP:rs1160502581", + "alternativeSequence": "N", + "begin": "276", + "end": "276", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005285", + "description": "in AKU; dbSNP:rs754428438", + "alternativeSequence": "E", + "begin": "291", + "end": "291", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10205262", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10205262", + "alternativeUrl": "https://europepmc.org/abstract/MED/10205262" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005286", + "description": "in AKU; dbSNP:rs120074170", + "alternativeSequence": "G", + "begin": "300", + "end": "300", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "8782815", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/8782815", + "alternativeUrl": "https://europepmc.org/abstract/MED/8782815" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073112", + "description": "in AKU", + "alternativeSequence": "P", + "begin": "321", + "end": "321", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073113", + "description": "in AKU", + "alternativeSequence": "C", + "begin": "329", + "end": "329", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23353776", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23353776", + "alternativeUrl": "https://europepmc.org/abstract/MED/23353776" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_008744", + "description": "in AKU; dbSNP:rs120074171", + "alternativeSequence": "S", + "begin": "330", + "end": "330", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10594001", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", + "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073114", + "description": "in AKU", + "alternativeSequence": "D", + "begin": "337", + "end": "337", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073115", + "description": "in AKU; dbSNP:rs764037565", + "alternativeSequence": "L", + "begin": "359", + "end": "359", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073116", + "description": "in AKU", + "alternativeSequence": "A", + "begin": "360", + "end": "360", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073117", + "description": "in AKU; dbSNP:rs368717991", + "alternativeSequence": "R", + "begin": "360", + "end": "360", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073118", + "description": "in AKU; dbSNP:rs765219004", + "alternativeSequence": "R", + "begin": "361", + "end": "361", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073119", + "description": "in AKU", + "alternativeSequence": "E", + "begin": "362", + "end": "362", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_005287", + "description": "in AKU; loss of activity; dbSNP:rs120074173", + "alternativeSequence": "V", + "begin": "368", + "end": "368", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10340975", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10340975", + "alternativeUrl": "https://europepmc.org/abstract/MED/10340975" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10482952", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10482952", + "alternativeUrl": "https://europepmc.org/abstract/MED/10482952" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10594001", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", + "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "9529363", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/9529363", + "alternativeUrl": "https://europepmc.org/abstract/MED/9529363" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073120", + "description": "in AKU; dbSNP:rs765912447", + "alternativeSequence": "N", + "begin": "369", + "end": "369", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21437689", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21437689", + "alternativeUrl": "https://europepmc.org/abstract/MED/21437689" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_008745", + "description": "in AKU; dbSNP:rs120074172", + "alternativeSequence": "R", + "begin": "371", + "end": "371", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "10594001", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/10594001", + "alternativeUrl": "https://europepmc.org/abstract/MED/10594001" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073121", + "description": "in AKU; dbSNP:rs138558042", + "alternativeSequence": "L", + "begin": "373", + "end": "373", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073122", + "description": "in AKU; dbSNP:rs981454067", + "alternativeSequence": "H", + "begin": "374", + "end": "374", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23430897", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23430897", + "alternativeUrl": "https://europepmc.org/abstract/MED/23430897" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25681086", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25681086", + "alternativeUrl": "https://europepmc.org/abstract/MED/25681086" + } + } + ] + }, + { + "type": "VARIANT", + "category": "VARIANTS", + "ftId": "VAR_073123", + "description": "in AKU; dbSNP:rs767159114", + "alternativeSequence": "Q", + "begin": "401", + "end": "401", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19862842", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19862842", + "alternativeUrl": "https://europepmc.org/abstract/MED/19862842" + } + } + ] + }, + { + "type": "CONFLICT", + "category": "SEQUENCE_INFORMATION", + "description": "in Ref. 4; BAF83471", + "alternativeSequence": "R", + "begin": "383", + "end": "383", + "molecule": "", + "evidences": [ + { + "code": "ECO:0000305" + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "6", + "end": "8", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "14", + "end": "17", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "36", + "end": "38", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "40", + "end": "47", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "53", + "end": "55", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "58", + "end": "65", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "85", + "end": "87", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "95", + "end": "97", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "TURN", + "category": "STRUCTURAL", + "begin": "105", + "end": "107", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "TURN", + "category": "STRUCTURAL", + "begin": "112", + "end": "115", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "116", + "end": "123", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "125", + "end": "127", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "131", + "end": "138", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "144", + "end": "161", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "163", + "end": "167", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "170", + "end": "174", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "178", + "end": "182", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "188", + "end": "191", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "193", + "end": "205", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "214", + "end": "216", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "224", + "end": "226", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "227", + "end": "230", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "238", + "end": "249", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "252", + "end": "260", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } } - ], - "dbReferences": [ - { - "type": "EMBL", - "id": "U63008", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "AAB16836.1" - } - }, - { - "type": "EMBL", - "id": "Z75048", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "CAA99340.1" - } - }, - { - "type": "EMBL", - "id": "AF000573", - "properties": { - "molecule type": "Genomic_DNA", - "protein sequence ID": "AAC51650.1" - } - }, - { - "type": "EMBL", - "id": "AF045167", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "AAC02698.1" - } - }, - { - "type": "EMBL", - "id": "AK290782", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "BAF83471.1" - } - }, - { - "type": "EMBL", - "id": "AK313563", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "BAG36337.1" - } - }, - { - "type": "EMBL", - "id": "AC126182", - "properties": { - "molecule type": "Genomic_DNA", - "status": "NOT_ANNOTATED_CDS" - } - }, - { - "type": "EMBL", - "id": "AC133474", - "properties": { - "molecule type": "Genomic_DNA", - "status": "NOT_ANNOTATED_CDS" - } - }, - { - "type": "EMBL", - "id": "CH471052", - "properties": { - "molecule type": "Genomic_DNA", - "protein sequence ID": "EAW79524.1" - } - }, - { - "type": "EMBL", - "id": "BC071757", - "properties": { - "molecule type": "mRNA", - "protein sequence ID": "AAH71757.1" - } - }, - { - "type": "CCDS", - "id": "CCDS3000.1" - }, - { - "type": "RefSeq", - "id": "NP_000178.2", - "properties": { - "nucleotide sequence ID": "NM_000187.3" - } - }, - { - "type": "PDB", - "id": "1EY2", - "properties": { - "method": "X-ray", - "chains": "A=1-445", - "resolution": "2.30 A" - } - }, - { - "type": "PDB", + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "265", + "end": "271", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", "id": "1EYB", - "properties": { - "method": "X-ray", - "chains": "A=1-445", - "resolution": "1.90 A" - } - }, - { - "type": "PDBsum", - "id": "1EY2" - }, - { - "type": "PDBsum", - "id": "1EYB" - }, - { - "type": "SMR", - "id": "Q93099" - }, - { - "type": "BioGRID", - "id": "109329", - "properties": { - "interactions": "7" - } - }, - { - "type": "IntAct", - "id": "Q93099", - "properties": { - "interactions": "6" - } - }, - { - "type": "MINT", - "id": "Q93099" - }, - { - "type": "STRING", - "id": "9606.ENSP00000283871" - }, - { - "type": "iPTMnet", - "id": "Q93099" - }, - { - "type": "PhosphoSitePlus", - "id": "Q93099" - }, - { - "type": "BioMuta", - "id": "HGD" - }, - { - "type": "jPOST", - "id": "Q93099" - }, - { - "type": "MassIVE", - "id": "Q93099" - }, - { - "type": "MaxQB", - "id": "Q93099" - }, - { - "type": "PaxDb", - "id": "Q93099" - }, - { - "type": "PeptideAtlas", - "id": "Q93099" - }, - { - "type": "PRIDE", - "id": "Q93099" - }, - { - "type": "ProteomicsDB", - "id": "75725" - }, - { - "type": "Antibodypedia", - "id": "32802", - "properties": { - "antibodies": "230 antibodies" - } - }, - { - "type": "DNASU", - "id": "3081" - }, - { - "type": "Ensembl", - "id": "ENST00000283871", - "properties": { - "gene ID": "ENSG00000113924", - "protein sequence ID": "ENSP00000283871" - } - }, - { - "type": "GeneID", - "id": "3081" - }, - { - "type": "KEGG", - "id": "hsa:3081" - }, - { - "type": "UCSC", - "id": "uc003edw.4", - "properties": { - "organism name": "human" - } - }, - { - "type": "CTD", - "id": "3081" - }, - { - "type": "DisGeNET", - "id": "3081" - }, - { - "type": "GeneCards", - "id": "HGD" - }, - { - "type": "GeneReviews", - "id": "HGD" - }, - { - "type": "HGNC", - "id": "HGNC:4892", - "properties": { - "gene designation": "HGD" - } - }, - { - "type": "HPA", - "id": "ENSG00000113924", - "properties": { - "expression patterns": "Tissue enriched (liver)" - } - }, - { - "type": "MalaCards", - "id": "HGD" - }, - { - "type": "MIM", - "id": "203500", - "properties": { - "type": "phenotype" - } - }, - { - "type": "MIM", - "id": "607474", - "properties": { - "type": "gene" - } - }, - { - "type": "neXtProt", - "id": "NX_Q93099" - }, - { - "type": "OpenTargets", - "id": "ENSG00000113924" - }, - { - "type": "Orphanet", - "id": "56", - "properties": { - "disease": "Alkaptonuria" - } - }, - { - "type": "PharmGKB", - "id": "PA29268" - }, - { - "type": "VEuPathDB", - "id": "HostDB:ENSG00000113924.11" - }, - { - "type": "eggNOG", - "id": "KOG1417", - "properties": { - "taxonomic scope": "Eukaryota" - } - }, - { - "type": "GeneTree", - "id": "ENSGT00390000004601" - }, - { - "type": "HOGENOM", - "id": "CLU_027174_0_0_1" - }, - { - "type": "InParanoid", - "id": "Q93099" - }, - { - "type": "OMA", - "id": "FESIDQG" - }, - { - "type": "OrthoDB", - "id": "795654at2759" - }, - { - "type": "PhylomeDB", - "id": "Q93099" - }, - { - "type": "TreeFam", - "id": "TF300490" - }, - { - "type": "BioCyc", - "id": "MetaCyc:HS03728-MONOMER" - }, - { - "type": "BRENDA", - "id": "1.13.11.5", - "properties": { - "organism ID": "2681" - } - }, - { - "type": "PathwayCommons", - "id": "Q93099" - }, - { - "type": "Reactome", - "id": "R-HSA-8963684", - "properties": { - "pathway name": "Tyrosine catabolism" - } - }, - { - "type": "UniPathway", - "id": "UPA00139", - "properties": { - "reaction ID": "UER00339" - } - }, - { - "type": "BioGRID-ORCS", - "id": "3081", - "properties": { - "hits": "7 hits in 981 CRISPR screens" - } - }, - { - "type": "ChiTaRS", - "id": "HGD", - "properties": { - "organism name": "human" - } - }, - { - "type": "EvolutionaryTrace", - "id": "Q93099" - }, - { - "type": "GenomeRNAi", - "id": "3081" - }, - { - "type": "Pharos", - "id": "Q93099", - "properties": { - "development level": "Tbio" - } - }, - { - "type": "PRO", - "id": "PR:Q93099" - }, - { - "type": "Proteomes", - "id": "UP000005640", - "properties": { - "component": "Chromosome 3" - } - }, - { - "type": "RNAct", - "id": "Q93099", - "properties": { - "molecule type": "protein" - } - }, - { - "type": "Bgee", - "id": "ENSG00000113924", - "properties": { - "expression patterns": "Expressed in right lobe of liver and 163 other tissues" - } - }, - { - "type": "ExpressionAtlas", - "id": "Q93099", - "properties": { - "expression patterns": "baseline and differential" - } - }, - { - "type": "Genevisible", - "id": "Q93099", - "properties": { - "organism ID": "HS" - } - }, - { - "type": "GO", - "id": "GO:0005737", - "properties": { - "term": "C:cytoplasm", - "source": "IBA:GO_Central" - }, - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21873635", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", - "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" - } - } - ] - }, - { - "type": "GO", - "id": "GO:0005829", - "properties": { - "term": "C:cytosol", - "source": "TAS:Reactome" - } - }, - { - "type": "GO", - "id": "GO:0070062", - "properties": { - "term": "C:extracellular exosome", - "source": "HDA:UniProtKB" - }, - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "19056867", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/19056867", - "alternativeUrl": "https://europepmc.org/abstract/MED/19056867" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "23533145", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/23533145", - "alternativeUrl": "https://europepmc.org/abstract/MED/23533145" - } - } - ] - }, - { - "type": "GO", - "id": "GO:0004411", - "properties": { - "term": "F:homogentisate 1,2-dioxygenase activity", - "source": "IBA:GO_Central" - }, - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21873635", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", - "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" - } - } - ] - }, - { - "type": "GO", - "id": "GO:0042802", - "properties": { - "term": "F:identical protein binding", - "source": "IPI:IntAct" - }, - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "25416956", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/25416956", - "alternativeUrl": "https://europepmc.org/abstract/MED/25416956" - } - }, - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "32296183", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/32296183", - "alternativeUrl": "https://europepmc.org/abstract/MED/32296183" - } - } - ] - }, - { - "type": "GO", - "id": "GO:0046872", - "properties": { - "term": "F:metal ion binding", - "source": "IEA:UniProtKB-KW" - } - }, - { - "type": "GO", - "id": "GO:0006559", - "properties": { - "term": "P:L-phenylalanine catabolic process", - "source": "IBA:GO_Central" - }, - "evidences": [ - { - "code": "ECO:0000269", - "source": { - "name": "PubMed", - "id": "21873635", - "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", - "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" - } - } - ] - }, - { - "type": "GO", - "id": "GO:0006572", - "properties": { - "term": "P:tyrosine catabolic process", - "source": "TAS:Reactome" - } - }, - { - "type": "Gene3D", - "id": "2.60.120.10", - "properties": { - "match status": "1" - } - }, - { - "type": "InterPro", - "id": "IPR005708", - "properties": { - "entry name": "Homogentis_dOase" - } - }, - { - "type": "InterPro", - "id": "IPR014710", - "properties": { - "entry name": "RmlC-like_jellyroll" - } - }, - { - "type": "InterPro", - "id": "IPR011051", - "properties": { - "entry name": "RmlC_Cupin_sf" - } - }, - { - "type": "PANTHER", - "id": "PTHR11056", - "properties": { - "match status": "1", - "entry name": "PTHR11056" - } - }, - { - "type": "Pfam", - "id": "PF04209", - "properties": { - "match status": "1", - "entry name": "HgmA" - } - }, - { - "type": "SUPFAM", - "id": "SSF51182", - "properties": { - "match status": "1", - "entry name": "SSF51182" - } - }, - { - "type": "TIGRFAMs", - "id": "TIGR01015", - "properties": { - "match status": "1", - "entry name": "hmgA" - } + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "275", + "end": "278", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "279", + "end": "281", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "288", + "end": "291", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "295", + "end": "298", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "299", + "end": "304", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "311", + "end": "318", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "320", + "end": "323", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "326", + "end": "328", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "340", + "end": "347", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } } - ], - "keywords": [ - { - "value": "3D-structure" - }, - { - "value": "Acetylation" - }, - { - "value": "Dioxygenase" - }, - { - "value": "Disease variant" - }, - { - "value": "Iron" - }, - { - "value": "Metal-binding" - }, - { - "value": "Oxidoreductase" - }, - { - "value": "Phenylalanine catabolism" - }, - { - "value": "Reference proteome" - }, - { - "value": "Tyrosine catabolism" + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "362", + "end": "365", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } } - ], - "references": [ - { - "citation": { - "type": "journal article", - "publicationDate": "1996", - "title": "The molecular basis of alkaptonuria.", - "authors": [ - "Fernandez-Canon J.M.", - "Granadino B.", - "Beltran-Valero de Bernabe D.", - "Renedo M.", - "Fernandez-Ruiz E.", - "Penalva M.A.", - "Rodriguez de Cordoba S." - ], - "publication": { - "journalName": "Nat. Genet." - }, - "location": { - "volume": "14", - "firstPage": "19", - "lastPage": "24" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "8782815" - }, - { - "type": "DOI", - "id": "10.1038/ng0996-19" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [MRNA]", - "VARIANTS HIS-80; AKU SER-230 AND GLY-300" - ] - }, - { - "citation": { - "type": "submission", - "publicationDate": "SEP-1996", - "title": "Homogentisate 1,2-dioxygenase human cDNA sequence.", - "authors": [ - "Ramos S.", - "Hernandez M.", - "Rozes A.", - "Larruga J.", - "Gonzalez P.", - "Cabrera V.M." - ], - "publication": { - "submissionDatabase": "EMBL/GenBank/DDBJ databases" - } - }, - "source": { - "tissue": [ - { - "value": "Liver" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [MRNA]", - "VARIANT HIS-80" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1997", - "title": "The human homogentisate 1,2-dioxygenase (HGO) gene.", - "authors": [ - "Granadino B.", - "Beltran-Valero de Bernabe D.", - "Fernandez-Canon J.M.", - "Penalva M.A.", - "Rodriguez de Cordoba S." - ], - "publication": { - "journalName": "Genomics" - }, - "location": { - "volume": "43", - "firstPage": "115", - "lastPage": "122" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "9244427" - }, - { - "type": "DOI", - "id": "10.1006/geno.1997.4805" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [GENOMIC DNA]", - "VARIANT HIS-80" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2004", - "title": "Complete sequencing and characterization of 21,243 full-length human cDNAs.", - "authors": [ - "Ota T.", - "Suzuki Y.", - "Nishikawa T.", - "Otsuki T.", - "Sugiyama T.", - "Irie R.", - "Wakamatsu A.", - "Hayashi K.", - "Sato H.", - "Nagai K.", - "Kimura K.", - "Makita H.", - "Sekine M.", - "Obayashi M.", - "Nishi T.", - "Shibahara T.", - "Tanaka T.", - "Ishii S.", - "Yamamoto J.", - "Saito K.", - "Kawai Y.", - "Isono Y.", - "Nakamura Y.", - "Nagahari K.", - "Murakami K.", - "Yasuda T.", - "Iwayanagi T.", - "Wagatsuma M.", - "Shiratori A.", - "Sudo H.", - "Hosoiri T.", - "Kaku Y.", - "Kodaira H.", - "Kondo H.", - "Sugawara M.", - "Takahashi M.", - "Kanda K.", - "Yokoi T.", - "Furuya T.", - "Kikkawa E.", - "Omura Y.", - "Abe K.", - "Kamihara K.", - "Katsuta N.", - "Sato K.", - "Tanikawa M.", - "Yamazaki M.", - "Ninomiya K.", - "Ishibashi T.", - "Yamashita H.", - "Murakawa K.", - "Fujimori K.", - "Tanai H.", - "Kimata M.", - "Watanabe M.", - "Hiraoka S.", - "Chiba Y.", - "Ishida S.", - "Ono Y.", - "Takiguchi S.", - "Watanabe S.", - "Yosida M.", - "Hotuta T.", - "Kusano J.", - "Kanehori K.", - "Takahashi-Fujii A.", - "Hara H.", - "Tanase T.-O.", - "Nomura Y.", - "Togiya S.", - "Komai F.", - "Hara R.", - "Takeuchi K.", - "Arita M.", - "Imose N.", - "Musashino K.", - "Yuuki H.", - "Oshima A.", - "Sasaki N.", - "Aotsuka S.", - "Yoshikawa Y.", - "Matsunawa H.", - "Ichihara T.", - "Shiohata N.", - "Sano S.", - "Moriya S.", - "Momiyama H.", - "Satoh N.", - "Takami S.", - "Terashima Y.", - "Suzuki O.", - "Nakagawa S.", - "Senoh A.", - "Mizoguchi H.", - "Goto Y.", - "Shimizu F.", - "Wakebe H.", - "Hishigaki H.", - "Watanabe T.", - "Sugiyama A.", - "Takemoto M.", - "Kawakami B.", - "Yamazaki M.", - "Watanabe K.", - "Kumagai A.", - "Itakura S.", - "Fukuzumi Y.", - "Fujimori Y.", - "Komiyama M.", - "Tashiro H.", - "Tanigami A.", - "Fujiwara T.", - "Ono T.", - "Yamada K.", - "Fujii Y.", - "Ozaki K.", - "Hirao M.", - "Ohmori Y.", - "Kawabata A.", - "Hikiji T.", - "Kobatake N.", - "Inagaki H.", - "Ikema Y.", - "Okamoto S.", - "Okitani R.", - "Kawakami T.", - "Noguchi S.", - "Itoh T.", - "Shigeta K.", - "Senba T.", - "Matsumura K.", - "Nakajima Y.", - "Mizuno T.", - "Morinaga M.", - "Sasaki M.", - "Togashi T.", - "Oyama M.", - "Hata H.", - "Watanabe M.", - "Komatsu T.", - "Mizushima-Sugano J.", - "Satoh T.", - "Shirai Y.", - "Takahashi Y.", - "Nakagawa K.", - "Okumura K.", - "Nagase T.", - "Nomura N.", - "Kikuchi H.", - "Masuho Y.", - "Yamashita R.", - "Nakai K.", - "Yada T.", - "Nakamura Y.", - "Ohara O.", - "Isogai T.", - "Sugano S." - ], - "publication": { - "journalName": "Nat. Genet." - }, - "location": { - "volume": "36", - "firstPage": "40", - "lastPage": "45" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "14702039" - }, - { - "type": "DOI", - "id": "10.1038/ng1285" - } - ] - }, - "source": { - "tissue": [ - { - "value": "Kidney" - }, - { - "value": "Prostate" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]", - "VARIANT HIS-80" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2006", - "title": "The DNA sequence, annotation and analysis of human chromosome 3.", - "authors": [ - "Muzny D.M.", - "Scherer S.E.", - "Kaul R.", - "Wang J.", - "Yu J.", - "Sudbrak R.", - "Buhay C.J.", - "Chen R.", - "Cree A.", - "Ding Y.", - "Dugan-Rocha S.", - "Gill R.", - "Gunaratne P.", - "Harris R.A.", - "Hawes A.C.", - "Hernandez J.", - "Hodgson A.V.", - "Hume J.", - "Jackson A.", - "Khan Z.M.", - "Kovar-Smith C.", - "Lewis L.R.", - "Lozado R.J.", - "Metzker M.L.", - "Milosavljevic A.", - "Miner G.R.", - "Morgan M.B.", - "Nazareth L.V.", - "Scott G.", - "Sodergren E.", - "Song X.-Z.", - "Steffen D.", - "Wei S.", - "Wheeler D.A.", - "Wright M.W.", - "Worley K.C.", - "Yuan Y.", - "Zhang Z.", - "Adams C.Q.", - "Ansari-Lari M.A.", - "Ayele M.", - "Brown M.J.", - "Chen G.", - "Chen Z.", - "Clendenning J.", - "Clerc-Blankenburg K.P.", - "Chen R.", - "Chen Z.", - "Davis C.", - "Delgado O.", - "Dinh H.H.", - "Dong W.", - "Draper H.", - "Ernst S.", - "Fu G.", - "Gonzalez-Garay M.L.", - "Garcia D.K.", - "Gillett W.", - "Gu J.", - "Hao B.", - "Haugen E.", - "Havlak P.", - "He X.", - "Hennig S.", - "Hu S.", - "Huang W.", - "Jackson L.R.", - "Jacob L.S.", - "Kelly S.H.", - "Kube M.", - "Levy R.", - "Li Z.", - "Liu B.", - "Liu J.", - "Liu W.", - "Lu J.", - "Maheshwari M.", - "Nguyen B.-V.", - "Okwuonu G.O.", - "Palmeiri A.", - "Pasternak S.", - "Perez L.M.", - "Phelps K.A.", - "Plopper F.J.", - "Qiang B.", - "Raymond C.", - "Rodriguez R.", - "Saenphimmachak C.", - "Santibanez J.", - "Shen H.", - "Shen Y.", - "Subramanian S.", - "Tabor P.E.", - "Verduzco D.", - "Waldron L.", - "Wang J.", - "Wang J.", - "Wang Q.", - "Williams G.A.", - "Wong G.K.-S.", - "Yao Z.", - "Zhang J.", - "Zhang X.", - "Zhao G.", - "Zhou J.", - "Zhou Y.", - "Nelson D.", - "Lehrach H.", - "Reinhardt R.", - "Naylor S.L.", - "Yang H.", - "Olson M.", - "Weinstock G.", - "Gibbs R.A." - ], - "publication": { - "journalName": "Nature" - }, - "location": { - "volume": "440", - "firstPage": "1194", - "lastPage": "1198" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "16641997" - }, - { - "type": "DOI", - "id": "10.1038/nature04728" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]" - ] - }, - { - "citation": { - "type": "submission", - "publicationDate": "SEP-2005", - "authors": [ - "Mural R.J.", - "Istrail S.", - "Sutton G.G.", - "Florea L.", - "Halpern A.L.", - "Mobarry C.M.", - "Lippert R.", - "Walenz B.", - "Shatkay H.", - "Dew I.", - "Miller J.R.", - "Flanigan M.J.", - "Edwards N.J.", - "Bolanos R.", - "Fasulo D.", - "Halldorsson B.V.", - "Hannenhalli S.", - "Turner R.", - "Yooseph S.", - "Lu F.", - "Nusskern D.R.", - "Shue B.C.", - "Zheng X.H.", - "Zhong F.", - "Delcher A.L.", - "Huson D.H.", - "Kravitz S.A.", - "Mouchard L.", - "Reinert K.", - "Remington K.A.", - "Clark A.G.", - "Waterman M.S.", - "Eichler E.E.", - "Adams M.D.", - "Hunkapiller M.W.", - "Myers E.W.", - "Venter J.C." - ], - "publication": { - "submissionDatabase": "EMBL/GenBank/DDBJ databases" - } - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]", - "VARIANT HIS-80" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2004", - "title": "The status, quality, and expansion of the NIH full-length cDNA project: the Mammalian Gene Collection (MGC).", - "consortiums": [ - "The MGC Project Team" - ], - "publication": { - "journalName": "Genome Res." - }, - "location": { - "volume": "14", - "firstPage": "2121", - "lastPage": "2127" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "15489334" - }, - { - "type": "DOI", - "id": "10.1101/gr.2596504" - } - ] - }, - "scope": [ - "NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]", - "VARIANT HIS-80" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2009", - "title": "Lysine acetylation targets protein complexes and co-regulates major cellular functions.", - "authors": [ - "Choudhary C.", - "Kumar C.", - "Gnad F.", - "Nielsen M.L.", - "Rehman M.", - "Walther T.C.", - "Olsen J.V.", - "Mann M." - ], - "publication": { - "journalName": "Science" - }, - "location": { - "volume": "325", - "firstPage": "834", - "lastPage": "840" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "19608861" - }, - { - "type": "DOI", - "id": "10.1126/science.1175371" - } - ] - }, - "scope": [ - "ACETYLATION [LARGE SCALE ANALYSIS] AT LYS-98", - "IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2011", - "title": "Initial characterization of the human central proteome.", - "authors": [ - "Burkard T.R.", - "Planyavsky M.", - "Kaupe I.", - "Breitwieser F.P.", - "Buerckstuemmer T.", - "Bennett K.L.", - "Superti-Furga G.", - "Colinge J." - ], - "publication": { - "journalName": "BMC Syst. Biol." - }, - "location": { - "volume": "5", - "firstPage": "17", - "lastPage": "17" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "21269460" - }, - { - "type": "DOI", - "id": "10.1186/1752-0509-5-17" - } - ] - }, - "scope": [ - "IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2000", - "title": "Crystal structure of human homogentisate dioxygenase.", - "authors": [ - "Titus G.P.", - "Mueller H.A.", - "Burgner J.", - "Rodriguez de Cordoba S.", - "Penalva M.A.", - "Timm D.E." - ], - "publication": { - "journalName": "Nat. Struct. Biol." - }, - "location": { - "volume": "7", - "firstPage": "542", - "lastPage": "546" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "10876237" - }, - { - "type": "DOI", - "id": "10.1038/76756" - } - ] - }, - "scope": [ - "X-RAY CRYSTALLOGRAPHY (1.9 ANGSTROMS)", - "METAL-BINDING SITES", - "SUBUNIT" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1997", - "title": "Molecular defects in alkaptonuria.", - "authors": [ - "Gehrig A.", - "Schmidt S.R.", - "Mueller C.R.", - "Srsen S.", - "Srsnova K.", - "Kress W." - ], - "publication": { - "journalName": "Cytogenet. Cell Genet." - }, - "location": { - "volume": "76", - "firstPage": "14", - "lastPage": "16" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "9154114" - }, - { - "type": "DOI", - "id": "10.1159/000134501" - } - ] - }, - "scope": [ - "VARIANT AKU ARG-161" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1998", - "title": "Mutation and polymorphism analysis of the human homogentisate 1, 2-dioxygenase gene in alkaptonuria patients.", - "authors": [ - "Beltran-Valero de Bernabe D.", - "Granadino B.", - "Chiarelli I.", - "Porfirio B.", - "Mayatepek E.", - "Aquaron R.", - "Moore M.M.", - "Festen J.J.M.", - "Sanmarti R.", - "Penalva M.A.", - "de Cordoba S.R." - ], - "publication": { - "journalName": "Am. J. Hum. Genet." - }, - "location": { - "volume": "62", - "firstPage": "776", - "lastPage": "784" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "9529363" - }, - { - "type": "DOI", - "id": "10.1086/301805" - } - ] - }, - "scope": [ - "VARIANTS AKU ALA-42; GLY-97; GLY-153; ILE-189; THR-216; HIS-225; SER-227 AND VAL-368" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1998", - "title": "A novel point mutation associated with alkaptonuria.", - "authors": [ - "Higashino K.", - "Liu W.", - "Ohkawa T.", - "Yamamoto T.", - "Fukui K.", - "Ohno M.", - "Imanishi H.", - "Iwasaki A.", - "Amuro Y.", - "Hada T." - ], - "publication": { - "journalName": "Clin. Genet." - }, - "location": { - "volume": "53", - "firstPage": "228", - "lastPage": "229" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "9630082" - }, - { - "type": "DOI", - "id": "10.1111/j.1399-0004.1998.tb02684.x" - } - ] - }, - "scope": [ - "VARIANT AKU LYS-168" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1999", - "title": "Analysis of alkaptonuria (AKU) mutations and polymorphisms reveals that the CCC sequence motif is a mutational hot spot in the homogentisate 1,2 dioxygenase gene (HGO).", - "authors": [ - "Beltran-Valero de Bernabe D.", - "Jimenez F.J.", - "Aquaron R.", - "Rodriguez de Cordoba S." - ], - "publication": { - "journalName": "Am. J. Hum. Genet." - }, - "location": { - "volume": "64", - "firstPage": "1316", - "lastPage": "1322" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "10205262" - }, - { - "type": "DOI", - "id": "10.1086/302376" - } - ] - }, - "scope": [ - "VARIANTS AKU GLY-60; CYS-62; ASP-122; THR-230 AND GLU-291" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1999", - "title": "Ocular ochronosis in alkaptonuria patients carrying mutations in the homogentisate 1,2-dioxygenase gene.", - "authors": [ - "Felbor U.", - "Mutsch Y.", - "Grehn F.", - "Mueller C.R.", - "Kress W." - ], - "publication": { - "journalName": "Br. J. Ophthalmol." - }, - "location": { - "volume": "83", - "firstPage": "680", - "lastPage": "683" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "10340975" - }, - { - "type": "DOI", - "id": "10.1136/bjo.83.6.680" - } - ] - }, - "source": { - "tissue": [ - { - "value": "Leukocyte" - } - ] - }, - "scope": [ - "VARIANTS AKU PRO-25 AND VAL-368" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1999", - "title": "Allelic heterogeneity of alkaptonuria in Central Europe.", - "authors": [ - "Mueller C.R.", - "Fregin A.", - "Srsen S.", - "Srsnova K.", - "Halliger-Keller B.", - "Felbor U.", - "Seemanova E.", - "Kress W." - ], - "publication": { - "journalName": "Eur. J. Hum. Genet." - }, - "location": { - "volume": "7", - "firstPage": "645", - "lastPage": "651" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "10482952" - }, - { - "type": "DOI", - "id": "10.1038/sj.ejhg.5200343" - } - ] - }, - "source": { - "tissue": [ - { - "value": "Lymphocyte" - } - ] - }, - "scope": [ - "VARIANTS AKU PRO-25; ARG-161; SER-230; ARG-270; GLY-300 AND VAL-368" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "1999", - "title": "Mutational analysis of the HGO gene in Finnish alkaptonuria patients.", - "authors": [ - "Beltran-Valero de Bernabe D.", - "Peterson P.", - "Luopajarvi K.", - "Matintalo P.", - "Alho A.", - "Konttinen Y.", - "Krohn K.", - "Rodriguez de Cordoba S.", - "Ranki A." - ], - "publication": { - "journalName": "J. Med. Genet." - }, - "location": { - "volume": "36", - "firstPage": "922", - "lastPage": "923" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "10594001" - } - ] - }, - "scope": [ - "VARIANTS AKU SER-330; VAL-368 AND ARG-371" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2009", - "title": "Mutation spectrum of homogentisic acid oxidase (HGD) in alkaptonuria.", - "authors": [ - "Vilboux T.", - "Kayser M.", - "Introne W.", - "Suwannarat P.", - "Bernardini I.", - "Fischer R.", - "O'Brien K.", - "Kleta R.", - "Huizing M.", - "Gahl W.A." - ], - "publication": { - "journalName": "Hum. Mutat." - }, - "location": { - "volume": "30", - "firstPage": "1611", - "lastPage": "1619" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "19862842" - }, - { - "type": "DOI", - "id": "10.1002/humu.21120" - } - ] - }, - "scope": [ - "VARIANTS AKU ALA-3; ALA-42; GLY-60; PRO-61; CYS-62; LEU-73; THR-92; ARG-97; PHE-120; TRP-120; VAL-122; ARG-123; PRO-137; LEU-158; ARG-161; ASP-168; LYS-168; ARG-183; GLY-187; TRP-217; LEU-225; SER-230; PRO-258; ARG-269; ARG-270; GLY-300; PRO-321; LEU-359; ARG-360; GLU-362; VAL-368; LEU-373 AND GLN-401" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2012", - "title": "Identification of 11 novel homogentisate 1,2 dioxygenase variants in alkaptonuria patients and establishment of a novel LOVD-based HGD mutation database.", - "authors": [ - "Zatkova A.", - "Sedlackova T.", - "Radvansky J.", - "Polakova H.", - "Nemethova M.", - "Aquaron R.", - "Dursun I.", - "Usher J.L.", - "Kadasi L." - ], - "publication": { - "journalName": "JIMD Rep." - }, - "location": { - "volume": "4", - "firstPage": "55", - "lastPage": "65" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "23430897" - }, - { - "type": "DOI", - "id": "10.1007/8904_2011_68" - } - ] - }, - "scope": [ - "VARIANTS AKU ARG-33; PHE-44; ARG-115; PRO-116; ALA-123; ALA-152; LEU-169; GLY-178; GLY-197; SER-219; ASN-276; ALA-360; ARG-361 AND HIS-374" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2012", - "title": "Novel mutations in the homogentisate 1,2 dioxygenase gene identified in Jordanian patients with alkaptonuria.", - "authors": [ - "Al-sbou M." - ], - "publication": { - "journalName": "Rheumatol. Int." - }, - "location": { - "volume": "32", - "firstPage": "1741", - "lastPage": "1746" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "21437689" - }, - { - "type": "DOI", - "id": "10.1007/s00296-011-1868-0" - } - ] - }, - "scope": [ - "VARIANTS AKU SER-227 AND ASN-369" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2013", - "title": "First report of HGD mutations in a Chinese with alkaptonuria.", - "authors": [ - "Yang Y.J.", - "Guo J.H.", - "Chen W.J.", - "Zhao R.", - "Tang J.S.", - "Meng X.H.", - "Zhao L.", - "Tu M.", - "He X.Y.", - "Wu L.Q.", - "Zhu Y.M." - ], - "publication": { - "journalName": "Gene" - }, - "location": { - "volume": "518", - "firstPage": "467", - "lastPage": "469" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "23353776" - }, - { - "type": "DOI", - "id": "10.1016/j.gene.2013.01.020" - } - ] - }, - "scope": [ - "VARIANT AKU CYS-329" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2014", - "title": "An enzyme assisted RP-RPLC approach for in-depth analysis of human liver phosphoproteome.", - "authors": [ - "Bian Y.", - "Song C.", - "Cheng K.", - "Dong M.", - "Wang F.", - "Huang J.", - "Sun D.", - "Wang L.", - "Ye M.", - "Zou H." - ], - "publication": { - "journalName": "J. Proteomics" - }, - "location": { - "volume": "96", - "firstPage": "253", - "lastPage": "262" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "24275569" - }, - { - "type": "DOI", - "id": "10.1016/j.jprot.2013.11.014" - } - ] - }, - "source": { - "tissue": [ - { - "value": "Liver" - } - ] - }, - "scope": [ - "VARIANT [LARGE SCALE ANALYSIS] HIS-80", - "IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]" - ] - }, - { - "citation": { - "type": "journal article", - "publicationDate": "2015", - "title": "Analysis of HGD gene mutations in patients with alkaptonuria from the United Kingdom: identification of novel mutations.", - "authors": [ - "Usher J.L.", - "Ascher D.B.", - "Pires D.E.", - "Milan A.M.", - "Blundell T.L.", - "Ranganath L.R." - ], - "publication": { - "journalName": "JIMD Rep." - }, - "location": { - "volume": "24", - "firstPage": "3", - "lastPage": "11" - }, - "dbReferences": [ - { - "type": "PubMed", - "id": "25681086" - }, - { - "type": "DOI", - "id": "10.1007/8904_2014_380" - } - ] - }, - "scope": [ - "VARIANTS AKU LYS-13; ASN-18; ALA-42; GLN-53; ARG-115; PHE-120; ARG-123; ARG-161; LEU-169; ASN-171; GLY-197; SER-219; HIS-225; PRO-225; SER-230; PHE-245; ARG-270; ASN-276; GLY-300; ASP-337; LEU-359; ARG-360; ARG-361; VAL-368 AND HIS-374", - "VARIANT THR-172" - ] + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "375", + "end": "383", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } } - ], - "sequence": { - "version": 2, - "length": 445, - "mass": 49964, - "modified": "2010-05-18", - "sequence": "MAELKYISGFGNECSSEDPRCPGSLPEGQNNPQVCPYNLYAEQLSGSAFTCPRSTNKRSWLYRILPSVSHKPFESIDEGQVTHNWDEVDPDPNQLRWKPFEIPKASQKKVDFVSGLHTLCGAGDIKSNNGLAIHIFLCNTSMENRCFYNSDGDFLIVPQKGNLLIYTEFGKMLVQPNEICVIQRGMRFSIDVFEETRGYILEVYGVHFELPDLGPIGANGLANPRDFLIPIAWYEDRQVPGGYTVINKYQGKLFAAKQDVSPFNVVAWHGNYTPYKYNLKNFMVINSVAFDHADPSIFTVLTAKSVRPGVAIADFVIFPPRWGVADKTFRPPYYHRNCMSEFMGLIRGHYEAKQGGFLPGGGSLHSTMTPHGPDADCFEKASKVKLAPERIADGTMAFMFESSLSLAVTKWGLKASRCLDENYHKCWEPLKSHFTPNSRNPAEPN" + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "389", + "end": "392", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "STRAND", + "category": "STRUCTURAL", + "begin": "396", + "end": "404", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + }, + { + "type": "HELIX", + "category": "STRUCTURAL", + "begin": "410", + "end": "415", + "molecule": "", + "evidences": [ + { + "code": "ECO:0007744", + "source": { + "name": "PDB", + "id": "1EYB", + "url": "https://www.ebi.ac.uk/pdbe-srv/view/entry/1EYB" + } + } + ] + } + ], + "dbReferences": [ + { + "type": "EMBL", + "id": "U63008", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "AAB16836.1" + } + }, + { + "type": "EMBL", + "id": "Z75048", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "CAA99340.1" + } + }, + { + "type": "EMBL", + "id": "AF000573", + "properties": { + "molecule type": "Genomic_DNA", + "protein sequence ID": "AAC51650.1" + } + }, + { + "type": "EMBL", + "id": "AF045167", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "AAC02698.1" + } + }, + { + "type": "EMBL", + "id": "AK290782", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "BAF83471.1" + } + }, + { + "type": "EMBL", + "id": "AK313563", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "BAG36337.1" + } + }, + { + "type": "EMBL", + "id": "AC126182", + "properties": { + "molecule type": "Genomic_DNA", + "status": "NOT_ANNOTATED_CDS" + } + }, + { + "type": "EMBL", + "id": "AC133474", + "properties": { + "molecule type": "Genomic_DNA", + "status": "NOT_ANNOTATED_CDS" + } + }, + { + "type": "EMBL", + "id": "CH471052", + "properties": { + "molecule type": "Genomic_DNA", + "protein sequence ID": "EAW79524.1" + } + }, + { + "type": "EMBL", + "id": "BC071757", + "properties": { + "molecule type": "mRNA", + "protein sequence ID": "AAH71757.1" + } + }, + { + "type": "CCDS", + "id": "CCDS3000.1" + }, + { + "type": "RefSeq", + "id": "NP_000178.2", + "properties": { + "nucleotide sequence ID": "NM_000187.3" + } + }, + { + "type": "PDB", + "id": "1EY2", + "properties": { + "method": "X-ray", + "chains": "A=1-445", + "resolution": "2.30 A" + } + }, + { + "type": "PDB", + "id": "1EYB", + "properties": { + "method": "X-ray", + "chains": "A=1-445", + "resolution": "1.90 A" + } + }, + { + "type": "PDBsum", + "id": "1EY2" + }, + { + "type": "PDBsum", + "id": "1EYB" + }, + { + "type": "SMR", + "id": "Q93099" + }, + { + "type": "BioGRID", + "id": "109329", + "properties": { + "interactions": "7" + } + }, + { + "type": "IntAct", + "id": "Q93099", + "properties": { + "interactions": "6" + } + }, + { + "type": "MINT", + "id": "Q93099" + }, + { + "type": "STRING", + "id": "9606.ENSP00000283871" + }, + { + "type": "iPTMnet", + "id": "Q93099" + }, + { + "type": "PhosphoSitePlus", + "id": "Q93099" + }, + { + "type": "BioMuta", + "id": "HGD" + }, + { + "type": "jPOST", + "id": "Q93099" + }, + { + "type": "MassIVE", + "id": "Q93099" + }, + { + "type": "MaxQB", + "id": "Q93099" + }, + { + "type": "PaxDb", + "id": "Q93099" + }, + { + "type": "PeptideAtlas", + "id": "Q93099" + }, + { + "type": "PRIDE", + "id": "Q93099" + }, + { + "type": "ProteomicsDB", + "id": "75725" + }, + { + "type": "Antibodypedia", + "id": "32802", + "properties": { + "antibodies": "230 antibodies" + } + }, + { + "type": "DNASU", + "id": "3081" + }, + { + "type": "Ensembl", + "id": "ENST00000283871", + "properties": { + "gene ID": "ENSG00000113924", + "protein sequence ID": "ENSP00000283871" + } + }, + { + "type": "GeneID", + "id": "3081" + }, + { + "type": "KEGG", + "id": "hsa:3081" + }, + { + "type": "UCSC", + "id": "uc003edw.4", + "properties": { + "organism name": "human" + } + }, + { + "type": "CTD", + "id": "3081" + }, + { + "type": "DisGeNET", + "id": "3081" + }, + { + "type": "GeneCards", + "id": "HGD" + }, + { + "type": "GeneReviews", + "id": "HGD" + }, + { + "type": "HGNC", + "id": "HGNC:4892", + "properties": { + "gene designation": "HGD" + } + }, + { + "type": "HPA", + "id": "ENSG00000113924", + "properties": { + "expression patterns": "Tissue enriched (liver)" + } + }, + { + "type": "MalaCards", + "id": "HGD" + }, + { + "type": "MIM", + "id": "203500", + "properties": { + "type": "phenotype" + } + }, + { + "type": "MIM", + "id": "607474", + "properties": { + "type": "gene" + } + }, + { + "type": "neXtProt", + "id": "NX_Q93099" + }, + { + "type": "OpenTargets", + "id": "ENSG00000113924" + }, + { + "type": "Orphanet", + "id": "56", + "properties": { + "disease": "Alkaptonuria" + } + }, + { + "type": "PharmGKB", + "id": "PA29268" + }, + { + "type": "VEuPathDB", + "id": "HostDB:ENSG00000113924.11" + }, + { + "type": "eggNOG", + "id": "KOG1417", + "properties": { + "taxonomic scope": "Eukaryota" + } + }, + { + "type": "GeneTree", + "id": "ENSGT00390000004601" + }, + { + "type": "HOGENOM", + "id": "CLU_027174_0_0_1" + }, + { + "type": "InParanoid", + "id": "Q93099" + }, + { + "type": "OMA", + "id": "FESIDQG" + }, + { + "type": "OrthoDB", + "id": "795654at2759" + }, + { + "type": "PhylomeDB", + "id": "Q93099" + }, + { + "type": "TreeFam", + "id": "TF300490" + }, + { + "type": "BioCyc", + "id": "MetaCyc:HS03728-MONOMER" + }, + { + "type": "BRENDA", + "id": "1.13.11.5", + "properties": { + "organism ID": "2681" + } + }, + { + "type": "PathwayCommons", + "id": "Q93099" + }, + { + "type": "Reactome", + "id": "R-HSA-8963684", + "properties": { + "pathway name": "Tyrosine catabolism" + } + }, + { + "type": "UniPathway", + "id": "UPA00139", + "properties": { + "reaction ID": "UER00339" + } + }, + { + "type": "BioGRID-ORCS", + "id": "3081", + "properties": { + "hits": "7 hits in 981 CRISPR screens" + } + }, + { + "type": "ChiTaRS", + "id": "HGD", + "properties": { + "organism name": "human" + } + }, + { + "type": "EvolutionaryTrace", + "id": "Q93099" + }, + { + "type": "GenomeRNAi", + "id": "3081" + }, + { + "type": "Pharos", + "id": "Q93099", + "properties": { + "development level": "Tbio" + } + }, + { + "type": "PRO", + "id": "PR:Q93099" + }, + { + "type": "Proteomes", + "id": "UP000005640", + "properties": { + "component": "Chromosome 3" + } + }, + { + "type": "RNAct", + "id": "Q93099", + "properties": { + "molecule type": "protein" + } + }, + { + "type": "Bgee", + "id": "ENSG00000113924", + "properties": { + "expression patterns": "Expressed in right lobe of liver and 163 other tissues" + } + }, + { + "type": "ExpressionAtlas", + "id": "Q93099", + "properties": { + "expression patterns": "baseline and differential" + } + }, + { + "type": "Genevisible", + "id": "Q93099", + "properties": { + "organism ID": "HS" + } + }, + { + "type": "GO", + "id": "GO:0005737", + "properties": { + "term": "C:cytoplasm", + "source": "IBA:GO_Central" + }, + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21873635", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", + "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" + } + } + ] + }, + { + "type": "GO", + "id": "GO:0005829", + "properties": { + "term": "C:cytosol", + "source": "TAS:Reactome" + } + }, + { + "type": "GO", + "id": "GO:0070062", + "properties": { + "term": "C:extracellular exosome", + "source": "HDA:UniProtKB" + }, + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "19056867", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/19056867", + "alternativeUrl": "https://europepmc.org/abstract/MED/19056867" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "23533145", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/23533145", + "alternativeUrl": "https://europepmc.org/abstract/MED/23533145" + } + } + ] + }, + { + "type": "GO", + "id": "GO:0004411", + "properties": { + "term": "F:homogentisate 1,2-dioxygenase activity", + "source": "IBA:GO_Central" + }, + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21873635", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", + "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" + } + } + ] + }, + { + "type": "GO", + "id": "GO:0042802", + "properties": { + "term": "F:identical protein binding", + "source": "IPI:IntAct" + }, + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "25416956", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/25416956", + "alternativeUrl": "https://europepmc.org/abstract/MED/25416956" + } + }, + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "32296183", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/32296183", + "alternativeUrl": "https://europepmc.org/abstract/MED/32296183" + } + } + ] + }, + { + "type": "GO", + "id": "GO:0046872", + "properties": { + "term": "F:metal ion binding", + "source": "IEA:UniProtKB-KW" + } + }, + { + "type": "GO", + "id": "GO:0006559", + "properties": { + "term": "P:L-phenylalanine catabolic process", + "source": "IBA:GO_Central" + }, + "evidences": [ + { + "code": "ECO:0000269", + "source": { + "name": "PubMed", + "id": "21873635", + "url": "http://www.ncbi.nlm.nih.gov/pubmed/21873635", + "alternativeUrl": "https://europepmc.org/abstract/MED/21873635" + } + } + ] + }, + { + "type": "GO", + "id": "GO:0006572", + "properties": { + "term": "P:tyrosine catabolic process", + "source": "TAS:Reactome" + } + }, + { + "type": "Gene3D", + "id": "2.60.120.10", + "properties": { + "match status": "1" + } + }, + { + "type": "InterPro", + "id": "IPR005708", + "properties": { + "entry name": "Homogentis_dOase" + } + }, + { + "type": "InterPro", + "id": "IPR014710", + "properties": { + "entry name": "RmlC-like_jellyroll" + } + }, + { + "type": "InterPro", + "id": "IPR011051", + "properties": { + "entry name": "RmlC_Cupin_sf" + } + }, + { + "type": "PANTHER", + "id": "PTHR11056", + "properties": { + "match status": "1", + "entry name": "PTHR11056" + } + }, + { + "type": "Pfam", + "id": "PF04209", + "properties": { + "match status": "1", + "entry name": "HgmA" + } + }, + { + "type": "SUPFAM", + "id": "SSF51182", + "properties": { + "match status": "1", + "entry name": "SSF51182" + } + }, + { + "type": "TIGRFAMs", + "id": "TIGR01015", + "properties": { + "match status": "1", + "entry name": "hmgA" + } + } + ], + "keywords": [ + { + "value": "3D-structure" + }, + { + "value": "Acetylation" + }, + { + "value": "Dioxygenase" + }, + { + "value": "Disease variant" + }, + { + "value": "Iron" + }, + { + "value": "Metal-binding" + }, + { + "value": "Oxidoreductase" + }, + { + "value": "Phenylalanine catabolism" + }, + { + "value": "Reference proteome" + }, + { + "value": "Tyrosine catabolism" + } + ], + "references": [ + { + "citation": { + "type": "journal article", + "publicationDate": "1996", + "title": "The molecular basis of alkaptonuria.", + "authors": [ + "Fernandez-Canon J.M.", + "Granadino B.", + "Beltran-Valero de Bernabe D.", + "Renedo M.", + "Fernandez-Ruiz E.", + "Penalva M.A.", + "Rodriguez de Cordoba S." + ], + "publication": { + "journalName": "Nat. Genet." + }, + "location": { + "volume": "14", + "firstPage": "19", + "lastPage": "24" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "8782815" + }, + { + "type": "DOI", + "id": "10.1038/ng0996-19" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [MRNA]", "VARIANTS HIS-80; AKU SER-230 AND GLY-300"] + }, + { + "citation": { + "type": "submission", + "publicationDate": "SEP-1996", + "title": "Homogentisate 1,2-dioxygenase human cDNA sequence.", + "authors": ["Ramos S.", "Hernandez M.", "Rozes A.", "Larruga J.", "Gonzalez P.", "Cabrera V.M."], + "publication": { + "submissionDatabase": "EMBL/GenBank/DDBJ databases" + } + }, + "source": { + "tissue": [ + { + "value": "Liver" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [MRNA]", "VARIANT HIS-80"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1997", + "title": "The human homogentisate 1,2-dioxygenase (HGO) gene.", + "authors": [ + "Granadino B.", + "Beltran-Valero de Bernabe D.", + "Fernandez-Canon J.M.", + "Penalva M.A.", + "Rodriguez de Cordoba S." + ], + "publication": { + "journalName": "Genomics" + }, + "location": { + "volume": "43", + "firstPage": "115", + "lastPage": "122" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "9244427" + }, + { + "type": "DOI", + "id": "10.1006/geno.1997.4805" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [GENOMIC DNA]", "VARIANT HIS-80"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2004", + "title": "Complete sequencing and characterization of 21,243 full-length human cDNAs.", + "authors": [ + "Ota T.", + "Suzuki Y.", + "Nishikawa T.", + "Otsuki T.", + "Sugiyama T.", + "Irie R.", + "Wakamatsu A.", + "Hayashi K.", + "Sato H.", + "Nagai K.", + "Kimura K.", + "Makita H.", + "Sekine M.", + "Obayashi M.", + "Nishi T.", + "Shibahara T.", + "Tanaka T.", + "Ishii S.", + "Yamamoto J.", + "Saito K.", + "Kawai Y.", + "Isono Y.", + "Nakamura Y.", + "Nagahari K.", + "Murakami K.", + "Yasuda T.", + "Iwayanagi T.", + "Wagatsuma M.", + "Shiratori A.", + "Sudo H.", + "Hosoiri T.", + "Kaku Y.", + "Kodaira H.", + "Kondo H.", + "Sugawara M.", + "Takahashi M.", + "Kanda K.", + "Yokoi T.", + "Furuya T.", + "Kikkawa E.", + "Omura Y.", + "Abe K.", + "Kamihara K.", + "Katsuta N.", + "Sato K.", + "Tanikawa M.", + "Yamazaki M.", + "Ninomiya K.", + "Ishibashi T.", + "Yamashita H.", + "Murakawa K.", + "Fujimori K.", + "Tanai H.", + "Kimata M.", + "Watanabe M.", + "Hiraoka S.", + "Chiba Y.", + "Ishida S.", + "Ono Y.", + "Takiguchi S.", + "Watanabe S.", + "Yosida M.", + "Hotuta T.", + "Kusano J.", + "Kanehori K.", + "Takahashi-Fujii A.", + "Hara H.", + "Tanase T.-O.", + "Nomura Y.", + "Togiya S.", + "Komai F.", + "Hara R.", + "Takeuchi K.", + "Arita M.", + "Imose N.", + "Musashino K.", + "Yuuki H.", + "Oshima A.", + "Sasaki N.", + "Aotsuka S.", + "Yoshikawa Y.", + "Matsunawa H.", + "Ichihara T.", + "Shiohata N.", + "Sano S.", + "Moriya S.", + "Momiyama H.", + "Satoh N.", + "Takami S.", + "Terashima Y.", + "Suzuki O.", + "Nakagawa S.", + "Senoh A.", + "Mizoguchi H.", + "Goto Y.", + "Shimizu F.", + "Wakebe H.", + "Hishigaki H.", + "Watanabe T.", + "Sugiyama A.", + "Takemoto M.", + "Kawakami B.", + "Yamazaki M.", + "Watanabe K.", + "Kumagai A.", + "Itakura S.", + "Fukuzumi Y.", + "Fujimori Y.", + "Komiyama M.", + "Tashiro H.", + "Tanigami A.", + "Fujiwara T.", + "Ono T.", + "Yamada K.", + "Fujii Y.", + "Ozaki K.", + "Hirao M.", + "Ohmori Y.", + "Kawabata A.", + "Hikiji T.", + "Kobatake N.", + "Inagaki H.", + "Ikema Y.", + "Okamoto S.", + "Okitani R.", + "Kawakami T.", + "Noguchi S.", + "Itoh T.", + "Shigeta K.", + "Senba T.", + "Matsumura K.", + "Nakajima Y.", + "Mizuno T.", + "Morinaga M.", + "Sasaki M.", + "Togashi T.", + "Oyama M.", + "Hata H.", + "Watanabe M.", + "Komatsu T.", + "Mizushima-Sugano J.", + "Satoh T.", + "Shirai Y.", + "Takahashi Y.", + "Nakagawa K.", + "Okumura K.", + "Nagase T.", + "Nomura N.", + "Kikuchi H.", + "Masuho Y.", + "Yamashita R.", + "Nakai K.", + "Yada T.", + "Nakamura Y.", + "Ohara O.", + "Isogai T.", + "Sugano S." + ], + "publication": { + "journalName": "Nat. Genet." + }, + "location": { + "volume": "36", + "firstPage": "40", + "lastPage": "45" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "14702039" + }, + { + "type": "DOI", + "id": "10.1038/ng1285" + } + ] + }, + "source": { + "tissue": [ + { + "value": "Kidney" + }, + { + "value": "Prostate" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]", "VARIANT HIS-80"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2006", + "title": "The DNA sequence, annotation and analysis of human chromosome 3.", + "authors": [ + "Muzny D.M.", + "Scherer S.E.", + "Kaul R.", + "Wang J.", + "Yu J.", + "Sudbrak R.", + "Buhay C.J.", + "Chen R.", + "Cree A.", + "Ding Y.", + "Dugan-Rocha S.", + "Gill R.", + "Gunaratne P.", + "Harris R.A.", + "Hawes A.C.", + "Hernandez J.", + "Hodgson A.V.", + "Hume J.", + "Jackson A.", + "Khan Z.M.", + "Kovar-Smith C.", + "Lewis L.R.", + "Lozado R.J.", + "Metzker M.L.", + "Milosavljevic A.", + "Miner G.R.", + "Morgan M.B.", + "Nazareth L.V.", + "Scott G.", + "Sodergren E.", + "Song X.-Z.", + "Steffen D.", + "Wei S.", + "Wheeler D.A.", + "Wright M.W.", + "Worley K.C.", + "Yuan Y.", + "Zhang Z.", + "Adams C.Q.", + "Ansari-Lari M.A.", + "Ayele M.", + "Brown M.J.", + "Chen G.", + "Chen Z.", + "Clendenning J.", + "Clerc-Blankenburg K.P.", + "Chen R.", + "Chen Z.", + "Davis C.", + "Delgado O.", + "Dinh H.H.", + "Dong W.", + "Draper H.", + "Ernst S.", + "Fu G.", + "Gonzalez-Garay M.L.", + "Garcia D.K.", + "Gillett W.", + "Gu J.", + "Hao B.", + "Haugen E.", + "Havlak P.", + "He X.", + "Hennig S.", + "Hu S.", + "Huang W.", + "Jackson L.R.", + "Jacob L.S.", + "Kelly S.H.", + "Kube M.", + "Levy R.", + "Li Z.", + "Liu B.", + "Liu J.", + "Liu W.", + "Lu J.", + "Maheshwari M.", + "Nguyen B.-V.", + "Okwuonu G.O.", + "Palmeiri A.", + "Pasternak S.", + "Perez L.M.", + "Phelps K.A.", + "Plopper F.J.", + "Qiang B.", + "Raymond C.", + "Rodriguez R.", + "Saenphimmachak C.", + "Santibanez J.", + "Shen H.", + "Shen Y.", + "Subramanian S.", + "Tabor P.E.", + "Verduzco D.", + "Waldron L.", + "Wang J.", + "Wang J.", + "Wang Q.", + "Williams G.A.", + "Wong G.K.-S.", + "Yao Z.", + "Zhang J.", + "Zhang X.", + "Zhao G.", + "Zhou J.", + "Zhou Y.", + "Nelson D.", + "Lehrach H.", + "Reinhardt R.", + "Naylor S.L.", + "Yang H.", + "Olson M.", + "Weinstock G.", + "Gibbs R.A." + ], + "publication": { + "journalName": "Nature" + }, + "location": { + "volume": "440", + "firstPage": "1194", + "lastPage": "1198" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "16641997" + }, + { + "type": "DOI", + "id": "10.1038/nature04728" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]"] + }, + { + "citation": { + "type": "submission", + "publicationDate": "SEP-2005", + "authors": [ + "Mural R.J.", + "Istrail S.", + "Sutton G.G.", + "Florea L.", + "Halpern A.L.", + "Mobarry C.M.", + "Lippert R.", + "Walenz B.", + "Shatkay H.", + "Dew I.", + "Miller J.R.", + "Flanigan M.J.", + "Edwards N.J.", + "Bolanos R.", + "Fasulo D.", + "Halldorsson B.V.", + "Hannenhalli S.", + "Turner R.", + "Yooseph S.", + "Lu F.", + "Nusskern D.R.", + "Shue B.C.", + "Zheng X.H.", + "Zhong F.", + "Delcher A.L.", + "Huson D.H.", + "Kravitz S.A.", + "Mouchard L.", + "Reinert K.", + "Remington K.A.", + "Clark A.G.", + "Waterman M.S.", + "Eichler E.E.", + "Adams M.D.", + "Hunkapiller M.W.", + "Myers E.W.", + "Venter J.C." + ], + "publication": { + "submissionDatabase": "EMBL/GenBank/DDBJ databases" + } + }, + "scope": ["NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]", "VARIANT HIS-80"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2004", + "title": "The status, quality, and expansion of the NIH full-length cDNA project: the Mammalian Gene Collection (MGC).", + "consortiums": ["The MGC Project Team"], + "publication": { + "journalName": "Genome Res." + }, + "location": { + "volume": "14", + "firstPage": "2121", + "lastPage": "2127" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "15489334" + }, + { + "type": "DOI", + "id": "10.1101/gr.2596504" + } + ] + }, + "scope": ["NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]", "VARIANT HIS-80"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2009", + "title": "Lysine acetylation targets protein complexes and co-regulates major cellular functions.", + "authors": [ + "Choudhary C.", + "Kumar C.", + "Gnad F.", + "Nielsen M.L.", + "Rehman M.", + "Walther T.C.", + "Olsen J.V.", + "Mann M." + ], + "publication": { + "journalName": "Science" + }, + "location": { + "volume": "325", + "firstPage": "834", + "lastPage": "840" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "19608861" + }, + { + "type": "DOI", + "id": "10.1126/science.1175371" + } + ] + }, + "scope": [ + "ACETYLATION [LARGE SCALE ANALYSIS] AT LYS-98", + "IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]" + ] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2011", + "title": "Initial characterization of the human central proteome.", + "authors": [ + "Burkard T.R.", + "Planyavsky M.", + "Kaupe I.", + "Breitwieser F.P.", + "Buerckstuemmer T.", + "Bennett K.L.", + "Superti-Furga G.", + "Colinge J." + ], + "publication": { + "journalName": "BMC Syst. Biol." + }, + "location": { + "volume": "5", + "firstPage": "17", + "lastPage": "17" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "21269460" + }, + { + "type": "DOI", + "id": "10.1186/1752-0509-5-17" + } + ] + }, + "scope": ["IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2000", + "title": "Crystal structure of human homogentisate dioxygenase.", + "authors": ["Titus G.P.", "Mueller H.A.", "Burgner J.", "Rodriguez de Cordoba S.", "Penalva M.A.", "Timm D.E."], + "publication": { + "journalName": "Nat. Struct. Biol." + }, + "location": { + "volume": "7", + "firstPage": "542", + "lastPage": "546" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "10876237" + }, + { + "type": "DOI", + "id": "10.1038/76756" + } + ] + }, + "scope": ["X-RAY CRYSTALLOGRAPHY (1.9 ANGSTROMS)", "METAL-BINDING SITES", "SUBUNIT"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1997", + "title": "Molecular defects in alkaptonuria.", + "authors": ["Gehrig A.", "Schmidt S.R.", "Mueller C.R.", "Srsen S.", "Srsnova K.", "Kress W."], + "publication": { + "journalName": "Cytogenet. Cell Genet." + }, + "location": { + "volume": "76", + "firstPage": "14", + "lastPage": "16" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "9154114" + }, + { + "type": "DOI", + "id": "10.1159/000134501" + } + ] + }, + "scope": ["VARIANT AKU ARG-161"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1998", + "title": "Mutation and polymorphism analysis of the human homogentisate 1, 2-dioxygenase gene in alkaptonuria patients.", + "authors": [ + "Beltran-Valero de Bernabe D.", + "Granadino B.", + "Chiarelli I.", + "Porfirio B.", + "Mayatepek E.", + "Aquaron R.", + "Moore M.M.", + "Festen J.J.M.", + "Sanmarti R.", + "Penalva M.A.", + "de Cordoba S.R." + ], + "publication": { + "journalName": "Am. J. Hum. Genet." + }, + "location": { + "volume": "62", + "firstPage": "776", + "lastPage": "784" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "9529363" + }, + { + "type": "DOI", + "id": "10.1086/301805" + } + ] + }, + "scope": ["VARIANTS AKU ALA-42; GLY-97; GLY-153; ILE-189; THR-216; HIS-225; SER-227 AND VAL-368"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1998", + "title": "A novel point mutation associated with alkaptonuria.", + "authors": [ + "Higashino K.", + "Liu W.", + "Ohkawa T.", + "Yamamoto T.", + "Fukui K.", + "Ohno M.", + "Imanishi H.", + "Iwasaki A.", + "Amuro Y.", + "Hada T." + ], + "publication": { + "journalName": "Clin. Genet." + }, + "location": { + "volume": "53", + "firstPage": "228", + "lastPage": "229" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "9630082" + }, + { + "type": "DOI", + "id": "10.1111/j.1399-0004.1998.tb02684.x" + } + ] + }, + "scope": ["VARIANT AKU LYS-168"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1999", + "title": "Analysis of alkaptonuria (AKU) mutations and polymorphisms reveals that the CCC sequence motif is a mutational hot spot in the homogentisate 1,2 dioxygenase gene (HGO).", + "authors": ["Beltran-Valero de Bernabe D.", "Jimenez F.J.", "Aquaron R.", "Rodriguez de Cordoba S."], + "publication": { + "journalName": "Am. J. Hum. Genet." + }, + "location": { + "volume": "64", + "firstPage": "1316", + "lastPage": "1322" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "10205262" + }, + { + "type": "DOI", + "id": "10.1086/302376" + } + ] + }, + "scope": ["VARIANTS AKU GLY-60; CYS-62; ASP-122; THR-230 AND GLU-291"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1999", + "title": "Ocular ochronosis in alkaptonuria patients carrying mutations in the homogentisate 1,2-dioxygenase gene.", + "authors": ["Felbor U.", "Mutsch Y.", "Grehn F.", "Mueller C.R.", "Kress W."], + "publication": { + "journalName": "Br. J. Ophthalmol." + }, + "location": { + "volume": "83", + "firstPage": "680", + "lastPage": "683" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "10340975" + }, + { + "type": "DOI", + "id": "10.1136/bjo.83.6.680" + } + ] + }, + "source": { + "tissue": [ + { + "value": "Leukocyte" + } + ] + }, + "scope": ["VARIANTS AKU PRO-25 AND VAL-368"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1999", + "title": "Allelic heterogeneity of alkaptonuria in Central Europe.", + "authors": [ + "Mueller C.R.", + "Fregin A.", + "Srsen S.", + "Srsnova K.", + "Halliger-Keller B.", + "Felbor U.", + "Seemanova E.", + "Kress W." + ], + "publication": { + "journalName": "Eur. J. Hum. Genet." + }, + "location": { + "volume": "7", + "firstPage": "645", + "lastPage": "651" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "10482952" + }, + { + "type": "DOI", + "id": "10.1038/sj.ejhg.5200343" + } + ] + }, + "source": { + "tissue": [ + { + "value": "Lymphocyte" + } + ] + }, + "scope": ["VARIANTS AKU PRO-25; ARG-161; SER-230; ARG-270; GLY-300 AND VAL-368"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "1999", + "title": "Mutational analysis of the HGO gene in Finnish alkaptonuria patients.", + "authors": [ + "Beltran-Valero de Bernabe D.", + "Peterson P.", + "Luopajarvi K.", + "Matintalo P.", + "Alho A.", + "Konttinen Y.", + "Krohn K.", + "Rodriguez de Cordoba S.", + "Ranki A." + ], + "publication": { + "journalName": "J. Med. Genet." + }, + "location": { + "volume": "36", + "firstPage": "922", + "lastPage": "923" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "10594001" + } + ] + }, + "scope": ["VARIANTS AKU SER-330; VAL-368 AND ARG-371"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2009", + "title": "Mutation spectrum of homogentisic acid oxidase (HGD) in alkaptonuria.", + "authors": [ + "Vilboux T.", + "Kayser M.", + "Introne W.", + "Suwannarat P.", + "Bernardini I.", + "Fischer R.", + "O'Brien K.", + "Kleta R.", + "Huizing M.", + "Gahl W.A." + ], + "publication": { + "journalName": "Hum. Mutat." + }, + "location": { + "volume": "30", + "firstPage": "1611", + "lastPage": "1619" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "19862842" + }, + { + "type": "DOI", + "id": "10.1002/humu.21120" + } + ] + }, + "scope": [ + "VARIANTS AKU ALA-3; ALA-42; GLY-60; PRO-61; CYS-62; LEU-73; THR-92; ARG-97; PHE-120; TRP-120; VAL-122; ARG-123; PRO-137; LEU-158; ARG-161; ASP-168; LYS-168; ARG-183; GLY-187; TRP-217; LEU-225; SER-230; PRO-258; ARG-269; ARG-270; GLY-300; PRO-321; LEU-359; ARG-360; GLU-362; VAL-368; LEU-373 AND GLN-401" + ] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2012", + "title": "Identification of 11 novel homogentisate 1,2 dioxygenase variants in alkaptonuria patients and establishment of a novel LOVD-based HGD mutation database.", + "authors": [ + "Zatkova A.", + "Sedlackova T.", + "Radvansky J.", + "Polakova H.", + "Nemethova M.", + "Aquaron R.", + "Dursun I.", + "Usher J.L.", + "Kadasi L." + ], + "publication": { + "journalName": "JIMD Rep." + }, + "location": { + "volume": "4", + "firstPage": "55", + "lastPage": "65" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "23430897" + }, + { + "type": "DOI", + "id": "10.1007/8904_2011_68" + } + ] + }, + "scope": [ + "VARIANTS AKU ARG-33; PHE-44; ARG-115; PRO-116; ALA-123; ALA-152; LEU-169; GLY-178; GLY-197; SER-219; ASN-276; ALA-360; ARG-361 AND HIS-374" + ] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2012", + "title": "Novel mutations in the homogentisate 1,2 dioxygenase gene identified in Jordanian patients with alkaptonuria.", + "authors": ["Al-sbou M."], + "publication": { + "journalName": "Rheumatol. Int." + }, + "location": { + "volume": "32", + "firstPage": "1741", + "lastPage": "1746" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "21437689" + }, + { + "type": "DOI", + "id": "10.1007/s00296-011-1868-0" + } + ] + }, + "scope": ["VARIANTS AKU SER-227 AND ASN-369"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2013", + "title": "First report of HGD mutations in a Chinese with alkaptonuria.", + "authors": [ + "Yang Y.J.", + "Guo J.H.", + "Chen W.J.", + "Zhao R.", + "Tang J.S.", + "Meng X.H.", + "Zhao L.", + "Tu M.", + "He X.Y.", + "Wu L.Q.", + "Zhu Y.M." + ], + "publication": { + "journalName": "Gene" + }, + "location": { + "volume": "518", + "firstPage": "467", + "lastPage": "469" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "23353776" + }, + { + "type": "DOI", + "id": "10.1016/j.gene.2013.01.020" + } + ] + }, + "scope": ["VARIANT AKU CYS-329"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2014", + "title": "An enzyme assisted RP-RPLC approach for in-depth analysis of human liver phosphoproteome.", + "authors": [ + "Bian Y.", + "Song C.", + "Cheng K.", + "Dong M.", + "Wang F.", + "Huang J.", + "Sun D.", + "Wang L.", + "Ye M.", + "Zou H." + ], + "publication": { + "journalName": "J. Proteomics" + }, + "location": { + "volume": "96", + "firstPage": "253", + "lastPage": "262" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "24275569" + }, + { + "type": "DOI", + "id": "10.1016/j.jprot.2013.11.014" + } + ] + }, + "source": { + "tissue": [ + { + "value": "Liver" + } + ] + }, + "scope": ["VARIANT [LARGE SCALE ANALYSIS] HIS-80", "IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]"] + }, + { + "citation": { + "type": "journal article", + "publicationDate": "2015", + "title": "Analysis of HGD gene mutations in patients with alkaptonuria from the United Kingdom: identification of novel mutations.", + "authors": ["Usher J.L.", "Ascher D.B.", "Pires D.E.", "Milan A.M.", "Blundell T.L.", "Ranganath L.R."], + "publication": { + "journalName": "JIMD Rep." + }, + "location": { + "volume": "24", + "firstPage": "3", + "lastPage": "11" + }, + "dbReferences": [ + { + "type": "PubMed", + "id": "25681086" + }, + { + "type": "DOI", + "id": "10.1007/8904_2014_380" + } + ] + }, + "scope": [ + "VARIANTS AKU LYS-13; ASN-18; ALA-42; GLN-53; ARG-115; PHE-120; ARG-123; ARG-161; LEU-169; ASN-171; GLY-197; SER-219; HIS-225; PRO-225; SER-230; PHE-245; ARG-270; ASN-276; GLY-300; ASP-337; LEU-359; ARG-360; ARG-361; VAL-368 AND HIS-374", + "VARIANT THR-172" + ] } -} \ No newline at end of file + ], + "sequence": { + "version": 2, + "length": 445, + "mass": 49964, + "modified": "2010-05-18", + "sequence": "MAELKYISGFGNECSSEDPRCPGSLPEGQNNPQVCPYNLYAEQLSGSAFTCPRSTNKRSWLYRILPSVSHKPFESIDEGQVTHNWDEVDPDPNQLRWKPFEIPKASQKKVDFVSGLHTLCGAGDIKSNNGLAIHIFLCNTSMENRCFYNSDGDFLIVPQKGNLLIYTEFGKMLVQPNEICVIQRGMRFSIDVFEETRGYILEVYGVHFELPDLGPIGANGLANPRDFLIPIAWYEDRQVPGGYTVINKYQGKLFAAKQDVSPFNVVAWHGNYTPYKYNLKNFMVINSVAFDHADPSIFTVLTAKSVRPGVAIADFVIFPPRWGVADKTFRPPYYHRNCMSEFMGLIRGHYEAKQGGFLPGGGSLHSTMTPHGPDADCFEKASKVKLAPERIADGTMAFMFESSLSLAVTKWGLKASRCLDENYHKCWEPLKSHFTPNSRNPAEPN" + } +} diff --git a/__test__/data/ols/edge.json b/__test__/data/ols/edge.json index 83013e1..2b96b92 100644 --- a/__test__/data/ols/edge.json +++ b/__test__/data/ols/edge.json @@ -1,44 +1,36 @@ { - "input": "DOID:9562", - "query_operation": { - "_params": { - "id": "{inputs[0]}" - }, - "_supportBatch": false, - "method": "get", - "_pathParams": [], - "_server": "https://www.ebi.ac.uk/ols/api", - "path": "/ontologies/doid/children", - "_tags": [ - "ontology", - "translator" - ] + "input": "DOID:9562", + "query_operation": { + "_params": { + "id": "{inputs[0]}" }, - "association": { - "input_id": "DOID", - "input_type": "Disease", - "output_id": "DOID", - "output_type": "Disease", - "predicate": "has_subclass", - "source": "disease ontology", - "api_name": "Ontology Lookup Service API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Service Provider" - ] - } - }, - "response_mapping": { - "has_subclass": { - "DOID": "_embedded.terms.obo_id", - "name": "_embedded.terms.label", - "description": "_embedded.terms.description" - } - }, - "tags": [ - "ontology", - "translator" - ] -} \ No newline at end of file + "_supportBatch": false, + "method": "get", + "_pathParams": [], + "_server": "https://www.ebi.ac.uk/ols/api", + "path": "/ontologies/doid/children", + "_tags": ["ontology", "translator"] + }, + "association": { + "input_id": "DOID", + "input_type": "Disease", + "output_id": "DOID", + "output_type": "Disease", + "predicate": "has_subclass", + "source": "disease ontology", + "api_name": "Ontology Lookup Service API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Service Provider"] + } + }, + "response_mapping": { + "has_subclass": { + "DOID": "_embedded.terms.obo_id", + "name": "_embedded.terms.label", + "description": "_embedded.terms.description" + } + }, + "tags": ["ontology", "translator"] +} diff --git a/__test__/data/ols/response.json b/__test__/data/ols/response.json index e2ac1d1..85cc1a5 100644 --- a/__test__/data/ols/response.json +++ b/__test__/data/ols/response.json @@ -1,1949 +1,1753 @@ { - "_embedded": { - "terms": [ - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110596", - "label": "primary ciliary dyskinesia 21", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:615294" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110596" - ] - }, - "synonyms": [ - "CILD21", - "primary ciliary dyskinesia 21 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110596", - "obo_id": "DOID:0110596", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23354437", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "615294", - "description": null, - "url": "https://omim.org/entry/615294" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110595", - "label": "Stromme syndrome", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance and ciliopathy with some type of intestinal atresia, variable ocular abnormalities, microcephaly, and has_material_basis_in compound heterozygous mutation in the CENPF gene on chromosome 1q41." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q87.8", - "OMIM:243605" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110595" - ] - }, - "synonyms": [ - "CILD31", - "lethal fetal brain malformation-duodenal atresia-bilateral renal hypoplasia syndrome", - "jejunal atresia with microcephaly and ocular anomalies", - "primary ciliary dyskinesia 31", - "apple peel syndrome with microcephaly and ocular anomalies" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110595", - "obo_id": "DOID:0110595", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance and ciliopathy with some type of intestinal atresia, variable ocular abnormalities, microcephaly, and has_material_basis_in compound heterozygous mutation in the CENPF gene on chromosome 1q41.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/25564561", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q87.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "243605", - "description": null, - "url": "https://omim.org/entry/243605" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110598", - "label": "primary ciliary dyskinesia 14", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner dynein arm defect and axonemal disorganization, chronic upper and lower airway infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCDC39 gene on chromosome 3q26." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:613807" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110598" - ] - }, - "synonyms": [ - "primary ciliary dyskinesia 14 with or without situs inversus", - "CILD14" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110598", - "obo_id": "DOID:0110598", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner dynein arm defect and axonemal disorganization, chronic upper and lower airway infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCDC39 gene on chromosome 3q26.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/21131972", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "613807", - "description": null, - "url": "https://omim.org/entry/613807" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110597", - "label": "primary ciliary dyskinesia 22", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent respiratory infections, persistent rhinosinusitis, otitis media, chronic cough, variable presence of situs abnormalities, and has_material_basis_in homozygous or compound heterozygous mutation in the ZMYND10 gene on chromosome 3p21." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:615444", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110597" - ] - }, - "synonyms": [ - "CILD22", - "primary ciliary dyskinesia 22 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110597", - "obo_id": "DOID:0110597", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent respiratory infections, persistent rhinosinusitis, otitis media, chronic cough, variable presence of situs abnormalities, and has_material_basis_in homozygous or compound heterozygous mutation in the ZMYND10 gene on chromosome 3p21.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23891471", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23891469", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "615444", - "description": null, - "url": "https://omim.org/entry/615444" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/graph" - }, - "has_symptom": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110599", - "label": "primary ciliary dyskinesia 3", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, ciliary akinesia and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the DNAH5 gene on chromosome 5p15." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:608644" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110599" - ] - }, - "synonyms": [ - "CILD3", - "primary ciliary dyskinesia 3 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110599", - "obo_id": "DOID:0110599", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, ciliary akinesia and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the DNAH5 gene on chromosome 5p15.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/11788826", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "608644", - "description": null, - "url": "https://omim.org/entry/608644" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110594", - "label": "primary ciliary dyskinesia 1", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect and in about half of patients situs inversus and has_material_basis_in compound heterozygous mutation in the DNAI1 gene on chromosome 9p13." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:244400", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110594" - ] - }, - "synonyms": [ - "CILD1", - "primary ciliary dyskinesia 1 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110594", - "obo_id": "DOID:0110594", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect and in about half of patients situs inversus and has_material_basis_in compound heterozygous mutation in the DNAI1 gene on chromosome 9p13.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/10577904", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "244400", - "description": null, - "url": "https://omim.org/entry/244400" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110604", - "label": "primary ciliary dyskinesia 18", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, early infantile onset of recurrent sinopulmonary infections, male infertility, and variable occurence of situs inversus and has_material_basis_in homozygous mutation in the HEATR2 gene on chromosome 7p22." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:614874" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110604" - ] - }, - "synonyms": [ - "primary ciliary dyskinesia 18 with or without situs inversus", - "CILD18" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110604", - "obo_id": "DOID:0110604", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, early infantile onset of recurrent sinopulmonary infections, male infertility, and variable occurence of situs inversus and has_material_basis_in homozygous mutation in the HEATR2 gene on chromosome 7p22.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23040496", - "description": null, - "url": null - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "614874", - "description": null, - "url": "https://omim.org/entry/614874" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110603", - "label": "primary ciliary dyskinesia 32", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with near absence of radial spokes, respiratory distress in term neonates, impaired mucociliary clearance, chronic respiratory infections, bronchiectasis, and infertility and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH3 gene on chromosome 6q25." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:616481" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110603" - ] - }, - "synonyms": [ - "CILD32", - "primary ciliary dyskinesia 32 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110603", - "obo_id": "DOID:0110603", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with near absence of radial spokes, respiratory distress in term neonates, impaired mucociliary clearance, chronic respiratory infections, bronchiectasis, and infertility and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH3 gene on chromosome 6q25.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26073779", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "616481", - "description": null, - "url": "https://omim.org/entry/616481" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110606", - "label": "primary ciliary dyskinesia 6", - "description": [ - "A primary ciliary dyskinesia that is characterized by partial outer dynein arm defect and has_material_basis_in mutation in the TXNDC3 gene on the chromosome 7p14.1." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:610852" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110606" - ] - }, - "synonyms": [ - "CILD6" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110606", - "obo_id": "DOID:0110606", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by partial outer dynein arm defect and has_material_basis_in mutation in the TXNDC3 gene on the chromosome 7p14.1.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/17360648", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "610852", - "description": null, - "url": "https://omim.org/entry/610852" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110605", - "label": "primary ciliary dyskinesia 7", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with chronic respiratory infections, chronic sinusitis, recurrent bronchitis, and pneumonia beginning in infancy or early childhood and has_material_basis_in mutation in the DNAH11 gene on chromosome 7p21." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:611884" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110605" - ] - }, - "synonyms": [ - "CILD7", - "primary ciliary dyskinesia 7 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110605", - "obo_id": "DOID:0110605", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with chronic respiratory infections, chronic sinusitis, recurrent bronchitis, and pneumonia beginning in infancy or early childhood and has_material_basis_in mutation in the DNAH11 gene on chromosome 7p21.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/18022865", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "611884", - "description": null, - "url": "https://omim.org/entry/611884" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110608", - "label": "primary ciliary dyskinesia 19", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, chronic sinopulmonary infections, asthenospermia, and immotile cilia and has_material_basis_in homozygous mutation in the LRRC6 on chromosome 8q24." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:614935" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110608" - ] - }, - "synonyms": [ - "CILD19", - "primary ciliary dyskinesia 19 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110608", - "obo_id": "DOID:0110608", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, chronic sinopulmonary infections, asthenospermia, and immotile cilia and has_material_basis_in homozygous mutation in the LRRC6 on chromosome 8q24.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23122589", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "614935", - "description": null, - "url": "https://omim.org/entry/614935" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110607", - "label": "primary ciliary dyskinesia 28", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, and decreased fertility and has_material_basis_in homozygous or compound heterozygous mutation in the SPAG1 gene on chromosome 8q22." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:615505" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110607" - ] - }, - "synonyms": [ - "primary ciliary dyskinesia 28 with or without situs inversus", - "CILD28" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110607", - "obo_id": "DOID:0110607", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, and decreased fertility and has_material_basis_in homozygous or compound heterozygous mutation in the SPAG1 gene on chromosome 8q22.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/24055112", - "description": null, - "url": null - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "615505", - "description": null, - "url": "https://omim.org/entry/615505" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110609", - "label": "primary ciliary dyskinesia 23", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, respiratory distress and recurrent upper and lower airway infections, and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the ARMC4 gene on chromosome 10p." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:615451" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110609" - ] - }, - "synonyms": [ - "CILD23", - "primary ciliary dyskinesia 23 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110609", - "obo_id": "DOID:0110609", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, respiratory distress and recurrent upper and lower airway infections, and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the ARMC4 gene on chromosome 10p.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23849778", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "615451", - "description": null, - "url": "https://omim.org/entry/615451" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110600", - "label": "primary ciliary dyskinesia 29", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with oligocilia and early childhood onset of recurrent respiratory infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCNO gene on chromosome 5p15." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:615872", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110600" - ] - }, - "synonyms": [ - "CILD29", - "primary ciliary dyskinesia 29 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110600", - "obo_id": "DOID:0110600", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with oligocilia and early childhood onset of recurrent respiratory infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCNO gene on chromosome 5p15.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/24747639", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "615872", - "description": null, - "url": "https://omim.org/entry/615872" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110602", - "label": "primary ciliary dyskinesia 11", - "description": [ - "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, nasal symptoms, ear obstruction with consequent hearing problems, low weight, and short stature, and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH4A gene on chromosome 6q22." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:612649" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110602" - ] - }, - "synonyms": [ - "CILD11", - "primary ciliary dyskinesia 11 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110602", - "obo_id": "DOID:0110602", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, nasal symptoms, ear obstruction with consequent hearing problems, low weight, and short stature, and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH4A gene on chromosome 6q22.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/19200523", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "612649", - "description": null, - "url": "https://omim.org/entry/612649" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/graph" - }, - "has_symptom": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110601", - "label": "primary ciliary dyskinesia 12", - "description": [ - "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, and nasal symptoms, and has_material_basis_in homozygous mutation in the RSPH9 gene on chromosome 6p21." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:612650", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110601" - ] - }, - "synonyms": [ - "CILD12", - "primary ciliary dyskinesia 12 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110601", - "obo_id": "DOID:0110601", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, and nasal symptoms, and has_material_basis_in homozygous mutation in the RSPH9 gene on chromosome 6p21.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/19200523", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "612650", - "description": null, - "url": "https://omim.org/entry/612650" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/graph" - }, - "has_symptom": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110615", - "label": "primary ciliary dyskinesia 25", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner and outer dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, decreased fertility and variable occurence of laterality defects and has_material_basis_in homozygous or compound heterozygous mutation in the DYX1C1 gene on chromosome 15q21." - ], - "annotation": { - "database_cross_reference": [ - "ICD10CM:Q34.8", - "OMIM:615482" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110615" - ] - }, - "synonyms": [ - "primary ciliary dyskinesia 25 with or without situs inversus", - "CILD25" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110615", - "obo_id": "DOID:0110615", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner and outer dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, decreased fertility and variable occurence of laterality defects and has_material_basis_in homozygous or compound heterozygous mutation in the DYX1C1 gene on chromosome 15q21.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23872636", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "615482", - "description": null, - "url": "https://omim.org/entry/615482" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110614", - "label": "primary ciliary dyskinesia 4", - "description": [ - "A primary ciliary dyskinesia that is characterized by partial absence of the inner dynein arms with variable occurrence of situs inversus and has_material_basis_in variation in the chromosome region 15q13.1-q15.1." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:608646", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110614" - ] - }, - "synonyms": [ - "CILD4", - "primary ciliary dyskinesia 4 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110614", - "obo_id": "DOID:0110614", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by partial absence of the inner dynein arms with variable occurrence of situs inversus and has_material_basis_in variation in the chromosome region 15q13.1-q15.1.", - "oboXrefs": [ - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/14985390", - "description": null, - "url": null - }, - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - } - ] - } - ], - "obo_xref": [ - { - "database": "OMIM", - "id": "608646", - "description": null, - "url": "https://omim.org/entry/608646" - }, - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110617", - "label": "primary ciliary dyskinesia 5", - "description": [ - "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with early onset of a progressive decline in lung function and has_material_basis_in homozygous mutation in the HYDIN gene on chromosome 16q22." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:608647", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110617" - ] - }, - "synonyms": [ - "CILD5", - "primary ciliary dyskinesia 5 without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110617", - "obo_id": "DOID:0110617", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with early onset of a progressive decline in lung function and has_material_basis_in homozygous mutation in the HYDIN gene on chromosome 16q22.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23022101", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "608647", - "description": null, - "url": "https://omim.org/entry/608647" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/graph" - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/DOID_0110616", - "label": "primary ciliary dyskinesia 8", - "description": [ - "A primary ciliary dyskinesia that has_material_basis_in variation in the chromosome region 15q24-q25." - ], - "annotation": { - "database_cross_reference": [ - "OMIM:612274", - "ICD10CM:Q34.8" - ], - "has_obo_namespace": [ - "disease_ontology" - ], - "id": [ - "DOID:0110616" - ] - }, - "synonyms": [ - "CILD8", - "primary ciliary dyskinesia 8 with or without situs inversus" - ], - "ontology_name": "doid", - "ontology_prefix": "DOID", - "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", - "is_obsolete": false, - "term_replaced_by": null, - "is_defining_ontology": true, - "has_children": false, - "is_root": false, - "short_form": "DOID_0110616", - "obo_id": "DOID:0110616", - "in_subset": null, - "obo_definition_citation": [ - { - "definition": "A primary ciliary dyskinesia that has_material_basis_in variation in the chromosome region 15q24-q25.", - "oboXrefs": [ - { - "database": null, - "id": "http://purl.obolibrary.org/obo/ECO_0007645", - "description": null, - "url": "http://purl.obolibrary.org/obo/ECO_0007645" - }, - { - "database": null, - "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/18270537", - "description": null, - "url": null - } - ] - } - ], - "obo_xref": [ - { - "database": "ICD10CM", - "id": "Q34.8", - "description": null, - "url": null - }, - { - "database": "OMIM", - "id": "612274", - "description": null, - "url": "https://omim.org/entry/612274" - } - ], - "obo_synonym": null, - "is_preferred_root": false, - "_links": { - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616" - }, - "parents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/parents" - }, - "ancestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/ancestors" - }, - "hierarchicalParents": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/hierarchicalParents" - }, - "hierarchicalAncestors": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/hierarchicalAncestors" - }, - "jstree": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/jstree" - }, - "graph": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/graph" - } - } - } - ] - }, - "_links": { - "first": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=0&size=20" + "_embedded": { + "terms": [ + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110596", + "label": "primary ciliary dyskinesia 21", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:615294"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110596"] + }, + "synonyms": ["CILD21", "primary ciliary dyskinesia 21 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110596", + "obo_id": "DOID:0110596", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with a missing Nexin link, infantile onset of chronic sinopulmonary infections, and has_material_basis_in homozygous mutation in the DRC1 gene on chromosome 2p23.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23354437", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "615294", + "description": null, + "url": "https://omim.org/entry/615294" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110596/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110595", + "label": "Stromme syndrome", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance and ciliopathy with some type of intestinal atresia, variable ocular abnormalities, microcephaly, and has_material_basis_in compound heterozygous mutation in the CENPF gene on chromosome 1q41." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q87.8", "OMIM:243605"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110595"] + }, + "synonyms": [ + "CILD31", + "lethal fetal brain malformation-duodenal atresia-bilateral renal hypoplasia syndrome", + "jejunal atresia with microcephaly and ocular anomalies", + "primary ciliary dyskinesia 31", + "apple peel syndrome with microcephaly and ocular anomalies" + ], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110595", + "obo_id": "DOID:0110595", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance and ciliopathy with some type of intestinal atresia, variable ocular abnormalities, microcephaly, and has_material_basis_in compound heterozygous mutation in the CENPF gene on chromosome 1q41.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/25564561", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q87.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "243605", + "description": null, + "url": "https://omim.org/entry/243605" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110595/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110598", + "label": "primary ciliary dyskinesia 14", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner dynein arm defect and axonemal disorganization, chronic upper and lower airway infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCDC39 gene on chromosome 3q26." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:613807"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110598"] + }, + "synonyms": ["primary ciliary dyskinesia 14 with or without situs inversus", "CILD14"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110598", + "obo_id": "DOID:0110598", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner dynein arm defect and axonemal disorganization, chronic upper and lower airway infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCDC39 gene on chromosome 3q26.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/21131972", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "613807", + "description": null, + "url": "https://omim.org/entry/613807" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110598/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110597", + "label": "primary ciliary dyskinesia 22", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent respiratory infections, persistent rhinosinusitis, otitis media, chronic cough, variable presence of situs abnormalities, and has_material_basis_in homozygous or compound heterozygous mutation in the ZMYND10 gene on chromosome 3p21." + ], + "annotation": { + "database_cross_reference": ["OMIM:615444", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110597"] + }, + "synonyms": ["CILD22", "primary ciliary dyskinesia 22 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110597", + "obo_id": "DOID:0110597", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent respiratory infections, persistent rhinosinusitis, otitis media, chronic cough, variable presence of situs abnormalities, and has_material_basis_in homozygous or compound heterozygous mutation in the ZMYND10 gene on chromosome 3p21.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23891471", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23891469", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "615444", + "description": null, + "url": "https://omim.org/entry/615444" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/graph" + }, + "has_symptom": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110597/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110599", + "label": "primary ciliary dyskinesia 3", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, ciliary akinesia and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the DNAH5 gene on chromosome 5p15." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:608644"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110599"] + }, + "synonyms": ["CILD3", "primary ciliary dyskinesia 3 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110599", + "obo_id": "DOID:0110599", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, ciliary akinesia and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the DNAH5 gene on chromosome 5p15.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/11788826", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "608644", + "description": null, + "url": "https://omim.org/entry/608644" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110599/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110594", + "label": "primary ciliary dyskinesia 1", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect and in about half of patients situs inversus and has_material_basis_in compound heterozygous mutation in the DNAI1 gene on chromosome 9p13." + ], + "annotation": { + "database_cross_reference": ["OMIM:244400", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110594"] + }, + "synonyms": ["CILD1", "primary ciliary dyskinesia 1 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110594", + "obo_id": "DOID:0110594", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect and in about half of patients situs inversus and has_material_basis_in compound heterozygous mutation in the DNAI1 gene on chromosome 9p13.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/10577904", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "244400", + "description": null, + "url": "https://omim.org/entry/244400" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110594/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110604", + "label": "primary ciliary dyskinesia 18", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, early infantile onset of recurrent sinopulmonary infections, male infertility, and variable occurence of situs inversus and has_material_basis_in homozygous mutation in the HEATR2 gene on chromosome 7p22." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:614874"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110604"] + }, + "synonyms": ["primary ciliary dyskinesia 18 with or without situs inversus", "CILD18"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110604", + "obo_id": "DOID:0110604", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, early infantile onset of recurrent sinopulmonary infections, male infertility, and variable occurence of situs inversus and has_material_basis_in homozygous mutation in the HEATR2 gene on chromosome 7p22.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23040496", + "description": null, + "url": null + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "614874", + "description": null, + "url": "https://omim.org/entry/614874" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110604/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110603", + "label": "primary ciliary dyskinesia 32", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with near absence of radial spokes, respiratory distress in term neonates, impaired mucociliary clearance, chronic respiratory infections, bronchiectasis, and infertility and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH3 gene on chromosome 6q25." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:616481"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110603"] }, - "self": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562" + "synonyms": ["CILD32", "primary ciliary dyskinesia 32 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110603", + "obo_id": "DOID:0110603", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with near absence of radial spokes, respiratory distress in term neonates, impaired mucociliary clearance, chronic respiratory infections, bronchiectasis, and infertility and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH3 gene on chromosome 6q25.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26073779", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "616481", + "description": null, + "url": "https://omim.org/entry/616481" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110603/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110606", + "label": "primary ciliary dyskinesia 6", + "description": [ + "A primary ciliary dyskinesia that is characterized by partial outer dynein arm defect and has_material_basis_in mutation in the TXNDC3 gene on the chromosome 7p14.1." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:610852"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110606"] }, - "next": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=1&size=20" + "synonyms": ["CILD6"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110606", + "obo_id": "DOID:0110606", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by partial outer dynein arm defect and has_material_basis_in mutation in the TXNDC3 gene on the chromosome 7p14.1.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/17360648", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "610852", + "description": null, + "url": "https://omim.org/entry/610852" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110606/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110605", + "label": "primary ciliary dyskinesia 7", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with chronic respiratory infections, chronic sinusitis, recurrent bronchitis, and pneumonia beginning in infancy or early childhood and has_material_basis_in mutation in the DNAH11 gene on chromosome 7p21." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:611884"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110605"] }, - "last": { - "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=2&size=20" + "synonyms": ["CILD7", "primary ciliary dyskinesia 7 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110605", + "obo_id": "DOID:0110605", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with chronic respiratory infections, chronic sinusitis, recurrent bronchitis, and pneumonia beginning in infancy or early childhood and has_material_basis_in mutation in the DNAH11 gene on chromosome 7p21.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/18022865", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "611884", + "description": null, + "url": "https://omim.org/entry/611884" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110605/graph" + } } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110608", + "label": "primary ciliary dyskinesia 19", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, chronic sinopulmonary infections, asthenospermia, and immotile cilia and has_material_basis_in homozygous mutation in the LRRC6 on chromosome 8q24." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:614935"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110608"] + }, + "synonyms": ["CILD19", "primary ciliary dyskinesia 19 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110608", + "obo_id": "DOID:0110608", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, chronic sinopulmonary infections, asthenospermia, and immotile cilia and has_material_basis_in homozygous mutation in the LRRC6 on chromosome 8q24.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23122589", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "614935", + "description": null, + "url": "https://omim.org/entry/614935" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110608/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110607", + "label": "primary ciliary dyskinesia 28", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, and decreased fertility and has_material_basis_in homozygous or compound heterozygous mutation in the SPAG1 gene on chromosome 8q22." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:615505"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110607"] + }, + "synonyms": ["primary ciliary dyskinesia 28 with or without situs inversus", "CILD28"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110607", + "obo_id": "DOID:0110607", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer and inner dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, and decreased fertility and has_material_basis_in homozygous or compound heterozygous mutation in the SPAG1 gene on chromosome 8q22.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/24055112", + "description": null, + "url": null + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "615505", + "description": null, + "url": "https://omim.org/entry/615505" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110607/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110609", + "label": "primary ciliary dyskinesia 23", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, respiratory distress and recurrent upper and lower airway infections, and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the ARMC4 gene on chromosome 10p." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:615451"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110609"] + }, + "synonyms": ["CILD23", "primary ciliary dyskinesia 23 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110609", + "obo_id": "DOID:0110609", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with outer dynein arm defect, respiratory distress and recurrent upper and lower airway infections, and variable occurence of situs inversus and has_material_basis_in homozygous or compound heterozygous mutation in the ARMC4 gene on chromosome 10p.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23849778", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "615451", + "description": null, + "url": "https://omim.org/entry/615451" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110609/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110600", + "label": "primary ciliary dyskinesia 29", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with oligocilia and early childhood onset of recurrent respiratory infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCNO gene on chromosome 5p15." + ], + "annotation": { + "database_cross_reference": ["OMIM:615872", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110600"] + }, + "synonyms": ["CILD29", "primary ciliary dyskinesia 29 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110600", + "obo_id": "DOID:0110600", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with oligocilia and early childhood onset of recurrent respiratory infections, and has_material_basis_in homozygous or compound heterozygous mutation in the CCNO gene on chromosome 5p15.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/24747639", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "615872", + "description": null, + "url": "https://omim.org/entry/615872" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110600/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110602", + "label": "primary ciliary dyskinesia 11", + "description": [ + "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, nasal symptoms, ear obstruction with consequent hearing problems, low weight, and short stature, and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH4A gene on chromosome 6q22." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:612649"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110602"] + }, + "synonyms": ["CILD11", "primary ciliary dyskinesia 11 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110602", + "obo_id": "DOID:0110602", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, nasal symptoms, ear obstruction with consequent hearing problems, low weight, and short stature, and has_material_basis_in homozygous or compound heterozygous mutation in the RSPH4A gene on chromosome 6q22.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/19200523", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "612649", + "description": null, + "url": "https://omim.org/entry/612649" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/graph" + }, + "has_symptom": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110602/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110601", + "label": "primary ciliary dyskinesia 12", + "description": [ + "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, and nasal symptoms, and has_material_basis_in homozygous mutation in the RSPH9 gene on chromosome 6p21." + ], + "annotation": { + "database_cross_reference": ["OMIM:612650", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110601"] + }, + "synonyms": ["CILD12", "primary ciliary dyskinesia 12 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110601", + "obo_id": "DOID:0110601", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by reduced exercise tolerance, chronic wet cough, recurrent respiratory infections, bronchiectasis, and nasal symptoms, and has_material_basis_in homozygous mutation in the RSPH9 gene on chromosome 6p21.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/19200523", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "612650", + "description": null, + "url": "https://omim.org/entry/612650" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/graph" + }, + "has_symptom": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110601/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fdoid%2523has_symptom" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110615", + "label": "primary ciliary dyskinesia 25", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner and outer dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, decreased fertility and variable occurence of laterality defects and has_material_basis_in homozygous or compound heterozygous mutation in the DYX1C1 gene on chromosome 15q21." + ], + "annotation": { + "database_cross_reference": ["ICD10CM:Q34.8", "OMIM:615482"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110615"] + }, + "synonyms": ["primary ciliary dyskinesia 25 with or without situs inversus", "CILD25"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110615", + "obo_id": "DOID:0110615", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with inner and outer dynein arm defect, recurrent upper and lower airway disease, bronchiectasis, decreased fertility and variable occurence of laterality defects and has_material_basis_in homozygous or compound heterozygous mutation in the DYX1C1 gene on chromosome 15q21.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/26998415", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23872636", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "615482", + "description": null, + "url": "https://omim.org/entry/615482" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110615/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110614", + "label": "primary ciliary dyskinesia 4", + "description": [ + "A primary ciliary dyskinesia that is characterized by partial absence of the inner dynein arms with variable occurrence of situs inversus and has_material_basis_in variation in the chromosome region 15q13.1-q15.1." + ], + "annotation": { + "database_cross_reference": ["OMIM:608646", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110614"] + }, + "synonyms": ["CILD4", "primary ciliary dyskinesia 4 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110614", + "obo_id": "DOID:0110614", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by partial absence of the inner dynein arms with variable occurrence of situs inversus and has_material_basis_in variation in the chromosome region 15q13.1-q15.1.", + "oboXrefs": [ + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/14985390", + "description": null, + "url": null + }, + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + } + ] + } + ], + "obo_xref": [ + { + "database": "OMIM", + "id": "608646", + "description": null, + "url": "https://omim.org/entry/608646" + }, + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110614/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110617", + "label": "primary ciliary dyskinesia 5", + "description": [ + "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with early onset of a progressive decline in lung function and has_material_basis_in homozygous mutation in the HYDIN gene on chromosome 16q22." + ], + "annotation": { + "database_cross_reference": ["OMIM:608647", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110617"] + }, + "synonyms": ["CILD5", "primary ciliary dyskinesia 5 without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110617", + "obo_id": "DOID:0110617", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that is characterized by autosomal recessive inheritance with early onset of a progressive decline in lung function and has_material_basis_in homozygous mutation in the HYDIN gene on chromosome 16q22.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/23022101", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "608647", + "description": null, + "url": "https://omim.org/entry/608647" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110617/graph" + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/DOID_0110616", + "label": "primary ciliary dyskinesia 8", + "description": [ + "A primary ciliary dyskinesia that has_material_basis_in variation in the chromosome region 15q24-q25." + ], + "annotation": { + "database_cross_reference": ["OMIM:612274", "ICD10CM:Q34.8"], + "has_obo_namespace": ["disease_ontology"], + "id": ["DOID:0110616"] + }, + "synonyms": ["CILD8", "primary ciliary dyskinesia 8 with or without situs inversus"], + "ontology_name": "doid", + "ontology_prefix": "DOID", + "ontology_iri": "http://purl.obolibrary.org/obo/doid.owl", + "is_obsolete": false, + "term_replaced_by": null, + "is_defining_ontology": true, + "has_children": false, + "is_root": false, + "short_form": "DOID_0110616", + "obo_id": "DOID:0110616", + "in_subset": null, + "obo_definition_citation": [ + { + "definition": "A primary ciliary dyskinesia that has_material_basis_in variation in the chromosome region 15q24-q25.", + "oboXrefs": [ + { + "database": null, + "id": "http://purl.obolibrary.org/obo/ECO_0007645", + "description": null, + "url": "http://purl.obolibrary.org/obo/ECO_0007645" + }, + { + "database": null, + "id": "url:https://www.ncbi.nlm.nih.gov/pubmed/18270537", + "description": null, + "url": null + } + ] + } + ], + "obo_xref": [ + { + "database": "ICD10CM", + "id": "Q34.8", + "description": null, + "url": null + }, + { + "database": "OMIM", + "id": "612274", + "description": null, + "url": "https://omim.org/entry/612274" + } + ], + "obo_synonym": null, + "is_preferred_root": false, + "_links": { + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616" + }, + "parents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/parents" + }, + "ancestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/ancestors" + }, + "hierarchicalParents": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/hierarchicalParents" + }, + "hierarchicalAncestors": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/hierarchicalAncestors" + }, + "jstree": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/jstree" + }, + "graph": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDOID_0110616/graph" + } + } + } + ] + }, + "_links": { + "first": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=0&size=20" + }, + "self": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562" + }, + "next": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=1&size=20" }, - "page": { - "size": 20, - "totalElements": 46, - "totalPages": 3, - "number": 0 + "last": { + "href": "https://www.ebi.ac.uk/ols/api/ontologies/doid/children?id=DOID:9562&page=2&size=20" } -} \ No newline at end of file + }, + "page": { + "size": 20, + "totalElements": 46, + "totalPages": 3, + "number": 0 + } +} diff --git a/__test__/data/opentarget/edge.json b/__test__/data/opentarget/edge.json index 876275e..0c95f12 100644 --- a/__test__/data/opentarget/edge.json +++ b/__test__/data/opentarget/edge.json @@ -1,47 +1,39 @@ { - "input": "ENSG00000120251", - "query_operation": { - "_params": { - "target": "{inputs[0]}", - "datasource": "chembl", - "size": 100, - "fields": "drug" - }, - "_supportBatch": false, - "method": "get", - "_pathParams": [], - "_server": "https://platform-api.opentargets.io/v3", - "_path": "/platform/public/evidence/filter", - "_tags": [ - "translator", - "opentarget" - ] + "input": "ENSG00000120251", + "query_operation": { + "_params": { + "target": "{inputs[0]}", + "datasource": "chembl", + "size": 100, + "fields": "drug" }, - "association": { - "input_id": "ENSEMBL", - "input_type": "Gene", - "output_id": "CHEMBL.COMPOUND", - "output_type": "ChemicalSubstance", - "predicate": "related_to", - "source": "CHEMBL", - "api_name": "OpenTarget API", - "smartapi": {}, - "x-translator": { - "component": "KP", - "team": [ - "Service Provider" - ] - } - }, - "response_mapping": { - "related_to": { - "CHEMBL.COMPOUND": "data.drug.id", - "moleculeType": "data.drug.molecule_type", - "name": "data.drug.molecule_name" - } - }, - "tags": [ - "translator", - "opentarget" - ] -} \ No newline at end of file + "_supportBatch": false, + "method": "get", + "_pathParams": [], + "_server": "https://platform-api.opentargets.io/v3", + "_path": "/platform/public/evidence/filter", + "_tags": ["translator", "opentarget"] + }, + "association": { + "input_id": "ENSEMBL", + "input_type": "Gene", + "output_id": "CHEMBL.COMPOUND", + "output_type": "ChemicalSubstance", + "predicate": "related_to", + "source": "CHEMBL", + "api_name": "OpenTarget API", + "smartapi": {}, + "x-translator": { + "component": "KP", + "team": ["Service Provider"] + } + }, + "response_mapping": { + "related_to": { + "CHEMBL.COMPOUND": "data.drug.id", + "moleculeType": "data.drug.molecule_type", + "name": "data.drug.molecule_name" + } + }, + "tags": ["translator", "opentarget"] +} diff --git a/__test__/data/opentarget/response.json b/__test__/data/opentarget/response.json index 4116c5c..d3011e2 100644 --- a/__test__/data/opentarget/response.json +++ b/__test__/data/opentarget/response.json @@ -1,725 +1,718 @@ { - "from": 0, - "took": 11, - "next": [ - 1.0, - "4167b06db977aac34fbe4bbb6674e99b" - ], - "data_version": "20.11", - "query": { - "sort": [ - "scores.association_score" - ], - "format": "json", - "fields": [ - "drug" - ], - "datastructure": "custom", - "pathway": [], - "size": 100 - }, - "total": 320, - "data": [ - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "PERAMPANEL", - "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "PERAMPANEL", - "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "PERAMPANEL", - "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "PERAMPANEL", - "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "PERAMPANEL", - "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - }, - { - "drug": { - "molecule_name": "TOPIRAMATE", - "id": "http://identifiers.org/chembl.compound/CHEMBL220492", - "molecule_type": "Small molecule" - } - } - ], + "from": 0, + "took": 11, + "next": [1.0, "4167b06db977aac34fbe4bbb6674e99b"], + "data_version": "20.11", + "query": { + "sort": ["scores.association_score"], + "format": "json", + "fields": ["drug"], + "datastructure": "custom", + "pathway": [], "size": 100 -} \ No newline at end of file + }, + "total": 320, + "data": [ + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "PERAMPANEL", + "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "PERAMPANEL", + "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "PERAMPANEL", + "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "PERAMPANEL", + "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "PERAMPANEL", + "id": "http://identifiers.org/chembl.compound/CHEMBL1214124", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + }, + { + "drug": { + "molecule_name": "TOPIRAMATE", + "id": "http://identifiers.org/chembl.compound/CHEMBL220492", + "molecule_type": "Small molecule" + } + } + ], + "size": 100 +} diff --git a/__test__/data/semmedgene/edge.json b/__test__/data/semmedgene/edge.json index c62f6bd..a545b35 100644 --- a/__test__/data/semmedgene/edge.json +++ b/__test__/data/semmedgene/edge.json @@ -1,60 +1,49 @@ { - "input": [ - "C1332824", - "C1332823", - "123" - ], - "query_operation": { - "params": { - "fields": "positively_regulates" - }, - "request_body": { - "body": { - "size": 5, - "q": "{inputs[0]}", - "scopes": "umls" - } - }, - "path": "/query", - "path_params": [], - "method": "post", - "server": "https://biothings.ncats.io/semmedgene", - "tags": [ - "disease", - "annotation", - "query", - "translator", - "biothings", - "semmed" - ], - "supportBatch": true, - "inputSeparator": "," + "input": ["C1332824", "C1332823", "123"], + "query_operation": { + "params": { + "fields": "positively_regulates" }, - "association": { - "input_id": "UMLS", - "input_type": "Gene", - "output_id": "UMLS", - "output_type": "Gene", - "predicate": "positively_regulates", - "source": "SEMMED", - "api_name": "SEMMED Gene API", - "smartapi": { - "id": "81955d376a10505c1c69cd06dbda3047", - "meta": { - "ETag": "f94053bc78b3c2f0b97f7afd52d7de2fe083b655e56a53090ad73e12be83673b", - "github_username": "kevinxin90", - "timestamp": "2020-05-27T16:53:40.804575", - "uptime_status": "good", - "uptime_ts": "2020-06-12T00:04:31.404599", - "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/semmed/semmed_gene.yaml" - } - } + "request_body": { + "body": { + "size": 5, + "q": "{inputs[0]}", + "scopes": "umls" + } }, - "response_mapping": { - "positively_regulates": { - "pmid": "positively_regulates.pmid", - "umls": "positively_regulates.umls" - } - }, - "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" -} \ No newline at end of file + "path": "/query", + "path_params": [], + "method": "post", + "server": "https://biothings.ncats.io/semmedgene", + "tags": ["disease", "annotation", "query", "translator", "biothings", "semmed"], + "supportBatch": true, + "inputSeparator": "," + }, + "association": { + "input_id": "UMLS", + "input_type": "Gene", + "output_id": "UMLS", + "output_type": "Gene", + "predicate": "positively_regulates", + "source": "SEMMED", + "api_name": "SEMMED Gene API", + "smartapi": { + "id": "81955d376a10505c1c69cd06dbda3047", + "meta": { + "ETag": "f94053bc78b3c2f0b97f7afd52d7de2fe083b655e56a53090ad73e12be83673b", + "github_username": "kevinxin90", + "timestamp": "2020-05-27T16:53:40.804575", + "uptime_status": "good", + "uptime_ts": "2020-06-12T00:04:31.404599", + "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/semmed/semmed_gene.yaml" + } + } + }, + "response_mapping": { + "positively_regulates": { + "pmid": "positively_regulates.pmid", + "umls": "positively_regulates.umls" + } + }, + "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" +} diff --git a/__test__/data/semmedgene/response.json b/__test__/data/semmedgene/response.json index 9bd4dbc..5550d60 100644 --- a/__test__/data/semmedgene/response.json +++ b/__test__/data/semmedgene/response.json @@ -1 +1,435 @@ -[{"query":"C1332823","_id":"C1332823","_score":10.009048,"name":"CXCR4 gene","positively_regulates":[{"@type":"Gene","name":"KLF6 wt Allele","pmid":["20430021"],"umls":"C3273418"},{"@type":"Gene","name":"phenylpyruvate tautomerase","pmid":["26139098","22014447"],"umls":"C0312359"},{"@type":"Gene","name":"ADA gene","pmid":["12270140"],"umls":"C1412179"},{"@type":"Gene","name":"ERVK-20 gene","pmid":["18818518"],"umls":"C3147215"},{"@type":"Gene","name":"ERVK-18 gene","pmid":["18818518"],"umls":"C3147213"},{"@type":"Gene","name":"CXCL13 wt Allele","pmid":["23773523"],"umls":"C1704465"},{"@type":"Gene","name":"AHSA1 gene","pmid":["15972662"],"umls":"C1412886"},{"@type":"Gene","name":"PDLIM5 gene","pmid":["25359780"],"umls":"C1538613"},{"@type":"Gene","name":"CFL1 gene","pmid":["18928553","18775311"],"umls":"C1413355"},{"@type":"Gene","name":"JTB gene","pmid":["25269667"],"umls":"C1334294"},{"@type":"Gene","name":"WWP1 gene","pmid":["23553732"],"umls":"C1538115"},{"@type":"Gene","name":"PSIP1 gene","pmid":["27783955"],"umls":"C1335268"},{"@type":"Gene","name":"PRRT2 wt Allele","pmid":["27127886","25784988"],"umls":"C3539645"},{"@type":"Gene","name":"CCR3 wt Allele","pmid":["16455991"],"umls":"C4284190"},{"@type":"Gene","name":"CCR5 gene","pmid":["15128813","17199940","9770527"],"umls":"C1332700"},{"@type":"Gene","name":"CCR7 wt Allele","pmid":["16098045","14563373","15284853","25688986"],"umls":"C3540500"},{"@type":"Gene","name":"CREB1 gene","pmid":["28638088"],"umls":"C1413702"},{"@type":"Gene","name":"CRK gene","pmid":["18481208","21680174","15972662"],"umls":"C0812252"},{"@type":"Gene","name":"MAPK14 wt Allele","pmid":["24170200","15972662"],"umls":"C1705633"},{"@type":"Gene","name":"S1PR1 wt Allele","pmid":["22901257"],"umls":"C3539578"},{"@type":"Gene","name":"EGF A61G Allele","pmid":["17714434"],"umls":"C2699841"},{"@type":"Gene","name":"EGFR gene","pmid":["22952422","27809841"],"umls":"C1414313"},{"@type":"Gene","name":"ELAVL1 wt Allele","pmid":["24692066"],"umls":"C3812730"},{"@type":"Gene","name":"EP300 wt Allele","pmid":["26316070"],"umls":"C1705458"},{"@type":"Gene","name":"EPHB2 wt Allele","pmid":["25428386","17594938","20121456","23308188","20956518","19106094","18481208","21680174","26179613"],"umls":"C1705767"},{"@type":"Gene","name":"ERBB2 wt Allele","pmid":["18337451","27809841","16685382","16061624","18807177"],"umls":"C1704824"},{"@type":"Gene","name":"AKT1 gene","pmid":["28294689","24912431","23902739","20179608","14630801","28533307","17878289","28075616","19665027","27588611","20829512","26179613","24879309","28584306","25428386","27388534","25145299","25605718","19201817","17687643","18840710","18481208","21680174","17483336"],"umls":"C0812228"},{"@type":"Gene","name":"ESR1 gene","pmid":["18807177"],"umls":"C1414461"},{"@type":"Gene","name":"PTK2B wt Allele","pmid":["14630801"],"umls":"C1705341"},{"@type":"Gene","name":"FOXO3 gene","pmid":["22802411"],"umls":"C1333573"},{"@type":"Gene","name":"EPB41L3 gene","pmid":["26280082"],"umls":"C1414425"},{"@type":"Gene","name":"FLT1 gene","pmid":["20345248"],"umls":"C0812298"},{"@type":"Gene","name":"FOS gene","pmid":["17550983"],"umls":"C0087140"},{"@type":"Gene","name":"TNPO3 gene","pmid":["27783955"],"umls":"C1424743"},{"@type":"Gene","name":"SH3BP4 gene","pmid":["24692066"],"umls":"C1420023"},{"@type":"Gene","name":"RASGRP3 gene","pmid":["23308188"],"umls":"C1422744"},{"@type":"Gene","name":"LMOD1 gene","pmid":["25145299"],"umls":"C1416886"},{"@type":"Gene","name":"POLDIP2 gene","pmid":["15972662"],"umls":"C1428254"},{"@type":"Gene","name":"BBS9 gene","pmid":["25145299"],"umls":"C1842747"},{"@type":"Gene","name":"FLVCR1 gene","pmid":["18452560"],"umls":"C1836722"},{"@type":"Gene","name":"RHOD gene","pmid":["17056591"],"umls":"C1412517"},{"@type":"Gene","name":"ERVW-1 gene","pmid":["18818518"],"umls":"C1422036"},{"@type":"Gene","name":"ID1 wt Allele","pmid":["24256728"],"umls":"C3274850"},{"@type":"Gene","name":"IL2 gene","pmid":["9591715"],"umls":"C0879590"},{"@type":"Gene","name":"IL2RA gene","pmid":["9808188"],"umls":"C1334114"},{"@type":"Gene","name":"IL8RB wt Allele","pmid":["28481874"],"umls":"C1704986"},{"@type":"Gene","name":"ISG20 gene","pmid":["9808188"],"umls":"C1416478"},{"@type":"Gene","name":"ITIH4 gene","pmid":["11356952"],"umls":"C1416509"},{"@type":"Gene","name":"ITK wt Allele","pmid":["26190113","24403602"],"umls":"C1706224"},{"@type":"Gene","name":"JAK2 wt Allele","pmid":["16990584","28544312"],"umls":"C1708581"},{"@type":"Gene","name":"JUN wt Allele","pmid":["27697100"],"umls":"C1706384"},{"@type":"Gene","name":"KDR wt Allele","pmid":["27388534"],"umls":"C1705712"},{"@type":"Gene","name":"MMP1 gene","pmid":["20102637"],"umls":"C1417199"},{"@type":"Gene","name":"MMP9 wt Allele","pmid":["26679758"],"umls":"C1708832"},{"@type":"Gene","name":"MYC wt Allele","pmid":["21530075"],"umls":"C1708843"},{"@type":"Gene","name":"NEU1 gene","pmid":["16061624"],"umls":"C1417680"},{"@type":"Gene","name":"NFKB1 wt Allele","pmid":["28687617"],"umls":"C2986464"},{"@type":"Gene","name":"NOS3 wt Allele","pmid":["27243031"],"umls":"C1709136"},{"@type":"Gene","name":"NR4A2 gene","pmid":["24154522"],"umls":"C1417836"},{"@type":"Gene","name":"OPRK1 gene","pmid":["21447649"],"umls":"C1417963"},{"@type":"Gene","name":"ATP8A2 wt Allele","pmid":["27454381"],"umls":"C1705556"},{"@type":"Gene","name":"PI3 wt Allele","pmid":["23434321"],"umls":"C3537449"},{"@type":"Gene","name":"PIK3CA gene","pmid":["22337890"],"umls":"C1335212"},{"@type":"Gene","name":"PIK3CB gene","pmid":["22337890"],"umls":"C1335213"},{"@type":"Gene","name":"PIK3CD wt Allele","pmid":["22337890"],"umls":"C3714973"},{"@type":"Gene","name":"PIK3CG wt Allele","pmid":["22337890"],"umls":"C1705325"},{"@type":"Gene","name":"ROBO4 wt Allele","pmid":["21211783"],"umls":"C2698937"},{"@type":"Gene","name":"MAPK1 gene","pmid":["25428386","15972662","17594938","20121456","23308188","20956518","19106094","18481208","21680174","26179613"],"umls":"C1366882"},{"@type":"Gene","name":"MAPK3 gene","pmid":["27388534","28533307"],"umls":"C1366765"},{"@type":"Gene","name":"MAPK8 wt Allele","pmid":["18481208","28584306","25121739"],"umls":"C1705632"},{"@type":"Gene","name":"ACKR3 gene","pmid":["21154415","24277075"],"umls":"C1835886"},{"@type":"Gene","name":"CXCL16 wt Allele","pmid":["18452560"],"umls":"C3538864"},{"@type":"Gene","name":"RAC1 wt Allele","pmid":["22345572","21172654"],"umls":"C3274857"},{"@type":"Gene","name":"RANBP2 gene","pmid":["28100513"],"umls":"C1419259"},{"@type":"Gene","name":"RHO gene","pmid":["17056591"],"umls":"C1419385"},{"@type":"Gene","name":"BCR wt Allele","pmid":["10224286"],"umls":"C1704799"},{"@type":"Gene","name":"CCL5 gene","pmid":["16107514"],"umls":"C1332691"},{"@type":"Gene","name":"CCL15 gene","pmid":["16107514"],"umls":"C1332679"},{"@type":"Gene","name":"CCL20 gene","pmid":["19340288"],"umls":"C1366524"},{"@type":"Gene","name":"CXCL12 wt Allele","pmid":["25544766","26396061","19106094","17697603","21349176","18453750","17706641","18452560","25371371","21695171"],"umls":"C1704964"},{"@type":"Gene","name":"BMP2 wt Allele","pmid":["27725318"],"umls":"C1706894"},{"@type":"Gene","name":"BMP6 gene","pmid":["21636574"],"umls":"C1332427"},{"@type":"Gene","name":"SLC22A3 wt Allele","pmid":["26190113","24403602"],"umls":"C3812262"},{"@type":"Gene","name":"SRC wt Allele","pmid":["17158356","23192271"],"umls":"C1705997"},{"@type":"Gene","name":"STAT3 gene","pmid":["28687617","19455144","23192271","28481874"],"umls":"C1367307"},{"@type":"Gene","name":"ADAM17 wt Allele","pmid":["27489286"],"umls":"C1706637"},{"@type":"Gene","name":"TRBV20OR9-2 gene","pmid":["10464166"],"umls":"C1421047"},{"@type":"Gene","name":"TNF gene","pmid":["15093715","16288025","24451118"],"umls":"C0812246"},{"@type":"Gene","name":"C3AR1 gene","pmid":["22901257"],"umls":"C1412995"},{"@type":"Gene","name":"CCR2 gene","pmid":["16455991"],"umls":"C1413188"},{"@type":"Gene","name":"VEGFA gene","pmid":["20018810","16084492","21306303","27388534","21821866","22653973","28544312"],"umls":"C1823619"},{"@type":"Gene","name":"ZFP36 wt Allele","pmid":["24692066"],"umls":"C3539814"},{"@type":"Gene","name":"CXCR4 gene","pmid":["9671774","24693205","21261996","12193696","11799176","28489887","15528395","25482641","15308709","14563373","24718993","18728032","10525044","27163878","22016798","12444153","12605695","23647548","25537742","24695674","10878344","25825165","19244528","11493520","15059909","25753200","23023480","24458841","12609846","24500843","12225798","23372646","26788981","11591806","24129780","10074122","23197643"],"umls":"C1332823"},{"@type":"Gene","name":"AIMP2 wt Allele","pmid":["15972662"],"umls":"C3273301"},{"@type":"Gene","name":"CAMK2G gene","pmid":["18220750","14630801"],"umls":"C1413102"},{"@type":"Gene","name":"CAMP gene","pmid":["16204315","18765807","10644702"],"umls":"C1413106"},{"@type":"Gene","name":"TNFRSF10B gene","pmid":["19247452"],"umls":"C1336644"},{"@type":"Gene","name":"USP14 wt Allele","pmid":["19106094"],"umls":"C4321338"},{"@type":"Gene","name":"NEURL1 gene","pmid":["16061624"],"umls":"C1334875"},{"@type":"Gene","name":"CD4 gene","pmid":["11181132","22273578","26106396","15078935","22568557","26052942","22403408","29232699","18818518","20038787","9721247","11504923","15592478"],"umls":"C1332714"},{"@type":"Gene","name":"CD8B wt Allele","pmid":["29232699","12573587","25647836"],"umls":"C1706438"},{"@type":"Gene","name":"GRAP2 gene","pmid":["15972662"],"umls":"C1415284"},{"@type":"Gene","name":"CD34 gene","pmid":["23167782","21655289","19034720","11781237","19454674"],"umls":"C1332710"},{"@type":"Gene","name":"CD38 wt Allele","pmid":["17199940"],"umls":"C2827387"},{"@type":"Gene","name":"CD40 gene","pmid":["28281555"],"umls":"C1539081"},{"@type":"Gene","name":"CD40LG wt Allele","pmid":["24269609"],"umls":"C1706005"},{"@type":"Gene","name":"CD44 gene","pmid":["22384257"],"umls":"C1332712"},{"@type":"Gene","name":"CD63 wt Allele","pmid":["21270405"],"umls":"C3811252"},{"@type":"ChemicalSubstance","name":"Ethanol","pmid":["23300006"],"umls":"C0001962"},{"@type":"ChemicalSubstance","name":"Angiogenesis Factor","pmid":["24486002","22917235"],"umls":"C0002976"},{"@type":"ChemicalSubstance","name":"Antigens","pmid":["19696965"],"umls":"C0003320"},{"@type":"ChemicalSubstance","name":"Binding Sites","pmid":["15078935"],"umls":"C0005456"},{"@type":"ChemicalSubstance","name":"Calcium","pmid":["14982745","12845769","22157717","9439607"],"umls":"C0006675"},{"@type":"Gene","name":"Cyclic AMP-Dependent Protein Kinases","pmid":["18765807"],"umls":"C0010531"},{"@type":"ChemicalSubstance","name":"Dinoprostone","pmid":["16204315"],"umls":"C0012472"},{"@type":"ChemicalSubstance","name":"Elements","pmid":["17878524"],"umls":"C0013879"},{"@type":"Gene","name":"Genes","pmid":["26413813","24632620"],"umls":"C0017337"},{"@type":"Gene","name":"Guanosine Triphosphate Phosphohydrolases","pmid":["18632858"],"umls":"C0018296"},{"@type":"ChemicalSubstance","name":"Lipopolysaccharides","pmid":["12072369","22219610"],"umls":"C0023810"},{"@type":"Gene","name":"Phosphotransferases","pmid":["10542964","24912431"],"umls":"C0031727"},{"@type":"Gene","name":"Protein Kinase C","pmid":["27127886","25784988"],"umls":"C0033634"},{"@type":"Gene","name":"Protein Kinases","pmid":["11157475"],"umls":"C0033640"},{"@type":"ChemicalSubstance","name":"RNA, Messenger","pmid":["23815460"],"umls":"C0035696"},{"@type":"ChemicalSubstance","name":"Superoxides","pmid":["15509740"],"umls":"C0038836"},{"@type":"ChemicalSubstance","name":"Tetrodotoxin","pmid":["16476083"],"umls":"C0039705"},{"@type":"Gene","name":"1-Phosphatidylinositol 3-Kinase","pmid":["20038597","24632620","23434321","11157475"],"umls":"C0044602"},{"@type":"Gene","name":"Calcineurin","pmid":["24086760"],"umls":"C0054450"},{"@type":"ChemicalSubstance","name":"cyclopamine","pmid":["25820869"],"umls":"C0056789"},{"@type":"ChemicalSubstance","name":"oxaliplatin","pmid":["23071744"],"umls":"C0069717"},{"@type":"Gene","name":"c-myc Genes","pmid":["21530075"],"umls":"C0079068"},{"@type":"ChemicalSubstance","name":"Ecstasy - drug","pmid":["11390582"],"umls":"C0115471"},{"@type":"Gene","name":"Interstitial Collagenase","pmid":["20102637"],"umls":"C0127082"},{"@type":"ChemicalSubstance","name":"prostratin","pmid":["15457682"],"umls":"C0138750"},{"@type":"Gene","name":"protein-tyrosine kinase c-src","pmid":["23192271"],"umls":"C0138965"},{"@type":"ChemicalSubstance","name":"Reactive Oxygen Species","pmid":["23315288"],"umls":"C0162772"},{"@type":"Gene","name":"Proto-Oncogene Proteins c-akt","pmid":["24912431","28294689","23902739","20179608","28533307","17878289","28075616","19665027","26179613","24879309","28584306","25428386","27388534","25145299","25605718","19201817","17687643","18481208","21680174","17483336"],"umls":"C0164786"},{"@type":"Gene","name":"Matrix Metalloproteinase 9","pmid":["22793053","21306303","26261552","26679758"],"umls":"C0165519"},{"@type":"Gene","name":"Janus kinase 2","pmid":["28544312"],"umls":"C0169661"},{"@type":"Gene","name":"Mitogen Activated Protein Kinase 1","pmid":["20956518"],"umls":"C0170168"},{"@type":"Gene","name":"Matrix Metalloproteinase 2","pmid":["22345572"],"umls":"C0172537"},{"@type":"Gene","name":"Genes, Reporter","pmid":["15210854"],"umls":"C0206414"},{"@type":"ChemicalSubstance","name":"Opioids","pmid":["25175863"],"umls":"C0242402"},{"@type":"ChemicalSubstance","name":"agonists","pmid":["28626925","28186979"],"umls":"C0243192"},{"@type":"ChemicalSubstance","name":"docetaxel","pmid":["25359780"],"umls":"C0246415"},{"@type":"Gene","name":"calmodulin-dependent protein kinase II","pmid":["18220750","14630801"],"umls":"C0248868"},{"@type":"Gene","name":"src-Family Kinases","pmid":["17158356"],"umls":"C0282625"},{"@type":"Gene","name":"RAC-Alpha Serine/Threonine Kinase","pmid":["20829512","14630801","18840710"],"umls":"C0285558"},{"@type":"Gene","name":"LIM Domain Kinase 1","pmid":["25359780"],"umls":"C0294209"},{"@type":"Gene","name":"ran-binding protein 2","pmid":["28100513"],"umls":"C0299456"},{"@type":"Gene","name":"Extracellular Signal Regulated Kinases","pmid":["17550983","9453574","12444153","17904532","10651866","25121739"],"umls":"C0600388"},{"@type":"ChemicalSubstance","name":"Response Elements","pmid":["20007689"],"umls":"C0600508"},{"@type":"ChemicalSubstance","name":"AMD 3100","pmid":["18384792","17878755"],"umls":"C0662900"},{"@type":"Gene","name":"NOS3 protein, human","pmid":["27243031"],"umls":"C0669365"},{"@type":"Gene","name":"Mitogen-Activated Protein Kinases","pmid":["18481208","10997882","23308188","28687617"],"umls":"C0752312"},{"@type":"Gene","name":"BCR gene","pmid":["10224286"],"umls":"C0812385"},{"@type":"Gene","name":"C-KIT Gene","pmid":["23894420"],"umls":"C0920288"},{"@type":"ChemicalSubstance","name":"MicroRNAs","pmid":["25536052"],"umls":"C1101610"},{"@type":"Gene","name":"mitogen-activated protein kinase p38","pmid":["15972662"],"umls":"C1120843"},{"@type":"ChemicalSubstance","name":"Microbicides","pmid":["18765807"],"umls":"C1136254"},{"@type":"Gene","name":"BMP2 gene","pmid":["27725318"],"umls":"C1332424"},{"@type":"Gene","name":"CXCR2 gene","pmid":["28481874"],"umls":"C1334126"},{"@type":"Gene","name":"JAK2 gene","pmid":["16990584"],"umls":"C1334291"},{"@type":"Gene","name":"KDR gene","pmid":["27388534"],"umls":"C1334306"},{"@type":"Gene","name":"CXCL13 gene","pmid":["23773523"],"umls":"C1366572"},{"@type":"Gene","name":"CD8B1 gene","pmid":["29232699","12573587","25647836"],"umls":"C1367471"},{"@type":"Gene","name":"EGF gene","pmid":["17714434"],"umls":"C1367721"},{"@type":"Gene","name":"MAPK8 gene","pmid":["18481208","28584306","25121739"],"umls":"C1367731"},{"@type":"Gene","name":"MAPK14 protein, human","pmid":["24170200"],"umls":"C1456380"},{"@type":"ChemicalSubstance","name":"AMD3451","pmid":["15542651"],"umls":"C1529450"}],"umls":"C1332823"},{"query":"C1332824","_id":"C1332824","_score":10.009048,"name":"CXCR6 gene","positively_regulates":[{"@type":"Gene","name":"CXCR6 gene","pmid":["17437534"],"umls":"C1332824"},{"@type":"Gene","name":"AKT1 gene","pmid":["20848509"],"umls":"C0812228"},{"@type":"Gene","name":"FLVCR1 gene","pmid":["18452560"],"umls":"C1836722"},{"@type":"Gene","name":"CXCL16 wt Allele","pmid":["18452560"],"umls":"C3538864"},{"@type":"Gene","name":"CXCL12 wt Allele","pmid":["18452560"],"umls":"C1704964"},{"@type":"Gene","name":"CCR2 gene","pmid":["12480562"],"umls":"C1413188"},{"@type":"Gene","name":"CD69 gene","pmid":["12914753"],"umls":"C1413235"},{"@type":"ChemicalSubstance","name":"Haptens","pmid":["20972432"],"umls":"C0018593"},{"@type":"Gene","name":"Proto-Oncogene Proteins c-akt","pmid":["20848509"],"umls":"C0164786"},{"@type":"Gene","name":"Mitogen-Activated Protein Kinases","pmid":["20848509"],"umls":"C0752312"}],"umls":"C1332824"},{"query":"123","notfound":true}] \ No newline at end of file +[ + { + "query": "C1332823", + "_id": "C1332823", + "_score": 10.009048, + "name": "CXCR4 gene", + "positively_regulates": [ + { "@type": "Gene", "name": "KLF6 wt Allele", "pmid": ["20430021"], "umls": "C3273418" }, + { "@type": "Gene", "name": "phenylpyruvate tautomerase", "pmid": ["26139098", "22014447"], "umls": "C0312359" }, + { "@type": "Gene", "name": "ADA gene", "pmid": ["12270140"], "umls": "C1412179" }, + { "@type": "Gene", "name": "ERVK-20 gene", "pmid": ["18818518"], "umls": "C3147215" }, + { "@type": "Gene", "name": "ERVK-18 gene", "pmid": ["18818518"], "umls": "C3147213" }, + { "@type": "Gene", "name": "CXCL13 wt Allele", "pmid": ["23773523"], "umls": "C1704465" }, + { "@type": "Gene", "name": "AHSA1 gene", "pmid": ["15972662"], "umls": "C1412886" }, + { "@type": "Gene", "name": "PDLIM5 gene", "pmid": ["25359780"], "umls": "C1538613" }, + { "@type": "Gene", "name": "CFL1 gene", "pmid": ["18928553", "18775311"], "umls": "C1413355" }, + { "@type": "Gene", "name": "JTB gene", "pmid": ["25269667"], "umls": "C1334294" }, + { "@type": "Gene", "name": "WWP1 gene", "pmid": ["23553732"], "umls": "C1538115" }, + { "@type": "Gene", "name": "PSIP1 gene", "pmid": ["27783955"], "umls": "C1335268" }, + { "@type": "Gene", "name": "PRRT2 wt Allele", "pmid": ["27127886", "25784988"], "umls": "C3539645" }, + { "@type": "Gene", "name": "CCR3 wt Allele", "pmid": ["16455991"], "umls": "C4284190" }, + { "@type": "Gene", "name": "CCR5 gene", "pmid": ["15128813", "17199940", "9770527"], "umls": "C1332700" }, + { + "@type": "Gene", + "name": "CCR7 wt Allele", + "pmid": ["16098045", "14563373", "15284853", "25688986"], + "umls": "C3540500" + }, + { "@type": "Gene", "name": "CREB1 gene", "pmid": ["28638088"], "umls": "C1413702" }, + { "@type": "Gene", "name": "CRK gene", "pmid": ["18481208", "21680174", "15972662"], "umls": "C0812252" }, + { "@type": "Gene", "name": "MAPK14 wt Allele", "pmid": ["24170200", "15972662"], "umls": "C1705633" }, + { "@type": "Gene", "name": "S1PR1 wt Allele", "pmid": ["22901257"], "umls": "C3539578" }, + { "@type": "Gene", "name": "EGF A61G Allele", "pmid": ["17714434"], "umls": "C2699841" }, + { "@type": "Gene", "name": "EGFR gene", "pmid": ["22952422", "27809841"], "umls": "C1414313" }, + { "@type": "Gene", "name": "ELAVL1 wt Allele", "pmid": ["24692066"], "umls": "C3812730" }, + { "@type": "Gene", "name": "EP300 wt Allele", "pmid": ["26316070"], "umls": "C1705458" }, + { + "@type": "Gene", + "name": "EPHB2 wt Allele", + "pmid": [ + "25428386", + "17594938", + "20121456", + "23308188", + "20956518", + "19106094", + "18481208", + "21680174", + "26179613" + ], + "umls": "C1705767" + }, + { + "@type": "Gene", + "name": "ERBB2 wt Allele", + "pmid": ["18337451", "27809841", "16685382", "16061624", "18807177"], + "umls": "C1704824" + }, + { + "@type": "Gene", + "name": "AKT1 gene", + "pmid": [ + "28294689", + "24912431", + "23902739", + "20179608", + "14630801", + "28533307", + "17878289", + "28075616", + "19665027", + "27588611", + "20829512", + "26179613", + "24879309", + "28584306", + "25428386", + "27388534", + "25145299", + "25605718", + "19201817", + "17687643", + "18840710", + "18481208", + "21680174", + "17483336" + ], + "umls": "C0812228" + }, + { "@type": "Gene", "name": "ESR1 gene", "pmid": ["18807177"], "umls": "C1414461" }, + { "@type": "Gene", "name": "PTK2B wt Allele", "pmid": ["14630801"], "umls": "C1705341" }, + { "@type": "Gene", "name": "FOXO3 gene", "pmid": ["22802411"], "umls": "C1333573" }, + { "@type": "Gene", "name": "EPB41L3 gene", "pmid": ["26280082"], "umls": "C1414425" }, + { "@type": "Gene", "name": "FLT1 gene", "pmid": ["20345248"], "umls": "C0812298" }, + { "@type": "Gene", "name": "FOS gene", "pmid": ["17550983"], "umls": "C0087140" }, + { "@type": "Gene", "name": "TNPO3 gene", "pmid": ["27783955"], "umls": "C1424743" }, + { "@type": "Gene", "name": "SH3BP4 gene", "pmid": ["24692066"], "umls": "C1420023" }, + { "@type": "Gene", "name": "RASGRP3 gene", "pmid": ["23308188"], "umls": "C1422744" }, + { "@type": "Gene", "name": "LMOD1 gene", "pmid": ["25145299"], "umls": "C1416886" }, + { "@type": "Gene", "name": "POLDIP2 gene", "pmid": ["15972662"], "umls": "C1428254" }, + { "@type": "Gene", "name": "BBS9 gene", "pmid": ["25145299"], "umls": "C1842747" }, + { "@type": "Gene", "name": "FLVCR1 gene", "pmid": ["18452560"], "umls": "C1836722" }, + { "@type": "Gene", "name": "RHOD gene", "pmid": ["17056591"], "umls": "C1412517" }, + { "@type": "Gene", "name": "ERVW-1 gene", "pmid": ["18818518"], "umls": "C1422036" }, + { "@type": "Gene", "name": "ID1 wt Allele", "pmid": ["24256728"], "umls": "C3274850" }, + { "@type": "Gene", "name": "IL2 gene", "pmid": ["9591715"], "umls": "C0879590" }, + { "@type": "Gene", "name": "IL2RA gene", "pmid": ["9808188"], "umls": "C1334114" }, + { "@type": "Gene", "name": "IL8RB wt Allele", "pmid": ["28481874"], "umls": "C1704986" }, + { "@type": "Gene", "name": "ISG20 gene", "pmid": ["9808188"], "umls": "C1416478" }, + { "@type": "Gene", "name": "ITIH4 gene", "pmid": ["11356952"], "umls": "C1416509" }, + { "@type": "Gene", "name": "ITK wt Allele", "pmid": ["26190113", "24403602"], "umls": "C1706224" }, + { "@type": "Gene", "name": "JAK2 wt Allele", "pmid": ["16990584", "28544312"], "umls": "C1708581" }, + { "@type": "Gene", "name": "JUN wt Allele", "pmid": ["27697100"], "umls": "C1706384" }, + { "@type": "Gene", "name": "KDR wt Allele", "pmid": ["27388534"], "umls": "C1705712" }, + { "@type": "Gene", "name": "MMP1 gene", "pmid": ["20102637"], "umls": "C1417199" }, + { "@type": "Gene", "name": "MMP9 wt Allele", "pmid": ["26679758"], "umls": "C1708832" }, + { "@type": "Gene", "name": "MYC wt Allele", "pmid": ["21530075"], "umls": "C1708843" }, + { "@type": "Gene", "name": "NEU1 gene", "pmid": ["16061624"], "umls": "C1417680" }, + { "@type": "Gene", "name": "NFKB1 wt Allele", "pmid": ["28687617"], "umls": "C2986464" }, + { "@type": "Gene", "name": "NOS3 wt Allele", "pmid": ["27243031"], "umls": "C1709136" }, + { "@type": "Gene", "name": "NR4A2 gene", "pmid": ["24154522"], "umls": "C1417836" }, + { "@type": "Gene", "name": "OPRK1 gene", "pmid": ["21447649"], "umls": "C1417963" }, + { "@type": "Gene", "name": "ATP8A2 wt Allele", "pmid": ["27454381"], "umls": "C1705556" }, + { "@type": "Gene", "name": "PI3 wt Allele", "pmid": ["23434321"], "umls": "C3537449" }, + { "@type": "Gene", "name": "PIK3CA gene", "pmid": ["22337890"], "umls": "C1335212" }, + { "@type": "Gene", "name": "PIK3CB gene", "pmid": ["22337890"], "umls": "C1335213" }, + { "@type": "Gene", "name": "PIK3CD wt Allele", "pmid": ["22337890"], "umls": "C3714973" }, + { "@type": "Gene", "name": "PIK3CG wt Allele", "pmid": ["22337890"], "umls": "C1705325" }, + { "@type": "Gene", "name": "ROBO4 wt Allele", "pmid": ["21211783"], "umls": "C2698937" }, + { + "@type": "Gene", + "name": "MAPK1 gene", + "pmid": [ + "25428386", + "15972662", + "17594938", + "20121456", + "23308188", + "20956518", + "19106094", + "18481208", + "21680174", + "26179613" + ], + "umls": "C1366882" + }, + { "@type": "Gene", "name": "MAPK3 gene", "pmid": ["27388534", "28533307"], "umls": "C1366765" }, + { "@type": "Gene", "name": "MAPK8 wt Allele", "pmid": ["18481208", "28584306", "25121739"], "umls": "C1705632" }, + { "@type": "Gene", "name": "ACKR3 gene", "pmid": ["21154415", "24277075"], "umls": "C1835886" }, + { "@type": "Gene", "name": "CXCL16 wt Allele", "pmid": ["18452560"], "umls": "C3538864" }, + { "@type": "Gene", "name": "RAC1 wt Allele", "pmid": ["22345572", "21172654"], "umls": "C3274857" }, + { "@type": "Gene", "name": "RANBP2 gene", "pmid": ["28100513"], "umls": "C1419259" }, + { "@type": "Gene", "name": "RHO gene", "pmid": ["17056591"], "umls": "C1419385" }, + { "@type": "Gene", "name": "BCR wt Allele", "pmid": ["10224286"], "umls": "C1704799" }, + { "@type": "Gene", "name": "CCL5 gene", "pmid": ["16107514"], "umls": "C1332691" }, + { "@type": "Gene", "name": "CCL15 gene", "pmid": ["16107514"], "umls": "C1332679" }, + { "@type": "Gene", "name": "CCL20 gene", "pmid": ["19340288"], "umls": "C1366524" }, + { + "@type": "Gene", + "name": "CXCL12 wt Allele", + "pmid": [ + "25544766", + "26396061", + "19106094", + "17697603", + "21349176", + "18453750", + "17706641", + "18452560", + "25371371", + "21695171" + ], + "umls": "C1704964" + }, + { "@type": "Gene", "name": "BMP2 wt Allele", "pmid": ["27725318"], "umls": "C1706894" }, + { "@type": "Gene", "name": "BMP6 gene", "pmid": ["21636574"], "umls": "C1332427" }, + { "@type": "Gene", "name": "SLC22A3 wt Allele", "pmid": ["26190113", "24403602"], "umls": "C3812262" }, + { "@type": "Gene", "name": "SRC wt Allele", "pmid": ["17158356", "23192271"], "umls": "C1705997" }, + { + "@type": "Gene", + "name": "STAT3 gene", + "pmid": ["28687617", "19455144", "23192271", "28481874"], + "umls": "C1367307" + }, + { "@type": "Gene", "name": "ADAM17 wt Allele", "pmid": ["27489286"], "umls": "C1706637" }, + { "@type": "Gene", "name": "TRBV20OR9-2 gene", "pmid": ["10464166"], "umls": "C1421047" }, + { "@type": "Gene", "name": "TNF gene", "pmid": ["15093715", "16288025", "24451118"], "umls": "C0812246" }, + { "@type": "Gene", "name": "C3AR1 gene", "pmid": ["22901257"], "umls": "C1412995" }, + { "@type": "Gene", "name": "CCR2 gene", "pmid": ["16455991"], "umls": "C1413188" }, + { + "@type": "Gene", + "name": "VEGFA gene", + "pmid": ["20018810", "16084492", "21306303", "27388534", "21821866", "22653973", "28544312"], + "umls": "C1823619" + }, + { "@type": "Gene", "name": "ZFP36 wt Allele", "pmid": ["24692066"], "umls": "C3539814" }, + { + "@type": "Gene", + "name": "CXCR4 gene", + "pmid": [ + "9671774", + "24693205", + "21261996", + "12193696", + "11799176", + "28489887", + "15528395", + "25482641", + "15308709", + "14563373", + "24718993", + "18728032", + "10525044", + "27163878", + "22016798", + "12444153", + "12605695", + "23647548", + "25537742", + "24695674", + "10878344", + "25825165", + "19244528", + "11493520", + "15059909", + "25753200", + "23023480", + "24458841", + "12609846", + "24500843", + "12225798", + "23372646", + "26788981", + "11591806", + "24129780", + "10074122", + "23197643" + ], + "umls": "C1332823" + }, + { "@type": "Gene", "name": "AIMP2 wt Allele", "pmid": ["15972662"], "umls": "C3273301" }, + { "@type": "Gene", "name": "CAMK2G gene", "pmid": ["18220750", "14630801"], "umls": "C1413102" }, + { "@type": "Gene", "name": "CAMP gene", "pmid": ["16204315", "18765807", "10644702"], "umls": "C1413106" }, + { "@type": "Gene", "name": "TNFRSF10B gene", "pmid": ["19247452"], "umls": "C1336644" }, + { "@type": "Gene", "name": "USP14 wt Allele", "pmid": ["19106094"], "umls": "C4321338" }, + { "@type": "Gene", "name": "NEURL1 gene", "pmid": ["16061624"], "umls": "C1334875" }, + { + "@type": "Gene", + "name": "CD4 gene", + "pmid": [ + "11181132", + "22273578", + "26106396", + "15078935", + "22568557", + "26052942", + "22403408", + "29232699", + "18818518", + "20038787", + "9721247", + "11504923", + "15592478" + ], + "umls": "C1332714" + }, + { "@type": "Gene", "name": "CD8B wt Allele", "pmid": ["29232699", "12573587", "25647836"], "umls": "C1706438" }, + { "@type": "Gene", "name": "GRAP2 gene", "pmid": ["15972662"], "umls": "C1415284" }, + { + "@type": "Gene", + "name": "CD34 gene", + "pmid": ["23167782", "21655289", "19034720", "11781237", "19454674"], + "umls": "C1332710" + }, + { "@type": "Gene", "name": "CD38 wt Allele", "pmid": ["17199940"], "umls": "C2827387" }, + { "@type": "Gene", "name": "CD40 gene", "pmid": ["28281555"], "umls": "C1539081" }, + { "@type": "Gene", "name": "CD40LG wt Allele", "pmid": ["24269609"], "umls": "C1706005" }, + { "@type": "Gene", "name": "CD44 gene", "pmid": ["22384257"], "umls": "C1332712" }, + { "@type": "Gene", "name": "CD63 wt Allele", "pmid": ["21270405"], "umls": "C3811252" }, + { "@type": "ChemicalSubstance", "name": "Ethanol", "pmid": ["23300006"], "umls": "C0001962" }, + { + "@type": "ChemicalSubstance", + "name": "Angiogenesis Factor", + "pmid": ["24486002", "22917235"], + "umls": "C0002976" + }, + { "@type": "ChemicalSubstance", "name": "Antigens", "pmid": ["19696965"], "umls": "C0003320" }, + { "@type": "ChemicalSubstance", "name": "Binding Sites", "pmid": ["15078935"], "umls": "C0005456" }, + { + "@type": "ChemicalSubstance", + "name": "Calcium", + "pmid": ["14982745", "12845769", "22157717", "9439607"], + "umls": "C0006675" + }, + { "@type": "Gene", "name": "Cyclic AMP-Dependent Protein Kinases", "pmid": ["18765807"], "umls": "C0010531" }, + { "@type": "ChemicalSubstance", "name": "Dinoprostone", "pmid": ["16204315"], "umls": "C0012472" }, + { "@type": "ChemicalSubstance", "name": "Elements", "pmid": ["17878524"], "umls": "C0013879" }, + { "@type": "Gene", "name": "Genes", "pmid": ["26413813", "24632620"], "umls": "C0017337" }, + { "@type": "Gene", "name": "Guanosine Triphosphate Phosphohydrolases", "pmid": ["18632858"], "umls": "C0018296" }, + { + "@type": "ChemicalSubstance", + "name": "Lipopolysaccharides", + "pmid": ["12072369", "22219610"], + "umls": "C0023810" + }, + { "@type": "Gene", "name": "Phosphotransferases", "pmid": ["10542964", "24912431"], "umls": "C0031727" }, + { "@type": "Gene", "name": "Protein Kinase C", "pmid": ["27127886", "25784988"], "umls": "C0033634" }, + { "@type": "Gene", "name": "Protein Kinases", "pmid": ["11157475"], "umls": "C0033640" }, + { "@type": "ChemicalSubstance", "name": "RNA, Messenger", "pmid": ["23815460"], "umls": "C0035696" }, + { "@type": "ChemicalSubstance", "name": "Superoxides", "pmid": ["15509740"], "umls": "C0038836" }, + { "@type": "ChemicalSubstance", "name": "Tetrodotoxin", "pmid": ["16476083"], "umls": "C0039705" }, + { + "@type": "Gene", + "name": "1-Phosphatidylinositol 3-Kinase", + "pmid": ["20038597", "24632620", "23434321", "11157475"], + "umls": "C0044602" + }, + { "@type": "Gene", "name": "Calcineurin", "pmid": ["24086760"], "umls": "C0054450" }, + { "@type": "ChemicalSubstance", "name": "cyclopamine", "pmid": ["25820869"], "umls": "C0056789" }, + { "@type": "ChemicalSubstance", "name": "oxaliplatin", "pmid": ["23071744"], "umls": "C0069717" }, + { "@type": "Gene", "name": "c-myc Genes", "pmid": ["21530075"], "umls": "C0079068" }, + { "@type": "ChemicalSubstance", "name": "Ecstasy - drug", "pmid": ["11390582"], "umls": "C0115471" }, + { "@type": "Gene", "name": "Interstitial Collagenase", "pmid": ["20102637"], "umls": "C0127082" }, + { "@type": "ChemicalSubstance", "name": "prostratin", "pmid": ["15457682"], "umls": "C0138750" }, + { "@type": "Gene", "name": "protein-tyrosine kinase c-src", "pmid": ["23192271"], "umls": "C0138965" }, + { "@type": "ChemicalSubstance", "name": "Reactive Oxygen Species", "pmid": ["23315288"], "umls": "C0162772" }, + { + "@type": "Gene", + "name": "Proto-Oncogene Proteins c-akt", + "pmid": [ + "24912431", + "28294689", + "23902739", + "20179608", + "28533307", + "17878289", + "28075616", + "19665027", + "26179613", + "24879309", + "28584306", + "25428386", + "27388534", + "25145299", + "25605718", + "19201817", + "17687643", + "18481208", + "21680174", + "17483336" + ], + "umls": "C0164786" + }, + { + "@type": "Gene", + "name": "Matrix Metalloproteinase 9", + "pmid": ["22793053", "21306303", "26261552", "26679758"], + "umls": "C0165519" + }, + { "@type": "Gene", "name": "Janus kinase 2", "pmid": ["28544312"], "umls": "C0169661" }, + { "@type": "Gene", "name": "Mitogen Activated Protein Kinase 1", "pmid": ["20956518"], "umls": "C0170168" }, + { "@type": "Gene", "name": "Matrix Metalloproteinase 2", "pmid": ["22345572"], "umls": "C0172537" }, + { "@type": "Gene", "name": "Genes, Reporter", "pmid": ["15210854"], "umls": "C0206414" }, + { "@type": "ChemicalSubstance", "name": "Opioids", "pmid": ["25175863"], "umls": "C0242402" }, + { "@type": "ChemicalSubstance", "name": "agonists", "pmid": ["28626925", "28186979"], "umls": "C0243192" }, + { "@type": "ChemicalSubstance", "name": "docetaxel", "pmid": ["25359780"], "umls": "C0246415" }, + { + "@type": "Gene", + "name": "calmodulin-dependent protein kinase II", + "pmid": ["18220750", "14630801"], + "umls": "C0248868" + }, + { "@type": "Gene", "name": "src-Family Kinases", "pmid": ["17158356"], "umls": "C0282625" }, + { + "@type": "Gene", + "name": "RAC-Alpha Serine/Threonine Kinase", + "pmid": ["20829512", "14630801", "18840710"], + "umls": "C0285558" + }, + { "@type": "Gene", "name": "LIM Domain Kinase 1", "pmid": ["25359780"], "umls": "C0294209" }, + { "@type": "Gene", "name": "ran-binding protein 2", "pmid": ["28100513"], "umls": "C0299456" }, + { + "@type": "Gene", + "name": "Extracellular Signal Regulated Kinases", + "pmid": ["17550983", "9453574", "12444153", "17904532", "10651866", "25121739"], + "umls": "C0600388" + }, + { "@type": "ChemicalSubstance", "name": "Response Elements", "pmid": ["20007689"], "umls": "C0600508" }, + { "@type": "ChemicalSubstance", "name": "AMD 3100", "pmid": ["18384792", "17878755"], "umls": "C0662900" }, + { "@type": "Gene", "name": "NOS3 protein, human", "pmid": ["27243031"], "umls": "C0669365" }, + { + "@type": "Gene", + "name": "Mitogen-Activated Protein Kinases", + "pmid": ["18481208", "10997882", "23308188", "28687617"], + "umls": "C0752312" + }, + { "@type": "Gene", "name": "BCR gene", "pmid": ["10224286"], "umls": "C0812385" }, + { "@type": "Gene", "name": "C-KIT Gene", "pmid": ["23894420"], "umls": "C0920288" }, + { "@type": "ChemicalSubstance", "name": "MicroRNAs", "pmid": ["25536052"], "umls": "C1101610" }, + { "@type": "Gene", "name": "mitogen-activated protein kinase p38", "pmid": ["15972662"], "umls": "C1120843" }, + { "@type": "ChemicalSubstance", "name": "Microbicides", "pmid": ["18765807"], "umls": "C1136254" }, + { "@type": "Gene", "name": "BMP2 gene", "pmid": ["27725318"], "umls": "C1332424" }, + { "@type": "Gene", "name": "CXCR2 gene", "pmid": ["28481874"], "umls": "C1334126" }, + { "@type": "Gene", "name": "JAK2 gene", "pmid": ["16990584"], "umls": "C1334291" }, + { "@type": "Gene", "name": "KDR gene", "pmid": ["27388534"], "umls": "C1334306" }, + { "@type": "Gene", "name": "CXCL13 gene", "pmid": ["23773523"], "umls": "C1366572" }, + { "@type": "Gene", "name": "CD8B1 gene", "pmid": ["29232699", "12573587", "25647836"], "umls": "C1367471" }, + { "@type": "Gene", "name": "EGF gene", "pmid": ["17714434"], "umls": "C1367721" }, + { "@type": "Gene", "name": "MAPK8 gene", "pmid": ["18481208", "28584306", "25121739"], "umls": "C1367731" }, + { "@type": "Gene", "name": "MAPK14 protein, human", "pmid": ["24170200"], "umls": "C1456380" }, + { "@type": "ChemicalSubstance", "name": "AMD3451", "pmid": ["15542651"], "umls": "C1529450" } + ], + "umls": "C1332823" + }, + { + "query": "C1332824", + "_id": "C1332824", + "_score": 10.009048, + "name": "CXCR6 gene", + "positively_regulates": [ + { "@type": "Gene", "name": "CXCR6 gene", "pmid": ["17437534"], "umls": "C1332824" }, + { "@type": "Gene", "name": "AKT1 gene", "pmid": ["20848509"], "umls": "C0812228" }, + { "@type": "Gene", "name": "FLVCR1 gene", "pmid": ["18452560"], "umls": "C1836722" }, + { "@type": "Gene", "name": "CXCL16 wt Allele", "pmid": ["18452560"], "umls": "C3538864" }, + { "@type": "Gene", "name": "CXCL12 wt Allele", "pmid": ["18452560"], "umls": "C1704964" }, + { "@type": "Gene", "name": "CCR2 gene", "pmid": ["12480562"], "umls": "C1413188" }, + { "@type": "Gene", "name": "CD69 gene", "pmid": ["12914753"], "umls": "C1413235" }, + { "@type": "ChemicalSubstance", "name": "Haptens", "pmid": ["20972432"], "umls": "C0018593" }, + { "@type": "Gene", "name": "Proto-Oncogene Proteins c-akt", "pmid": ["20848509"], "umls": "C0164786" }, + { "@type": "Gene", "name": "Mitogen-Activated Protein Kinases", "pmid": ["20848509"], "umls": "C0752312" } + ], + "umls": "C1332824" + }, + { "query": "123", "notfound": true } +] diff --git a/__test__/ebi_protein_transformer.test.ts b/__test__/ebi_protein_transformer.test.ts index f3bc9a6..e0f7952 100644 --- a/__test__/ebi_protein_transformer.test.ts +++ b/__test__/ebi_protein_transformer.test.ts @@ -19,7 +19,7 @@ describe("test EBI Protein transformer", () => { }); test("test ebi wrapper", async () => { - let tf = new jq_tf(input, {type: "ebi"}); + let tf = new jq_tf(input, { type: "ebi" }); let res = await tf.wrap(response); expect(res.comments[0].reaction.dbReferences).toHaveLength(1); }); diff --git a/__test__/opentarget_transformer.test.ts b/__test__/opentarget_transformer.test.ts index 470316f..c14f409 100644 --- a/__test__/opentarget_transformer.test.ts +++ b/__test__/opentarget_transformer.test.ts @@ -1,46 +1,44 @@ -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; import jq_tf from "../built/transformers/jq_transformer"; import fs from "fs"; import path from "path"; describe("test opentarget transformer", () => { + let response; + let input; - let response; - let input; + beforeEach(() => { + const response_path = path.resolve(__dirname, "./data/opentarget/response.json"); + response = JSON.parse(fs.readFileSync(response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/opentarget/edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); - beforeEach(() => { - const response_path = path.resolve(__dirname, './data/opentarget/response.json'); - response = JSON.parse(fs.readFileSync(response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/opentarget/edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) + // skip these tests since we're not ingesting opentargets right now + test.skip("test opentarget wrapper", async () => { + let tf = new jq_tf(input, { type: "opentarget" }); + let res = await tf.wrap(response); + expect(res).toHaveProperty("data"); + expect(res.data[0].drug.id).toEqual("CHEMBL220492"); + }); -// skip these tests since we're not ingesting opentargets right now - test.skip("test opentarget wrapper", async () => { - let tf = new jq_tf(input, { type: "opentarget" }); - let res = await tf.wrap(response); - expect(res).toHaveProperty("data"); - expect(res.data[0].drug.id).toEqual("CHEMBL220492"); - }) - - test.skip("test opentarget wrapper if id field is not chembl", async () => { - let tf = new jq_tf(input, { type: "opentarget" }); - const fake = { - data: [ - { - "drug": { - id: "http://identifiers.org/drugbank/DB0001" - } - } - ] - } - let res = await tf.wrap(fake); - expect(res).toHaveProperty("data"); - expect(res.data[0].drug.id).toEqual("http://identifiers.org/drugbank/DB0001"); - }) - -}) + test.skip("test opentarget wrapper if id field is not chembl", async () => { + let tf = new jq_tf(input, { type: "opentarget" }); + const fake = { + data: [ + { + drug: { + id: "http://identifiers.org/drugbank/DB0001", + }, + }, + ], + }; + let res = await tf.wrap(fake); + expect(res).toHaveProperty("data"); + expect(res.data[0].drug.id).toEqual("http://identifiers.org/drugbank/DB0001"); + }); +}); diff --git a/__test__/record.test.ts b/__test__/record.test.ts index c9c3c4a..608be90 100644 --- a/__test__/record.test.ts +++ b/__test__/record.test.ts @@ -1,81 +1,71 @@ -import {describe, expect, test} from '@jest/globals'; +import { describe, expect, test } from "@jest/globals"; -import { Record } from '../src/record'; +import { Record } from "../src/record"; describe("test record class", () => { - const testFrozenRecord = { subject: { - original:'originalThing0', - qNodeID: 'n0', + original: "originalThing0", + qNodeID: "n0", isSet: false, - curie: 'prefix:1', - UMLS: 'UMLSstring0', - semanticType: 'gene', - label: 'someLabel0', - names: [ - 'someName0' - ], - attributes: {} + curie: "prefix:1", + UMLS: "UMLSstring0", + semanticType: "gene", + label: "someLabel0", + names: ["someName0"], + attributes: {}, }, object: { - original:'originalThing1', - qNodeID: 'n1', + original: "originalThing1", + qNodeID: "n1", isSet: false, - curie: 'prefix:2', - UMLS: 'UMLSstring1', - semanticType: 'gene', - label: 'someLabel1', - names: [ - 'someName1' - ], - attributes: {} + curie: "prefix:2", + UMLS: "UMLSstring1", + semanticType: "gene", + label: "someLabel1", + names: ["someName1"], + attributes: {}, }, - predicate: 'somePredicate', - publications: [ - 'PMID:nopenotreal' - ], + predicate: "somePredicate", + publications: ["PMID:nopenotreal"], mappedResponse: { edgeAttributes: [ { - attribute_source: 'someSource', - attribute_type_id: 'someID', + attribute_source: "someSource", + attribute_type_id: "someID", value: false, - value_type_id: 'boolean', - } + value_type_id: "boolean", + }, ], }, - api: 'someAPI', - apiInforesCurie: 'infores:something', - metaEdgeSource: 'infores:somethingElse' - } + api: "someAPI", + apiInforesCurie: "infores:something", + metaEdgeSource: "infores:somethingElse", + }; const testRecord = new Record(testFrozenRecord); describe("test initialization, record behavior", () => { - test("Record produces fake association", () => { - expect(testRecord.association.predicate).toEqual(testFrozenRecord.predicate) - expect(testRecord.association.api_name).toEqual(testFrozenRecord.api) - expect(testRecord.association.source).toEqual(testFrozenRecord.metaEdgeSource) - expect(testRecord.association['x-translator'].infores).toEqual(testFrozenRecord.apiInforesCurie); + expect(testRecord.association.predicate).toEqual(testFrozenRecord.predicate); + expect(testRecord.association.api_name).toEqual(testFrozenRecord.api); + expect(testRecord.association.source).toEqual(testFrozenRecord.metaEdgeSource); + expect(testRecord.association["x-translator"].infores).toEqual(testFrozenRecord.apiInforesCurie); }); + }); - }); - - test("Record produces fake qEdge", () => { - expect(testRecord.qEdge).toBeTruthy(); - expect(testRecord.qEdge.getInputNode().getID()).toEqual(testFrozenRecord.subject.qNodeID); - expect(testRecord.qEdge.getInputNode().isSet()).toBeFalsy(); - expect(testRecord.qEdge.getOutputNode().isSet()).toBeFalsy(); - expect(testRecord.qEdge.getOutputNode().getID()).toEqual(testFrozenRecord.object.qNodeID); - expect(testRecord.qEdge.getHashedEdgeRepresentation()).toBeTruthy(); - - }); + test("Record produces fake qEdge", () => { + expect(testRecord.qEdge).toBeTruthy(); + expect(testRecord.qEdge.getInputNode().getID()).toEqual(testFrozenRecord.subject.qNodeID); + expect(testRecord.qEdge.getInputNode().isSet()).toBeFalsy(); + expect(testRecord.qEdge.getOutputNode().isSet()).toBeFalsy(); + expect(testRecord.qEdge.getOutputNode().getID()).toEqual(testFrozenRecord.object.qNodeID); + expect(testRecord.qEdge.getHashedEdgeRepresentation()).toBeTruthy(); + }); - test("Record produces fake qNodes", () => { - expect(testRecord.object.qNodeID).toEqual(testFrozenRecord.object.qNodeID); - expect(testRecord.subject.normalizedInfo).toBeTruthy(); - }); + test("Record produces fake qNodes", () => { + expect(testRecord.object.qNodeID).toEqual(testFrozenRecord.object.qNodeID); + expect(testRecord.subject.normalizedInfo).toBeTruthy(); + }); describe("test freeze/unfreeze", () => { test("frozenRecord return format", () => { @@ -84,5 +74,4 @@ describe("test record class", () => { expect(Record.unfreezeRecords(Record.freezeRecords([testRecord]))[0].recordHash).toEqual(testRecord.recordHash); }); }); - }); diff --git a/__test__/semmed_transformer.test.ts b/__test__/semmed_transformer.test.ts index aad097f..8e3df18 100644 --- a/__test__/semmed_transformer.test.ts +++ b/__test__/semmed_transformer.test.ts @@ -3,59 +3,57 @@ import path from "path"; import semmed_tf from "../src/transformers/semmed_transformer"; describe("test semmed transformer", () => { - - let response, input; - - beforeEach(() => { - const response_path = path.resolve(__dirname, './data/semmedgene/response.json'); - response = JSON.parse(fs.readFileSync(response_path, { encoding: 'utf8' })); - const edge_path = path.resolve(__dirname, './data/semmedgene/edge.json'); - const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: 'utf8' })); - input = { - response, - edge - } - }) - - test("test semmed pairCurieWithAPIResponse", async () => { - let tf = new semmed_tf(input, {}); - let res = await tf.pairCurieWithAPIResponse(); - expect(res["UMLS:C1332823"][0]['umls']).toBe("C1332823"); - expect(res).toHaveProperty('UMLS:C1332823'); - expect(res["UMLS:123"]).toBeUndefined(); - }); - - test("test wrapper", () => { - let tf = new semmed_tf(input, {}); - let res = tf.wrap(input.response[0]); - expect(res).toHaveProperty("positively_regulates"); - }); - - test("test json transform", () => { - let tf = new semmed_tf(input, {}); - let res = tf.jsonTransform(input.response[0]); - expect(res).toEqual(input.response[0]); - }); - - test("add edge info", async () => { - let tf = new semmed_tf(input, {}); - let res = await tf.pairCurieWithAPIResponse(); - let rec = res["UMLS:C1332823"][0]; - rec = tf.wrap(rec); - let result = await tf.formatRecords("UMLS:C1332823", rec["positively_regulates"][0]); - expect(result[0]).toHaveProperty("association"); - expect(result[0].api).toBe("SEMMED Gene API") - }); - - test("test main function transform", async () => { - let tf = new semmed_tf(input, {}); - let res = await tf.transform(); - expect(res[0]).not.toHaveProperty('UMLS'); - expect(res[0]).not.toHaveProperty('@type'); - expect(res[0]).toHaveProperty("association"); - expect(res[0]).toHaveProperty("subject"); - expect(res.slice(-1)[0]).toHaveProperty("subject"); - expect(res.length).toBeGreaterThan(30); - }) - -}) \ No newline at end of file + let response, input; + + beforeEach(() => { + const response_path = path.resolve(__dirname, "./data/semmedgene/response.json"); + response = JSON.parse(fs.readFileSync(response_path, { encoding: "utf8" })); + const edge_path = path.resolve(__dirname, "./data/semmedgene/edge.json"); + const edge = JSON.parse(fs.readFileSync(edge_path, { encoding: "utf8" })); + input = { + response, + edge, + }; + }); + + test("test semmed pairCurieWithAPIResponse", async () => { + let tf = new semmed_tf(input, {}); + let res = await tf.pairCurieWithAPIResponse(); + expect(res["UMLS:C1332823"][0]["umls"]).toBe("C1332823"); + expect(res).toHaveProperty("UMLS:C1332823"); + expect(res["UMLS:123"]).toBeUndefined(); + }); + + test("test wrapper", () => { + let tf = new semmed_tf(input, {}); + let res = tf.wrap(input.response[0]); + expect(res).toHaveProperty("positively_regulates"); + }); + + test("test json transform", () => { + let tf = new semmed_tf(input, {}); + let res = tf.jsonTransform(input.response[0]); + expect(res).toEqual(input.response[0]); + }); + + test("add edge info", async () => { + let tf = new semmed_tf(input, {}); + let res = await tf.pairCurieWithAPIResponse(); + let rec = res["UMLS:C1332823"][0]; + rec = tf.wrap(rec); + let result = await tf.formatRecords("UMLS:C1332823", rec["positively_regulates"][0]); + expect(result[0]).toHaveProperty("association"); + expect(result[0].api).toBe("SEMMED Gene API"); + }); + + test("test main function transform", async () => { + let tf = new semmed_tf(input, {}); + let res = await tf.transform(); + expect(res[0]).not.toHaveProperty("UMLS"); + expect(res[0]).not.toHaveProperty("@type"); + expect(res[0]).toHaveProperty("association"); + expect(res[0]).toHaveProperty("subject"); + expect(res.slice(-1)[0]).toHaveProperty("subject"); + expect(res.length).toBeGreaterThan(30); + }); +}); diff --git a/__test__/transformers.test.ts b/__test__/transformers.test.ts index 789ab7c..ca91723 100644 --- a/__test__/transformers.test.ts +++ b/__test__/transformers.test.ts @@ -10,8 +10,8 @@ import axios, { AxiosStatic } from "axios"; import path from "path"; import fs from "fs/promises"; -const og_axios = jest.requireActual('axios') -jest.mock('axios') +const og_axios = jest.requireActual("axios"); +jest.mock("axios"); // not ingesting opentargets right now; no need for this test; this api is no longer there // describe("test opentarget transformer", () => { @@ -43,137 +43,127 @@ jest.mock('axios') // }) // }) - describe("test ctd transformer", () => { + let api_response; - let api_response; - - beforeAll(async () => { - (axios.get as jest.MockedFunction).mockImplementation(async (url) => { - const data_path = path.resolve(__dirname, "./data/ctd/response2.json") - const data = JSON.parse(await fs.readFile(data_path, 'utf-8')) - return {data, status: 200, statusText: "OK", headers: undefined, config: {}} - }) - let res = await axios.get("http://ctdbase.org/tools/batchQuery.go?inputType=chem&inputTerms=D003634|mercury&report=diseases_curated&format=json"); - api_response = res.data; + beforeAll(async () => { + (axios.get as jest.MockedFunction).mockImplementation(async url => { + const data_path = path.resolve(__dirname, "./data/ctd/response2.json"); + const data = JSON.parse(await fs.readFile(data_path, "utf-8")); + return { data, status: 200, statusText: "OK", headers: undefined, config: {} }; }); - - test("test ctd wrapper", () => { - let input = { - response: api_response, - edge: { - input: "238", - association: { - output_type: "Gene", - input_type: "", - predicate: "", - }, - response_mapping: { - sookie: "kevin" - } - } - } - let tf = new ctd_tf(input, {}); - let res = tf.wrap(api_response); - expect(res.data[0]['DiseaseID']).toBe("D000022"); - expect(res.data[0]['PubMedIDs']).toContain("16120699"); - }) -}) - + let res = await axios.get( + "http://ctdbase.org/tools/batchQuery.go?inputType=chem&inputTerms=D003634|mercury&report=diseases_curated&format=json", + ); + api_response = res.data; + }); + + test("test ctd wrapper", () => { + let input = { + response: api_response, + edge: { + input: "238", + association: { + output_type: "Gene", + input_type: "", + predicate: "", + }, + response_mapping: { + sookie: "kevin", + }, + }, + }; + let tf = new ctd_tf(input, {}); + let res = tf.wrap(api_response); + expect(res.data[0]["DiseaseID"]).toBe("D000022"); + expect(res.data[0]["PubMedIDs"]).toContain("16120699"); + }); +}); describe("test biothings transformer", () => { - - let api_response; - let input; - - beforeAll(async () => { - (axios as jest.MockedFunction).mockImplementation(async (q) => { - const data_path = path.resolve(__dirname, "./data/semmedgene/response.json") - const data = JSON.parse(await fs.readFile(data_path, 'utf-8')) - return {data, status: 200, statusText: "OK", headers: undefined, config: {}} - }) - let res = await axios({ - method: 'post', - url: 'https://biothings.ncats.io/semmedgene/query', - data: 'q=C1332823, C1332824, 123&scopes=umls', - params: { - fields: 'name,umls,positively_regulates', - size: '5' - } - }) - api_response = res.data; - input = { - response: api_response, - edge: { - "input": ["C1332824", "C1332823", "123"], - "query_operation": { - "params": { - "fields": "positively_regulates" - }, - "request_body": { - "body": { - "q": "{inputs[0]}", - "scopes": "umls" - } - }, - "path": "/query", - "path_params": [], - "method": "post", - "server": "https://biothings.ncats.io/semmedgene", - "tags": [ - "disease", - "annotation", - "query", - "translator", - "biothings", - "semmed" - ], - "supportBatch": true, - "inputSeparator": "," - }, - "association": { - "input_id": "UMLS", - "input_type": "Gene", - "output_id": "UMLS", - "output_type": "Gene", - "predicate": "positively_regulates", - "source": "SEMMED", - "api_name": "SEMMED Gene API", - "smartapi": { - "id": "81955d376a10505c1c69cd06dbda3047", - "meta": { - "ETag": "f94053bc78b3c2f0b97f7afd52d7de2fe083b655e56a53090ad73e12be83673b", - "github_username": "kevinxin90", - "timestamp": "2020-05-27T16:53:40.804575", - "uptime_status": "good", - "uptime_ts": "2020-06-12T00:04:31.404599", - "url": "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/semmed/semmed_gene.yaml" - } - } - }, - "response_mapping": { - "positively_regulates": { - "pmid": "positively_regulates.pmid", - "umls": "positively_regulates.umls" - } - }, - "id": "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b" - } - } + let api_response; + let input; + + beforeAll(async () => { + (axios as jest.MockedFunction).mockImplementation(async q => { + const data_path = path.resolve(__dirname, "./data/semmedgene/response.json"); + const data = JSON.parse(await fs.readFile(data_path, "utf-8")); + return { data, status: 200, statusText: "OK", headers: undefined, config: {} }; }); - - test("test biothings pairCurieWithAPIResponse", async () => { - let tf = new biothings_tf(input, {}); - let res = await tf.pairCurieWithAPIResponse(); - expect(res["UMLS:C1332823"][0]['umls']).toBe("C1332823"); - expect(res).toHaveProperty('UMLS:C1332823'); - expect(res["123"]).toBeUndefined(); + let res = await axios({ + method: "post", + url: "https://biothings.ncats.io/semmedgene/query", + data: "q=C1332823, C1332824, 123&scopes=umls", + params: { + fields: "name,umls,positively_regulates", + size: "5", + }, }); - - test("test wrapper", () => { - let tf = new biothings_tf(input, {}); - let res = tf.wrap(input.response[0]); - expect(res).toHaveProperty("query"); - }); - -}) + api_response = res.data; + input = { + response: api_response, + edge: { + input: ["C1332824", "C1332823", "123"], + query_operation: { + params: { + fields: "positively_regulates", + }, + request_body: { + body: { + q: "{inputs[0]}", + scopes: "umls", + }, + }, + path: "/query", + path_params: [], + method: "post", + server: "https://biothings.ncats.io/semmedgene", + tags: ["disease", "annotation", "query", "translator", "biothings", "semmed"], + supportBatch: true, + inputSeparator: ",", + }, + association: { + input_id: "UMLS", + input_type: "Gene", + output_id: "UMLS", + output_type: "Gene", + predicate: "positively_regulates", + source: "SEMMED", + api_name: "SEMMED Gene API", + smartapi: { + id: "81955d376a10505c1c69cd06dbda3047", + meta: { + ETag: "f94053bc78b3c2f0b97f7afd52d7de2fe083b655e56a53090ad73e12be83673b", + github_username: "kevinxin90", + timestamp: "2020-05-27T16:53:40.804575", + uptime_status: "good", + uptime_ts: "2020-06-12T00:04:31.404599", + url: "https://raw.githubusercontent.com/NCATS-Tangerine/translator-api-registry/master/semmed/semmed_gene.yaml", + }, + }, + }, + response_mapping: { + positively_regulates: { + pmid: "positively_regulates.pmid", + umls: "positively_regulates.umls", + }, + }, + id: "01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b", + }, + }; + }); + + test("test biothings pairCurieWithAPIResponse", async () => { + let tf = new biothings_tf(input, {}); + let res = await tf.pairCurieWithAPIResponse(); + expect(res["UMLS:C1332823"][0]["umls"]).toBe("C1332823"); + expect(res).toHaveProperty("UMLS:C1332823"); + expect(res["123"]).toBeUndefined(); + }); + + test("test wrapper", () => { + let tf = new biothings_tf(input, {}); + let res = tf.wrap(input.response[0]); + expect(res).toHaveProperty("query"); + }); +}); diff --git a/__test__/utils.test.ts b/__test__/utils.test.ts index 629ad53..8d8272b 100644 --- a/__test__/utils.test.ts +++ b/__test__/utils.test.ts @@ -5,41 +5,37 @@ import { generateCurie, toArray } from "../src/utils"; describe("test utils module", () => { - - describe("test generateCurie function", () => { - test("test if id is a list", () => { - const inputIDs = ["1017", "1018"]; - const res = generateCurie("NCBIGene", inputIDs); - expect(res).toEqual("NCBIGene:1017") - }) - - test("test if id is not a list", () => { - const inputIDs = "1017"; - const res = generateCurie("NCBIGene", inputIDs); - expect(res).toEqual("NCBIGene:1017") - }) - - test("test if id is already curied", () => { - const inputIDs = "NCBIGene1:1017"; - const res = generateCurie("NCBIGene", inputIDs); - expect(res).toEqual("NCBIGene:1017") - }) - - }) - - describe("Test toArray function", () => { - test("test if input is already an array", () => { - const input = [1]; - const res = toArray(input); - expect(res).toEqual(input); - }) - - test("test if input is not an array", () => { - const input = 1; - const res = toArray(input); - expect(res).toEqual([1]); - }) - }) - - -}) + describe("test generateCurie function", () => { + test("test if id is a list", () => { + const inputIDs = ["1017", "1018"]; + const res = generateCurie("NCBIGene", inputIDs); + expect(res).toEqual("NCBIGene:1017"); + }); + + test("test if id is not a list", () => { + const inputIDs = "1017"; + const res = generateCurie("NCBIGene", inputIDs); + expect(res).toEqual("NCBIGene:1017"); + }); + + test("test if id is already curied", () => { + const inputIDs = "NCBIGene1:1017"; + const res = generateCurie("NCBIGene", inputIDs); + expect(res).toEqual("NCBIGene:1017"); + }); + }); + + describe("Test toArray function", () => { + test("test if input is already an array", () => { + const input = [1]; + const res = toArray(input); + expect(res).toEqual(input); + }); + + test("test if input is not an array", () => { + const input = 1; + const res = toArray(input); + expect(res).toEqual([1]); + }); + }); +}); diff --git a/src/json_transform/index.ts b/src/json_transform/index.ts index adc89ed..609b5a4 100644 --- a/src/json_transform/index.ts +++ b/src/json_transform/index.ts @@ -1,18 +1,18 @@ -import { separateSimpleAnComplexPaths, transformComplexObject, transformSimpleObject } from './utils'; -import { JSONDoc, UserInputTemplate, BaseTemplate, ComplexTemplate } from './types'; +import { separateSimpleAnComplexPaths, transformComplexObject, transformSimpleObject } from "./utils"; +import { JSONDoc, UserInputTemplate, BaseTemplate, ComplexTemplate } from "./types"; export const transform = (json_doc: JSONDoc | JSONDoc[], template: UserInputTemplate) => { - let transformed_json_doc; - let simple_path_template: BaseTemplate; - let complex_path_template: ComplexTemplate; - ({ simple_path_template, complex_path_template } = separateSimpleAnComplexPaths(template)); - transformed_json_doc = transformSimpleObject(json_doc, simple_path_template); - for (let [key, value] of Object.entries(complex_path_template)) { - if (Array.isArray(value)) { - transformed_json_doc[key] = value.map((tmpl) => transformComplexObject(json_doc, tmpl)); - } else { - transformed_json_doc[key] = transformComplexObject(json_doc, value); - } + let transformed_json_doc; + let simple_path_template: BaseTemplate; + let complex_path_template: ComplexTemplate; + ({ simple_path_template, complex_path_template } = separateSimpleAnComplexPaths(template)); + transformed_json_doc = transformSimpleObject(json_doc, simple_path_template); + for (let [key, value] of Object.entries(complex_path_template)) { + if (Array.isArray(value)) { + transformed_json_doc[key] = value.map(tmpl => transformComplexObject(json_doc, tmpl)); + } else { + transformed_json_doc[key] = transformComplexObject(json_doc, value); } - return transformed_json_doc; -} + } + return transformed_json_doc; +}; diff --git a/src/json_transform/types.ts b/src/json_transform/types.ts index bf5fe2e..79c17ab 100644 --- a/src/json_transform/types.ts +++ b/src/json_transform/types.ts @@ -1,24 +1,24 @@ export interface BaseTemplate { - [key: string]: string | string[]; + [key: string]: string | string[]; } export interface ComplexTemplate { - [key: string]: BaseTemplate; + [key: string]: BaseTemplate; } export interface UserInputTemplate { - [key: string]: string | string[] | BaseTemplate; + [key: string]: string | string[] | BaseTemplate; } export interface BaseTransformedObject { - [key: string]: any; + [key: string]: any; } export interface JSONDoc { - [key1: string]: any; - [key2: number]: any; + [key1: string]: any; + [key2: number]: any; } export interface PairedResponse { - [curie: string]: JSONDoc[] -} \ No newline at end of file + [curie: string]: JSONDoc[]; +} diff --git a/src/json_transform/utils.ts b/src/json_transform/utils.ts index a31ca8a..5b55da0 100644 --- a/src/json_transform/utils.ts +++ b/src/json_transform/utils.ts @@ -1,23 +1,23 @@ -import jsonata from 'jsonata'; -import _ from 'lodash'; -import commonpath from 'common-path-prefix'; -import { BaseTemplate, ComplexTemplate, UserInputTemplate, BaseTransformedObject, JSONDoc } from './types' +import jsonata from "jsonata"; +import _ from "lodash"; +import commonpath from "common-path-prefix"; +import { BaseTemplate, ComplexTemplate, UserInputTemplate, BaseTransformedObject, JSONDoc } from "./types"; /** * Extract all paths from a template object * @param {object} template - part of the template * @returns {object} - an array of paths */ export const extractPathsFromTemplate = (template: BaseTemplate): string[] => { - let paths: string[] = []; - Object.values(template).map(val => { - if (typeof val === "string") { - paths.push(val); - } else { - paths = [...paths, ...val]; - } - }) - return paths; -} + let paths: string[] = []; + Object.values(template).map(val => { + if (typeof val === "string") { + paths.push(val); + } else { + paths = [...paths, ...val]; + } + }); + return paths; +}; /** * find the longest common path given an array of paths @@ -25,15 +25,15 @@ export const extractPathsFromTemplate = (template: BaseTemplate): string[] => { * @returns - the longest common path(separated by dot) */ export const findLongestCommonPath = (paths: string[]): string => { - if (paths.length === 0) { - return undefined; - } - if (paths.length === 1) { - return paths[0]; - } - const common_path = commonpath(paths, '.'); - return (common_path.endsWith('.')) ? common_path.slice(0, -1) : undefined; -} + if (paths.length === 0) { + return undefined; + } + if (paths.length === 1) { + return paths[0]; + } + const common_path = commonpath(paths, "."); + return common_path.endsWith(".") ? common_path.slice(0, -1) : undefined; +}; /** * Transform a simple JSON object based on the template @@ -42,26 +42,26 @@ export const findLongestCommonPath = (paths: string[]): string => { * @returns {object} - the transformed json object */ export const transformSimpleObject = (json_doc: JSONDoc, template: BaseTemplate): BaseTransformedObject => { - const new_doc = {} as BaseTransformedObject; - let val; - let expression; - if (Object.keys(json_doc).length === 0) { - return new_doc; - } - for (let [key, value] of Object.entries(template)) { - if (typeof value === "string") { - expression = jsonata(value); - val = [expression.evaluate(json_doc)]; - } else { - val = value.map(element => jsonata(element).evaluate(json_doc)); - } - val = val.filter(item => !(typeof item === "undefined")); - if (val.length === 0) continue; - if (val.length === 1) val = val[0]; - new_doc[key] = val; - } + const new_doc = {} as BaseTransformedObject; + let val; + let expression; + if (Object.keys(json_doc).length === 0) { return new_doc; -} + } + for (let [key, value] of Object.entries(template)) { + if (typeof value === "string") { + expression = jsonata(value); + val = [expression.evaluate(json_doc)]; + } else { + val = value.map(element => jsonata(element).evaluate(json_doc)); + } + val = val.filter(item => !(typeof item === "undefined")); + if (val.length === 0) continue; + if (val.length === 1) val = val[0]; + new_doc[key] = val; + } + return new_doc; +}; /** * Transform an array of simple JSON object based on the template @@ -69,12 +69,15 @@ export const transformSimpleObject = (json_doc: JSONDoc, template: BaseTemplate) * @param {object} template - the template on which the transform is based * @returns {array} - the transformed json object */ -export const transformArrayOfSimpleObject = (json_doc: JSONDoc | JSONDoc[], template: BaseTemplate): BaseTransformedObject | BaseTransformedObject[] => { - if (Array.isArray(json_doc)) { - return json_doc.map((_doc) => transformSimpleObject(_doc, template)) - } - return json_doc; -} +export const transformArrayOfSimpleObject = ( + json_doc: JSONDoc | JSONDoc[], + template: BaseTemplate, +): BaseTransformedObject | BaseTransformedObject[] => { + if (Array.isArray(json_doc)) { + return json_doc.map(_doc => transformSimpleObject(_doc, template)); + } + return json_doc; +}; /** * Transform a complex JSON object based on the template @@ -83,31 +86,31 @@ export const transformArrayOfSimpleObject = (json_doc: JSONDoc | JSONDoc[], temp * @returns {object} - the transformed json object */ export const transformComplexObject = (json_doc: JSONDoc, template: BaseTemplate) => { - let new_doc = {}; - let trimmed_json_doc; - let trimmed_template; - const paths = extractPathsFromTemplate(template); - const common_path = findLongestCommonPath(paths); - if (paths.length === 1 && paths[0] === common_path) { - return transformSimpleObject(json_doc, template) - } - if (common_path) { - trimmed_json_doc = jsonata(common_path).evaluate(json_doc); - trimmed_template = removeCommonPathFromTemplate(template, common_path); - } else { - trimmed_json_doc = json_doc; - trimmed_template = template; - } - if (typeof trimmed_json_doc === "undefined") { - return {} - } - if (Array.isArray(trimmed_json_doc)) { - new_doc = transformArrayOfSimpleObject(trimmed_json_doc, trimmed_template) - } else { - new_doc = transformSimpleObject(trimmed_json_doc, trimmed_template); - } - return new_doc; -} + let new_doc = {}; + let trimmed_json_doc; + let trimmed_template; + const paths = extractPathsFromTemplate(template); + const common_path = findLongestCommonPath(paths); + if (paths.length === 1 && paths[0] === common_path) { + return transformSimpleObject(json_doc, template); + } + if (common_path) { + trimmed_json_doc = jsonata(common_path).evaluate(json_doc); + trimmed_template = removeCommonPathFromTemplate(template, common_path); + } else { + trimmed_json_doc = json_doc; + trimmed_template = template; + } + if (typeof trimmed_json_doc === "undefined") { + return {}; + } + if (Array.isArray(trimmed_json_doc)) { + new_doc = transformArrayOfSimpleObject(trimmed_json_doc, trimmed_template); + } else { + new_doc = transformSimpleObject(trimmed_json_doc, trimmed_template); + } + return new_doc; +}; /** * Remove common prefix from template @@ -116,43 +119,43 @@ export const transformComplexObject = (json_doc: JSONDoc, template: BaseTemplate * @returns {object} - new template of which the common path has been removed */ export const removeCommonPathFromTemplate = (template: BaseTemplate, common_path: string): BaseTemplate => { - if (typeof common_path !== "string") { - return template - } - common_path = common_path + '.'; - const new_template = {} as BaseTemplate; - for (let [key, value] of Object.entries(template)) { - if (typeof value === 'string') { - new_template[key] = (value.startsWith(common_path)) ? value.substring(common_path.length,) : value; - } else { - const new_value = [] as string[]; - value.map(path => { - const trimmed_path = (path.startsWith(common_path)) ? path.substring(common_path.length,) : path; - new_value.push(trimmed_path); - }) - new_template[key] = new_value; - } + if (typeof common_path !== "string") { + return template; + } + common_path = common_path + "."; + const new_template = {} as BaseTemplate; + for (let [key, value] of Object.entries(template)) { + if (typeof value === "string") { + new_template[key] = value.startsWith(common_path) ? value.substring(common_path.length) : value; + } else { + const new_value = [] as string[]; + value.map(path => { + const trimmed_path = path.startsWith(common_path) ? path.substring(common_path.length) : path; + new_value.push(trimmed_path); + }); + new_template[key] = new_value; } - return new_template; -} + } + return new_template; +}; const isArrayOfString = (input: string | string[] | BaseTemplate): input is string[] => { - return Array.isArray(input) && input.every(i => (typeof i === "string")); -} + return Array.isArray(input) && input.every(i => typeof i === "string"); +}; /** * distinguish simple paths and complex paths from template * @param {object} template - the template which transformation is based on */ export const separateSimpleAnComplexPaths = (template: UserInputTemplate) => { - const simple_path_template = {} as BaseTemplate; - const complex_path_template = {} as ComplexTemplate; - for (let [key, value] of Object.entries(template)) { - if (typeof value === "string" || isArrayOfString(value)) { - simple_path_template[key] = value; - } else { - complex_path_template[key] = value; - } + const simple_path_template = {} as BaseTemplate; + const complex_path_template = {} as ComplexTemplate; + for (let [key, value] of Object.entries(template)) { + if (typeof value === "string" || isArrayOfString(value)) { + simple_path_template[key] = value; + } else { + complex_path_template[key] = value; } - return { simple_path_template, complex_path_template }; -} \ No newline at end of file + } + return { simple_path_template, complex_path_template }; +}; diff --git a/src/transformers/biolink_transformer.ts b/src/transformers/biolink_transformer.ts index d1d6b12..6108c16 100644 --- a/src/transformers/biolink_transformer.ts +++ b/src/transformers/biolink_transformer.ts @@ -1,38 +1,38 @@ import BaseTransformer from "./transformer"; export default class BiolinkTransformer extends BaseTransformer { - wrap(res) { - //super.wrap(); - const PREFIXES = ['HGNC', 'NCBIGene', 'REACT']; - if ("associations" in res) { - for (let rec of res.associations) { - if (rec.object && 'id' in rec.object) { - let prefix, value; - [prefix, value] = rec.object.id.split(":"); - if (PREFIXES.includes(prefix)) { - rec['object'][prefix] = value; - } else { - rec['object'][prefix] = rec.object.id; - } - } - if (rec.publications === undefined || rec.publications.length === 0) { - delete rec.publications - } else { - const oldPublications = rec.publications; - rec.publications = []; - for (let oldPub of oldPublications) { - if (!oldPub?.id?.startsWith?.("PMID:")) { - continue; - } - - rec.publications.push({ id: oldPub.id.split(':').slice(-1)[0] }); - } - } - if (!("provided_by" in rec)) { - delete rec.provided_by - } + wrap(res) { + //super.wrap(); + const PREFIXES = ["HGNC", "NCBIGene", "REACT"]; + if ("associations" in res) { + for (let rec of res.associations) { + if (rec.object && "id" in rec.object) { + let prefix, value; + [prefix, value] = rec.object.id.split(":"); + if (PREFIXES.includes(prefix)) { + rec["object"][prefix] = value; + } else { + rec["object"][prefix] = rec.object.id; + } + } + if (rec.publications === undefined || rec.publications.length === 0) { + delete rec.publications; + } else { + const oldPublications = rec.publications; + rec.publications = []; + for (let oldPub of oldPublications) { + if (!oldPub?.id?.startsWith?.("PMID:")) { + continue; } - }; - return res; + + rec.publications.push({ id: oldPub.id.split(":").slice(-1)[0] }); + } + } + if (!("provided_by" in rec)) { + delete rec.provided_by; + } + } } -} \ No newline at end of file + return res; + } +} diff --git a/src/transformers/biothings_transformer.ts b/src/transformers/biothings_transformer.ts index cec7629..8676dbc 100644 --- a/src/transformers/biothings_transformer.ts +++ b/src/transformers/biothings_transformer.ts @@ -1,33 +1,32 @@ import BaseTransformer from "./transformer"; -import { generateCurie } from '../utils'; +import { generateCurie } from "../utils"; export default class BioThingsTransformer extends BaseTransformer { - async pairCurieWithAPIResponse() { - if (this.edge.query_operation.method === "post") { - let res = {}; - const mapper = item => { - // for input not found, BioThings API returns an entry with a key "notfound" equal to true - if (!('notfound' in item)) { - let input = generateCurie(this.edge.association.input_id, item.query); - if (input in res) { - res[input].push(item); - } else { - res[input] = [item] - } - } - } - - if (this.data.response.hasOwnProperty("hits")) { - // @ts-ignore - this.data.response.hits.map(mapper); - } else { - // @ts-ignore - this.data.response.map(mapper); - } - return res; - } else { - return super.pairCurieWithAPIResponse(); + async pairCurieWithAPIResponse() { + if (this.edge.query_operation.method === "post") { + let res = {}; + const mapper = item => { + // for input not found, BioThings API returns an entry with a key "notfound" equal to true + if (!("notfound" in item)) { + let input = generateCurie(this.edge.association.input_id, item.query); + if (input in res) { + res[input].push(item); + } else { + res[input] = [item]; + } } + }; + if (this.data.response.hasOwnProperty("hits")) { + // @ts-ignore + this.data.response.hits.map(mapper); + } else { + // @ts-ignore + this.data.response.map(mapper); + } + return res; + } else { + return super.pairCurieWithAPIResponse(); } + } } diff --git a/src/transformers/cord_transformer.ts b/src/transformers/cord_transformer.ts index 1f70958..2090456 100644 --- a/src/transformers/cord_transformer.ts +++ b/src/transformers/cord_transformer.ts @@ -2,33 +2,35 @@ import BioThingsTransformer from "./biothings_transformer"; // deprecated export default class CordTransformer extends BioThingsTransformer { - - wrap(res) { - const PREFIXES = ['pr', 'go', 'mop', 'hgnc', 'uberon', 'so', 'cl', 'doid', 'chebi']; - let result = {}; - for (let predicate of Object.keys(res)) { - let tmp = []; - if (Array.isArray(res[predicate]) && res[predicate].length > 0) { - res[predicate].map(item => { - if (item["@type"] === this.edge.association.output_type || (item["@type"] === "DiseaseOrPhenotypicFeature" && this.edge.association.output_type === 'Disease')) { - for (let key of Object.keys(item)) { - if (PREFIXES.includes(key)) { - item[key.toUpperCase()] = item[key]; - delete item[key]; - } - }; - tmp.push(item); - } - }) - }; - if (tmp.length > 0) { - result["related_to"] = tmp; + wrap(res) { + const PREFIXES = ["pr", "go", "mop", "hgnc", "uberon", "so", "cl", "doid", "chebi"]; + let result = {}; + for (let predicate of Object.keys(res)) { + let tmp = []; + if (Array.isArray(res[predicate]) && res[predicate].length > 0) { + res[predicate].map(item => { + if ( + item["@type"] === this.edge.association.output_type || + (item["@type"] === "DiseaseOrPhenotypicFeature" && this.edge.association.output_type === "Disease") + ) { + for (let key of Object.keys(item)) { + if (PREFIXES.includes(key)) { + item[key.toUpperCase()] = item[key]; + delete item[key]; + } } - }; - return result; + tmp.push(item); + } + }); + } + if (tmp.length > 0) { + result["related_to"] = tmp; + } } + return result; + } - jsonTransform(res) { - return res; - } + jsonTransform(res) { + return res; + } } diff --git a/src/transformers/ctd_transformer.ts b/src/transformers/ctd_transformer.ts index e639e80..43f7d5e 100644 --- a/src/transformers/ctd_transformer.ts +++ b/src/transformers/ctd_transformer.ts @@ -1,23 +1,22 @@ import BaseTransformer from "./transformer"; - export default class CTDTransformer extends BaseTransformer { - wrap(res) { - res = res.map(item => { - if (typeof item.PubMedIDs === "string") { - item.PubMedIDs = item.PubMedIDs.split('|'); - } - if (typeof item.PubMedIds === "string") { - item.PubMedIds = item.PubMedIds.split('|'); - } - if (typeof item.DiseaseID === "string") { - item.DiseaseID = item.DiseaseID.split(':').slice(-1)[0]; - } - if (typeof item.DiseaseId === "string") { - item.DiseaseId = item.DiseaseId.split(':').slice(-1)[0]; - } - return item; - }); - return { data: res }; - } -} \ No newline at end of file + wrap(res) { + res = res.map(item => { + if (typeof item.PubMedIDs === "string") { + item.PubMedIDs = item.PubMedIDs.split("|"); + } + if (typeof item.PubMedIds === "string") { + item.PubMedIds = item.PubMedIds.split("|"); + } + if (typeof item.DiseaseID === "string") { + item.DiseaseID = item.DiseaseID.split(":").slice(-1)[0]; + } + if (typeof item.DiseaseId === "string") { + item.DiseaseId = item.DiseaseId.split(":").slice(-1)[0]; + } + return item; + }); + return { data: res }; + } +} diff --git a/src/transformers/ebi_protein_transformer.ts b/src/transformers/ebi_protein_transformer.ts index 65867dc..a65903f 100644 --- a/src/transformers/ebi_protein_transformer.ts +++ b/src/transformers/ebi_protein_transformer.ts @@ -1,18 +1,17 @@ import BaseTransformer from "./transformer"; - export default class EBIProteinTransformer extends BaseTransformer { - wrap(res) { - const new_comments = []; - if (res && "comments" in res) { - res.comments.map(comment => { - if ("reaction" in comment) { - comment.reaction.dbReferences = comment.reaction.dbReferences.filter(item => item.type === "Rhea") - } - new_comments.push(comment); - }) + wrap(res) { + const new_comments = []; + if (res && "comments" in res) { + res.comments.map(comment => { + if ("reaction" in comment) { + comment.reaction.dbReferences = comment.reaction.dbReferences.filter(item => item.type === "Rhea"); } - res.comments = new_comments; - return res; + new_comments.push(comment); + }); } -} \ No newline at end of file + res.comments = new_comments; + return res; + } +} diff --git a/src/transformers/opentarget_transformer.ts b/src/transformers/opentarget_transformer.ts index 69e13a9..7f1a605 100644 --- a/src/transformers/opentarget_transformer.ts +++ b/src/transformers/opentarget_transformer.ts @@ -2,8 +2,9 @@ import BaseTransformer from "./transformer"; import jq from "node-jq"; export default class OpenTargetTransformer extends BaseTransformer { - async wrap(res) { - const filterString = '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)'; - return await jq.run(filterString, res); - } -} \ No newline at end of file + async wrap(res) { + const filterString = + '(.data | .[] | select(.drug.id != null) | select(.drug.id | contains("CHEMBL")) | .drug.id) |= (split("/") | last)'; + return await jq.run(filterString, res); + } +} diff --git a/src/transformers/semmed_transformer.ts b/src/transformers/semmed_transformer.ts index 0766e01..7154cc2 100644 --- a/src/transformers/semmed_transformer.ts +++ b/src/transformers/semmed_transformer.ts @@ -1,30 +1,32 @@ -import BioThingsTransformer from './biothings_transformer'; +import BioThingsTransformer from "./biothings_transformer"; export default class SemmedTransformer extends BioThingsTransformer { - - wrap(res) { - let result = {}; - for (let predicate of Object.keys(res)) { - let tmp = []; - if (Array.isArray(res[predicate]) && res[predicate].length > 0) { - res[predicate].map(item => { - if (item["@type"] === this.edge.association.output_type || (item["@type"] === "DiseaseOrPhenotypicFeature" && this.edge.association.output_type === 'Disease')) { - item['UMLS'] = item['umls']; - item['pubmed'] = item['pmid']; - delete item['umls']; - delete item['pmid']; - tmp.push(item); - } - }) - }; - if (tmp.length > 0) { - result[predicate] = tmp; - } - }; - return result; + wrap(res) { + let result = {}; + for (let predicate of Object.keys(res)) { + let tmp = []; + if (Array.isArray(res[predicate]) && res[predicate].length > 0) { + res[predicate].map(item => { + if ( + item["@type"] === this.edge.association.output_type || + (item["@type"] === "DiseaseOrPhenotypicFeature" && this.edge.association.output_type === "Disease") + ) { + item["UMLS"] = item["umls"]; + item["pubmed"] = item["pmid"]; + delete item["umls"]; + delete item["pmid"]; + tmp.push(item); + } + }); + } + if (tmp.length > 0) { + result[predicate] = tmp; + } } + return result; + } - jsonTransform(res) { - return res; - } -} \ No newline at end of file + jsonTransform(res) { + return res; + } +} diff --git a/src/transformers/transformer.ts b/src/transformers/transformer.ts index 68d22ae..7f5906d 100644 --- a/src/transformers/transformer.ts +++ b/src/transformers/transformer.ts @@ -10,30 +10,30 @@ import async from "async"; const debug = Debug("bte:api-response-transform:transformer"); export default class BaseTransformer { - protected edge: BTEKGOperationObject; - protected data: BTEQueryObject; - public config: any; + protected edge: BTEKGOperationObject; + protected data: BTEQueryObject; + public config: any; - constructor(data: BTEQueryObject, config: any) { - this.data = data; - this.edge = data.edge; - this.config = config; - } + constructor(data: BTEQueryObject, config: any) { + this.data = data; + this.edge = data.edge; + this.config = config; + } - /** - * Create an object with key representing input, and value representing the output of API - */ - async pairCurieWithAPIResponse() { - let input = generateCurie( - this.edge.association.input_id, - this.edge.input.hasOwnProperty('queryInputs') ? this.edge.input["queryInputs"] : this.edge.input as string - ); - return { - [input]: [this.data.response], - }; - } + /** + * Create an object with key representing input, and value representing the output of API + */ + async pairCurieWithAPIResponse() { + let input = generateCurie( + this.edge.association.input_id, + this.edge.input.hasOwnProperty("queryInputs") ? this.edge.input["queryInputs"] : (this.edge.input as string), + ); + return { + [input]: [this.data.response], + }; + } - /* + /* if $edge.input | keys | contains(["queryInputs"]) then {[generateCurie($edge.association.input_id, $edge.input.queryInputs)]: .response} else @@ -41,223 +41,244 @@ export default class BaseTransformer { end */ - /** - * Wrapper functions to transform API response before passing to JSON Transformer - * @return {Object} - key is curie representing input, value is an array of outputs. - */ - wrap(res) { - if (Array.isArray(res)) { - res = { data: res }; - } - return res; + /** + * Wrapper functions to transform API response before passing to JSON Transformer + * @return {Object} - key is curie representing input, value is an array of outputs. + */ + wrap(res) { + if (Array.isArray(res)) { + res = { data: res }; } + return res; + } - /** - * Transform Individual JSON response into Biolink compatible format - * @param {Object} res - JSON response representing an output. - */ - jsonTransform(res: JSONDoc | JSONDoc[]) { - res = transform(res, this.edge.response_mapping); - return res; - } - - _updatePublications(mappedResponse: any) { - if (!Array.isArray(mappedResponse.publications)) { - mappedResponse.publications = []; - } - - const publicationTypes = [ - {prop: "ref_pmid", prefix: "PMID:", urls: ["http://www.ncbi.nlm.nih.gov/pubmed/", "http://europepmc.org/abstract/MED/", "https://www.ncbi.nlm.nih.gov/pubmed/"]}, - {prop: "ref_pmcid", prefix: "PMCID:", urls: ["http://www.ncbi.nlm.nih.gov/pmc/articles/", "http://europepmc.org/articles/"]}, - {prop: "ref_clinicaltrials", prefix: "clinicaltrials:", urls: ["https://clinicaltrials.gov/ct2/show/", "https://www.clinicaltrials.gov/ct2/show/"]}, - {prop: "ref_doi", prefix: "doi:", urls: ["https://doi.org/", "http://www.nejm.org/doi/full/", "https://www.tandfonline.com/doi/abs/", "http://onlinelibrary.wiley.com/doi/"]}, - {prop: "ref_isbn", prefix: "isbn:", urls: ["https://www.isbn-international.org/identifier/"]} - ] + /** + * Transform Individual JSON response into Biolink compatible format + * @param {Object} res - JSON response representing an output. + */ + jsonTransform(res: JSONDoc | JSONDoc[]) { + res = transform(res, this.edge.response_mapping); + return res; + } - // handle URLs (which could be CURIEs) - if ("ref_url" in mappedResponse) { - for (let publication of toArray(mappedResponse.ref_url)) { - if (typeof publication !== "string" || publication.length === 0) { - continue; - } - - let isCurie = false; - for (let publicationType of publicationTypes) { - for (let url of publicationType.urls) { - if (publication.startsWith(url)) { - isCurie = true; - - if (!mappedResponse[publicationType.prop]) { - mappedResponse[publicationType.prop] = []; - } - else if (!Array.isArray(mappedResponse[publicationType.prop])) { - mappedResponse[publicationType.prop] = toArray(mappedResponse[publicationType.prop]); - } - - mappedResponse[publicationType.prop].push(publication.slice(url.length)); - - break; - } - } + _updatePublications(mappedResponse: any) { + if (!Array.isArray(mappedResponse.publications)) { + mappedResponse.publications = []; + } - if (isCurie) { - break; - } - } + const publicationTypes = [ + { + prop: "ref_pmid", + prefix: "PMID:", + urls: [ + "http://www.ncbi.nlm.nih.gov/pubmed/", + "http://europepmc.org/abstract/MED/", + "https://www.ncbi.nlm.nih.gov/pubmed/", + ], + }, + { + prop: "ref_pmcid", + prefix: "PMCID:", + urls: ["http://www.ncbi.nlm.nih.gov/pmc/articles/", "http://europepmc.org/articles/"], + }, + { + prop: "ref_clinicaltrials", + prefix: "clinicaltrials:", + urls: ["https://clinicaltrials.gov/ct2/show/", "https://www.clinicaltrials.gov/ct2/show/"], + }, + { + prop: "ref_doi", + prefix: "doi:", + urls: [ + "https://doi.org/", + "http://www.nejm.org/doi/full/", + "https://www.tandfonline.com/doi/abs/", + "http://onlinelibrary.wiley.com/doi/", + ], + }, + { prop: "ref_isbn", prefix: "isbn:", urls: ["https://www.isbn-international.org/identifier/"] }, + ]; - if (!isCurie) { - mappedResponse.publications.push(publication); - } - } + // handle URLs (which could be CURIEs) + if ("ref_url" in mappedResponse) { + for (let publication of toArray(mappedResponse.ref_url)) { + if (typeof publication !== "string" || publication.length === 0) { + continue; } - delete mappedResponse.ref_url; + let isCurie = false; for (let publicationType of publicationTypes) { - if (publicationType.prop in mappedResponse) { - for (let publication of toArray(mappedResponse[publicationType.prop])) { - // handle numbers - if (typeof publication === "number") { - publication = publication.toString(); - } + for (let url of publicationType.urls) { + if (publication.startsWith(url)) { + isCurie = true; - if (typeof publication !== "string" || publication.length === 0) { - continue; - } + if (!mappedResponse[publicationType.prop]) { + mappedResponse[publicationType.prop] = []; + } else if (!Array.isArray(mappedResponse[publicationType.prop])) { + mappedResponse[publicationType.prop] = toArray(mappedResponse[publicationType.prop]); + } - if (publication.toUpperCase().startsWith(publicationType.prefix.toUpperCase())) { - mappedResponse.publications.push(publicationType.prefix + publication.slice(publicationType.prefix.length)); - } - else { - mappedResponse.publications.push(publicationType.prefix + publication); - } - } + mappedResponse[publicationType.prop].push(publication.slice(url.length)); - delete mappedResponse[publicationType.prop]; + break; } - } - - if (mappedResponse.publications.length === 0) { - delete mappedResponse.publications; + } + + if (isCurie) { + break; + } } - return mappedResponse; + if (!isCurie) { + mappedResponse.publications.push(publication); + } + } } + delete mappedResponse.ref_url; - // _updateEdgeMetadata(res) { - // res.$edge_metadata = { - // ...this.edge.association, - // trapi_qEdge_obj: this.edge.reasoner_edge, - // filter: this.edge.filter, - // }; - // return res; - // } + for (let publicationType of publicationTypes) { + if (publicationType.prop in mappedResponse) { + for (let publication of toArray(mappedResponse[publicationType.prop])) { + // handle numbers + if (typeof publication === "number") { + publication = publication.toString(); + } - _getSubject(subjectCurie: any) { + if (typeof publication !== "string" || publication.length === 0) { + continue; + } - //debug(`input: ${input}`); - let subject = { - original: typeof this.edge.original_input === "undefined" ? undefined : this.edge.original_input[subjectCurie], - // normalizedInfo: - // typeof this.edge.input_resolved_identifiers === "undefined" || typeof this.edge.original_input === "undefined" - // ? undefined - // : this.edge.input_resolved_identifiers[this.edge.original_input[subjectCurie]], + if (publication.toUpperCase().startsWith(publicationType.prefix.toUpperCase())) { + mappedResponse.publications.push(publicationType.prefix + publication.slice(publicationType.prefix.length)); + } else { + mappedResponse.publications.push(publicationType.prefix + publication); + } } - if (this.edge.input_resolved_identifiers && subject.original === undefined) { - //try to find an equivalent ids object if the original input doesn't match (for ICEES) - for (let curie of Object.keys(this.edge.input_resolved_identifiers)) { - if (this.edge.input_resolved_identifiers[curie].equivalentIDs.includes(subjectCurie)) { - subject = { - original: curie, - // normalizedInfo: this.edge.input_resolved_identifiers[curie], - }; - break; - } - } - } - return subject; + + delete mappedResponse[publicationType.prop]; + } } - _removeNonEdgeData(mappedResponse: any) { - delete mappedResponse["@type"]; - delete mappedResponse[this.edge.association.output_id]; - delete mappedResponse["input_name"]; - delete mappedResponse["output_name"]; - return mappedResponse; + if (mappedResponse.publications.length === 0) { + delete mappedResponse.publications; } - /** - * Add edge information into individual output JSON. - * @param {Object} mappedResponse - JSON response representing an output. - */ - async formatRecords(subjectCurie: string, mappedResponse: any) { - if (mappedResponse === undefined || Object.keys(mappedResponse).length === 0) { - return []; - } + return mappedResponse; + } - // mappedResponse = this._updateEdgeMetadata(mappedResponse); - const objectIDs = this.extractObjectIDs(mappedResponse); - const outputName = mappedResponse.output_name; - const inputName = mappedResponse.input_name; - mappedResponse = this._removeNonEdgeData(mappedResponse); - mappedResponse = this._updatePublications(mappedResponse); + // _updateEdgeMetadata(res) { + // res.$edge_metadata = { + // ...this.edge.association, + // trapi_qEdge_obj: this.edge.reasoner_edge, + // filter: this.edge.filter, + // }; + // return res; + // } - const frozenRecord = { - subject: {...this._getSubject(subjectCurie), apiLabel: inputName}, - association: {...this.edge.association}, - qEdge: this.edge.reasoner_edge, - mappedResponse: {...mappedResponse}, + _getSubject(subjectCurie: any) { + //debug(`input: ${input}`); + let subject = { + original: typeof this.edge.original_input === "undefined" ? undefined : this.edge.original_input[subjectCurie], + // normalizedInfo: + // typeof this.edge.input_resolved_identifiers === "undefined" || typeof this.edge.original_input === "undefined" + // ? undefined + // : this.edge.input_resolved_identifiers[this.edge.original_input[subjectCurie]], + }; + if (this.edge.input_resolved_identifiers && subject.original === undefined) { + //try to find an equivalent ids object if the original input doesn't match (for ICEES) + for (let curie of Object.keys(this.edge.input_resolved_identifiers)) { + if (this.edge.input_resolved_identifiers[curie].equivalentIDs.includes(subjectCurie)) { + subject = { + original: curie, + // normalizedInfo: this.edge.input_resolved_identifiers[curie], + }; + break; } + } + } + return subject; + } - let transformedRecords = await async.mapSeries(objectIDs, async (curie: string) => { + _removeNonEdgeData(mappedResponse: any) { + delete mappedResponse["@type"]; + delete mappedResponse[this.edge.association.output_id]; + delete mappedResponse["input_name"]; + delete mappedResponse["output_name"]; + return mappedResponse; + } - let copyRecord = { - ...frozenRecord, - object: { - original: curie, - apiLabel: outputName - } - }; - return new Record(copyRecord, this.config, this.edge.association, this.edge.reasoner_edge); - }); - return transformedRecords; + /** + * Add edge information into individual output JSON. + * @param {Object} mappedResponse - JSON response representing an output. + */ + async formatRecords(subjectCurie: string, mappedResponse: any) { + if (mappedResponse === undefined || Object.keys(mappedResponse).length === 0) { + return []; } - /** - * Main function to transform API response - */ - async transform() { - let transformedRecords = []; - let responses = await this.pairCurieWithAPIResponse(); + // mappedResponse = this._updateEdgeMetadata(mappedResponse); + const objectIDs = this.extractObjectIDs(mappedResponse); + const outputName = mappedResponse.output_name; + const inputName = mappedResponse.input_name; + mappedResponse = this._removeNonEdgeData(mappedResponse); + mappedResponse = this._updatePublications(mappedResponse); - await async.eachSeries(Object.entries(responses), async ([curie, curieResponses]) => { - if (Array.isArray(curieResponses) && curieResponses.length > 0) { - await async.eachSeries(curieResponses, async response => { - const predicateResponse = this.jsonTransform(await this.wrap(response)); - await async.eachSeries(Object.entries(predicateResponse), async ([predicate, mappedResponses]) => { - if (Array.isArray(mappedResponses) && mappedResponses.length > 0) { - await async.eachSeries(mappedResponses, async (mappedResponse: any[]) => { - transformedRecords.push(...(await this.formatRecords(curie, mappedResponse))); - }); - } else { - transformedRecords.push(...(await this.formatRecords(curie, mappedResponses))); - } - }); - }); + const frozenRecord = { + subject: { ...this._getSubject(subjectCurie), apiLabel: inputName }, + association: { ...this.edge.association }, + qEdge: this.edge.reasoner_edge, + mappedResponse: { ...mappedResponse }, + }; + + let transformedRecords = await async.mapSeries(objectIDs, async (curie: string) => { + let copyRecord = { + ...frozenRecord, + object: { + original: curie, + apiLabel: outputName, + }, + }; + return new Record(copyRecord, this.config, this.edge.association, this.edge.reasoner_edge); + }); + return transformedRecords; + } + + /** + * Main function to transform API response + */ + async transform() { + let transformedRecords = []; + let responses = await this.pairCurieWithAPIResponse(); + + await async.eachSeries(Object.entries(responses), async ([curie, curieResponses]) => { + if (Array.isArray(curieResponses) && curieResponses.length > 0) { + await async.eachSeries(curieResponses, async response => { + const predicateResponse = this.jsonTransform(await this.wrap(response)); + await async.eachSeries(Object.entries(predicateResponse), async ([predicate, mappedResponses]) => { + if (Array.isArray(mappedResponses) && mappedResponses.length > 0) { + await async.eachSeries(mappedResponses, async (mappedResponse: any[]) => { + transformedRecords.push(...(await this.formatRecords(curie, mappedResponse))); + }); + } else { + transformedRecords.push(...(await this.formatRecords(curie, mappedResponses))); } - }) - return transformedRecords; - } + }); + }); + } + }); + return transformedRecords; + } - /** - * Retrieve all output IDs. - * @param {Object} mappedResponse - JSON response representing an output. - */ - extractObjectIDs(mappedResponse: object) { - const output_id_type = this.edge.association.output_id; - if (!(output_id_type in mappedResponse)) { - return []; - } - mappedResponse[output_id_type] = toArray(mappedResponse[output_id_type]); - return mappedResponse[output_id_type].map((id: string) => generateCurie(output_id_type, id)); + /** + * Retrieve all output IDs. + * @param {Object} mappedResponse - JSON response representing an output. + */ + extractObjectIDs(mappedResponse: object) { + const output_id_type = this.edge.association.output_id; + if (!(output_id_type in mappedResponse)) { + return []; } + mappedResponse[output_id_type] = toArray(mappedResponse[output_id_type]); + return mappedResponse[output_id_type].map((id: string) => generateCurie(output_id_type, id)); + } } diff --git a/src/transformers/trapi_transformer.ts b/src/transformers/trapi_transformer.ts index 402f848..8abdda8 100644 --- a/src/transformers/trapi_transformer.ts +++ b/src/transformers/trapi_transformer.ts @@ -15,7 +15,9 @@ export default class TRAPITransformer extends BaseTransformer { analysis?.edge_bindings?.e01?.forEach(binding => { const edgeID = binding?.id; const edge = - "message" in this.data.response && edgeID ? this.data.response.message.knowledge_graph.edges[edgeID] : undefined; + "message" in this.data.response && edgeID + ? this.data.response.message.knowledge_graph.edges[edgeID] + : undefined; const edgeHasSupportGraph = edge.attributes.some(attribute => { if (attribute.attribute_type_id === "biolink:support_graphs" && attribute.value?.length) { return true; @@ -23,10 +25,14 @@ export default class TRAPITransformer extends BaseTransformer { }); if (edgeHasSupportGraph || !edgeID) return; edges[edgeID] = { - subject: (this.data.response as JSONDoc).message.knowledge_graph.edges[edgeID].subject ?? result.node_bindings.n0[0].id, - object: (this.data.response as JSONDoc).message.knowledge_graph.edges[edgeID].object ?? result.node_bindings.n1[0].id, + subject: + (this.data.response as JSONDoc).message.knowledge_graph.edges[edgeID].subject ?? + result.node_bindings.n0[0].id, + object: + (this.data.response as JSONDoc).message.knowledge_graph.edges[edgeID].object ?? + result.node_bindings.n1[0].id, }; - }) + }); }); }); } @@ -62,7 +68,7 @@ export default class TRAPITransformer extends BaseTransformer { qEdge: this.edge.reasoner_edge, mappedResponse: { "edge-attributes": [...edge.attributes], - trapi_sources: edge.sources + trapi_sources: edge.sources, }, }; if (frozenRecord.subject.original) { diff --git a/src/utils.ts b/src/utils.ts index d6c0c3f..ffa9b24 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,16 +1,16 @@ export function generateCurie(idType: string, id: string | string[]) { - if (Array.isArray(id)) { - id = id[0]; - } - if (typeof id === "string" && id.includes(':')) { - id = id.split(':').slice(-1)[0]; - } - return idType + ':' + id; + if (Array.isArray(id)) { + id = id[0]; + } + if (typeof id === "string" && id.includes(":")) { + id = id.split(":").slice(-1)[0]; + } + return idType + ":" + id; } export function toArray(item) { - if (!(Array.isArray(item))) { - return [item]; - } - return item; -} \ No newline at end of file + if (!Array.isArray(item)) { + return [item]; + } + return item; +}