diff --git a/.storybook/preview.ts b/.storybook/preview.ts index 025d977..4d23e28 100644 --- a/.storybook/preview.ts +++ b/.storybook/preview.ts @@ -1,9 +1,11 @@ import { type Preview, setup } from '@storybook/vue3' +import { createPinia } from 'pinia' +import { type App } from 'vue' import { registerPlugins } from '../src/plugins' import { withVuetifyTheme } from './withVuetifyTheme.decorator' -// import type { StoryIdentifier } from "@storybook/types" +export const pinia = createPinia() const preview: Preview = { parameters: { @@ -27,7 +29,10 @@ const preview: Preview = { } } -setup((app) => { +setup((app: App) => { + // Use pinia for state management, also in pinia. + console.log('Using pinia for state management') + app.use(pinia) // Registers your app's plugins into Storybook registerPlugins(app) }) diff --git a/package-lock.json b/package-lock.json index f98f66b..0202cd2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,8 @@ "dependencies": { "@mdi/font": "^7.4.47", "@protobuf-ts/runtime": "^2.9.3", + "@types/luxon": "^3.4.2", + "luxon": "^3.4.4", "title-case": "^4.3.1", "vega": "^5.27.0", "vega-embed": "^6.24.0", @@ -5928,6 +5930,11 @@ "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", "dev": true }, + "node_modules/@types/luxon": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.4.2.tgz", + "integrity": "sha512-TifLZlFudklWlMBfhubvgqTXRzLDI5pCbGa4P8a3wPyUQSW+1xQ5eDsreP9DWHX3tjq1ke96uYG/nwundroWcA==" + }, "node_modules/@types/mdast": { "version": "3.0.15", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", @@ -13073,6 +13080,14 @@ "yallist": "^3.0.2" } }, + "node_modules/luxon": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", + "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", + "engines": { + "node": ">=12" + } + }, "node_modules/lz-string": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", diff --git a/package.json b/package.json index 0d62c08..dd5b9aa 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,8 @@ "dependencies": { "@mdi/font": "^7.4.47", "@protobuf-ts/runtime": "^2.9.3", + "@types/luxon": "^3.4.2", + "luxon": "^3.4.4", "title-case": "^4.3.1", "vega": "^5.27.0", "vega-embed": "^6.24.0", diff --git a/src/api/pubtator/index.ts b/src/api/pubtator/index.ts new file mode 100644 index 0000000..1fe8cf3 --- /dev/null +++ b/src/api/pubtator/index.ts @@ -0,0 +1,69 @@ +import { SearchResult } from './types' + +export * from './types' + +/** API base URL to use. */ +const API_BASE_URL = '/internal/proxy/pubtator3-api' + +/** + * Client for PubTator V3 API queries. + */ +export class PubtatorClient { + /** API base URL to use in this client instance. */ + private apiBaseUrl: string + + /** + * Create a new PubTator client. + * + * @param apiBaseUrl The API base URL to use, defaults to `API_BASE_URL`. + */ + constructor(apiBaseUrl?: string) { + this.apiBaseUrl = apiBaseUrl ?? API_BASE_URL + } + + /** + * Perform search for the given HGNC symbol. + * + * @param hgncSymbol HGNC symbol to search for. + * @returns Promise for the search results. + * @throws Error if the search fails. + */ + async performSearch(hgncSymbol: string): Promise<{ [key: string]: SearchResult }> { + const url = `${this.apiBaseUrl}/search/?text=@GENE_${hgncSymbol}` + const searchRes = await fetch(url, { + method: 'GET' + }) + if (!searchRes.ok) { + throw new Error(`Error running PubTator 3 search: ${searchRes.statusText}`) + } + const searchData = await searchRes.json() + + // Then, extract PMID list and retrieve biocjson for the PMIDs + const pmids: string[] = searchData!.results!.map((doc: any) => doc.pmid) + const exportRes = await fetch( + `${this.apiBaseUrl}}/publications/export/biocjson` + `?pmids=${pmids.join(',')}` + ) + if (!exportRes.ok) { + throw new Error(`Error running PubTator 3 export: ${exportRes.statusText}`) + } + const exportDataText = await exportRes.text() + const exportDataLines = exportDataText.split(/\n/) + + // Zip search results and exports into searchResults + const searchResults: { [key: string]: SearchResult } = {} + for (const searchDataRecord of searchData.results) { + searchResults[searchDataRecord.pmid] = { + searchResult: searchDataRecord, + abstract: undefined + } + } + for (const exportDataLine of exportDataLines) { + if (exportDataLine) { + const exportDataRecord = JSON.parse(exportDataLine) + searchResults[exportDataRecord.pmid].abstract = exportDataRecord + } + } + + return searchResults + } +} diff --git a/src/api/pubtator/types.ts b/src/api/pubtator/types.ts new file mode 100644 index 0000000..c54e344 --- /dev/null +++ b/src/api/pubtator/types.ts @@ -0,0 +1,7 @@ +/** Interface for search result entry plus PubMed abstract. */ +export interface SearchResult { + /** The search result record. */ + searchResult: any + /** The PubMed abstract. */ + abstract: any +} diff --git a/src/components/GeneLiteratureCard/GeneLiteratureCard.spec.ts b/src/components/GeneLiteratureCard/GeneLiteratureCard.spec.ts new file mode 100644 index 0000000..7bdf6db --- /dev/null +++ b/src/components/GeneLiteratureCard/GeneLiteratureCard.spec.ts @@ -0,0 +1,62 @@ +import fs from 'fs' +import path from 'path' +import { describe, expect, test } from 'vitest' + +import { setupMountedComponents } from '../../lib/testUtils' +import { Record as GeneInfoRecord } from '../../pbs/annonars/genes/base' +import { SearchResults } from '../../store/pubtator' +import { StoreState } from '../../store/types' +import GeneLiteratureCard from './GeneLiteratureCard.vue' + +// Load fixture data for gene TGDS (little data) and BRCA1 (lots of data). +const geneInfoTgds = GeneInfoRecord.fromJsonString( + fs.readFileSync( + path.resolve(__dirname, '../GenePathogenicityCard/fixture.geneInfo.TGDS.json'), + 'utf8' + ) +) +const geneInfoBrca1 = GeneInfoRecord.fromJsonString( + fs.readFileSync( + path.resolve(__dirname, '../GenePathogenicityCard/fixture.geneInfo.BRCA1.json'), + 'utf8' + ) +) +const searchResultsTgds = JSON.parse( + fs.readFileSync(path.resolve(__dirname, './fixture.pubtatorResults.TGDS.json'), 'utf8') +) as SearchResults +const searchResultsBrca1 = JSON.parse( + fs.readFileSync(path.resolve(__dirname, './fixture.pubtatorResults.BRCA1.json'), 'utf8') +) as SearchResults + +describe.concurrent('GeneLiteratureCard.vue', async () => { + test.each([ + ['BRCA1', geneInfoBrca1, searchResultsBrca1], + ['TGDS', geneInfoTgds, searchResultsTgds] + ])( + 'renders for gene %s', + async (hgncSymbol: string, geneInfo: GeneInfoRecord, searchResults: SearchResults) => { + // arrange: + const { wrapper } = await setupMountedComponents( + { component: GeneLiteratureCard }, + { + props: { + geneInfo + }, + initialStoreState: { + pubtatorStore: { + storeState: StoreState.Active, + hgncSymbol, + searchResults + } + } + } + ) + + // act: nothing, only test rendering + + // assert: + const vCards = wrapper.findAllComponents({ name: 'VCard' }) + expect(vCards.length).toBe(1) + } + ) +}) diff --git a/src/components/GeneLiteratureCard/GeneLiteratureCard.stories.ts b/src/components/GeneLiteratureCard/GeneLiteratureCard.stories.ts new file mode 100644 index 0000000..656d419 --- /dev/null +++ b/src/components/GeneLiteratureCard/GeneLiteratureCard.stories.ts @@ -0,0 +1,65 @@ +import { JsonValue } from '@protobuf-ts/runtime' +import type { Meta, StoryObj } from '@storybook/vue3' + +import { Record as GeneInfoRecord } from '../../pbs/annonars/genes/base' +import { StoreState } from '../../store' +import { usePubtatorStore } from '../../store/pubtator' +import geneInfoBrca1Json from '../GenePathogenicityCard/fixture.geneInfo.BRCA1.json' +import geneInfoTgdsJson from '../GenePathogenicityCard/fixture.geneInfo.TGDS.json' +import GeneLiteratureCard from './GeneLiteratureCard.vue' +import searchResultsBrca1Json from './fixture.pubtatorResults.BRCA1.json' +import searchResultsTgdsJson from './fixture.pubtatorResults.TGDS.json' + +// Here, fixture data is loaded via `import` from JSON file. Reading the file +// as in the tests fails with "process is not defined" error in the browser. + +// @ts-ignore +const geneInfoTgds = GeneInfoRecord.fromJson(geneInfoTgdsJson as JsonValue) +// @ts-ignore +const geneInfoBrca1 = GeneInfoRecord.fromJson(geneInfoBrca1Json as JsonValue) + +const meta = { + title: 'Gene/GeneLiteratureCard', + component: GeneLiteratureCard, + tags: ['autodocs'], + argTypes: { + geneInfo: { control: { type: 'object' } } + }, + args: { + geneInfo: geneInfoTgds, + skipLoadViaStore: true + } +} satisfies Meta + +export default meta + +type Story = StoryObj + +export const TGDS: Story = { + args: { + geneInfo: geneInfoTgds + }, + play: async () => { + // Setup the store contents after story selection. + const pubtatorStore = usePubtatorStore() + pubtatorStore.storeState = StoreState.Loading + pubtatorStore.hgncSymbol = 'TGDS' + pubtatorStore.searchResults = searchResultsTgdsJson + pubtatorStore.storeState = StoreState.Active + } +} + +export const BRCA1: Story = { + args: { + geneInfo: geneInfoBrca1 + }, + play: async () => { + console.log('play...') + // Setup the store contents after story selection. + const pubtatorStore = usePubtatorStore() + pubtatorStore.storeState = StoreState.Loading + pubtatorStore.hgncSymbol = 'BRCA1' + pubtatorStore.searchResults = searchResultsBrca1Json + pubtatorStore.storeState = StoreState.Active + } +} diff --git a/src/components/GeneLiteratureCard/GeneLiteratureCard.vue b/src/components/GeneLiteratureCard/GeneLiteratureCard.vue new file mode 100644 index 0000000..85dce9d --- /dev/null +++ b/src/components/GeneLiteratureCard/GeneLiteratureCard.vue @@ -0,0 +1,320 @@ + + + + + + diff --git a/src/components/GeneLiteratureCard/fixture.pubtatorResults.BRCA1.json b/src/components/GeneLiteratureCard/fixture.pubtatorResults.BRCA1.json new file mode 100644 index 0000000..0d35d93 --- /dev/null +++ b/src/components/GeneLiteratureCard/fixture.pubtatorResults.BRCA1.json @@ -0,0 +1,4850 @@ +{ + "30293211": { + "searchResult": { + "_id": "30293211", + "pmid": 30293211, + "title": "BRCA mutations: is everything said?", + "journal": "Breast Cancer Res Treat", + "authors": [ + "López-Urrutia E", + "Salazar-Rojas V", + "Brito-Elías L", + "Coca-González M", + "Silva-García J", + "Sánchez-Marín D", + "Campos-Parra AD", + "Pérez-Plasencia C" + ], + "date": "2019-01-01T00:00:00Z", + "doi": "10.1007/s10549-018-4986-5", + "meta_date_publication": "2019 Jan", + "meta_volume": "173", + "meta_issue": "1", + "meta_pages": "49-54", + "score": 252.99637, + "text_hl": "@GENE_BRCA1 @@@BRCA@@@ mutations: is everything said?", + "citations": { + "NLM": "López-Urrutia E, Salazar-Rojas V, Brito-Elías L, Coca-González M, Silva-García J, Sánchez-Marín D, Campos-Parra AD, Pérez-Plasencia C. BRCA mutations: is everything said? Breast Cancer Res Treat. 2019 Jan;173(1):49-54. PMID: 30293211", + "BibTeX": "@article{30293211, title={BRCA mutations: is everything said?}, author={López-Urrutia E and Salazar-Rojas V and Brito-Elías L and Coca-González M and Silva-García J and Sánchez-Marín D and Campos-Parra AD and Pérez-Plasencia C}, journal={Breast Cancer Res Treat}, volume={173}, number={1}, pages={49-54}}" + } + }, + "abstract": { + "_id": "30293211|None", + "id": "30293211", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Breast Cancer Res Treat. 2019 Jan;173(1):49-54. doi: 10.1007/s10549-018-4986-5. ", + "year": "2019", + "type": "title", + "authors": "Lopez-Urrutia E, Salazar-Rojas V, Brito-Elias L, Coca-Gonzalez M, Silva-Garcia J, Sanchez-Marin D, Campos-Parra AD, Perez-Plasencia C" + }, + "offset": 0, + "text": "BRCA mutations: is everything said?", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 0, "length": 4 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 36, + "text": "BACKGROUND: Mutations in the BRCA1 and BRCA2 genes constitute a risk factor for breast cancer development. BRCA mutation research has been an active field since the discovery of the genes, and new mutations in both genes are constantly described and classified according to several systems. AIM: We intend to provide an overview of the current state of BRCA1 and BRCA2 mutation description and classification. We wanted to know whether there was a trend towards a more frequently described mutation type and what the proportion of pathogenic mutations was. RESULTS: We found that, although new mutations are described each year as reflected in current database records, very few of them are reported in papers. Classification systems are highly heterogeneous and a consensus among them is still under development. Regarding their function, a large number of mutations are yet to be analyzed, a very complex task, due to the great number of possible variations and their diverse effect in the BRCA gene functions. After individual analysis, many variants of unknown significance turn out to be pathogenic, and many can disrupt interactions with other proteins involved in mechanisms such as DNA damage repair pathways. Recent data suggest that looking for mutation patterns or combinations would shed a wider light on BRCA-derived cancer susceptibility in the upcoming years.", + "sentences": [], + "annotations": [ + { + "id": "10", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 65, "length": 5 }] + }, + { + "id": "11", + "infons": { + "identifier": "675", + "type": "Gene", + "ncbi_homologene": "41", + "valid": true, + "normalized": [675], + "database": "ncbi_gene", + "normalized_id": 675, + "biotype": "gene", + "name": "BRCA2", + "accession": "@GENE_BRCA2" + }, + "text": "BRCA2", + "locations": [{ "offset": 75, "length": 5 }] + }, + { + "id": "12", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "breast cancer", + "locations": [{ "offset": 116, "length": 13 }] + }, + { + "id": "13", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 143, "length": 4 }] + }, + { + "id": "14", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 389, "length": 5 }] + }, + { + "id": "15", + "infons": { + "identifier": "675", + "type": "Gene", + "ncbi_homologene": "41", + "valid": true, + "normalized": [675], + "database": "ncbi_gene", + "normalized_id": 675, + "biotype": "gene", + "name": "BRCA2", + "accession": "@GENE_BRCA2" + }, + "text": "BRCA2", + "locations": [{ "offset": 399, "length": 5 }] + }, + { + "id": "16", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1028, "length": 4 }] + }, + { + "id": "17", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "cancer", + "locations": [{ "offset": 1366, "length": 6 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.7471", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "8,7" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9995", + "role1": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "role2": { + "identifier": "675", + "type": "Gene", + "valid": true, + "normalized": [675], + "database": "ncbi_gene", + "normalized_id": 675, + "biotype": "gene", + "name": "BRCA2", + "accession": "@GENE_BRCA2" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "3,2" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9994", + "role1": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "2", "role": "3,1" }] + } + ], + "pmid": 30293211, + "pmcid": null, + "meta": {}, + "date": "2019-01-01T00:00:00Z", + "journal": "Breast Cancer Res Treat", + "authors": [ + "López-Urrutia E", + "Salazar-Rojas V", + "Brito-Elías L", + "Coca-González M", + "Silva-García J", + "Sánchez-Marín D", + "Campos-Parra AD", + "Pérez-Plasencia C" + ], + "relations_display": [ + { "name": "associate|@DISEASE_Neoplasms|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Breast_Neoplasms|@GENE_BRCA2" }, + { "name": "associate|@DISEASE_Breast_Neoplasms|@GENE_BRCA1" } + ] + } + }, + "30679172": { + "searchResult": { + "_id": "30679172", + "pmid": 30679172, + "title": "BRCA Exchange Launches.", + "journal": "Cancer Discov", + "date": "2019-03-01T00:00:00Z", + "doi": "10.1158/2159-8290.CD-NB2019-008", + "meta_date_publication": "2019 Mar", + "meta_volume": "9", + "meta_issue": "3", + "meta_pages": "311-312", + "score": 250.37035, + "text_hl": "@GENE_BRCA1 @@@BRCA@@@ Exchange Launches.", + "citations": { + "NLM": "BRCA Exchange Launches. Cancer Discov. 2019 Mar;9(3):311-312. PMID: 30679172", + "BibTeX": "@article{30679172, title={BRCA Exchange Launches.}, journal={Cancer Discov}, volume={9}, number={3}, pages={311-312}}" + } + }, + "abstract": { + "_id": "30679172|None", + "id": "30679172", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Cancer Discov. 2019 Mar;9(3):311-312. doi: 10.1158/2159-8290.CD-NB2019-008. Epub ", + "year": "2019", + "type": "title" + }, + "offset": 0, + "text": "BRCA Exchange Launches.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 0, "length": 4 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 24, + "text": "The newly launched BRCA Exchange website and mobile app include data on more than 20,000 unique, inherited BRCA variants. Clinicians, researchers, and patients are expected to benefit from being able to access comprehensive, quality information on BRCA variants in a single place.", + "sentences": [], + "annotations": [ + { + "id": "6", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 43, "length": 4 }] + }, + { + "id": "7", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 131, "length": 4 }] + }, + { + "id": "8", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 175, "length": 8 }] + }, + { + "id": "9", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 272, "length": 4 }] + } + ], + "relations": [] + } + ], + "relations": [], + "pmid": 30679172, + "pmcid": null, + "meta": {}, + "date": "2019-03-01T00:00:00Z", + "journal": "Cancer Discov", + "authors": [], + "relations_display": [] + } + }, + "30992324": { + "searchResult": { + "_id": "30992324", + "pmid": 30992324, + "pmcid": "PMC6497576", + "title": "BRCA1-No Matter How You Splice It.", + "journal": "Cancer Res", + "authors": ["Li D", "Harlan-Williams LM", "Kumaraswamy E", "Jensen RA"], + "date": "2019-05-01T00:00:00Z", + "doi": "10.1158/0008-5472.CAN-18-3190", + "meta_date_publication": "2019 May 1", + "meta_volume": "79", + "meta_issue": "9", + "meta_pages": "2091-2098", + "score": 250.37035, + "text_hl": "@GENE_BRCA1 @@@BRCA1@@@-No Matter How You Splice It.", + "citations": { + "NLM": "Li D, Harlan-Williams LM, Kumaraswamy E, Jensen RA. BRCA1-No Matter How You Splice It. Cancer Res. 2019 May 1;79(9):2091-2098. PMID: 30992324", + "BibTeX": "@article{30992324, title={BRCA1-No Matter How You Splice It.}, author={Li D and Harlan-Williams LM and Kumaraswamy E and Jensen RA}, journal={Cancer Res}, volume={79}, number={9}, pages={2091-2098}}" + } + }, + "abstract": { + "_id": "30992324|None", + "id": "30992324", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Cancer Res. 2019 May 1;79(9):2091-2098. doi: 10.1158/0008-5472.CAN-18-3190. Epub ", + "year": "2019", + "article-id_pmc": "PMC6497576", + "type": "title", + "authors": "Li D, Harlan-Williams LM, Kumaraswamy E, Jensen RA" + }, + "offset": 0, + "text": "BRCA1-No Matter How You Splice It.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 0, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 35, + "text": "BRCA1 (breast cancer 1, early onset), a well-known breast cancer susceptibility gene, is a highly alternatively spliced gene. BRCA1 alternative splicing may serve as an alternative regulatory mechanism for the inactivation of the BRCA1 gene in both hereditary and sporadic breast cancers, and other BRCA1-associated cancers. The alternative transcripts of BRCA1 can mimic known functions, possess unique functions compared with the full-length BRCA1 transcript, and in some cases, appear to function in opposition to full-length BRCA1 In this review, we will summarize the functional \"naturally occurring\" alternative splicing transcripts of BRCA1 and then discuss the latest next-generation sequencing-based detection methods and techniques to detect alternative BRCA1 splicing patterns and their potential use in cancer diagnosis, prognosis, and therapy.", + "sentences": [], + "annotations": [ + { + "id": "14", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 35, "length": 5 }] + }, + { + "id": "15", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "breast cancer", + "locations": [{ "offset": 86, "length": 13 }] + }, + { + "id": "16", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 161, "length": 5 }] + }, + { + "id": "17", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 265, "length": 5 }] + }, + { + "id": "18", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "hereditary and sporadic breast cancers", + "locations": [{ "offset": 284, "length": 38 }] + }, + { + "id": "19", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "BRCA1-associated cancers", + "locations": [{ "offset": 334, "length": 24 }] + }, + { + "id": "20", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 391, "length": 5 }] + }, + { + "id": "21", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 479, "length": 5 }] + }, + { + "id": "22", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 564, "length": 5 }] + }, + { + "id": "23", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 677, "length": 5 }] + }, + { + "id": "24", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 799, "length": 5 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "cancer", + "locations": [{ "offset": 850, "length": 6 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9976", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "13,8" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9394", + "role1": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "1", "role": "2,1" }] + } + ], + "pmid": 30992324, + "pmcid": null, + "meta": {}, + "date": "2019-05-01T00:00:00Z", + "journal": "Cancer Res", + "authors": ["Li D", "Harlan-Williams LM", "Kumaraswamy E", "Jensen RA"], + "relations_display": [ + { "name": "associate|@DISEASE_Neoplasms|@GENE_BRCA1" }, + { "name": "inhibit|@DISEASE_Breast_Neoplasms|@GENE_BRCA1" } + ] + } + }, + "31672679": { + "searchResult": { + "_id": "31672679", + "pmid": 31672679, + "pmcid": "PMC6934897", + "title": "Abdominal Imaging of Pancreatic Cysts and Cyst-Associated Pancreatic Cancer in BRCA1/2 Mutation Carriers: A Retrospective Cross-Sectional Study.", + "journal": "J Am Coll Surg", + "authors": [ + "Cao CX", + "Sharib JM", + "Blanco AM", + "Goldberg D", + "Bracci P", + "Mukhtar RA", + "Esserman LJ", + "Kirkwood KS" + ], + "date": "2020-01-01T00:00:00Z", + "doi": "10.1016/j.jamcollsurg.2019.09.019", + "meta_date_publication": "2020 Jan", + "meta_volume": "230", + "meta_issue": "1", + "meta_pages": "53-63.e1", + "score": 251.35635, + "text_hl": "...BACKGROUND: Direct-to-consumer @GENE_BRCA1 @@@BRCA@@@ testing will increase @GENE_BRCA1 @@@BRCA@@@ diagnoses and subsequent abdominal imaging. ", + "citations": { + "NLM": "Cao CX, Sharib JM, Blanco AM, Goldberg D, Bracci P, Mukhtar RA, Esserman LJ, Kirkwood KS. Abdominal Imaging of Pancreatic Cysts and Cyst-Associated Pancreatic Cancer in BRCA1/2 Mutation Carriers: A Retrospective Cross-Sectional Study. J Am Coll Surg. 2020 Jan;230(1):53-63.e1. PMID: 31672679", + "BibTeX": "@article{31672679, title={Abdominal Imaging of Pancreatic Cysts and Cyst-Associated Pancreatic Cancer in BRCA1/2 Mutation Carriers: A Retrospective Cross-Sectional Study.}, author={Cao CX and Sharib JM and Blanco AM and Goldberg D and Bracci P and Mukhtar RA and Esserman LJ and Kirkwood KS}, journal={J Am Coll Surg}, volume={230}, number={1}, pages={53-63.e1}}" + } + }, + "abstract": { + "_id": "31672679|None", + "id": "31672679", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "J Am Coll Surg. 2020 Jan;230(1):53-63.e1. doi: 10.1016/j.jamcollsurg.2019.09.019. ", + "year": "2020", + "article-id_pmc": "PMC6934897", + "type": "title", + "authors": "Cao CX, Sharib JM, Blanco AM, Goldberg D, Bracci P, Mukhtar RA, Esserman LJ, Kirkwood KS" + }, + "offset": 0, + "text": "Abdominal Imaging of Pancreatic Cysts and Cyst-Associated Pancreatic Cancer in BRCA1/2 Mutation Carriers: A Retrospective Cross-Sectional Study.", + "sentences": [], + "annotations": [ + { + "id": "3", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "Pancreatic Cysts", + "locations": [{ "offset": 21, "length": 16 }] + }, + { + "id": "4", + "infons": { + "identifier": "MESH:D010190", + "type": "Disease", + "valid": true, + "normalized": ["D010190"], + "database": "ncbi_mesh", + "normalized_id": "D010190", + "biotype": "disease", + "name": "Pancreatic Neoplasms", + "accession": "@DISEASE_Pancreatic_Neoplasms" + }, + "text": "Cyst-Associated Pancreatic Cancer", + "locations": [{ "offset": 42, "length": 33 }] + }, + { + "id": "5", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1/2", + "locations": [{ "offset": 79, "length": 7 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 145, + "text": "BACKGROUND: Direct-to-consumer BRCA testing will increase BRCA diagnoses and subsequent abdominal imaging. It is unclear whether BRCA carriers are at higher risk of developing pancreatic cysts (PCs) or cyst-associated pancreatic ductal adenocarcinoma (PDAC). We investigated the prevalence of PCs in BRCA-tested patients, and whether BRCA-carriers have higher rates of PDAC when PCs are found. STUDY DESIGN: This is a retrospective cross-sectional study of patients with BRCA testing and abdominal imaging between 1996 and 2018. Pancreatic cysts were identified on original imaging reports. Prevalence and risk characteristics of PCs, as well as incidence of PDAC, were compared between BRCA+, BRCA-, and BRCA-untested patients. RESULTS: Pancreatic cysts were identified in 4,045 patients among 128,164 unique patients with abdominal imaging, including 33 patients with PCs in 1,113 BRCA-tested patients. There was no difference in PC prevalence between BRCA+, BRCA-, and untested patients (3.6%, 2.6%, 3.2%, respectively; p = 0.64). Pancreatic cysts were diagnosed in BRCA+ patients at a younger age (57.1 vs 65.3 years, p < 0.001); however, there was no difference in risk stratification compared with BRCA- or untested patients by consensus criteria. Across the population of imaged patients, patients with PCs had significantly higher rates of PDAC compared with those without PCs (18.2% vs 2.4%, p < 0.001). Incidence of cyst-associated PDAC was similar in BRCA+ and BRCA- patients (13.3% vs 22.2%, p = 0.84). CONCLUSIONS: BRCA+ patients have similar rates of PCs, high-risk features in their cysts, and PDAC as BRCA- and untested patients. BRCA+ patients likely do not require dedicated abdominal imaging to evaluate for PCs and should follow management guidelines similar to those as the untested general population if an incidental PC is identified.", + "sentences": [], + "annotations": [ + { + "id": "66", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 176, "length": 4 }] + }, + { + "id": "67", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 203, "length": 4 }] + }, + { + "id": "68", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 274, "length": 4 }] + }, + { + "id": "69", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "pancreatic cysts", + "locations": [{ "offset": 321, "length": 16 }] + }, + { + "id": "70", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 339, "length": 3 }] + }, + { + "id": "71", + "infons": { + "identifier": "MESH:D003560", + "type": "Disease", + "valid": true, + "normalized": ["D003560"], + "database": "ncbi_mesh", + "normalized_id": "D003560", + "biotype": "disease", + "name": "Cysts", + "accession": "@DISEASE_Cysts" + }, + "text": "cyst", + "locations": [{ "offset": 347, "length": 4 }] + }, + { + "id": "72", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "pancreatic ductal adenocarcinoma", + "locations": [{ "offset": 363, "length": 32 }] + }, + { + "id": "73", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 397, "length": 4 }] + }, + { + "id": "74", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 438, "length": 3 }] + }, + { + "id": "75", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 445, "length": 4 }] + }, + { + "id": "76", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 457, "length": 8 }] + }, + { + "id": "77", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 479, "length": 4 }] + }, + { + "id": "78", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 514, "length": 4 }] + }, + { + "id": "79", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 524, "length": 3 }] + }, + { + "id": "80", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 602, "length": 8 }] + }, + { + "id": "81", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 616, "length": 4 }] + }, + { + "id": "82", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "Pancreatic cysts", + "locations": [{ "offset": 674, "length": 16 }] + }, + { + "id": "83", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 775, "length": 3 }] + }, + { + "id": "84", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 804, "length": 4 }] + }, + { + "id": "85", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 832, "length": 4 }] + }, + { + "id": "86", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 839, "length": 4 }] + }, + { + "id": "87", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 850, "length": 4 }] + }, + { + "id": "88", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 864, "length": 8 }] + }, + { + "id": "89", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "Pancreatic cysts", + "locations": [{ "offset": 883, "length": 16 }] + }, + { + "id": "90", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 925, "length": 8 }] + }, + { + "id": "91", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 955, "length": 8 }] + }, + { + "id": "92", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1001, "length": 8 }] + }, + { + "id": "93", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 1015, "length": 3 }] + }, + { + "id": "94", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1028, "length": 4 }] + }, + { + "id": "95", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1040, "length": 8 }] + }, + { + "id": "96", + "infons": { + "identifier": "MESH:D015324", + "type": "Disease", + "valid": true, + "normalized": ["D015324"], + "database": "ncbi_mesh", + "normalized_id": "D015324", + "biotype": "disease", + "name": "Pyruvate Carboxylase Deficiency Disease", + "accession": "@DISEASE_Pyruvate_Carboxylase_Deficiency_Disease" + }, + "text": "PC", + "locations": [{ "offset": 1077, "length": 2 }] + }, + { + "id": "97", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1099, "length": 4 }] + }, + { + "id": "98", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1106, "length": 4 }] + }, + { + "id": "99", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1126, "length": 8 }] + }, + { + "id": "100", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "Pancreatic cysts", + "locations": [{ "offset": 1179, "length": 16 }] + }, + { + "id": "101", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1214, "length": 4 }] + }, + { + "id": "102", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1220, "length": 8 }] + }, + { + "id": "103", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1349, "length": 4 }] + }, + { + "id": "104", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1367, "length": 8 }] + }, + { + "id": "105", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1431, "length": 8 }] + }, + { + "id": "106", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1441, "length": 8 }] + }, + { + "id": "107", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 1455, "length": 3 }] + }, + { + "id": "108", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 1493, "length": 4 }] + }, + { + "id": "109", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 1526, "length": 3 }] + }, + { + "id": "110", + "infons": { + "identifier": "MESH:D003560", + "type": "Disease", + "valid": true, + "normalized": ["D003560"], + "database": "ncbi_mesh", + "normalized_id": "D003560", + "biotype": "disease", + "name": "Cysts", + "accession": "@DISEASE_Cysts" + }, + "text": "cyst", + "locations": [{ "offset": 1571, "length": 4 }] + }, + { + "id": "111", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 1587, "length": 4 }] + }, + { + "id": "112", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1607, "length": 4 }] + }, + { + "id": "113", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1617, "length": 4 }] + }, + { + "id": "114", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1623, "length": 8 }] + }, + { + "id": "115", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1673, "length": 4 }] + }, + { + "id": "116", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1679, "length": 8 }] + }, + { + "id": "117", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 1710, "length": 3 }] + }, + { + "id": "118", + "infons": { + "identifier": "MESH:D003560", + "type": "Disease", + "valid": true, + "normalized": ["D003560"], + "database": "ncbi_mesh", + "normalized_id": "D003560", + "biotype": "disease", + "name": "Cysts", + "accession": "@DISEASE_Cysts" + }, + "text": "cysts", + "locations": [{ "offset": 1743, "length": 5 }] + }, + { + "id": "119", + "infons": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "text": "PDAC", + "locations": [{ "offset": 1754, "length": 4 }] + }, + { + "id": "120", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1762, "length": 4 }] + }, + { + "id": "121", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1781, "length": 8 }] + }, + { + "id": "122", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1791, "length": 4 }] + }, + { + "id": "123", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1797, "length": 8 }] + }, + { + "id": "124", + "infons": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "text": "PCs", + "locations": [{ "offset": 1872, "length": 3 }] + }, + { + "id": "125", + "infons": { + "identifier": "MESH:D015324", + "type": "Disease", + "valid": true, + "normalized": ["D015324"], + "database": "ncbi_mesh", + "normalized_id": "D015324", + "biotype": "disease", + "name": "Pyruvate Carboxylase Deficiency Disease", + "accession": "@DISEASE_Pyruvate_Carboxylase_Deficiency_Disease" + }, + "text": "PC", + "locations": [{ "offset": 1985, "length": 2 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D010181", + "type": "Disease", + "valid": true, + "normalized": ["D010181"], + "database": "ncbi_mesh", + "normalized_id": "D010181", + "biotype": "disease", + "name": "Pancreatic Cyst", + "accession": "@DISEASE_Pancreatic_Cyst" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "0,2" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9985", + "role1": { + "identifier": "MESH:D010190", + "type": "Disease", + "valid": true, + "normalized": ["D010190"], + "database": "ncbi_mesh", + "normalized_id": "D010190", + "biotype": "disease", + "name": "Pancreatic Neoplasms", + "accession": "@DISEASE_Pancreatic_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "1,2" }] + }, + { + "id": "R3", + "infons": { + "score": "0.7007", + "role1": { + "identifier": "MESH:D015324", + "type": "Disease", + "valid": true, + "normalized": ["D015324"], + "database": "ncbi_mesh", + "normalized_id": "D015324", + "biotype": "disease", + "name": "Pyruvate Carboxylase Deficiency Disease", + "accession": "@DISEASE_Pyruvate_Carboxylase_Deficiency_Disease" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "2", "role": "33,34" }] + }, + { + "id": "R4", + "infons": { + "score": "0.9982", + "role1": { + "identifier": "MESH:D021441", + "type": "Disease", + "valid": true, + "normalized": ["D021441"], + "database": "ncbi_mesh", + "normalized_id": "D021441", + "biotype": "disease", + "name": "Carcinoma Pancreatic Ductal", + "accession": "@DISEASE_Carcinoma_Pancreatic_Ductal" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "3", "role": "9,5" }] + } + ], + "pmid": 31672679, + "pmcid": null, + "meta": {}, + "date": "2020-01-01T00:00:00Z", + "journal": "J Am Coll Surg", + "authors": [ + "Cao CX", + "Sharib JM", + "Blanco AM", + "Goldberg D", + "Bracci P", + "Mukhtar RA", + "Esserman LJ", + "Kirkwood KS" + ], + "relations_display": [ + { "name": "associate|@DISEASE_Pancreatic_Cyst|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Pancreatic_Neoplasms|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Pyruvate_Carboxylase_Deficiency_Disease|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Carcinoma_Pancreatic_Ductal|@GENE_BRCA1" } + ] + } + }, + "34083286": { + "searchResult": { + "_id": "34083286", + "pmid": 34083286, + "title": "BRCA1-BRCT Mutations Alter the Subcellular Localization of BRCA1 In Vitro.", + "journal": "Anticancer Res", + "authors": ["Drikos I", "Boutou E", "Kastritis PL", "Vorgias CE"], + "date": "2021-06-01T00:00:00Z", + "doi": "10.21873/anticanres.15077", + "meta_date_publication": "2021 Jun", + "meta_volume": "41", + "meta_issue": "6", + "meta_pages": "2953-2962", + "score": 252.84119, + "text_hl": "@GENE_BRCA1 @@@BRCA1@@@-BRCT Mutations Alter the Subcellular Localization of @GENE_BRCA1 @@@BRCA1@@@ In Vitro.", + "citations": { + "NLM": "Drikos I, Boutou E, Kastritis PL, Vorgias CE. BRCA1-BRCT Mutations Alter the Subcellular Localization of BRCA1 In Vitro. Anticancer Res. 2021 Jun;41(6):2953-2962. PMID: 34083286", + "BibTeX": "@article{34083286, title={BRCA1-BRCT Mutations Alter the Subcellular Localization of BRCA1 In Vitro.}, author={Drikos I and Boutou E and Kastritis PL and Vorgias CE}, journal={Anticancer Res}, volume={41}, number={6}, pages={2953-2962}}" + } + }, + "abstract": { + "_id": "34083286|None", + "id": "34083286", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Anticancer Res. 2021 Jun;41(6):2953-2962. doi: 10.21873/anticanres.15077.", + "year": "2021", + "type": "title", + "authors": "Drikos I, Boutou E, Kastritis PL, Vorgias CE" + }, + "offset": 0, + "text": "BRCA1-BRCT Mutations Alter the Subcellular Localization of BRCA1 In Vitro.", + "sentences": [], + "annotations": [ + { + "id": "2", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 0, "length": 5 }] + }, + { + "id": "3", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 59, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 75, + "text": "BACKGROUND/AIM: Numerous missense mutations have been determined in the BRCT domain of the BRCA1 gene, affecting localization and interaction of BRCA1 with other proteins. MATERIALS AND METHODS: We examined whether the M1775K and V1809F mutations in the BRCT domain affect BRCA1 cellular localization. Cells were transfected with pEGFP-C3-BRCA1 and detected by fluorescence microscopy. RESULTS: Following induction of DNA damage, cytoplasmic mislocalization was observed for both M1775K and V1809F mutants compared to EGFP-BRCA1wt and the less common variant M1652I. These results indicate that M1775K and V1809F mutations may change the function of the protein by affecting BRCA1 localization. CONCLUSION: There is a correlation between subcellular localization of BRCA1 and diminished DNA repair observed in breast cancer cells, which may be explained by structural variations and altered binding properties of phosphopeptides.", + "sentences": [], + "annotations": [ + { + "id": "20", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 166, "length": 5 }] + }, + { + "id": "21", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 220, "length": 5 }] + }, + { + "id": "22", + "infons": { + "identifier": "tmVar:p|SUB|M|1775|K;HGVS:p.M1775K;VariantGroup:0;CorrespondingGene:672;RS#:41293463;CorrespondingSpecies:9606;CA#:3476", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.M1775K", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs41293463"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3476", + "rsid": "rs41293463", + "normalized": ["rs41293463##", "#672#", "CA3476#rs41293463##"], + "normalized_id": "rs41293463##", + "biotype": "variant", + "name": "p.M1775K", + "accession": "@VARIANT_p.M1775R_BRCA1_human" + }, + "text": "M1775K", + "locations": [{ "offset": 294, "length": 6 }] + }, + { + "id": "23", + "infons": { + "identifier": "tmVar:p|SUB|V|1809|F;HGVS:p.V1809F;VariantGroup:2;CorrespondingGene:672;RS#:28897698;CorrespondingSpecies:9606;CA#:3588", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.V1809F", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs28897698"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3588", + "rsid": "rs28897698", + "normalized": ["rs28897698##", "#672#", "CA3588#rs28897698##"], + "normalized_id": "rs28897698##", + "biotype": "variant", + "name": "p.V1809F", + "accession": "@VARIANT_p.V1809F_BRCA1_human" + }, + "text": "V1809F", + "locations": [{ "offset": 305, "length": 6 }] + }, + { + "id": "24", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 348, "length": 5 }] + }, + { + "id": "25", + "infons": { + "identifier": "CVCL:1098", + "type": "CellLine", + "valid": true, + "normalized": ["1098"], + "database": "cvcl", + "normalized_id": "1098", + "biotype": "cellline", + "name": "1098", + "accession": null + }, + "text": "-C3", + "locations": [{ "offset": 410, "length": 3 }] + }, + { + "id": "26", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 414, "length": 5 }] + }, + { + "id": "27", + "infons": { + "identifier": "tmVar:p|SUB|M|1775|K;HGVS:p.M1775K;VariantGroup:0;CorrespondingGene:672;RS#:41293463;CorrespondingSpecies:9606;CA#:3476", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.M1775K", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs41293463"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3476", + "rsid": "rs41293463", + "normalized": ["rs41293463##", "#672#", "CA3476#rs41293463##"], + "normalized_id": "rs41293463##", + "biotype": "variant", + "name": "p.M1775K", + "accession": "@VARIANT_p.M1775R_BRCA1_human" + }, + "text": "M1775K", + "locations": [{ "offset": 555, "length": 6 }] + }, + { + "id": "28", + "infons": { + "identifier": "tmVar:p|SUB|V|1809|F;HGVS:p.V1809F;VariantGroup:2;CorrespondingGene:672;RS#:28897698;CorrespondingSpecies:9606;CA#:3588", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.V1809F", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs28897698"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3588", + "rsid": "rs28897698", + "normalized": ["rs28897698##", "#672#", "CA3588#rs28897698##"], + "normalized_id": "rs28897698##", + "biotype": "variant", + "name": "p.V1809F", + "accession": "@VARIANT_p.V1809F_BRCA1_human" + }, + "text": "V1809F", + "locations": [{ "offset": 566, "length": 6 }] + }, + { + "id": "29", + "infons": { + "identifier": "tmVar:p|SUB|M|1652|I;HGVS:p.M1652I;VariantGroup:1;CorrespondingGene:672;RS#:1799967;CorrespondingSpecies:9606;CA#:3103", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.M1652I", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs1799967"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3103", + "rsid": "rs1799967", + "normalized": ["rs1799967##", "#672#", "CA3103#rs1799967##"], + "normalized_id": "rs1799967##", + "biotype": "variant", + "name": "p.M1652I", + "accession": "@VARIANT_p.M1652I_BRCA1_human" + }, + "text": "M1652I", + "locations": [{ "offset": 634, "length": 6 }] + }, + { + "id": "30", + "infons": { + "identifier": "tmVar:p|SUB|M|1775|K;HGVS:p.M1775K;VariantGroup:0;CorrespondingGene:672;RS#:41293463;CorrespondingSpecies:9606;CA#:3476", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.M1775K", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs41293463"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3476", + "rsid": "rs41293463", + "normalized": ["rs41293463##", "#672#", "CA3476#rs41293463##"], + "normalized_id": "rs41293463##", + "biotype": "variant", + "name": "p.M1775K", + "accession": "@VARIANT_p.M1775R_BRCA1_human" + }, + "text": "M1775K", + "locations": [{ "offset": 670, "length": 6 }] + }, + { + "id": "31", + "infons": { + "identifier": "tmVar:p|SUB|V|1809|F;HGVS:p.V1809F;VariantGroup:2;CorrespondingGene:672;RS#:28897698;CorrespondingSpecies:9606;CA#:3588", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.V1809F", + "gene_ids": [672], + "gene_id": 672, + "rsids": ["rs28897698"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA3588", + "rsid": "rs28897698", + "normalized": ["rs28897698##", "#672#", "CA3588#rs28897698##"], + "normalized_id": "rs28897698##", + "biotype": "variant", + "name": "p.V1809F", + "accession": "@VARIANT_p.V1809F_BRCA1_human" + }, + "text": "V1809F", + "locations": [{ "offset": 681, "length": 6 }] + }, + { + "id": "32", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 750, "length": 5 }] + }, + { + "id": "33", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 841, "length": 5 }] + }, + { + "id": "34", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "breast cancer", + "locations": [{ "offset": 885, "length": 13 }] + }, + { + "id": "35", + "infons": { + "identifier": "MESH:D010748", + "type": "Chemical", + "valid": true, + "normalized": ["D010748"], + "database": "ncbi_mesh", + "normalized_id": "D010748", + "biotype": "chemical", + "name": "Phosphopeptides", + "accession": "@CHEMICAL_Phosphopeptides" + }, + "text": "phosphopeptides", + "locations": [{ "offset": 988, "length": 15 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9921", + "role1": { + "identifier": "MESH:D010748", + "type": "Chemical", + "valid": true, + "normalized": ["D010748"], + "database": "ncbi_mesh", + "normalized_id": "D010748", + "biotype": "chemical", + "name": "Phosphopeptides", + "accession": "@CHEMICAL_Phosphopeptides" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "17,15" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9993", + "role1": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "16,15" }] + } + ], + "pmid": 34083286, + "pmcid": null, + "meta": {}, + "date": "2021-06-01T00:00:00Z", + "journal": "Anticancer Res", + "authors": ["Drikos I", "Boutou E", "Kastritis PL", "Vorgias CE"], + "relations_display": [ + { "name": "associate|@CHEMICAL_Phosphopeptides|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Breast_Neoplasms|@GENE_BRCA1" } + ] + } + }, + "34137566": { + "searchResult": { + "_id": "34137566", + "pmid": 34137566, + "title": "BRCA 1, 2 mutation and earlier menopause: could BRCA 1,2 be used as predictor of menopause?", + "journal": "Minerva Obstet Gynecol", + "authors": ["Nikolettos K", "Damaskos C", "Garmpis N", "Nikolettos N"], + "date": "2022-04-01T00:00:00Z", + "doi": "10.23736/S2724-606X.21.04813-2", + "meta_date_publication": "2022 Apr", + "meta_volume": "74", + "meta_issue": "2", + "meta_pages": "165-170", + "score": 250.24734, + "text_hl": "@GENE_BRCA1 @@@BRCA 1, 2@@@ mutation and earlier menopause: could @GENE_BRCA1 @@@BRCA 1,2@@@ be used as predictor of menopause?", + "citations": { + "NLM": "Nikolettos K, Damaskos C, Garmpis N, Nikolettos N. BRCA 1, 2 mutation and earlier menopause: could BRCA 1,2 be used as predictor of menopause? Minerva Obstet Gynecol. 2022 Apr;74(2):165-170. PMID: 34137566", + "BibTeX": "@article{34137566, title={BRCA 1, 2 mutation and earlier menopause: could BRCA 1,2 be used as predictor of menopause?}, author={Nikolettos K and Damaskos C and Garmpis N and Nikolettos N}, journal={Minerva Obstet Gynecol}, volume={74}, number={2}, pages={165-170}}" + } + }, + "abstract": { + "_id": "34137566|None", + "id": "34137566", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Minerva Obstet Gynecol. 2022 Apr;74(2):165-170. doi: ", + "year": "2022", + "type": "title", + "authors": "Nikolettos K, Damaskos C, Garmpis N, Nikolettos N" + }, + "offset": 0, + "text": "BRCA 1, 2 mutation and earlier menopause: could BRCA 1,2 be used as predictor of menopause?", + "sentences": [], + "annotations": [ + { + "id": "2", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA 1, 2", + "locations": [{ "offset": 0, "length": 9 }] + }, + { + "id": "3", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA 1,2", + "locations": [{ "offset": 48, "length": 8 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 92, + "text": "INTRODUCTION: Many studies have shown that BRCA mutation is not only related to cancer but also to ovarian aging. Studies in both human and mice oocytes have shown that Double-strand breaks (DSBs) accumulate with age. EVIDENCE ACQUISITION: A review of the literature was completed through the PubMed database aiming to find articles regarding BRCA 1,2 mutation and if they are related to early menopause in order to use them as predictive biomarkers in the near future. The research used keywords in numerous combinations, such as \"BRCA 1,2 mutation,\" \"menopause,\" \"ovarian reserves,\" \"AMH,\" \"genome-wide association studies,\" and \"biomarkers.\" The literature was limited in this specific topic. The initial research found 16 screened articles, 7 of which were not included because there were not relevant, as far as publications in non-English language. EVIDENCE SYNTHESIS: Genome-wide association studies (GWAS) have found 44 genetic loci that are related to variations when a female is about to have menopause. BRCA1 is involved in these 44 loci that are associated with the age of menopause. This review has gathered all results of literature search about the association between BRCA genes and early menopause. Most of the articles found that women with BRCA mutation have earlier menopause compared to non-carriers. CONCLUSIONS: In conclusion, in the near future BRCA1,2 genes could be used as predictive biomarkers of menopause.", + "sentences": [], + "annotations": [ + { + "id": "16", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 135, "length": 4 }] + }, + { + "id": "17", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "cancer", + "locations": [{ "offset": 172, "length": 6 }] + }, + { + "id": "18", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "human", + "locations": [{ "offset": 222, "length": 5 }] + }, + { + "id": "19", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 232, "length": 4 }] + }, + { + "id": "20", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA 1,2", + "locations": [{ "offset": 435, "length": 8 }] + }, + { + "id": "21", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA 1,2", + "locations": [{ "offset": 624, "length": 8 }] + }, + { + "id": "22", + "infons": { + "identifier": "268", + "type": "Gene", + "ncbi_homologene": "68060", + "valid": true, + "normalized": [268], + "database": "ncbi_gene", + "normalized_id": 268, + "biotype": "gene", + "name": "AMH", + "accession": "@GENE_AMH" + }, + "text": "AMH", + "locations": [{ "offset": 678, "length": 3 }] + }, + { + "id": "23", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1106, "length": 5 }] + }, + { + "id": "24", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1276, "length": 4 }] + }, + { + "id": "25", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "women", + "locations": [{ "offset": 1340, "length": 5 }] + }, + { + "id": "26", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA", + "locations": [{ "offset": 1351, "length": 4 }] + }, + { + "id": "27", + "infons": { + "identifier": "672;675", + "type": "Gene", + "ncbi_homologene": "5276;41", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1,2", + "locations": [{ "offset": 1461, "length": 7 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9995", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "3,2" }] + } + ], + "pmid": 34137566, + "pmcid": null, + "meta": {}, + "date": "2022-04-01T00:00:00Z", + "journal": "Minerva Obstet Gynecol", + "authors": ["Nikolettos K", "Damaskos C", "Garmpis N", "Nikolettos N"], + "relations_display": [{ "name": "associate|@DISEASE_Neoplasms|@GENE_BRCA1" }] + } + }, + "34421362": { + "searchResult": { + "_id": "34421362", + "pmid": 34421362, + "pmcid": "PMC8375228", + "title": "BRCA1 Antibodies Matter.", + "journal": "Int J Biol Sci", + "authors": ["Yang J", "Qi L", "Chiang HC", "Yuan B", "Li R", "Hu Y"], + "date": "2021-07-25T00:00:00Z", + "doi": "10.7150/ijbs.63115", + "meta_date_publication": "2021", + "meta_volume": "17", + "meta_issue": "12", + "meta_pages": "3239-3254", + "score": 250.55861, + "text_hl": "@GENE_BRCA1 @@@BRCA1@@@ Antibodies Matter.", + "citations": { + "NLM": "Yang J, Qi L, Chiang HC, Yuan B, Li R, Hu Y. BRCA1 Antibodies Matter. Int J Biol Sci. 2021;17(12):3239-3254. PMID: 34421362", + "BibTeX": "@article{34421362, title={BRCA1 Antibodies Matter.}, author={Yang J and Qi L and Chiang HC and Yuan B and Li R and Hu Y}, journal={Int J Biol Sci}, volume={17}, number={12}, pages={3239-3254}}" + } + }, + "abstract": { + "_id": "34421362|None", + "id": "34421362", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Int J Biol Sci. 2021 Jul 25;17(12):3239-3254. doi: 10.7150/ijbs.63115. ", + "year": "2021", + "article-id_pmc": "PMC8375228", + "type": "title", + "authors": "Yang J, Qi L, Chiang HC, Yuan B, Li R, Hu Y" + }, + "offset": 0, + "text": "BRCA1 Antibodies Matter.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 0, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 25, + "text": "Breast cancer susceptibility gene 1 (BRCA1) encodes a tumor suppressor that is frequently mutated in familial breast and ovarian cancer patients. BRCA1 functions in multiple important cellular processes including DNA damage repair, cell cycle checkpoint activation, protein ubiquitination, chromatin remodeling, transcriptional regulation, as well as R-loop formation and apoptosis. A large number of BRCA1 antibodies have been generated and become commercially available over the past three decades, however, many commercial antibodies are poorly characterized and, when widely used, led to unreliable data. In search of reliable and specific BRCA1 antibodies (Abs), particularly antibodies recognizing mouse BRCA1, we performed a rigorous validation of a number of commercially available anti-BRCA1 antibodies, using proper controls in a panel of validation applications, including Western blot (WB), immunoprecipitation (IP), immunoprecipitation-mass spectrometry (IP-MS), chromatin immunoprecipitation (ChIP) and immunofluorescence (IF). Furthermore, we assessed the specificity of these antibodies to detect mouse BRCA1 protein through the use of testis tissue and mouse embryonic fibroblasts (MEFs) from Brca1+/+ and Brca1Delta11/Delta11 mice. We find that Ab1, D-9, 07-434 (for recognizing human BRCA1) and 287.17, 440621, BR-64 (for recognizing mouse BRCA1) are specific with high quality performance in the indicated assays. We share these results here with the goal of helping the community combat the common challenges associated with anti-BRCA1 antibody specificity and reproducibility and, hopefully, better understanding BRCA1 functions at cellular and tissue levels.", + "sentences": [], + "annotations": [ + { + "id": "23", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 62, "length": 5 }] + }, + { + "id": "24", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 79, "length": 5 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D061325", + "type": "Disease", + "valid": true, + "normalized": ["D061325"], + "database": "ncbi_mesh", + "normalized_id": "D061325", + "biotype": "disease", + "name": "Hereditary Breast and Ovarian Cancer Syndrome", + "accession": "@DISEASE_Hereditary_Breast_and_Ovarian_Cancer_Syndrome" + }, + "text": "familial breast and ovarian cancer", + "locations": [{ "offset": 126, "length": 34 }] + }, + { + "id": "26", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 161, "length": 8 }] + }, + { + "id": "27", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 171, "length": 5 }] + }, + { + "id": "28", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 426, "length": 5 }] + }, + { + "id": "29", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 669, "length": 5 }] + }, + { + "id": "30", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mouse", + "locations": [{ "offset": 729, "length": 5 }] + }, + { + "id": "31", + "infons": { + "identifier": "12189", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [12189], + "database": "ncbi_gene", + "normalized_id": 12189, + "biotype": "gene", + "name": "Brca1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 735, "length": 5 }] + }, + { + "id": "32", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 820, "length": 5 }] + }, + { + "id": "33", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mouse", + "locations": [{ "offset": 1138, "length": 5 }] + }, + { + "id": "34", + "infons": { + "identifier": "12189", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [12189], + "database": "ncbi_gene", + "normalized_id": 12189, + "biotype": "gene", + "name": "Brca1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1144, "length": 5 }] + }, + { + "id": "35", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mouse", + "locations": [{ "offset": 1195, "length": 5 }] + }, + { + "id": "36", + "infons": { + "identifier": "12189", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [12189], + "database": "ncbi_gene", + "normalized_id": 12189, + "biotype": "gene", + "name": "Brca1", + "accession": "@GENE_BRCA1" + }, + "text": "Brca1", + "locations": [{ "offset": 1235, "length": 5 }] + }, + { + "id": "37", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 1269, "length": 4 }] + }, + { + "id": "38", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "human", + "locations": [{ "offset": 1322, "length": 5 }] + }, + { + "id": "39", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1328, "length": 5 }] + }, + { + "id": "40", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mouse", + "locations": [{ "offset": 1378, "length": 5 }] + }, + { + "id": "41", + "infons": { + "identifier": "12189", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [12189], + "database": "ncbi_gene", + "normalized_id": 12189, + "biotype": "gene", + "name": "Brca1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1384, "length": 5 }] + }, + { + "id": "42", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1576, "length": 5 }] + }, + { + "id": "43", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1660, "length": 5 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9005", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "0", "role": "2,1" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9994", + "role1": { + "identifier": "MESH:D061325", + "type": "Disease", + "valid": true, + "normalized": ["D061325"], + "database": "ncbi_mesh", + "normalized_id": "D061325", + "biotype": "disease", + "name": "Hereditary Breast and Ovarian Cancer Syndrome", + "accession": "@DISEASE_Hereditary_Breast_and_Ovarian_Cancer_Syndrome" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "3,1" }] + } + ], + "pmid": 34421362, + "pmcid": null, + "meta": {}, + "date": "2021-07-25T00:00:00Z", + "journal": "Int J Biol Sci", + "authors": ["Yang J", "Qi L", "Chiang HC", "Yuan B", "Li R", "Hu Y"], + "relations_display": [ + { "name": "inhibit|@DISEASE_Neoplasms|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Hereditary_Breast_and_Ovarian_Cancer_Syndrome|@GENE_BRCA1" } + ] + } + }, + "34736119": { + "searchResult": { + "_id": "34736119", + "pmid": 34736119, + "pmcid": "PMC8577473", + "title": "Novel mechanisms in alcohol neurodevelopmental disorders via BRCA1 depletion and BRCA1-dependent NADPH oxidase regulation.", + "journal": "Redox Biol", + "authors": ["Drake DM", "Wells PG"], + "date": "2021-09-23T00:00:00Z", + "doi": "10.1016/j.redox.2021.102148", + "meta_date_publication": "2021 Sep 23", + "meta_volume": "48", + "meta_issue": "", + "meta_pages": "102148", + "score": 250.24426, + "text_hl": "Novel mechanisms in alcohol neurodevelopmental disorders via @GENE_BRCA1 @@@BRCA1@@@ depletion and @GENE_BRCA1 @@@BRCA1@@@-dependent NADPH oxidase regulation.", + "citations": { + "NLM": "Drake DM, Wells PG. Novel mechanisms in alcohol neurodevelopmental disorders via BRCA1 depletion and BRCA1-dependent NADPH oxidase regulation. Redox Biol. 2021 Sep 23;48():102148. PMID: 34736119", + "BibTeX": "@article{34736119, title={Novel mechanisms in alcohol neurodevelopmental disorders via BRCA1 depletion and BRCA1-dependent NADPH oxidase regulation.}, author={Drake DM and Wells PG}, journal={Redox Biol}, volume={48}, pages={102148}}" + } + }, + "abstract": { + "_id": "34736119|None", + "id": "34736119", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Redox Biol. 2021 Sep 23;48:102148. doi: 10.1016/j.redox.2021.102148.", + "year": "2021", + "article-id_pmc": "PMC8577473", + "type": "title", + "authors": "Drake DM, Wells PG" + }, + "offset": 0, + "text": "Novel mechanisms in alcohol neurodevelopmental disorders via BRCA1 depletion and BRCA1-dependent NADPH oxidase regulation.", + "sentences": [], + "annotations": [ + { + "id": "3", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "alcohol neurodevelopmental disorders", + "locations": [{ "offset": 20, "length": 36 }] + }, + { + "id": "4", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 61, "length": 5 }] + }, + { + "id": "5", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 81, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 123, + "text": "The breast cancer 1 protein (BRCA1) facilitates DNA repair, preventing embryolethality and protecting the fetus from reactive oxygen species (ROS)-induced developmental disorders mediated by oxidatively damaged DNA. Alcohol (ethanol, EtOH) exposure during pregnancy causes fetal alcohol spectrum disorders (FASD), characterized by aberrant behaviour and enhanced ROS formation and proteasomal protein degradation. Herein, ROS-producing NADPH oxidase (NOX) activity was higher in Brca1 +/- vs. +/+ fetal and adult brains, and further enhanced by a single EtOH exposure. EtOH also enhanced catalase and proteasomal activities, while conversely reducing BRCA1 protein levels without affecting Brca1 gene expression. EtOH-initiated adaptive postnatal freezing behaviour was lost in Brca1 +/- progeny. Pretreatment with the free radical spin trap and ROS inhibitor phenylbutylnitrone blocked all EtOH effects, suggesting ROS-dependent mechanisms. This is the first in vivo evidence of NOX regulation by BRCA1, and of EtOH-induced, ROS-mediated depletion of BRCA1, revealing novel mechanisms of BRCA1 protection in FASD.", + "sentences": [], + "annotations": [ + { + "id": "38", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "breast cancer 1 protein", + "locations": [{ "offset": 127, "length": 23 }] + }, + { + "id": "39", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 152, "length": 5 }] + }, + { + "id": "40", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "embryolethality", + "locations": [{ "offset": 194, "length": 15 }] + }, + { + "id": "41", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "reactive oxygen species", + "locations": [{ "offset": 240, "length": 23 }] + }, + { + "id": "42", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 265, "length": 3 }] + }, + { + "id": "43", + "infons": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "text": "developmental disorders", + "locations": [{ "offset": 278, "length": 23 }] + }, + { + "id": "44", + "infons": { + "identifier": "MESH:D000438", + "type": "Chemical", + "valid": true, + "normalized": ["D000438"], + "database": "ncbi_mesh", + "normalized_id": "D000438", + "biotype": "chemical", + "name": "Alcohols", + "accession": "@CHEMICAL_Alcohols" + }, + "text": "Alcohol", + "locations": [{ "offset": 339, "length": 7 }] + }, + { + "id": "45", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "ethanol", + "locations": [{ "offset": 348, "length": 7 }] + }, + { + "id": "46", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 357, "length": 4 }] + }, + { + "id": "47", + "infons": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "text": "fetal alcohol spectrum disorders", + "locations": [{ "offset": 396, "length": 32 }] + }, + { + "id": "48", + "infons": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "text": "FASD", + "locations": [{ "offset": 430, "length": 4 }] + }, + { + "id": "49", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 486, "length": 3 }] + }, + { + "id": "50", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 545, "length": 3 }] + }, + { + "id": "51", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "Brca1", + "locations": [{ "offset": 602, "length": 5 }] + }, + { + "id": "52", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 677, "length": 4 }] + }, + { + "id": "53", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 692, "length": 4 }] + }, + { + "id": "54", + "infons": { + "identifier": "847", + "type": "Gene", + "ncbi_homologene": "55514", + "valid": true, + "normalized": [847], + "database": "ncbi_gene", + "normalized_id": 847, + "biotype": "gene", + "name": "CAT", + "accession": "@GENE_CAT" + }, + "text": "catalase", + "locations": [{ "offset": 711, "length": 8 }] + }, + { + "id": "55", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 774, "length": 5 }] + }, + { + "id": "56", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "Brca1", + "locations": [{ "offset": 813, "length": 5 }] + }, + { + "id": "57", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 836, "length": 4 }] + }, + { + "id": "58", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "Brca1", + "locations": [{ "offset": 901, "length": 5 }] + }, + { + "id": "59", + "infons": { + "identifier": "MESH:D005609", + "type": "Chemical", + "valid": true, + "normalized": ["D005609"], + "database": "ncbi_mesh", + "normalized_id": "D005609", + "biotype": "chemical", + "name": "Free Radicals", + "accession": "@CHEMICAL_Free_Radicals" + }, + "text": "free radical", + "locations": [{ "offset": 942, "length": 12 }] + }, + { + "id": "60", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 969, "length": 3 }] + }, + { + "id": "61", + "infons": { + "identifier": "MESH:C029217", + "type": "Chemical", + "valid": true, + "normalized": ["C029217"], + "database": "ncbi_mesh", + "normalized_id": "C029217", + "biotype": "chemical", + "name": "phenyl-N-tert-butylnitrone", + "accession": "@CHEMICAL_phenyl_N_tert_butylnitrone" + }, + "text": "phenylbutylnitrone", + "locations": [{ "offset": 983, "length": 18 }] + }, + { + "id": "62", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 1014, "length": 4 }] + }, + { + "id": "63", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 1039, "length": 3 }] + }, + { + "id": "64", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1121, "length": 5 }] + }, + { + "id": "65", + "infons": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "text": "EtOH", + "locations": [{ "offset": 1135, "length": 4 }] + }, + { + "id": "66", + "infons": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "text": "ROS", + "locations": [{ "offset": 1149, "length": 3 }] + }, + { + "id": "67", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1175, "length": 5 }] + }, + { + "id": "68", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 1212, "length": 5 }] + }, + { + "id": "69", + "infons": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "text": "FASD", + "locations": [{ "offset": 1232, "length": 4 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.7079", + "role1": { + "identifier": "MESH:C029217", + "type": "Chemical", + "valid": true, + "normalized": ["C029217"], + "database": "ncbi_mesh", + "normalized_id": "C029217", + "biotype": "chemical", + "name": "phenyl-N-tert-butylnitrone", + "accession": "@CHEMICAL_phenyl_N_tert_butylnitrone" + }, + "role2": { + "identifier": "MESH:D005609", + "type": "Chemical", + "valid": true, + "normalized": ["D005609"], + "database": "ncbi_mesh", + "normalized_id": "D005609", + "biotype": "chemical", + "name": "Free Radicals", + "accession": "@CHEMICAL_Free_Radicals" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "0", "role": "26,24" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9885", + "role1": { + "identifier": "MESH:D000438", + "type": "Chemical", + "valid": true, + "normalized": ["D000438"], + "database": "ncbi_mesh", + "normalized_id": "D000438", + "biotype": "chemical", + "name": "Alcohols", + "accession": "@CHEMICAL_Alcohols" + }, + "role2": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "1", "role": "9,14" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9651", + "role1": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "role2": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "2", "role": "6,8" }] + }, + { + "id": "R4", + "infons": { + "score": "0.9992", + "role1": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "3", "role": "17,16" }] + }, + { + "id": "R5", + "infons": { + "score": "0.9912", + "role1": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "role2": { + "identifier": "847", + "type": "Gene", + "valid": true, + "normalized": [847], + "database": "ncbi_gene", + "normalized_id": 847, + "biotype": "gene", + "name": "CAT", + "accession": "@GENE_CAT" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "4", "role": "18,19" }] + }, + { + "id": "R6", + "infons": { + "score": "0.7394", + "role1": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "5", "role": "6,3" }] + }, + { + "id": "R7", + "infons": { + "score": "0.9993", + "role1": { + "identifier": "MESH:C029217", + "type": "Chemical", + "valid": true, + "normalized": ["C029217"], + "database": "ncbi_mesh", + "normalized_id": "C029217", + "biotype": "chemical", + "name": "phenyl-N-tert-butylnitrone", + "accession": "@CHEMICAL_phenyl_N_tert_butylnitrone" + }, + "role2": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "6", "role": "26,25" }] + }, + { + "id": "R8", + "infons": { + "score": "0.9939", + "role1": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "7", "role": "34,29" }] + }, + { + "id": "R9", + "infons": { + "score": "0.9986", + "role1": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "role2": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "8", "role": "14,12" }] + }, + { + "id": "R10", + "infons": { + "score": "0.997", + "role1": { + "identifier": "MESH:C029217", + "type": "Chemical", + "valid": true, + "normalized": ["C029217"], + "database": "ncbi_mesh", + "normalized_id": "C029217", + "biotype": "chemical", + "name": "phenyl-N-tert-butylnitrone", + "accession": "@CHEMICAL_phenyl_N_tert_butylnitrone" + }, + "role2": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "9", "role": "26,27" }] + }, + { + "id": "R11", + "infons": { + "score": "0.9991", + "role1": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "role2": { + "identifier": "MESH:D017382", + "type": "Chemical", + "valid": true, + "normalized": ["D017382"], + "database": "ncbi_mesh", + "normalized_id": "D017382", + "biotype": "chemical", + "name": "Reactive Oxygen Species", + "accession": "@CHEMICAL_Reactive_Oxygen_Species" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "10", "role": "10,14" }] + }, + { + "id": "R12", + "infons": { + "score": "0.9972", + "role1": { + "identifier": "MESH:D000438", + "type": "Chemical", + "valid": true, + "normalized": ["D000438"], + "database": "ncbi_mesh", + "normalized_id": "D000438", + "biotype": "chemical", + "name": "Alcohols", + "accession": "@CHEMICAL_Alcohols" + }, + "role2": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "11", "role": "9,12" }] + }, + { + "id": "R13", + "infons": { + "score": "0.8142", + "role1": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "12", "role": "8,3" }] + }, + { + "id": "R14", + "infons": { + "score": "0.9988", + "role1": { + "identifier": "MESH:D000431", + "type": "Chemical", + "valid": true, + "normalized": ["D000431"], + "database": "ncbi_mesh", + "normalized_id": "D000431", + "biotype": "chemical", + "name": "Ethanol", + "accession": "@CHEMICAL_Ethanol" + }, + "role2": { + "identifier": "MESH:D063647", + "type": "Disease", + "valid": true, + "normalized": ["D063647"], + "database": "ncbi_mesh", + "normalized_id": "D063647", + "biotype": "disease", + "name": "Fetal Alcohol Spectrum Disorders", + "accession": "@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "13", "role": "10,12" }] + } + ], + "pmid": 34736119, + "pmcid": null, + "meta": {}, + "date": "2021-09-23T00:00:00Z", + "journal": "Redox Biol", + "authors": ["Drake DM", "Wells PG"], + "relations_display": [ + { + "name": "negative_correlate|@CHEMICAL_phenyl_N_tert_butylnitrone|@CHEMICAL_Free_Radicals" + }, + { "name": "positive_correlate|@CHEMICAL_Alcohols|@CHEMICAL_Reactive_Oxygen_Species" }, + { "name": "cause|@CHEMICAL_Reactive_Oxygen_Species|@DISEASE_Developmental_Disabilities" }, + { "name": "negative_correlate|@CHEMICAL_Ethanol|@GENE_BRCA1" }, + { "name": "positive_correlate|@CHEMICAL_Ethanol|@GENE_CAT" }, + { "name": "negative_correlate|@CHEMICAL_Reactive_Oxygen_Species|@GENE_BRCA1" }, + { + "name": "negative_correlate|@CHEMICAL_phenyl_N_tert_butylnitrone|@CHEMICAL_Reactive_Oxygen_Species" + }, + { "name": "associate|@DISEASE_Fetal_Alcohol_Spectrum_Disorders|@GENE_BRCA1" }, + { + "name": "cause|@CHEMICAL_Reactive_Oxygen_Species|@DISEASE_Fetal_Alcohol_Spectrum_Disorders" + }, + { "name": "negative_correlate|@CHEMICAL_phenyl_N_tert_butylnitrone|@CHEMICAL_Ethanol" }, + { "name": "positive_correlate|@CHEMICAL_Ethanol|@CHEMICAL_Reactive_Oxygen_Species" }, + { "name": "cause|@CHEMICAL_Alcohols|@DISEASE_Fetal_Alcohol_Spectrum_Disorders" }, + { "name": "associate|@DISEASE_Developmental_Disabilities|@GENE_BRCA1" }, + { "name": "cause|@CHEMICAL_Ethanol|@DISEASE_Fetal_Alcohol_Spectrum_Disorders" } + ] + } + }, + "35300412": { + "searchResult": { + "_id": "35300412", + "pmid": 35300412, + "pmcid": "PMC8921524", + "title": "BRCA1 and Breast Cancer: Molecular Mechanisms and Therapeutic Strategies.", + "journal": "Front Cell Dev Biol", + "authors": ["Fu X", "Tan W", "Song Q", "Pei H", "Li J"], + "date": "2022-03-01T00:00:00Z", + "doi": "10.3389/fcell.2022.813457", + "meta_date_publication": "2022", + "meta_volume": "10", + "meta_issue": "", + "meta_pages": "813457", + "score": 250.21066, + "text_hl": "... @GENE_BRCA1 @@@BRCA1@@@ Gene", + "citations": { + "NLM": "Fu X, Tan W, Song Q, Pei H, Li J. BRCA1 and Breast Cancer: Molecular Mechanisms and Therapeutic Strategies. Front Cell Dev Biol. 2022;10():813457. PMID: 35300412", + "BibTeX": "@article{35300412, title={BRCA1 and Breast Cancer: Molecular Mechanisms and Therapeutic Strategies.}, author={Fu X and Tan W and Song Q and Pei H and Li J}, journal={Front Cell Dev Biol}, volume={10}, pages={813457}}" + } + }, + "abstract": { + "_id": "35300412|None", + "id": "35300412", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Front Cell Dev Biol. 2022 Mar 1;10:813457. doi: 10.3389/fcell.2022.813457. ", + "year": "2022", + "article-id_pmc": "PMC8921524", + "type": "title", + "authors": "Fu X, Tan W, Song Q, Pei H, Li J" + }, + "offset": 0, + "text": "BRCA1 and Breast Cancer: Molecular Mechanisms and Therapeutic Strategies.", + "sentences": [], + "annotations": [ + { + "id": "2", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 0, "length": 5 }] + }, + { + "id": "3", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "Breast Cancer", + "locations": [{ "offset": 10, "length": 13 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 74, + "text": "Breast cancer susceptibility gene 1 (BRCA1) is a tumor suppressor gene, which is mainly involved in the repair of DNA damage, cell cycle regulation, maintenance of genome stability, and other important physiological processes. Mutations or defects in the BRCA1 gene significantly increase the risk of breast, ovarian, prostate, and other cancers in carriers. In this review, we summarized the molecular functions and regulation of BRCA1 and discussed recent insights into the detection and treatment of BRCA1 mutated breast cancer.", + "sentences": [], + "annotations": [ + { + "id": "11", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 111, "length": 5 }] + }, + { + "id": "12", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 123, "length": 5 }] + }, + { + "id": "13", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 329, "length": 5 }] + }, + { + "id": "14", + "infons": { + "identifier": "MESH:D010051", + "type": "Disease", + "valid": true, + "normalized": ["D010051"], + "database": "ncbi_mesh", + "normalized_id": "D010051", + "biotype": "disease", + "name": "Ovarian Neoplasms", + "accession": "@DISEASE_Ovarian_Neoplasms" + }, + "text": "breast, ovarian, prostate, and other cancers", + "locations": [{ "offset": 375, "length": 44 }] + }, + { + "id": "15", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 505, "length": 5 }] + }, + { + "id": "16", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 577, "length": 5 }] + }, + { + "id": "17", + "infons": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "text": "breast cancer", + "locations": [{ "offset": 591, "length": 13 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D010051", + "type": "Disease", + "valid": true, + "normalized": ["D010051"], + "database": "ncbi_mesh", + "normalized_id": "D010051", + "biotype": "disease", + "name": "Ovarian Neoplasms", + "accession": "@DISEASE_Ovarian_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "5,4" }] + }, + { + "id": "R2", + "infons": { + "score": "0.6924", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "1", "role": "3,2" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D001943", + "type": "Disease", + "valid": true, + "normalized": ["D001943"], + "database": "ncbi_mesh", + "normalized_id": "D001943", + "biotype": "disease", + "name": "Breast Neoplasms", + "accession": "@DISEASE_Breast_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "2", "role": "1,0" }] + } + ], + "pmid": 35300412, + "pmcid": null, + "meta": {}, + "date": "2022-03-01T00:00:00Z", + "journal": "Front Cell Dev Biol", + "authors": ["Fu X", "Tan W", "Song Q", "Pei H", "Li J"], + "relations_display": [ + { "name": "associate|@DISEASE_Ovarian_Neoplasms|@GENE_BRCA1" }, + { "name": "inhibit|@DISEASE_Neoplasms|@GENE_BRCA1" }, + { "name": "associate|@DISEASE_Breast_Neoplasms|@GENE_BRCA1" } + ] + } + }, + "36270245": { + "searchResult": { + "_id": "36270245", + "pmid": 36270245, + "pmcid": "PMC10035668", + "title": "BRCA1 protects against its own fragility", + "journal": "Mol Cell", + "authors": ["Martin SK", "McVey M"], + "date": "2022-10-20T00:00:00Z", + "doi": "10.1016/j.molcel.2022.09.023", + "meta_date_publication": "2022 Oct 20", + "meta_volume": "82", + "meta_issue": "20", + "meta_pages": "3757-3759", + "score": 250.26907, + "text_hl": "@GENE_BRCA1 @@@BRCA1@@@ protects against its own fragility", + "citations": { + "NLM": "Martin SK, McVey M. BRCA1 protects against its own fragility Mol Cell. 2022 Oct 20;82(20):3757-3759. PMID: 36270245", + "BibTeX": "@article{36270245, title={BRCA1 protects against its own fragility}, author={Martin SK and McVey M}, journal={Mol Cell}, volume={82}, number={20}, pages={3757-3759}}" + } + }, + "abstract": { + "_id": "36270245|None", + "id": "36270245", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Mol Cell. 2022 Oct 20;82(20):3757-3759. doi: 10.1016/j.molcel.2022.09.023.", + "year": "2022", + "article-id_pmc": "PMC10035668", + "type": "title", + "authors": "Martin SK, McVey M" + }, + "offset": 0, + "text": "BRCA1 protects against its own fragility.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 0, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 42, + "text": "Deshpande et al. (2022) demonstrate that BRCA1, a tumor suppressor tasked with protecting the genome, is encoded by a gene that is intrinsically fragile.", + "sentences": [], + "annotations": [ + { + "id": "4", + "infons": { + "identifier": "672", + "type": "Gene", + "ncbi_homologene": "5276", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "text": "BRCA1", + "locations": [{ "offset": 83, "length": 5 }] + }, + { + "id": "5", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 92, "length": 5 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9162", + "role1": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "role2": { + "identifier": "672", + "type": "Gene", + "valid": true, + "normalized": [672], + "database": "ncbi_gene", + "normalized_id": 672, + "biotype": "gene", + "name": "BRCA1", + "accession": "@GENE_BRCA1" + }, + "type": "Negative_Correlation" + }, + "nodes": [{ "refid": "0", "role": "2,1" }] + } + ], + "pmid": 36270245, + "pmcid": null, + "meta": {}, + "date": "2022-10-20T00:00:00Z", + "journal": "Mol Cell", + "authors": ["Martin SK", "McVey M"], + "relations_display": [{ "name": "inhibit|@DISEASE_Neoplasms|@GENE_BRCA1" }] + } + } +} diff --git a/src/components/GeneLiteratureCard/fixture.pubtatorResults.TGDS.json b/src/components/GeneLiteratureCard/fixture.pubtatorResults.TGDS.json new file mode 100644 index 0000000..1e4ee35 --- /dev/null +++ b/src/components/GeneLiteratureCard/fixture.pubtatorResults.TGDS.json @@ -0,0 +1,6308 @@ +{ + "31923704": { + "searchResult": { + "_id": "31923704", + "pmid": 31923704, + "pmcid": "PMC10521254", + "title": "Biallelic variants in KYNU cause a multisystemic syndrome with hand hyperphalangism.", + "journal": "Bone", + "authors": [ + "Ehmke N", + "Cusmano-Ozog K", + "Koenig R", + "Holtgrewe M", + "Nur B", + "Mihci E", + "Babcock H", + "Gonzaga-Jauregui C", + "Overton JD", + "Xiao J", + "Martinez AF", + "Muenke M", + "Balzer A", + "Jochim J", + "El Choubassi N", + "Fischer-Zirnsak B", + "Huber C", + "Kornak U", + "Elsea SH", + "Cormier-Daire V", + "Ferreira CR" + ], + "date": "2020-04-01T00:00:00Z", + "doi": "10.1016/j.bone.2019.115219", + "meta_date_publication": "2020 Apr", + "meta_volume": "133", + "meta_issue": "", + "meta_pages": "115219", + "score": 243.00061, + "text_hl": "Chromosomal analysis after amniocentesis showed a normal karyotype 46,XX. Postnatally, no mutations in @GENE_TGDS @@@TGDS@@@ were identified.", + "citations": { + "NLM": "Ehmke N, Cusmano-Ozog K, Koenig R, Holtgrewe M, Nur B, Mihci E, Babcock H, Gonzaga-Jauregui C, Overton JD, Xiao J, Martinez AF, Muenke M, Balzer A, Jochim J, El Choubassi N, Fischer-Zirnsak B, Huber C, Kornak U, Elsea SH, Cormier-Daire V, Ferreira CR. Biallelic variants in KYNU cause a multisystemic syndrome with hand hyperphalangism. Bone. 2020 Apr;133():115219. PMID: 31923704", + "BibTeX": "@article{31923704, title={Biallelic variants in KYNU cause a multisystemic syndrome with hand hyperphalangism.}, author={Ehmke N and Cusmano-Ozog K and Koenig R and Holtgrewe M and Nur B and Mihci E and Babcock H and Gonzaga-Jauregui C and Overton JD and Xiao J and Martinez AF and Muenke M and Balzer A and Jochim J and El Choubassi N and Fischer-Zirnsak B and Huber C and Kornak U and Elsea SH and Cormier-Daire V and Ferreira CR}, journal={Bone}, volume={133}, pages={115219}}" + } + }, + "abstract": { + "_id": "31923704|None", + "id": "31923704", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Bone. 2020 Apr;133:115219. doi: 10.1016/j.bone.2019.115219. Epub 2020 Jan 7.", + "year": "2020", + "type": "title", + "authors": "Ehmke N, Cusmano-Ozog K, Koenig R, Holtgrewe M, Nur B, Mihci E, Babcock H, Gonzaga-Jauregui C, Overton JD, Xiao J, Martinez AF, Muenke M, Balzer A, Jochim J, El Choubassi N, Fischer-Zirnsak B, Huber C, Kornak U, Elsea SH, Cormier-Daire V, Ferreira CR" + }, + "offset": 0, + "text": "Biallelic variants in KYNU cause a multisystemic syndrome with hand hyperphalangism.", + "sentences": [], + "annotations": [ + { + "id": "3", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 22, "length": 4 }] + }, + { + "id": "4", + "infons": { + "identifier": "MESH:D019578", + "type": "Disease", + "valid": true, + "normalized": ["D019578"], + "database": "ncbi_mesh", + "normalized_id": "D019578", + "biotype": "disease", + "name": "Multiple System Atrophy", + "accession": "@DISEASE_Multiple_System_Atrophy" + }, + "text": "multisystemic syndrome", + "locations": [{ "offset": 35, "length": 22 }] + }, + { + "id": "5", + "infons": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "text": "hand hyperphalangism", + "locations": [{ "offset": 63, "length": 20 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 85, + "text": "Catel-Manzke syndrome is characterized by the combination of Pierre Robin sequence and radial deviation, shortening as well as clinodactyly of the index fingers, due to an accessory ossification center. Mutations in TGDS have been identified as one cause of Catel-Manzke syndrome, but cannot be found as causative in every patient with the clinical diagnosis. We performed a chromosome microarray and/or exome sequencing in three patients with hand hyperphalangism, heart defect, short stature, and mild to severe developmental delay, all of whom were initially given a clinical diagnosis of Catel-Manzke syndrome. In one patient, we detected a large deletion of exons 1-8 and the missense variant c.1282C > T (p.Arg428Trp) in KYNU (NM_003937.2), whereas homozygous missense variants in KYNU were found in the other two patients (c.989G > A (p.Arg330Gln) and c.326G > C (p.Trp109Ser)). Plasma and urine metabolomic analysis of two patients indicated a block along the tryptophan catabolic pathway and urine organic acid analysis showed excretion of xanthurenic acid. Biallelic loss-of-function mutations in KYNU were recently described as a cause of NAD deficiency with vertebral, cardiac, renal and limb defects; however, no hand hyperphalangism was described in those patients, and Catel-Manzke syndrome was not discussed as a differential diagnosis. In conclusion, we present unrelated patients identified with biallelic variants in KYNU leading to kynureninase deficiency and xanthurenic aciduria as a very likely cause of their hyperphalangism, heart defect, short stature, and developmental delay. We suggest performance of urine organic acid analysis in patients with suspected Catel-Manzke syndrome, particularly in those with cardiac or vertebral defects or without mutations in TGDS.", + "sentences": [], + "annotations": [ + { + "id": "53", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 85, "length": 21 }] + }, + { + "id": "54", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "Pierre Robin sequence", + "locations": [{ "offset": 146, "length": 21 }] + }, + { + "id": "55", + "infons": { + "identifier": "MESH:D010262", + "type": "Disease", + "valid": true, + "normalized": ["D010262"], + "database": "ncbi_mesh", + "normalized_id": "D010262", + "biotype": "disease", + "name": "Paraphilic Disorders", + "accession": "@DISEASE_Paraphilic_Disorders" + }, + "text": "radial deviation", + "locations": [{ "offset": 172, "length": 16 }] + }, + { + "id": "56", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "clinodactyly of the index fingers", + "locations": [{ "offset": 212, "length": 33 }] + }, + { + "id": "57", + "infons": { + "identifier": "23483", + "type": "Gene", + "ncbi_homologene": "129708", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "text": "TGDS", + "locations": [{ "offset": 301, "length": 4 }] + }, + { + "id": "58", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 343, "length": 21 }] + }, + { + "id": "59", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patient", + "locations": [{ "offset": 408, "length": 7 }] + }, + { + "id": "60", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 515, "length": 8 }] + }, + { + "id": "61", + "infons": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "text": "hand hyperphalangism", + "locations": [{ "offset": 529, "length": 20 }] + }, + { + "id": "62", + "infons": { + "identifier": "MESH:D006330", + "type": "Disease", + "valid": true, + "normalized": ["D006330"], + "database": "ncbi_mesh", + "normalized_id": "D006330", + "biotype": "disease", + "name": "Heart Defects Congenital", + "accession": "@DISEASE_Heart_Defects_Congenital" + }, + "text": "heart defect", + "locations": [{ "offset": 551, "length": 12 }] + }, + { + "id": "63", + "infons": { + "identifier": "MESH:D006130", + "type": "Disease", + "valid": true, + "normalized": ["D006130"], + "database": "ncbi_mesh", + "normalized_id": "D006130", + "biotype": "disease", + "name": "Growth Disorders", + "accession": "@DISEASE_Growth_Disorders" + }, + "text": "short stature", + "locations": [{ "offset": 565, "length": 13 }] + }, + { + "id": "64", + "infons": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "text": "developmental delay", + "locations": [{ "offset": 599, "length": 19 }] + }, + { + "id": "65", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 677, "length": 21 }] + }, + { + "id": "66", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patient", + "locations": [{ "offset": 707, "length": 7 }] + }, + { + "id": "67", + "infons": { + "identifier": "tmVar:c|SUB|C|1282|T;HGVS:c.1282C>T;VariantGroup:0;CorrespondingGene:8942;RS#:147475752;CorrespondingSpecies:9606;CA#:1897043", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs147475752"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA1897043", + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#", "CA1897043#rs147475752##"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "text": "c.1282C > T", + "locations": [{ "offset": 783, "length": 11 }] + }, + { + "id": "68", + "infons": { + "identifier": "tmVar:p|SUB|R|428|W;HGVS:p.R428W;VariantGroup:0;CorrespondingGene:8942;RS#:147475752;CorrespondingSpecies:9606;CA#:1897043", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.R428W", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs147475752"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA1897043", + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#", "CA1897043#rs147475752##"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "p.R428W", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "text": "p.Arg428Trp", + "locations": [{ "offset": 796, "length": 11 }] + }, + { + "id": "69", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 812, "length": 4 }] + }, + { + "id": "70", + "infons": { + "type": "Species", + "valid": false, + "normalized_id": null, + "biotype": "species" + }, + "text": "NM_003937.2", + "locations": [{ "offset": 818, "length": 11 }] + }, + { + "id": "71", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 872, "length": 4 }] + }, + { + "id": "72", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 905, "length": 8 }] + }, + { + "id": "73", + "infons": { + "identifier": "tmVar:c|SUB|G|989|A;HGVS:c.989G>A;VariantGroup:1;CorrespondingGene:8942;RS#:142934146;CorrespondingSpecies:9606;CA#:57523774", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs142934146"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA57523774", + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#", "CA57523774#rs142934146##"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "text": "c.989G > A", + "locations": [{ "offset": 915, "length": 10 }] + }, + { + "id": "74", + "infons": { + "identifier": "tmVar:p|SUB|R|330|Q;HGVS:p.R330Q;VariantGroup:1;CorrespondingGene:8942;RS#:142934146;CorrespondingSpecies:9606;CA#:57523774", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.R330Q", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs142934146"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA57523774", + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#", "CA57523774#rs142934146##"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "p.R330Q", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "text": "p.Arg330Gln", + "locations": [{ "offset": 927, "length": 11 }] + }, + { + "id": "75", + "infons": { + "identifier": "tmVar:c|SUB|G|326|C;HGVS:c.326G>C;VariantGroup:2;CorrespondingGene:8942;RS#:780720490;CorrespondingSpecies:9606;CA#:1896642", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs780720490"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA1896642", + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#", "CA1896642#rs780720490##"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "text": "c.326G > C", + "locations": [{ "offset": 944, "length": 10 }] + }, + { + "id": "76", + "infons": { + "identifier": "tmVar:p|SUB|W|109|S;HGVS:p.W109S;VariantGroup:2;CorrespondingGene:8942;RS#:780720490;CorrespondingSpecies:9606;CA#:1896642", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "hgvs": "p.W109S", + "gene_ids": [8942], + "gene_id": 8942, + "rsids": ["rs780720490"], + "species_ids": [9606], + "species_id": 9606, + "clingen_id": "CA1896642", + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#", "CA1896642#rs780720490##"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "p.W109S", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "text": "p.Trp109Ser", + "locations": [{ "offset": 956, "length": 11 }] + }, + { + "id": "77", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1016, "length": 8 }] + }, + { + "id": "78", + "infons": { + "identifier": "MESH:D014364", + "type": "Chemical", + "valid": true, + "normalized": ["D014364"], + "database": "ncbi_mesh", + "normalized_id": "D014364", + "biotype": "chemical", + "name": "Tryptophan", + "accession": "@CHEMICAL_Tryptophan" + }, + "text": "tryptophan", + "locations": [{ "offset": 1053, "length": 10 }] + }, + { + "id": "79", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "organic acid", + "locations": [{ "offset": 1092, "length": 12 }] + }, + { + "id": "80", + "infons": { + "identifier": "MESH:C028330", + "type": "Chemical", + "valid": true, + "normalized": ["C028330"], + "database": "ncbi_mesh", + "normalized_id": "C028330", + "biotype": "chemical", + "name": "xanthurenic acid", + "accession": "@CHEMICAL_xanthurenic_acid" + }, + "text": "xanthurenic acid", + "locations": [{ "offset": 1134, "length": 16 }] + }, + { + "id": "81", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 1192, "length": 4 }] + }, + { + "id": "82", + "infons": { + "identifier": "MESH:D016111", + "type": "Disease", + "valid": true, + "normalized": ["D016111"], + "database": "ncbi_mesh", + "normalized_id": "D016111", + "biotype": "disease", + "name": "Sjogren-Larsson Syndrome", + "accession": "@DISEASE_Sjogren_Larsson_Syndrome" + }, + "text": "NAD deficiency", + "locations": [{ "offset": 1235, "length": 14 }] + }, + { + "id": "83", + "infons": { + "identifier": "MESH:C535326", + "type": "Disease", + "valid": true, + "normalized": ["C535326"], + "database": "ncbi_mesh", + "normalized_id": "C535326", + "biotype": "disease", + "name": "Holt-Oram syndrome", + "accession": "@DISEASE_Holt_Oram_syndrome" + }, + "text": "vertebral, cardiac, renal and limb defects", + "locations": [{ "offset": 1255, "length": 42 }] + }, + { + "id": "84", + "infons": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "text": "hand hyperphalangism", + "locations": [{ "offset": 1311, "length": 20 }] + }, + { + "id": "85", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1355, "length": 8 }] + }, + { + "id": "86", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 1369, "length": 21 }] + }, + { + "id": "87", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1474, "length": 8 }] + }, + { + "id": "88", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 1521, "length": 4 }] + }, + { + "id": "89", + "infons": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "text": "kynureninase deficiency", + "locations": [{ "offset": 1537, "length": 23 }] + }, + { + "id": "90", + "infons": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "text": "xanthurenic aciduria", + "locations": [{ "offset": 1565, "length": 20 }] + }, + { + "id": "91", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "hyperphalangism", + "locations": [{ "offset": 1618, "length": 15 }] + }, + { + "id": "92", + "infons": { + "identifier": "MESH:D006330", + "type": "Disease", + "valid": true, + "normalized": ["D006330"], + "database": "ncbi_mesh", + "normalized_id": "D006330", + "biotype": "disease", + "name": "Heart Defects Congenital", + "accession": "@DISEASE_Heart_Defects_Congenital" + }, + "text": "heart defect", + "locations": [{ "offset": 1635, "length": 12 }] + }, + { + "id": "93", + "infons": { + "identifier": "MESH:D006130", + "type": "Disease", + "valid": true, + "normalized": ["D006130"], + "database": "ncbi_mesh", + "normalized_id": "D006130", + "biotype": "disease", + "name": "Growth Disorders", + "accession": "@DISEASE_Growth_Disorders" + }, + "text": "short stature", + "locations": [{ "offset": 1649, "length": 13 }] + }, + { + "id": "94", + "infons": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "text": "developmental delay", + "locations": [{ "offset": 1668, "length": 19 }] + }, + { + "id": "95", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "organic acid", + "locations": [{ "offset": 1721, "length": 12 }] + }, + { + "id": "96", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 1746, "length": 8 }] + }, + { + "id": "97", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 1770, "length": 21 }] + }, + { + "id": "98", + "infons": { + "identifier": "MESH:D006331", + "type": "Disease", + "valid": true, + "normalized": ["D006331"], + "database": "ncbi_mesh", + "normalized_id": "D006331", + "biotype": "disease", + "name": "Heart Diseases", + "accession": "@DISEASE_Heart_Diseases" + }, + "text": "cardiac or vertebral defects", + "locations": [{ "offset": 1820, "length": 28 }] + }, + { + "id": "99", + "infons": { + "identifier": "23483", + "type": "Gene", + "ncbi_homologene": "129708", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "text": "TGDS", + "locations": [{ "offset": 1873, "length": 4 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9945", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "0", "role": "11,17" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9952", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "1", "role": "40,24" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9974", + "role1": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "role2": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "2", "role": "40,17" }] + }, + { + "id": "R4", + "infons": { + "score": "0.9449", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "3", "role": "15,17" }] + }, + { + "id": "R5", + "infons": { + "score": "0.9976", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:p.W109S;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "p.W109S", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "p.W109S", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "4", "role": "40,27" }] + }, + { + "id": "R6", + "infons": { + "score": "0.9925", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "5", "role": "15,26" }] + }, + { + "id": "R7", + "infons": { + "score": "0.9972", + "role1": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "role2": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "6", "role": "40,24" }] + }, + { + "id": "R8", + "infons": { + "score": "0.9965", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "7", "role": "40,17" }] + }, + { + "id": "R9", + "infons": { + "score": "0.9995", + "role1": { + "identifier": "MESH:D006130", + "type": "Disease", + "valid": true, + "normalized": ["D006130"], + "database": "ncbi_mesh", + "normalized_id": "D006130", + "biotype": "disease", + "name": "Growth Disorders", + "accession": "@DISEASE_Growth_Disorders" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "8", "role": "44,39" }] + }, + { + "id": "R10", + "infons": { + "score": "0.825", + "role1": { + "identifier": "MESH:D006331", + "type": "Disease", + "valid": true, + "normalized": ["D006331"], + "database": "ncbi_mesh", + "normalized_id": "D006331", + "biotype": "disease", + "name": "Heart Diseases", + "accession": "@DISEASE_Heart_Diseases" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "9", "role": "49,39" }] + }, + { + "id": "R11", + "infons": { + "score": "0.9951", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:p.R428W;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "p.R428W", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "p.R428W", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "10", "role": "11,18" }] + }, + { + "id": "R12", + "infons": { + "score": "0.5241", + "role1": { + "identifier": "MESH:D006330", + "type": "Disease", + "valid": true, + "normalized": ["D006330"], + "database": "ncbi_mesh", + "normalized_id": "D006330", + "biotype": "disease", + "name": "Heart Defects Congenital", + "accession": "@DISEASE_Heart_Defects_Congenital" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "11", "role": "12,26" }] + }, + { + "id": "R13", + "infons": { + "score": "0.9966", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "12", "role": "40,26" }] + }, + { + "id": "R14", + "infons": { + "score": "0.9943", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "13", "role": "11,24" }] + }, + { + "id": "R15", + "infons": { + "score": "0.9971", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:p.R330Q;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "p.R330Q", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "p.R330Q", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "14", "role": "40,25" }] + }, + { + "id": "R16", + "infons": { + "score": "0.9995", + "role1": { + "identifier": "MESH:D019578", + "type": "Disease", + "valid": true, + "normalized": ["D019578"], + "database": "ncbi_mesh", + "normalized_id": "D019578", + "biotype": "disease", + "name": "Multiple System Atrophy", + "accession": "@DISEASE_Multiple_System_Atrophy" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "15", "role": "1,0" }] + }, + { + "id": "R17", + "infons": { + "score": "0.9891", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "16", "role": "11,26" }] + }, + { + "id": "R18", + "infons": { + "score": "0.9867", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "17", "role": "15,24" }] + }, + { + "id": "R19", + "infons": { + "score": "0.9917", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:p.W109S;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "p.W109S", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "p.W109S", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "18", "role": "15,27" }] + }, + { + "id": "R20", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D016111", + "type": "Disease", + "valid": true, + "normalized": ["D016111"], + "database": "ncbi_mesh", + "normalized_id": "D016111", + "biotype": "disease", + "name": "Sjogren-Larsson Syndrome", + "accession": "@DISEASE_Sjogren_Larsson_Syndrome" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "19", "role": "33,32" }] + }, + { + "id": "R21", + "infons": { + "score": "0.9707", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:p.R330Q;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "p.R330Q", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "p.R330Q", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "20", "role": "11,25" }] + }, + { + "id": "R22", + "infons": { + "score": "0.9727", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:142934146;HGVS:p.R330Q;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "p.R330Q", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "p.R330Q", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "21", "role": "15,25" }] + }, + { + "id": "R23", + "infons": { + "score": "0.9844", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:p.R428W;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "p.R428W", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "p.R428W", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "22", "role": "15,18" }] + }, + { + "id": "R24", + "infons": { + "score": "0.9974", + "role1": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "role2": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "23", "role": "40,26" }] + }, + { + "id": "R25", + "infons": { + "score": "0.8067", + "role1": { + "identifier": "MESH:C535326", + "type": "Disease", + "valid": true, + "normalized": ["C535326"], + "database": "ncbi_mesh", + "normalized_id": "C535326", + "biotype": "disease", + "name": "Holt-Oram syndrome", + "accession": "@DISEASE_Holt_Oram_syndrome" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "24", "role": "34,26" }] + }, + { + "id": "R26", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D006330", + "type": "Disease", + "valid": true, + "normalized": ["D006330"], + "database": "ncbi_mesh", + "normalized_id": "D006330", + "biotype": "disease", + "name": "Heart Defects Congenital", + "accession": "@DISEASE_Heart_Defects_Congenital" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "25", "role": "43,39" }] + }, + { + "id": "R27", + "infons": { + "score": "0.9974", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "RS#:147475752;HGVS:p.R428W;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "p.R428W", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "p.R428W", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "26", "role": "40,18" }] + }, + { + "id": "R28", + "infons": { + "score": "0.9918", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "23483", + "type": "Gene", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "type": "Association" + }, + "nodes": [{ "refid": "27", "role": "8,7" }] + }, + { + "id": "R29", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:D002658", + "type": "Disease", + "valid": true, + "normalized": ["D002658"], + "database": "ncbi_mesh", + "normalized_id": "D002658", + "biotype": "disease", + "name": "Developmental Disabilities", + "accession": "@DISEASE_Developmental_Disabilities" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "28", "role": "45,39" }] + }, + { + "id": "R30", + "infons": { + "score": "0.86", + "role1": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "role2": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "29", "role": "11,26" }] + }, + { + "id": "R31", + "infons": { + "score": "0.9906", + "role1": { + "identifier": "RS#:780720490;HGVS:c.326G>C;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "c.326G>C", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "c.326G>C", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "role2": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "30", "role": "15,26" }] + }, + { + "id": "R32", + "infons": { + "score": "0.8051", + "role1": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "role2": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "31", "role": "11,24" }] + }, + { + "id": "R33", + "infons": { + "score": "0.9687", + "role1": { + "identifier": "RS#:142934146;HGVS:c.989G>A;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs142934146"], + "hgvs": "c.989G>A", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs142934146", + "normalized": ["rs142934146##", "#8942#"], + "normalized_id": "rs142934146##", + "biotype": "variant", + "name": "c.989G>A", + "accession": "@VARIANT_p.R330Q_KYNU_human" + }, + "role2": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "32", "role": "15,24" }] + }, + { + "id": "R34", + "infons": { + "score": "0.9802", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "RS#:780720490;HGVS:p.W109S;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "ProteinMutation", + "database": "litvar", + "rsids": ["rs780720490"], + "hgvs": "p.W109S", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs780720490", + "normalized": ["rs780720490##", "#8942#"], + "normalized_id": "rs780720490##", + "biotype": "variant", + "name": "p.W109S", + "accession": "@VARIANT_c.326G>C_KYNU_human" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "33", "role": "11,27" }] + }, + { + "id": "R35", + "infons": { + "score": "0.9988", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "34", "role": "40,39" }] + }, + { + "id": "R36", + "infons": { + "score": "0.9997", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "35", "role": "2,0" }] + }, + { + "id": "R37", + "infons": { + "score": "0.9917", + "role1": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "role2": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "36", "role": "11,17" }] + }, + { + "id": "R38", + "infons": { + "score": "0.9936", + "role1": { + "identifier": "RS#:147475752;HGVS:c.1282C>T;CorrespondingGene:8942", + "type": "Variant", + "valid": true, + "subtype": "DNAMutation", + "database": "litvar", + "rsids": ["rs147475752"], + "hgvs": "c.1282C>T", + "gene_ids": [8942], + "gene_id": 8942, + "rsid": "rs147475752", + "normalized": ["rs147475752##", "#8942#"], + "normalized_id": "rs147475752##", + "biotype": "variant", + "name": "c.1282C>T", + "accession": "@VARIANT_c.1282C>T_KYNU_human" + }, + "role2": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "type": "Positive_Correlation" + }, + "nodes": [{ "refid": "37", "role": "15,17" }] + }, + { + "id": "R39", + "infons": { + "score": "0.9976", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "38", "role": "37,32" }] + }, + { + "id": "R40", + "infons": { + "score": "0.9996", + "role1": { + "identifier": "MESH:C535326", + "type": "Disease", + "valid": true, + "normalized": ["C535326"], + "database": "ncbi_mesh", + "normalized_id": "C535326", + "biotype": "disease", + "name": "Holt-Oram syndrome", + "accession": "@DISEASE_Holt_Oram_syndrome" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "39", "role": "34,32" }] + }, + { + "id": "R41", + "infons": { + "score": "0.9945", + "role1": { + "identifier": "MESH:D006230", + "type": "Disease", + "valid": true, + "normalized": ["D006230"], + "database": "ncbi_mesh", + "normalized_id": "D006230", + "biotype": "disease", + "name": "Hand Injuries", + "accession": "@DISEASE_Hand_Injuries" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [] + }, + { + "id": "R42", + "infons": { + "score": "0.9952", + "role1": { + "identifier": "MESH:C536081", + "type": "Disease", + "valid": true, + "normalized": ["C536081"], + "database": "ncbi_mesh", + "normalized_id": "C536081", + "biotype": "disease", + "name": "Hydroxykynureninuria", + "accession": "@DISEASE_Hydroxykynureninuria" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [] + }, + { + "id": "R43", + "infons": { + "score": "0.9449", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [] + }, + { + "id": "R44", + "infons": { + "score": "0.5241", + "role1": { + "identifier": "MESH:D006330", + "type": "Disease", + "valid": true, + "normalized": ["D006330"], + "database": "ncbi_mesh", + "normalized_id": "D006330", + "biotype": "disease", + "name": "Heart Defects Congenital", + "accession": "@DISEASE_Heart_Defects_Congenital" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [] + }, + { + "id": "R45", + "infons": { + "score": "0.8067", + "role1": { + "identifier": "MESH:C535326", + "type": "Disease", + "valid": true, + "normalized": ["C535326"], + "database": "ncbi_mesh", + "normalized_id": "C535326", + "biotype": "disease", + "name": "Holt-Oram syndrome", + "accession": "@DISEASE_Holt_Oram_syndrome" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [] + } + ], + "pmid": 31923704, + "pmcid": null, + "meta": {}, + "date": "2020-04-01T00:00:00Z", + "journal": "Bone", + "authors": [ + "Ehmke N", + "Cusmano-Ozog K", + "Koenig R", + "Holtgrewe M", + "Nur B", + "Mihci E", + "Babcock H", + "Gonzaga-Jauregui C", + "Overton JD", + "Xiao J", + "Martinez AF", + "Muenke M", + "Balzer A", + "Jochim J", + "El Choubassi N", + "Fischer-Zirnsak B", + "Huber C", + "Kornak U", + "Elsea SH", + "Cormier-Daire V", + "Ferreira CR" + ], + "relations_display": [ + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_c.1282C>T_KYNU_human" }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_p.R330Q_KYNU_human" }, + { + "name": "positive_correlation|@VARIANT_c.1282C>T_KYNU_human|@DISEASE_Hydroxykynureninuria" + }, + { "name": "cause|@DISEASE_616145|@VARIANT_c.1282C>T_KYNU_human" }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "cause|@DISEASE_616145|@VARIANT_c.326G>C_KYNU_human" }, + { + "name": "positive_correlation|@VARIANT_p.R330Q_KYNU_human|@DISEASE_Hydroxykynureninuria" + }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_c.1282C>T_KYNU_human" }, + { "name": "associate|@DISEASE_Growth_Disorders|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Heart_Diseases|@GENE_KYNU" }, + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_c.1282C>T_KYNU_human" }, + { "name": "cause|@DISEASE_Heart_Defects_Congenital|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_p.R330Q_KYNU_human" }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_p.R330Q_KYNU_human" }, + { "name": "associate|@DISEASE_Multiple_System_Atrophy|@GENE_KYNU" }, + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "cause|@DISEASE_616145|@VARIANT_p.R330Q_KYNU_human" }, + { "name": "cause|@DISEASE_616145|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "associate|@DISEASE_Sjogren_Larsson_Syndrome|@GENE_KYNU" }, + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_p.R330Q_KYNU_human" }, + { "name": "cause|@DISEASE_616145|@VARIANT_p.R330Q_KYNU_human" }, + { "name": "cause|@DISEASE_616145|@VARIANT_c.1282C>T_KYNU_human" }, + { + "name": "positive_correlation|@VARIANT_c.326G>C_KYNU_human|@DISEASE_Hydroxykynureninuria" + }, + { "name": "cause|@DISEASE_Holt_Oram_syndrome|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "associate|@DISEASE_Heart_Defects_Congenital|@GENE_KYNU" }, + { "name": "cause|@DISEASE_Hydroxykynureninuria|@VARIANT_c.1282C>T_KYNU_human" }, + { "name": "associate|@DISEASE_616145|@GENE_TGDS" }, + { "name": "associate|@DISEASE_Developmental_Disabilities|@GENE_KYNU" }, + { "name": "positive_correlation|@VARIANT_c.326G>C_KYNU_human|@DISEASE_Hand_Injuries" }, + { "name": "positive_correlation|@VARIANT_c.326G>C_KYNU_human|@DISEASE_616145" }, + { "name": "positive_correlation|@VARIANT_p.R330Q_KYNU_human|@DISEASE_Hand_Injuries" }, + { "name": "positive_correlation|@VARIANT_p.R330Q_KYNU_human|@DISEASE_616145" }, + { "name": "cause|@DISEASE_Hand_Injuries|@VARIANT_c.326G>C_KYNU_human" }, + { "name": "associate|@DISEASE_Hydroxykynureninuria|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Hand_Injuries|@GENE_KYNU" }, + { "name": "positive_correlation|@VARIANT_c.1282C>T_KYNU_human|@DISEASE_Hand_Injuries" }, + { "name": "positive_correlation|@VARIANT_c.1282C>T_KYNU_human|@DISEASE_616145" }, + { "name": "associate|@DISEASE_616145|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Holt_Oram_syndrome|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Hand_Injuries|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Hydroxykynureninuria|@GENE_KYNU" }, + { "name": "associate|@DISEASE_616145|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Heart_Defects_Congenital|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Holt_Oram_syndrome|@GENE_KYNU" } + ] + } + }, + "32338743": { + "searchResult": { + "_id": "32338743", + "pmid": 32338743, + "pmcid": "PMC7319464", + "title": "VarFish: comprehensive DNA variant analysis for diagnostics and research.", + "journal": "Nucleic Acids Res", + "authors": [ + "Holtgrewe M", + "Stolpe O", + "Nieminen M", + "Mundlos S", + "Knaus A", + "Kornak U", + "Seelow D", + "Segebrecht L", + "Spielmann M", + "Fischer-Zirnsak B", + "Boschann F", + "Scholl U", + "Ehmke N", + "Beule D" + ], + "date": "2020-07-02T00:00:00Z", + "doi": "10.1093/nar/gkaa241", + "meta_date_publication": "2020 Jul 2", + "meta_volume": "48", + "meta_issue": "W1", + "meta_pages": "W162-W169", + "score": 206.30072, + "text_hl": "Of the resulting 388 variant records the only gene carrying variants in all six sequenced cases was @GENE_TGDS @@@TGDS@@@, the next gene listed matched only two cases.", + "citations": { + "NLM": "Holtgrewe M, Stolpe O, Nieminen M, Mundlos S, Knaus A, Kornak U, Seelow D, Segebrecht L, Spielmann M, Fischer-Zirnsak B, Boschann F, Scholl U, Ehmke N, Beule D. VarFish: comprehensive DNA variant analysis for diagnostics and research. Nucleic Acids Res. 2020 Jul 2;48(W1):W162-W169. PMID: 32338743", + "BibTeX": "@article{32338743, title={VarFish: comprehensive DNA variant analysis for diagnostics and research.}, author={Holtgrewe M and Stolpe O and Nieminen M and Mundlos S and Knaus A and Kornak U and Seelow D and Segebrecht L and Spielmann M and Fischer-Zirnsak B and Boschann F and Scholl U and Ehmke N and Beule D}, journal={Nucleic Acids Res}, volume={48}, number={W1}, pages={W162-W169}}" + } + }, + "abstract": { + "_id": "32338743|None", + "id": "32338743", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Nucleic Acids Res. 2020 Jul 2;48(W1):W162-W169. doi: 10.1093/nar/gkaa241.", + "year": "2020", + "article-id_pmc": "PMC7319464", + "type": "title", + "authors": "Holtgrewe M, Stolpe O, Nieminen M, Mundlos S, Knaus A, Kornak U, Seelow D, Segebrecht L, Spielmann M, Fischer-Zirnsak B, Boschann F, Scholl U, Ehmke N, Beule D" + }, + "offset": 0, + "text": "VarFish: comprehensive DNA variant analysis for diagnostics and research.", + "sentences": [], + "annotations": [], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 74, + "text": "VarFish is a user-friendly web application for the quality control, filtering, prioritization, analysis, and user-based annotation of DNA variant data with a focus on rare disease genetics. It is capable of processing variant call files with single or multiple samples. The variants are automatically annotated with population frequencies, molecular impact, and presence in databases such as ClinVar. Further, it provides support for pathogenicity scores including CADD, MutationTaster, and phenotypic similarity scores. Users can filter variants based on these annotations and presumed inheritance pattern and sort the results by these scores. Variants passing the filter are listed with their annotations and many useful link-outs to genome browsers, other gene/variant data portals, and external tools for variant assessment. VarFish allows users to create their own annotations including support for variant assessment following ACMG-AMP guidelines. In close collaboration with medical practitioners, VarFish was designed for variant analysis and prioritization in diagnostic and research settings as described in the software's extensive manual. The user interface has been optimized for supporting these protocols. Users can install VarFish on their own in-house servers where it provides additional lab notebook features for collaborative analysis and allows re-analysis of cases, e.g. after update of genotype or phenotype databases.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "MESH:D035583", + "type": "Disease", + "valid": true, + "normalized": ["D035583"], + "database": "ncbi_mesh", + "normalized_id": "D035583", + "biotype": "disease", + "name": "Rare Diseases", + "accession": "@DISEASE_Rare_Diseases" + }, + "text": "rare disease", + "locations": [{ "offset": 241, "length": 12 }] + } + ], + "relations": [] + } + ], + "relations": [], + "pmid": 32338743, + "pmcid": null, + "meta": {}, + "date": "2020-07-02T00:00:00Z", + "journal": "Nucleic Acids Res", + "authors": [ + "Holtgrewe M", + "Stolpe O", + "Nieminen M", + "Mundlos S", + "Knaus A", + "Kornak U", + "Seelow D", + "Segebrecht L", + "Spielmann M", + "Fischer-Zirnsak B", + "Boschann F", + "Scholl U", + "Ehmke N", + "Beule D" + ], + "relations_display": [] + } + }, + "33922078": { + "searchResult": { + "_id": "33922078", + "pmid": 33922078, + "pmcid": "PMC8143514", + "title": "- No Title -", + "journal": "Genes (Basel)", + "authors": ["Angée C", "Nedelec B", "Erjavec E", "Rozet JM", "Fares Taie L"], + "date": "2021-04-22T00:00:00Z", + "doi": "10.3390/genes12050624", + "meta_date_publication": "2021 Apr 22", + "meta_volume": "12", + "meta_issue": "5", + "meta_pages": "", + "score": 207.84605, + "text_hl": "...Recessive mutations in @GENE_TGDS @@@TGDS@@@:encoding @GENE_TGDS @@@TDP-glucose 4,6-dehydratase@@@:cause @DISEASE_Mouth_Abnormalities @@@malformations of the mouth, face, and digits@@@ (@DISEASE_616145 @@@Catel-Manzke syndrome@@@ (@DISEASE_616145 @@@CATMANS@@@); MIM: 616145). ", + "citations": { + "NLM": "Angée C, Nedelec B, Erjavec E, Rozet JM, Fares Taie L. - No Title - Genes (Basel). 2021 Apr 22;12(5):. PMID: 33922078", + "BibTeX": "@article{33922078, title={- No Title -}, author={Angée C and Nedelec B and Erjavec E and Rozet JM and Fares Taie L}, journal={Genes (Basel)}, volume={12}, number={5}}" + } + }, + "abstract": { + "_id": "33922078|None", + "id": "33922078", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Genes (Basel). 2021 Apr 22;12(5):624. doi: 10.3390/genes12050624.", + "year": "2021", + "article-id_pmc": "PMC8143514", + "type": "title", + "authors": "Angee C, Nedelec B, Erjavec E, Rozet JM, Fares Taie L" + }, + "offset": 0, + "text": "- No Title -", + "sentences": [], + "annotations": [], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 13, + "text": "", + "sentences": [], + "annotations": [], + "relations": [] + } + ], + "relations": [], + "pmid": 33922078, + "pmcid": null, + "meta": {}, + "date": "2021-04-22T00:00:00Z", + "journal": "Genes (Basel)", + "authors": ["Angée C", "Nedelec B", "Erjavec E", "Rozet JM", "Fares Taie L"], + "relations_display": [] + } + }, + "34200361": { + "searchResult": { + "_id": "34200361", + "pmid": 34200361, + "pmcid": "PMC8227568", + "title": "A Homozygous Deletion of Exon 5 of KYNU Resulting from a Maternal Chromosome 2 Isodisomy (UPD2) Causes Catel-Manzke-Syndrome/VCRL Syndrome.", + "journal": "Genes (Basel)", + "authors": [ + "Schüle I", + "Berger U", + "Matysiak U", + "Ruzaike G", + "Stiller B", + "Pohl M", + "Spiekerkoetter U", + "Lausch E", + "Grünert SC", + "Schmidts M" + ], + "date": "2021-06-07T00:00:00Z", + "doi": "10.3390/genes12060879", + "meta_date_publication": "2021 Jun 7", + "meta_volume": "12", + "meta_issue": "6", + "meta_pages": "", + "score": 260.18127, + "text_hl": "The phenotype of patients with VCRL is overlapping with that of @DISEASE_616145 @@@CATMANS@@@ (@DISEASE_616145 @@@Catel-Manzke Syndrome@@@, @DISEASE_616145 @@@CMS@@@) patients which is caused by mutations in the @GENE_TGDS @@@TGDS@@@ gene that encodes for @GENE_TGDS @@@TDP-glucose 4,6-dehydratase@@@. ", + "citations": { + "NLM": "Schüle I, Berger U, Matysiak U, Ruzaike G, Stiller B, Pohl M, Spiekerkoetter U, Lausch E, Grünert SC, Schmidts M. A Homozygous Deletion of Exon 5 of KYNU Resulting from a Maternal Chromosome 2 Isodisomy (UPD2) Causes Catel-Manzke-Syndrome/VCRL Syndrome. Genes (Basel). 2021 Jun 7;12(6):. PMID: 34200361", + "BibTeX": "@article{34200361, title={A Homozygous Deletion of Exon 5 of KYNU Resulting from a Maternal Chromosome 2 Isodisomy (UPD2) Causes Catel-Manzke-Syndrome/VCRL Syndrome.}, author={Schüle I and Berger U and Matysiak U and Ruzaike G and Stiller B and Pohl M and Spiekerkoetter U and Lausch E and Grünert SC and Schmidts M}, journal={Genes (Basel)}, volume={12}, number={6}}" + } + }, + "abstract": { + "_id": "34200361|None", + "id": "34200361", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Genes (Basel). 2021 Jun 7;12(6):879. doi: 10.3390/genes12060879.", + "year": "2021", + "article-id_pmc": "PMC8227568", + "type": "title", + "authors": "Schule I, Berger U, Matysiak U, Ruzaike G, Stiller B, Pohl M, Spiekerkoetter U, Lausch E, Grunert SC, Schmidts M" + }, + "offset": 0, + "text": "A Homozygous Deletion of Exon 5 of KYNU Resulting from a Maternal Chromosome 2 Isodisomy (UPD2) Causes Catel-Manzke-Syndrome/VCRL Syndrome.", + "sentences": [], + "annotations": [ + { + "id": "5", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 35, "length": 4 }] + }, + { + "id": "6", + "infons": { + "identifier": "MESH:D024182", + "type": "Disease", + "valid": true, + "normalized": ["D024182"], + "database": "ncbi_mesh", + "normalized_id": "D024182", + "biotype": "disease", + "name": "Uniparental Disomy", + "accession": "@DISEASE_Uniparental_Disomy" + }, + "text": "Maternal Chromosome 2 Isodisomy", + "locations": [{ "offset": 57, "length": 31 }] + }, + { + "id": "7", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "UPD2", + "locations": [{ "offset": 90, "length": 4 }] + }, + { + "id": "8", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke-Syndrome", + "locations": [{ "offset": 103, "length": 21 }] + }, + { + "id": "9", + "infons": { + "identifier": "MESH:D013577", + "type": "Disease", + "valid": true, + "normalized": ["D013577"], + "database": "ncbi_mesh", + "normalized_id": "D013577", + "biotype": "disease", + "name": "Syndrome", + "accession": "@DISEASE_Syndrome" + }, + "text": "VCRL Syndrome", + "locations": [{ "offset": 125, "length": 13 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 140, + "text": "Vertebral, Cardiac, Renal and Limb Defect Syndrome (VCRL), is a very rare congenital malformation syndrome. Pathogenic variants in HAAO (3-Hydroxyanthranilate 3,4-dioxygenase), NADSYN1 (NAD+ Synthetase-1) and KYNU (Kynureninase) have been identified in a handful of affected individuals. All three genes encode for enzymes essential for the NAD+ de novo synthesis pathway. Using Trio-Exome analysis and CGH array analysis in combination with long range PCR, we have identified a novel homozygous copy number variant (CNV) encompassing exon 5 of KYNU in an individual presenting with overlapping features of VCRL and Catel-Manzke Syndrome. Interestingly, only the mother, not the father carried the small deletion in a heterozygous state. High-resolution SNP array analysis subsequently delineated a maternal isodisomy of chromosome 2 (UPD2). Increased xanthurenic acid excretion in the urine confirmed the genetic diagnosis. Our findings confirm the clinical, genetic and metabolic phenotype of VCRL1, adding a novel functionally tested disease allele. We also describe the first patient with NAD+ deficiency disorder resulting from a UPD. Furthermore, we provide a comprehensive review of the current literature covering the genetic basis and pathomechanisms for VCRL and Catel-Manzke Syndrome, including possible phenotype/genotype correlations as well as genetic causes of hypoplastic left heart syndrome.", + "sentences": [], + "annotations": [ + { + "id": "32", + "infons": { + "identifier": "MESH:C535326", + "type": "Disease", + "valid": true, + "normalized": ["C535326"], + "database": "ncbi_mesh", + "normalized_id": "C535326", + "biotype": "disease", + "name": "Holt-Oram syndrome", + "accession": "@DISEASE_Holt_Oram_syndrome" + }, + "text": "Vertebral, Cardiac, Renal and Limb Defect Syndrome", + "locations": [{ "offset": 140, "length": 50 }] + }, + { + "id": "33", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "VCRL", + "locations": [{ "offset": 192, "length": 4 }] + }, + { + "id": "34", + "infons": { + "identifier": "OMIM:163000", + "type": "Disease", + "valid": true, + "normalized": ["163000"], + "database": "omim", + "normalized_id": "163000", + "biotype": "disease", + "name": "163000", + "accession": "@DISEASE_163000" + }, + "text": "congenital malformation syndrome", + "locations": [{ "offset": 214, "length": 32 }] + }, + { + "id": "35", + "infons": { + "identifier": "23498", + "type": "Gene", + "ncbi_homologene": "8148", + "valid": true, + "normalized": [23498], + "database": "ncbi_gene", + "normalized_id": 23498, + "biotype": "gene", + "name": "HAAO", + "accession": "@GENE_HAAO" + }, + "text": "HAAO", + "locations": [{ "offset": 271, "length": 4 }] + }, + { + "id": "36", + "infons": { + "identifier": "23498", + "type": "Gene", + "ncbi_homologene": "8148", + "valid": true, + "normalized": [23498], + "database": "ncbi_gene", + "normalized_id": 23498, + "biotype": "gene", + "name": "HAAO", + "accession": "@GENE_HAAO" + }, + "text": "3-Hydroxyanthranilate 3,4-dioxygenase", + "locations": [{ "offset": 277, "length": 37 }] + }, + { + "id": "37", + "infons": { + "identifier": "55191", + "type": "Gene", + "ncbi_homologene": "6098", + "valid": true, + "normalized": [55191], + "database": "ncbi_gene", + "normalized_id": 55191, + "biotype": "gene", + "name": "NADSYN1", + "accession": "@GENE_NADSYN1" + }, + "text": "NADSYN1", + "locations": [{ "offset": 317, "length": 7 }] + }, + { + "id": "38", + "infons": { + "identifier": "55191", + "type": "Gene", + "ncbi_homologene": "6098", + "valid": true, + "normalized": [55191], + "database": "ncbi_gene", + "normalized_id": 55191, + "biotype": "gene", + "name": "NADSYN1", + "accession": "@GENE_NADSYN1" + }, + "text": "NAD+ Synthetase-1", + "locations": [{ "offset": 326, "length": 17 }] + }, + { + "id": "39", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 349, "length": 4 }] + }, + { + "id": "40", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "Kynureninase", + "locations": [{ "offset": 355, "length": 12 }] + }, + { + "id": "41", + "infons": { + "identifier": "MESH:D009243", + "type": "Chemical", + "valid": true, + "normalized": ["D009243"], + "database": "ncbi_mesh", + "normalized_id": "D009243", + "biotype": "chemical", + "name": "NAD", + "accession": "@CHEMICAL_NAD" + }, + "text": "NAD+", + "locations": [{ "offset": 481, "length": 4 }] + }, + { + "id": "42", + "infons": { + "identifier": "8942", + "type": "Gene", + "ncbi_homologene": "2925", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "text": "KYNU", + "locations": [{ "offset": 685, "length": 4 }] + }, + { + "id": "43", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "VCRL", + "locations": [{ "offset": 747, "length": 4 }] + }, + { + "id": "44", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke Syndrome", + "locations": [{ "offset": 756, "length": 21 }] + }, + { + "id": "45", + "infons": { + "identifier": "MESH:D024182", + "type": "Disease", + "valid": true, + "normalized": ["D024182"], + "database": "ncbi_mesh", + "normalized_id": "D024182", + "biotype": "disease", + "name": "Uniparental Disomy", + "accession": "@DISEASE_Uniparental_Disomy" + }, + "text": "maternal isodisomy of chromosome 2", + "locations": [{ "offset": 939, "length": 34 }] + }, + { + "id": "46", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "UPD2", + "locations": [{ "offset": 975, "length": 4 }] + }, + { + "id": "47", + "infons": { + "identifier": "MESH:C028330", + "type": "Chemical", + "valid": true, + "normalized": ["C028330"], + "database": "ncbi_mesh", + "normalized_id": "C028330", + "biotype": "chemical", + "name": "xanthurenic acid", + "accession": "@CHEMICAL_xanthurenic_acid" + }, + "text": "xanthurenic acid", + "locations": [{ "offset": 992, "length": 16 }] + }, + { + "id": "48", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patient", + "locations": [{ "offset": 1220, "length": 7 }] + }, + { + "id": "49", + "infons": { + "identifier": "MESH:D016111", + "type": "Disease", + "valid": true, + "normalized": ["D016111"], + "database": "ncbi_mesh", + "normalized_id": "D016111", + "biotype": "disease", + "name": "Sjogren-Larsson Syndrome", + "accession": "@DISEASE_Sjogren_Larsson_Syndrome" + }, + "text": "NAD+ deficiency disorder", + "locations": [{ "offset": 1233, "length": 24 }] + }, + { + "id": "50", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "UPD", + "locations": [{ "offset": 1275, "length": 3 }] + }, + { + "id": "51", + "infons": { + "type": "Disease", + "valid": false, + "normalized_id": null, + "biotype": "disease" + }, + "text": "VCRL", + "locations": [{ "offset": 1404, "length": 4 }] + }, + { + "id": "52", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke Syndrome", + "locations": [{ "offset": 1413, "length": 21 }] + }, + { + "id": "53", + "infons": { + "identifier": "MESH:D018636", + "type": "Disease", + "valid": true, + "normalized": ["D018636"], + "database": "ncbi_mesh", + "normalized_id": "D018636", + "biotype": "disease", + "name": "Hypoplastic Left Heart Syndrome", + "accession": "@DISEASE_Hypoplastic_Left_Heart_Syndrome" + }, + "text": "hypoplastic left heart syndrome", + "locations": [{ "offset": 1516, "length": 31 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9997", + "role1": { + "identifier": "MESH:D013577", + "type": "Disease", + "valid": true, + "normalized": ["D013577"], + "database": "ncbi_mesh", + "normalized_id": "D013577", + "biotype": "disease", + "name": "Syndrome", + "accession": "@DISEASE_Syndrome" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "4,0" }] + }, + { + "id": "R2", + "infons": { + "score": "0.998", + "role1": { + "identifier": "MESH:D024182", + "type": "Disease", + "valid": true, + "normalized": ["D024182"], + "database": "ncbi_mesh", + "normalized_id": "D024182", + "biotype": "disease", + "name": "Uniparental Disomy", + "accession": "@DISEASE_Uniparental_Disomy" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "1,0" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9823", + "role1": { + "identifier": "MESH:D009243", + "type": "Chemical", + "valid": true, + "normalized": ["D009243"], + "database": "ncbi_mesh", + "normalized_id": "D009243", + "biotype": "chemical", + "name": "NAD", + "accession": "@CHEMICAL_NAD" + }, + "role2": { + "identifier": "23498", + "type": "Gene", + "valid": true, + "normalized": [23498], + "database": "ncbi_gene", + "normalized_id": 23498, + "biotype": "gene", + "name": "HAAO", + "accession": "@GENE_HAAO" + }, + "type": "Association" + }, + "nodes": [{ "refid": "2", "role": "14,8" }] + }, + { + "id": "R4", + "infons": { + "score": "0.9912", + "role1": { + "identifier": "MESH:D009243", + "type": "Chemical", + "valid": true, + "normalized": ["D009243"], + "database": "ncbi_mesh", + "normalized_id": "D009243", + "biotype": "chemical", + "name": "NAD", + "accession": "@CHEMICAL_NAD" + }, + "role2": { + "identifier": "55191", + "type": "Gene", + "valid": true, + "normalized": [55191], + "database": "ncbi_gene", + "normalized_id": 55191, + "biotype": "gene", + "name": "NADSYN1", + "accession": "@GENE_NADSYN1" + }, + "type": "Association" + }, + "nodes": [{ "refid": "3", "role": "14,10" }] + }, + { + "id": "R5", + "infons": { + "score": "0.9997", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "8942", + "type": "Gene", + "valid": true, + "normalized": [8942], + "database": "ncbi_gene", + "normalized_id": 8942, + "biotype": "gene", + "name": "KYNU", + "accession": "@GENE_KYNU" + }, + "type": "Association" + }, + "nodes": [{ "refid": "4", "role": "3,0" }] + } + ], + "pmid": 34200361, + "pmcid": null, + "meta": {}, + "date": "2021-06-07T00:00:00Z", + "journal": "Genes (Basel)", + "authors": [ + "Schüle I", + "Berger U", + "Matysiak U", + "Ruzaike G", + "Stiller B", + "Pohl M", + "Spiekerkoetter U", + "Lausch E", + "Grünert SC", + "Schmidts M" + ], + "relations_display": [ + { "name": "associate|@DISEASE_Syndrome|@GENE_KYNU" }, + { "name": "associate|@DISEASE_Uniparental_Disomy|@GENE_KYNU" }, + { "name": "associate|@CHEMICAL_NAD|@GENE_HAAO" }, + { "name": "associate|@CHEMICAL_NAD|@GENE_NADSYN1" }, + { "name": "associate|@DISEASE_616145|@GENE_KYNU" } + ] + } + }, + "34526359": { + "searchResult": { + "_id": "34526359", + "pmid": 34526359, + "pmcid": "PMC7612071", + "title": "Functional Impact of Genomic Complexity on the Transcriptome of Multiple Myeloma.", + "journal": "Clin Cancer Res", + "authors": [ + "Ziccheddu B", + "Da Vià MC", + "Lionetti M", + "Maeda A", + "Morlupi S", + "Dugo M", + "Todoerti K", + "Oliva S", + "D'Agostino M", + "Corradini P", + "Landgren O", + "Iorio F", + "Pettine L", + "Pompa A", + "Manzoni M", + "Baldini L", + "Neri A", + "Maura F", + "Bolli N" + ], + "date": "2021-12-01T00:00:00Z", + "doi": "10.1158/1078-0432.CCR-20-4366", + "meta_date_publication": "2021 Dec 1", + "meta_volume": "27", + "meta_issue": "23", + "meta_pages": "6479-6490", + "score": 206.21944, + "text_hl": "S1A and S1B). Among less frequent mutations, @GENE_TGDS @@@TGDS@@@ and @GENE_RB1 @@@RB1@@@ in 13q and the @GENE_MYC @@@MYC@@@ transcriptional regulators @GENE_IRF4 @@@IRF4@@@ and MAX displayed correlation with the transcriptome. ", + "citations": { + "NLM": "Ziccheddu B, Da Vià MC, Lionetti M, Maeda A, Morlupi S, Dugo M, Todoerti K, Oliva S, D'Agostino M, Corradini P, Landgren O, Iorio F, Pettine L, Pompa A, Manzoni M, Baldini L, Neri A, Maura F, Bolli N. Functional Impact of Genomic Complexity on the Transcriptome of Multiple Myeloma. Clin Cancer Res. 2021 Dec 1;27(23):6479-6490. PMID: 34526359", + "BibTeX": "@article{34526359, title={Functional Impact of Genomic Complexity on the Transcriptome of Multiple Myeloma.}, author={Ziccheddu B and Da Vià MC and Lionetti M and Maeda A and Morlupi S and Dugo M and Todoerti K and Oliva S and D'Agostino M and Corradini P and Landgren O and Iorio F and Pettine L and Pompa A and Manzoni M and Baldini L and Neri A and Maura F and Bolli N}, journal={Clin Cancer Res}, volume={27}, number={23}, pages={6479-6490}}" + } + }, + "abstract": { + "_id": "34526359|None", + "id": "34526359", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Clin Cancer Res. 2021 Dec 1;27(23):6479-6490. doi: 10.1158/1078-0432.CCR-20-4366. ", + "year": "2021", + "article-id_pmc": "PMC7612071", + "type": "title", + "authors": "Ziccheddu B, Da Via MC, Lionetti M, Maeda A, Morlupi S, Dugo M, Todoerti K, Oliva S, D Agostino M, Corradini P, Landgren O, Iorio F, Pettine L, Pompa A, Manzoni M, Baldini L, Neri A, Maura F, Bolli N" + }, + "offset": 0, + "text": "Functional Impact of Genomic Complexity on the Transcriptome of Multiple Myeloma.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "Multiple Myeloma", + "locations": [{ "offset": 64, "length": 16 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 82, + "text": "PURPOSE: Multiple myeloma is a biologically heterogenous plasma-cell disorder. In this study, we aimed at dissecting the functional impact on transcriptome of gene mutations, copy-number abnormalities (CNA), and chromosomal rearrangements (CR). Moreover, we applied a geno-transcriptomic approach to identify specific biomarkers for personalized treatments. EXPERIMENTAL DESIGN: We analyzed 514 newly diagnosed patients from the IA12 release of the CoMMpass study, accounting for mutations in multiple myeloma driver genes, structural variants, copy-number segments, and raw-transcript counts. We performed an in silico drug sensitivity screen (DSS), interrogating the Cancer Dependency Map (DepMap) dataset after anchoring cell lines to primary tumor samples using the Celligner algorithm. RESULTS: Immunoglobulin translocations, hyperdiploidy and chr(1q)gain/amps were associated with the highest number of deregulated genes. Other CNAs and specific gene mutations had a lower but very distinct impact affecting specific pathways. Many recurrent genes showed a hotspot (HS)-specific effect. The clinical relevance of double-hit multiple myeloma found strong biological bases in our analysis. Biallelic deletions of tumor suppressors and chr(1q)-amplifications showed the greatest impact on gene expression, deregulating pathways related to cell cycle, proliferation, and expression of immunotherapy targets. Moreover, our in silico DSS showed that not only t(11;14) but also chr(1q)gain/amps and CYLD inactivation predicted differential expression of transcripts of the BCL2 axis and response to venetoclax. CONCLUSIONS: The multiple myeloma genomic architecture and transcriptome have a strict connection, led by CNAs and CRs. Gene mutations impacted especially with HS-mutations of oncogenes and biallelic tumor suppressor gene inactivation. Finally, a comprehensive geno-transcriptomic analysis allows the identification of specific deregulated pathways and candidate biomarkers for personalized treatments in multiple myeloma.", + "sentences": [], + "annotations": [ + { + "id": "19", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "Multiple myeloma", + "locations": [{ "offset": 91, "length": 16 }] + }, + { + "id": "20", + "infons": { + "identifier": "MESH:D007952", + "type": "Disease", + "valid": true, + "normalized": ["D007952"], + "database": "ncbi_mesh", + "normalized_id": "D007952", + "biotype": "disease", + "name": "Leukemia Plasma Cell", + "accession": "@DISEASE_Leukemia_Plasma_Cell" + }, + "text": "plasma-cell disorder", + "locations": [{ "offset": 139, "length": 20 }] + }, + { + "id": "21", + "infons": { + "identifier": "MESH:D007674", + "type": "Disease", + "valid": true, + "normalized": ["D007674"], + "database": "ncbi_mesh", + "normalized_id": "D007674", + "biotype": "disease", + "name": "Kidney Diseases", + "accession": "@DISEASE_Kidney_Diseases" + }, + "text": "copy-number abnormalities", + "locations": [{ "offset": 257, "length": 25 }] + }, + { + "id": "22", + "infons": { + "identifier": "MESH:D007674", + "type": "Disease", + "valid": true, + "normalized": ["D007674"], + "database": "ncbi_mesh", + "normalized_id": "D007674", + "biotype": "disease", + "name": "Kidney Diseases", + "accession": "@DISEASE_Kidney_Diseases" + }, + "text": "CNA", + "locations": [{ "offset": 284, "length": 3 }] + }, + { + "id": "23", + "infons": { + "identifier": "MESH:D025063", + "type": "Disease", + "valid": true, + "normalized": ["D025063"], + "database": "ncbi_mesh", + "normalized_id": "D025063", + "biotype": "disease", + "name": "Chromosome Disorders", + "accession": "@DISEASE_Chromosome_Disorders" + }, + "text": "chromosomal", + "locations": [{ "offset": 294, "length": 11 }] + }, + { + "id": "24", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "patients", + "locations": [{ "offset": 493, "length": 8 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "multiple myeloma", + "locations": [{ "offset": 575, "length": 16 }] + }, + { + "id": "26", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "Cancer", + "locations": [{ "offset": 751, "length": 6 }] + }, + { + "id": "27", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 828, "length": 5 }] + }, + { + "id": "28", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "multiple myeloma", + "locations": [{ "offset": 1212, "length": 16 }] + }, + { + "id": "29", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 1299, "length": 5 }] + }, + { + "id": "30", + "infons": { + "identifier": "1540", + "type": "Gene", + "ncbi_homologene": "9069", + "valid": true, + "normalized": [1540], + "database": "ncbi_gene", + "normalized_id": 1540, + "biotype": "gene", + "name": "CYLD", + "accession": "@GENE_CYLD" + }, + "text": "CYLD", + "locations": [{ "offset": 1580, "length": 4 }] + }, + { + "id": "31", + "infons": { + "identifier": "596", + "type": "Gene", + "ncbi_homologene": "527", + "valid": true, + "normalized": [596], + "database": "ncbi_gene", + "normalized_id": 596, + "biotype": "gene", + "name": "BCL2", + "accession": "@GENE_BCL2" + }, + "text": "BCL2", + "locations": [{ "offset": 1654, "length": 4 }] + }, + { + "id": "32", + "infons": { + "identifier": "MESH:C579720", + "type": "Chemical", + "valid": true, + "normalized": ["C579720"], + "database": "ncbi_mesh", + "normalized_id": "C579720", + "biotype": "chemical", + "name": "venetoclax", + "accession": "@CHEMICAL_venetoclax" + }, + "text": "venetoclax", + "locations": [{ "offset": 1680, "length": 10 }] + }, + { + "id": "33", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "multiple myeloma", + "locations": [{ "offset": 1709, "length": 16 }] + }, + { + "id": "34", + "infons": { + "identifier": "MESH:D009369", + "type": "Disease", + "valid": true, + "normalized": ["D009369"], + "database": "ncbi_mesh", + "normalized_id": "D009369", + "biotype": "disease", + "name": "Neoplasms", + "accession": "@DISEASE_Neoplasms" + }, + "text": "tumor", + "locations": [{ "offset": 1892, "length": 5 }] + }, + { + "id": "35", + "infons": { + "identifier": "MESH:D009101", + "type": "Disease", + "valid": true, + "normalized": ["D009101"], + "database": "ncbi_mesh", + "normalized_id": "D009101", + "biotype": "disease", + "name": "Multiple Myeloma", + "accession": "@DISEASE_Multiple_Myeloma" + }, + "text": "multiple myeloma", + "locations": [{ "offset": 2097, "length": 16 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9994", + "role1": { + "identifier": "1540", + "type": "Gene", + "valid": true, + "normalized": [1540], + "database": "ncbi_gene", + "normalized_id": 1540, + "biotype": "gene", + "name": "CYLD", + "accession": "@GENE_CYLD" + }, + "role2": { + "identifier": "596", + "type": "Gene", + "valid": true, + "normalized": [596], + "database": "ncbi_gene", + "normalized_id": 596, + "biotype": "gene", + "name": "BCL2", + "accession": "@GENE_BCL2" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "12,13" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9992", + "role1": { + "identifier": "MESH:C579720", + "type": "Chemical", + "valid": true, + "normalized": ["C579720"], + "database": "ncbi_mesh", + "normalized_id": "C579720", + "biotype": "chemical", + "name": "venetoclax", + "accession": "@CHEMICAL_venetoclax" + }, + "role2": { + "identifier": "1540", + "type": "Gene", + "valid": true, + "normalized": [1540], + "database": "ncbi_gene", + "normalized_id": 1540, + "biotype": "gene", + "name": "CYLD", + "accession": "@GENE_CYLD" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "14,12" }] + } + ], + "pmid": 34526359, + "pmcid": null, + "meta": {}, + "date": "2021-12-01T00:00:00Z", + "journal": "Clin Cancer Res", + "authors": [ + "Ziccheddu B", + "Da Vià MC", + "Lionetti M", + "Maeda A", + "Morlupi S", + "Dugo M", + "Todoerti K", + "Oliva S", + "D'Agostino M", + "Corradini P", + "Landgren O", + "Iorio F", + "Pettine L", + "Pompa A", + "Manzoni M", + "Baldini L", + "Neri A", + "Maura F", + "Bolli N" + ], + "relations_display": [ + { "name": "associate|@GENE_CYLD|@GENE_BCL2" }, + { "name": "associate|@CHEMICAL_venetoclax|@GENE_CYLD" } + ] + } + }, + "35415063": { + "searchResult": { + "_id": "35415063", + "pmid": 35415063, + "pmcid": "PMC8994080", + "title": "The Pathogenesis of Pierre Robin Sequence through a Review of SOX9 and Its Interactions.", + "journal": "Plast Reconstr Surg Glob Open", + "authors": ["Al-Qattan MM", "Almohrij SA"], + "date": "2022-04-08T00:00:00Z", + "doi": "10.1097/GOX.0000000000004241", + "meta_date_publication": "2022 Apr", + "meta_volume": "10", + "meta_issue": "4", + "meta_pages": "e4241", + "score": 208.83943, + "text_hl": "...The @GENE_TGDS @@@TGDS@@@ gene encodes the @GENE_TGDS @@@TGDS@@@ protein, which is an enzyme involved in @CHEMICAL_Glucose @@@glucose@@@ metabolism. ", + "citations": { + "NLM": "Al-Qattan MM, Almohrij SA. The Pathogenesis of Pierre Robin Sequence through a Review of SOX9 and Its Interactions. Plast Reconstr Surg Glob Open. 2022 Apr;10(4):e4241. PMID: 35415063", + "BibTeX": "@article{35415063, title={The Pathogenesis of Pierre Robin Sequence through a Review of SOX9 and Its Interactions.}, author={Al-Qattan MM and Almohrij SA}, journal={Plast Reconstr Surg Glob Open}, volume={10}, number={4}, pages={e4241}}" + } + }, + "abstract": { + "_id": "35415063|None", + "id": "35415063", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Plast Reconstr Surg Glob Open. 2022 Apr 8;10(4):e4241. doi: ", + "year": "2022", + "article-id_pmc": "PMC8994080", + "type": "title", + "authors": "Al-Qattan MM, Almohrij SA" + }, + "offset": 0, + "text": "The Pathogenesis of Pierre Robin Sequence through a Review of SOX9 and Its Interactions.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "Pierre Robin Sequence", + "locations": [{ "offset": 20, "length": 21 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 89, + "text": "The literature does not offer any review of the pathogenesis of the clinical features of syndromes with Pierre Robin sequence (PRS). The senior author (MMA) proposed a hypothesis that SOX9 and its interactions may play a key role in this pathogenesis. The current review aims to test this hypothesis. Methods: Three literature searches were made: the first aimed to document the main syndromes associated with PRS; and the second was to document the main functions of SOX9 in development; and the third was to investigate if SOX9 and its interactions may play a role in the pathogenesis. Results: SOX9 is the main positive regulator in the development of the mandibular cartilage and it also enhances collagen type II (the main collagen type in cartilage) expression in the mandibular cartilage. Furthermore, SOX9 participates in neural crest development, binds to the exon junction complex, and participates in sex determination. The interactions of SOX9 could explain the pathogenesis of the clinical features of syndromic PRS. These included interactions with collagen type II (in Strickler syndrome), exon junction complex (in Richier-Costa-Periera syndrome), glucose (in Catel-Manzke syndrome), RNA-binding proteins (in TARP syndrome), and the spliceosome (in cerebra-costo-mandibular syndrome). Finally, SOX9 mutations cause campomelic dysplasia. Conclusions: The review supports the hypothesis of the participation of SOX9 in the pathogenesis of the clinical features of syndromic and nonsyndromic PRS. This should guide future research on the topic.", + "sentences": [], + "annotations": [ + { + "id": "14", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "Pierre Robin sequence", + "locations": [{ "offset": 193, "length": 21 }] + }, + { + "id": "15", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "PRS", + "locations": [{ "offset": 216, "length": 3 }] + }, + { + "id": "16", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "PRS", + "locations": [{ "offset": 499, "length": 3 }] + }, + { + "id": "17", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "PRS", + "locations": [{ "offset": 1114, "length": 3 }] + }, + { + "id": "18", + "infons": { + "identifier": "MESH:D013577", + "type": "Disease", + "valid": true, + "normalized": ["D013577"], + "database": "ncbi_mesh", + "normalized_id": "D013577", + "biotype": "disease", + "name": "Syndrome", + "accession": "@DISEASE_Syndrome" + }, + "text": "Strickler syndrome", + "locations": [{ "offset": 1173, "length": 18 }] + }, + { + "id": "19", + "infons": { + "identifier": "MESH:C535653", + "type": "Disease", + "valid": true, + "normalized": ["C535653"], + "database": "ncbi_mesh", + "normalized_id": "C535653", + "biotype": "disease", + "name": "Acrokeratoelastoidosis of Costa", + "accession": "@DISEASE_Acrokeratoelastoidosis_of_Costa" + }, + "text": "Richier-Costa-Periera syndrome", + "locations": [{ "offset": 1220, "length": 30 }] + }, + { + "id": "20", + "infons": { + "identifier": "MESH:D005947", + "type": "Chemical", + "valid": true, + "normalized": ["D005947"], + "database": "ncbi_mesh", + "normalized_id": "D005947", + "biotype": "chemical", + "name": "Glucose", + "accession": "@CHEMICAL_Glucose" + }, + "text": "glucose", + "locations": [{ "offset": 1253, "length": 7 }] + }, + { + "id": "21", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 1265, "length": 21 }] + }, + { + "id": "22", + "infons": { + "identifier": "MESH:C536942", + "type": "Disease", + "valid": true, + "normalized": ["C536942"], + "database": "ncbi_mesh", + "normalized_id": "C536942", + "biotype": "disease", + "name": "TARP syndrome", + "accession": "@DISEASE_TARP_syndrome" + }, + "text": "TARP syndrome", + "locations": [{ "offset": 1314, "length": 13 }] + }, + { + "id": "23", + "infons": { + "identifier": "MESH:D008338", + "type": "Disease", + "valid": true, + "normalized": ["D008338"], + "database": "ncbi_mesh", + "normalized_id": "D008338", + "biotype": "disease", + "name": "Mandibular Injuries", + "accession": "@DISEASE_Mandibular_Injuries" + }, + "text": "cerebra-costo-mandibular syndrome", + "locations": [{ "offset": 1354, "length": 33 }] + }, + { + "id": "24", + "infons": { + "identifier": "MESH:D055036", + "type": "Disease", + "valid": true, + "normalized": ["D055036"], + "database": "ncbi_mesh", + "normalized_id": "D055036", + "biotype": "disease", + "name": "Campomelic Dysplasia", + "accession": "@DISEASE_Campomelic_Dysplasia" + }, + "text": "campomelic dysplasia", + "locations": [{ "offset": 1420, "length": 20 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D010855", + "type": "Disease", + "valid": true, + "normalized": ["D010855"], + "database": "ncbi_mesh", + "normalized_id": "D010855", + "biotype": "disease", + "name": "Pierre Robin Syndrome", + "accession": "@DISEASE_Pierre_Robin_Syndrome" + }, + "text": "syndromic and nonsyndromic PRS", + "locations": [{ "offset": 1567, "length": 30 }] + } + ], + "relations": [] + } + ], + "relations": [], + "pmid": 35415063, + "pmcid": null, + "meta": {}, + "date": "2022-04-08T00:00:00Z", + "journal": "Plast Reconstr Surg Glob Open", + "authors": ["Al-Qattan MM", "Almohrij SA"], + "relations_display": [] + } + }, + "36498914": { + "searchResult": { + "_id": "36498914", + "pmid": 36498914, + "pmcid": "PMC9741107", + "title": "The L-Rhamnose Biosynthetic Pathway in Trichomonas vaginalis: Identification and Characterization of UDP-D-Glucose 4,6-dehydratase.", + "journal": "Int J Mol Sci", + "authors": [ + "Gaglianone M", + "Laugieri ME", + "Rojas AL", + "Coppola MR", + "Piacente F", + "Fiori PL", + "Tonetti MG" + ], + "date": "2022-11-23T00:00:00Z", + "doi": "10.3390/ijms232314587", + "meta_date_publication": "2022 Nov 23", + "meta_volume": "23", + "meta_issue": "23", + "meta_pages": "", + "score": 206.58212, + "text_hl": "Thus, in the perspective to use NDP-D-Glc 4,6-dehydratases as pharmacologic targets, further studies will also be required to understand the role of @GENE_TGDS @@@TGDS@@@ in human cells.", + "citations": { + "NLM": "Gaglianone M, Laugieri ME, Rojas AL, Coppola MR, Piacente F, Fiori PL, Tonetti MG. The L-Rhamnose Biosynthetic Pathway in Trichomonas vaginalis: Identification and Characterization of UDP-D-Glucose 4,6-dehydratase. Int J Mol Sci. 2022 Nov 23;23(23):. PMID: 36498914", + "BibTeX": "@article{36498914, title={The L-Rhamnose Biosynthetic Pathway in Trichomonas vaginalis: Identification and Characterization of UDP-D-Glucose 4,6-dehydratase.}, author={Gaglianone M and Laugieri ME and Rojas AL and Coppola MR and Piacente F and Fiori PL and Tonetti MG}, journal={Int J Mol Sci}, volume={23}, number={23}}" + } + }, + "abstract": { + "_id": "36498914|None", + "id": "36498914", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Int J Mol Sci. 2022 Nov 23;23(23):14587. doi: 10.3390/ijms232314587.", + "year": "2022", + "article-id_pmc": "PMC9741107", + "type": "title", + "authors": "Gaglianone M, Laugieri ME, Rojas AL, Coppola MR, Piacente F, Fiori PL, Tonetti MG" + }, + "offset": 0, + "text": "The L-Rhamnose Biosynthetic Pathway in Trichomonas vaginalis: Identification and Characterization of UDP-D-Glucose 4,6-dehydratase.", + "sentences": [], + "annotations": [ + { + "id": "2", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-Rhamnose", + "locations": [{ "offset": 4, "length": 10 }] + }, + { + "id": "3", + "infons": { + "identifier": "5722", + "type": "Species", + "valid": true, + "normalized": [5722], + "database": "ncbi_taxonomy", + "normalized_id": 5722, + "biotype": "species", + "name": "5722", + "accession": null + }, + "text": "Trichomonas vaginalis", + "locations": [{ "offset": 39, "length": 21 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 132, + "text": "Trichomonas vaginalis is the causative agent of one of the most widespread sexually transmitted diseases in the world. The adhesion of the parasite to the vaginal epithelial cells is mediated by specific proteins and by a complex glycan structure, the lipoglycan (TvLG), which covers the pathogen surface. L-rhamnose is an important component of TvLG, comprising up to 40% of the monosaccharides. Thus, the inhibition of its production could lead to a severe alteration in the TvLG structure, making the L-rhamnose biosynthetic pathway an attractive pharmacologic target. We report the identification and characterization of the first committed and limiting step of the L-rhamnose biosynthetic pathway, UDP-D-glucose 4,6-dehydratase (UGD, EC 4.2.1.76). The enzyme shows a strong preference for UDP-D-glucose compared to dTDP-D-glucose; we propose that the mechanism underlying the higher affinity for the UDP-bound substrate is mediated by the differential recognition of ribose versus the deoxyribose of the nucleotide moiety. The identification of the enzymes responsible for the following steps of the L-rhamnose pathway (epimerization and reduction) was more elusive. However, sequence analyses suggest that in T. vaginalis L-rhamnose synthesis proceeds through a mechanism different from the typical eukaryotic pathways, displaying intermediate features between the eukaryotic and prokaryotic pathways and involving separate enzymes for the epimerase and reductase activities, as observed in bacteria. Altogether, these results form the basis for a better understanding of the formation of the complex glycan structures on TvLG and the possible use of L-rhamnose biosynthetic enzymes for the development of selective inhibitors.", + "sentences": [], + "annotations": [ + { + "id": "23", + "infons": { + "identifier": "5722", + "type": "Species", + "valid": true, + "normalized": [5722], + "database": "ncbi_taxonomy", + "normalized_id": 5722, + "biotype": "species", + "name": "5722", + "accession": null + }, + "text": "Trichomonas vaginalis", + "locations": [{ "offset": 132, "length": 21 }] + }, + { + "id": "24", + "infons": { + "identifier": "MESH:D012749", + "type": "Disease", + "valid": true, + "normalized": ["D012749"], + "database": "ncbi_mesh", + "normalized_id": "D012749", + "biotype": "disease", + "name": "Sexually Transmitted Diseases", + "accession": "@DISEASE_Sexually_Transmitted_Diseases" + }, + "text": "sexually transmitted diseases", + "locations": [{ "offset": 207, "length": 29 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D011134", + "type": "Chemical", + "valid": true, + "normalized": ["D011134"], + "database": "ncbi_mesh", + "normalized_id": "D011134", + "biotype": "chemical", + "name": "Polysaccharides", + "accession": "@CHEMICAL_Polysaccharides" + }, + "text": "glycan", + "locations": [{ "offset": 362, "length": 6 }] + }, + { + "id": "26", + "infons": { + "identifier": "MESH:D008070", + "type": "Chemical", + "valid": true, + "normalized": ["D008070"], + "database": "ncbi_mesh", + "normalized_id": "D008070", + "biotype": "chemical", + "name": "Lipopolysaccharides", + "accession": "@CHEMICAL_Lipopolysaccharides" + }, + "text": "lipoglycan", + "locations": [{ "offset": 384, "length": 10 }] + }, + { + "id": "27", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "TvLG", + "locations": [{ "offset": 396, "length": 4 }] + }, + { + "id": "28", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 438, "length": 10 }] + }, + { + "id": "29", + "infons": { + "identifier": "MESH:D009005", + "type": "Chemical", + "valid": true, + "normalized": ["D009005"], + "database": "ncbi_mesh", + "normalized_id": "D009005", + "biotype": "chemical", + "name": "Monosaccharides", + "accession": "@CHEMICAL_Monosaccharides" + }, + "text": "monosaccharides", + "locations": [{ "offset": 512, "length": 15 }] + }, + { + "id": "30", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 636, "length": 10 }] + }, + { + "id": "31", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 802, "length": 10 }] + }, + { + "id": "32", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "UDP-D-glucose", + "locations": [{ "offset": 926, "length": 13 }] + }, + { + "id": "33", + "infons": { + "identifier": "-", + "type": "Chemical", + "valid": false, + "normalized_id": null, + "biotype": "chemical" + }, + "text": "dTDP-D-glucose", + "locations": [{ "offset": 952, "length": 14 }] + }, + { + "id": "34", + "infons": { + "identifier": "MESH:D014530", + "type": "Chemical", + "valid": true, + "normalized": ["D014530"], + "database": "ncbi_mesh", + "normalized_id": "D014530", + "biotype": "chemical", + "name": "Uridine Diphosphate", + "accession": "@CHEMICAL_Uridine_Diphosphate" + }, + "text": "UDP", + "locations": [{ "offset": 1037, "length": 3 }] + }, + { + "id": "35", + "infons": { + "identifier": "MESH:D012266", + "type": "Chemical", + "valid": true, + "normalized": ["D012266"], + "database": "ncbi_mesh", + "normalized_id": "D012266", + "biotype": "chemical", + "name": "Ribose", + "accession": "@CHEMICAL_Ribose" + }, + "text": "ribose", + "locations": [{ "offset": 1104, "length": 6 }] + }, + { + "id": "36", + "infons": { + "identifier": "MESH:D003855", + "type": "Chemical", + "valid": true, + "normalized": ["D003855"], + "database": "ncbi_mesh", + "normalized_id": "D003855", + "biotype": "chemical", + "name": "Deoxyribose", + "accession": "@CHEMICAL_Deoxyribose" + }, + "text": "deoxyribose", + "locations": [{ "offset": 1122, "length": 11 }] + }, + { + "id": "37", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 1237, "length": 10 }] + }, + { + "id": "38", + "infons": { + "identifier": "5722", + "type": "Species", + "valid": true, + "normalized": [5722], + "database": "ncbi_taxonomy", + "normalized_id": 5722, + "biotype": "species", + "name": "5722", + "accession": null + }, + "text": "T. vaginalis", + "locations": [{ "offset": 1347, "length": 12 }] + }, + { + "id": "39", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 1360, "length": 10 }] + }, + { + "id": "40", + "infons": { + "identifier": "MESH:D011134", + "type": "Chemical", + "valid": true, + "normalized": ["D011134"], + "database": "ncbi_mesh", + "normalized_id": "D011134", + "biotype": "chemical", + "name": "Polysaccharides", + "accession": "@CHEMICAL_Polysaccharides" + }, + "text": "glycan", + "locations": [{ "offset": 1739, "length": 6 }] + }, + { + "id": "41", + "infons": { + "identifier": "MESH:D012210", + "type": "Chemical", + "valid": true, + "normalized": ["D012210"], + "database": "ncbi_mesh", + "normalized_id": "D012210", + "biotype": "chemical", + "name": "Rhamnose", + "accession": "@CHEMICAL_Rhamnose" + }, + "text": "L-rhamnose", + "locations": [{ "offset": 1789, "length": 10 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9816", + "role1": { + "identifier": "MESH:D012266", + "type": "Chemical", + "valid": true, + "normalized": ["D012266"], + "database": "ncbi_mesh", + "normalized_id": "D012266", + "biotype": "chemical", + "name": "Ribose", + "accession": "@CHEMICAL_Ribose" + }, + "role2": { + "identifier": "MESH:D014530", + "type": "Chemical", + "valid": true, + "normalized": ["D014530"], + "database": "ncbi_mesh", + "normalized_id": "D014530", + "biotype": "chemical", + "name": "Uridine Diphosphate", + "accession": "@CHEMICAL_Uridine_Diphosphate" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "14,13" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9084", + "role1": { + "identifier": "MESH:D003855", + "type": "Chemical", + "valid": true, + "normalized": ["D003855"], + "database": "ncbi_mesh", + "normalized_id": "D003855", + "biotype": "chemical", + "name": "Deoxyribose", + "accession": "@CHEMICAL_Deoxyribose" + }, + "role2": { + "identifier": "MESH:D014530", + "type": "Chemical", + "valid": true, + "normalized": ["D014530"], + "database": "ncbi_mesh", + "normalized_id": "D014530", + "biotype": "chemical", + "name": "Uridine Diphosphate", + "accession": "@CHEMICAL_Uridine_Diphosphate" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "15,13" }] + } + ], + "pmid": 36498914, + "pmcid": null, + "meta": {}, + "date": "2022-11-23T00:00:00Z", + "journal": "Int J Mol Sci", + "authors": [ + "Gaglianone M", + "Laugieri ME", + "Rojas AL", + "Coppola MR", + "Piacente F", + "Fiori PL", + "Tonetti MG" + ], + "relations_display": [ + { "name": "associate|@CHEMICAL_Ribose|@CHEMICAL_Uridine_Diphosphate" }, + { "name": "associate|@CHEMICAL_Deoxyribose|@CHEMICAL_Uridine_Diphosphate" } + ] + } + }, + "36726016": { + "searchResult": { + "_id": "36726016", + "pmid": 36726016, + "pmcid": "PMC9892563", + "title": "Lack of GPR180 ameliorates hepatic lipid depot via downregulation of mTORC1 signaling.", + "journal": "Sci Rep", + "authors": [ + "Yoshida K", + "Yokota K", + "Watanabe K", + "Tsuda H", + "Matsumoto A", + "Mizukami H", + "Iwamoto S" + ], + "date": "2023-02-01T00:00:00Z", + "doi": "10.1038/s41598-023-29135-5", + "meta_date_publication": "2023 Feb 1", + "meta_volume": "13", + "meta_issue": "1", + "meta_pages": "1843", + "score": 206.7864, + "text_hl": "The shRNA templates of mouse @GENE_GPC6 @@@Gpc6@@@, @GENE_DCT @@@Dct@@@, @GENE_TGDS @@@Tgds@@@ and @GENE_GPR180 @@@Gpr180@@@ (Supplementary Table 1) were inserted in the pAAV-U6-CMV-hrGFP vector. ", + "citations": { + "NLM": "Yoshida K, Yokota K, Watanabe K, Tsuda H, Matsumoto A, Mizukami H, Iwamoto S. Lack of GPR180 ameliorates hepatic lipid depot via downregulation of mTORC1 signaling. Sci Rep. 2023 Feb 1;13(1):1843. PMID: 36726016", + "BibTeX": "@article{36726016, title={Lack of GPR180 ameliorates hepatic lipid depot via downregulation of mTORC1 signaling.}, author={Yoshida K and Yokota K and Watanabe K and Tsuda H and Matsumoto A and Mizukami H and Iwamoto S}, journal={Sci Rep}, volume={13}, number={1}, pages={1843}}" + } + }, + "abstract": { + "_id": "36726016|None", + "id": "36726016", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "Sci Rep. 2023 Feb 1;13(1):1843. doi: 10.1038/s41598-023-29135-5.", + "year": "2023", + "article-id_pmc": "PMC9892563", + "type": "title", + "authors": "Yoshida K, Yokota K, Watanabe K, Tsuda H, Matsumoto A, Mizukami H, Iwamoto S" + }, + "offset": 0, + "text": "Lack of GPR180 ameliorates hepatic lipid depot via downregulation of mTORC1 signaling.", + "sentences": [], + "annotations": [ + { + "id": "2", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "GPR180", + "locations": [{ "offset": 8, "length": 6 }] + }, + { + "id": "3", + "infons": { + "identifier": "MESH:D008055", + "type": "Chemical", + "valid": true, + "normalized": ["D008055"], + "database": "ncbi_mesh", + "normalized_id": "D008055", + "biotype": "chemical", + "name": "Lipids", + "accession": "@CHEMICAL_Lipids" + }, + "text": "lipid", + "locations": [{ "offset": 35, "length": 5 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 87, + "text": "Our previous genome-wide association study to explore genetic loci associated with lean nonalcoholic fatty liver disease (NAFLD) in Japan suggested four candidate loci, which were mapped to chr6, chr7, chr12 and chr13. The present study aimed to identify the locus involved functionally in NAFLD around the association signal observed in chr13. Chromosome conformation capture assay and a database survey suggested the intermolecular interaction among DNA fragments in association signals with the adjacent four coding gene promoters. The four genes were further screened by knockdown (KD) in mice using shRNA delivered by an adeno-associated virus vector (AAV8), and KD of G protein-coupled receptor 180 (Gpr180) showed amelioration of hepatic lipid storage. Gpr180 knockout (KO) mice also showed ameliorated hepatic and plasma lipid levels without influencing glucose metabolism after high-fat diet intake. Transcriptome analyses showed downregulation of mTORC1 signaling and cholesterol homeostasis, which was confirmed by weakened phosphorylation of mTOR and decreased activated SREBP1 in Gpr180KO mice and a human hepatoma cell line (Huh7). AAV8-mediated hepatic rescue of GPR180 expression in KO mice showed recovery of plasma and hepatic lipid levels. In conclusion, ablation of GPR180 ameliorated plasma and hepatic lipid levels, which was mediated by downregulation of mTORC1 signaling.", + "sentences": [], + "annotations": [ + { + "id": "32", + "infons": { + "identifier": "MESH:D065626", + "type": "Disease", + "valid": true, + "normalized": ["D065626"], + "database": "ncbi_mesh", + "normalized_id": "D065626", + "biotype": "disease", + "name": "Non-alcoholic Fatty Liver Disease", + "accession": "@DISEASE_Non_alcoholic_Fatty_Liver_Disease" + }, + "text": "nonalcoholic fatty liver disease", + "locations": [{ "offset": 175, "length": 32 }] + }, + { + "id": "33", + "infons": { + "identifier": "MESH:D065626", + "type": "Disease", + "valid": true, + "normalized": ["D065626"], + "database": "ncbi_mesh", + "normalized_id": "D065626", + "biotype": "disease", + "name": "Non-alcoholic Fatty Liver Disease", + "accession": "@DISEASE_Non_alcoholic_Fatty_Liver_Disease" + }, + "text": "NAFLD", + "locations": [{ "offset": 209, "length": 5 }] + }, + { + "id": "34", + "infons": { + "identifier": "6", + "type": "Chromosome", + "normalized_id": null, + "biotype": "chromosome" + }, + "text": "chr6", + "locations": [{ "offset": 277, "length": 4 }] + }, + { + "id": "35", + "infons": { + "identifier": "7", + "type": "Chromosome", + "normalized_id": null, + "biotype": "chromosome" + }, + "text": "chr7", + "locations": [{ "offset": 283, "length": 4 }] + }, + { + "id": "36", + "infons": { + "identifier": "12", + "type": "Chromosome", + "normalized_id": null, + "biotype": "chromosome" + }, + "text": "chr12", + "locations": [{ "offset": 289, "length": 5 }] + }, + { + "id": "37", + "infons": { + "identifier": "13", + "type": "Chromosome", + "normalized_id": null, + "biotype": "chromosome" + }, + "text": "chr13", + "locations": [{ "offset": 299, "length": 5 }] + }, + { + "id": "38", + "infons": { + "identifier": "MESH:D065626", + "type": "Disease", + "valid": true, + "normalized": ["D065626"], + "database": "ncbi_mesh", + "normalized_id": "D065626", + "biotype": "disease", + "name": "Non-alcoholic Fatty Liver Disease", + "accession": "@DISEASE_Non_alcoholic_Fatty_Liver_Disease" + }, + "text": "NAFLD", + "locations": [{ "offset": 377, "length": 5 }] + }, + { + "id": "39", + "infons": { + "identifier": "13", + "type": "Chromosome", + "normalized_id": null, + "biotype": "chromosome" + }, + "text": "chr13", + "locations": [{ "offset": 425, "length": 5 }] + }, + { + "id": "40", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 680, "length": 4 }] + }, + { + "id": "41", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "G protein-coupled receptor 180", + "locations": [{ "offset": 761, "length": 30 }] + }, + { + "id": "42", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "Gpr180", + "locations": [{ "offset": 793, "length": 6 }] + }, + { + "id": "43", + "infons": { + "identifier": "MESH:C562935", + "type": "Disease", + "valid": true, + "normalized": ["C562935"], + "database": "ncbi_mesh", + "normalized_id": "C562935", + "biotype": "disease", + "name": "Myopathy with Abnormal Lipid Metabolism", + "accession": "@DISEASE_Myopathy_with_Abnormal_Lipid_Metabolism" + }, + "text": "hepatic lipid storage", + "locations": [{ "offset": 824, "length": 21 }] + }, + { + "id": "44", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "Gpr180", + "locations": [{ "offset": 847, "length": 6 }] + }, + { + "id": "45", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 868, "length": 4 }] + }, + { + "id": "46", + "infons": { + "identifier": "MESH:D008055", + "type": "Chemical", + "valid": true, + "normalized": ["D008055"], + "database": "ncbi_mesh", + "normalized_id": "D008055", + "biotype": "chemical", + "name": "Lipids", + "accession": "@CHEMICAL_Lipids" + }, + "text": "lipid", + "locations": [{ "offset": 916, "length": 5 }] + }, + { + "id": "47", + "infons": { + "identifier": "MESH:D005947", + "type": "Chemical", + "valid": true, + "normalized": ["D005947"], + "database": "ncbi_mesh", + "normalized_id": "D005947", + "biotype": "chemical", + "name": "Glucose", + "accession": "@CHEMICAL_Glucose" + }, + "text": "glucose", + "locations": [{ "offset": 949, "length": 7 }] + }, + { + "id": "48", + "infons": { + "identifier": "MESH:D002784", + "type": "Chemical", + "valid": true, + "normalized": ["D002784"], + "database": "ncbi_mesh", + "normalized_id": "D002784", + "biotype": "chemical", + "name": "Cholesterol", + "accession": "@CHEMICAL_Cholesterol" + }, + "text": "cholesterol", + "locations": [{ "offset": 1065, "length": 11 }] + }, + { + "id": "49", + "infons": { + "identifier": "56717", + "type": "Gene", + "ncbi_homologene": "3637", + "valid": true, + "normalized": [56717], + "database": "ncbi_gene", + "normalized_id": 56717, + "biotype": "gene", + "name": "Mtor", + "accession": "@GENE_MTOR" + }, + "text": "mTOR", + "locations": [{ "offset": 1141, "length": 4 }] + }, + { + "id": "50", + "infons": { + "identifier": "20787", + "type": "Gene", + "ncbi_homologene": "3079", + "valid": true, + "normalized": [20787], + "database": "ncbi_gene", + "normalized_id": 20787, + "biotype": "gene", + "name": "Srebf1", + "accession": "@GENE_SREBF1" + }, + "text": "SREBP1", + "locations": [{ "offset": 1170, "length": 6 }] + }, + { + "id": "51", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 1189, "length": 4 }] + }, + { + "id": "52", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "human", + "locations": [{ "offset": 1200, "length": 5 }] + }, + { + "id": "53", + "infons": { + "identifier": "MESH:D006528", + "type": "Disease", + "valid": true, + "normalized": ["D006528"], + "database": "ncbi_mesh", + "normalized_id": "D006528", + "biotype": "disease", + "name": "Carcinoma Hepatocellular", + "accession": "@DISEASE_Carcinoma_Hepatocellular" + }, + "text": "hepatoma", + "locations": [{ "offset": 1206, "length": 8 }] + }, + { + "id": "54", + "infons": { + "identifier": "CVCL:0336", + "type": "CellLine", + "valid": true, + "normalized": ["0336"], + "database": "cvcl", + "normalized_id": "0336", + "biotype": "cellline", + "name": "0336", + "accession": null + }, + "text": "Huh7", + "locations": [{ "offset": 1226, "length": 4 }] + }, + { + "id": "55", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "GPR180", + "locations": [{ "offset": 1265, "length": 6 }] + }, + { + "id": "56", + "infons": { + "identifier": "10090", + "type": "Species", + "valid": true, + "normalized": [10090], + "database": "ncbi_taxonomy", + "normalized_id": 10090, + "biotype": "species", + "name": "10090", + "accession": null + }, + "text": "mice", + "locations": [{ "offset": 1289, "length": 4 }] + }, + { + "id": "57", + "infons": { + "identifier": "MESH:D008055", + "type": "Chemical", + "valid": true, + "normalized": ["D008055"], + "database": "ncbi_mesh", + "normalized_id": "D008055", + "biotype": "chemical", + "name": "Lipids", + "accession": "@CHEMICAL_Lipids" + }, + "text": "lipid", + "locations": [{ "offset": 1332, "length": 5 }] + }, + { + "id": "58", + "infons": { + "identifier": "58245", + "type": "Gene", + "ncbi_homologene": "32506", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "text": "GPR180", + "locations": [{ "offset": 1373, "length": 6 }] + }, + { + "id": "59", + "infons": { + "identifier": "MESH:D008055", + "type": "Chemical", + "valid": true, + "normalized": ["D008055"], + "database": "ncbi_mesh", + "normalized_id": "D008055", + "biotype": "chemical", + "name": "Lipids", + "accession": "@CHEMICAL_Lipids" + }, + "text": "lipid", + "locations": [{ "offset": 1411, "length": 5 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.5682", + "role1": { + "identifier": "MESH:D065626", + "type": "Disease", + "valid": true, + "normalized": ["D065626"], + "database": "ncbi_mesh", + "normalized_id": "D065626", + "biotype": "disease", + "name": "Non-alcoholic Fatty Liver Disease", + "accession": "@DISEASE_Non_alcoholic_Fatty_Liver_Disease" + }, + "role2": { + "identifier": "58245", + "type": "Gene", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "8,11" }] + }, + { + "id": "R2", + "infons": { + "score": "0.9982", + "role1": { + "identifier": "MESH:D008055", + "type": "Chemical", + "valid": true, + "normalized": ["D008055"], + "database": "ncbi_mesh", + "normalized_id": "D008055", + "biotype": "chemical", + "name": "Lipids", + "accession": "@CHEMICAL_Lipids" + }, + "role2": { + "identifier": "58245", + "type": "Gene", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "type": "Association" + }, + "nodes": [{ "refid": "1", "role": "1,0" }] + }, + { + "id": "R3", + "infons": { + "score": "0.9992", + "role1": { + "identifier": "MESH:C562935", + "type": "Disease", + "valid": true, + "normalized": ["C562935"], + "database": "ncbi_mesh", + "normalized_id": "C562935", + "biotype": "disease", + "name": "Myopathy with Abnormal Lipid Metabolism", + "accession": "@DISEASE_Myopathy_with_Abnormal_Lipid_Metabolism" + }, + "role2": { + "identifier": "58245", + "type": "Gene", + "valid": true, + "normalized": [58245], + "database": "ncbi_gene", + "normalized_id": 58245, + "biotype": "gene", + "name": "Gpr180", + "accession": "@GENE_GPR180" + }, + "type": "Association" + }, + "nodes": [{ "refid": "2", "role": "13,11" }] + } + ], + "pmid": 36726016, + "pmcid": null, + "meta": {}, + "date": "2023-02-01T00:00:00Z", + "journal": "Sci Rep", + "authors": [ + "Yoshida K", + "Yokota K", + "Watanabe K", + "Tsuda H", + "Matsumoto A", + "Mizukami H", + "Iwamoto S" + ], + "relations_display": [ + { "name": "associate|@DISEASE_Non_alcoholic_Fatty_Liver_Disease|@GENE_GPR180" }, + { "name": "associate|@CHEMICAL_Lipids|@GENE_GPR180" }, + { "name": "associate|@DISEASE_Myopathy_with_Abnormal_Lipid_Metabolism|@GENE_GPR180" } + ] + } + }, + "36911920": { + "searchResult": { + "_id": "36911920", + "pmid": 36911920, + "pmcid": "PMC10151413", + "title": "Isolation and molecular identification of nematode surface mutants with resistance to bacterial pathogens.", + "journal": "G3 (Bethesda)", + "authors": [ + "O'Rourke D", + "Gravato-Nobre MJ", + "Stroud D", + "Pritchett E", + "Barker E", + "Price RL", + "Robinson SA", + "Spiro S", + "Kuwabara P", + "Hodgkin J" + ], + "date": "2023-05-02T00:00:00Z", + "doi": "10.1093/g3journal/jkad056", + "meta_date_publication": "2023 May 2", + "meta_volume": "13", + "meta_issue": "5", + "meta_pages": "", + "score": 234.44531, + "text_hl": "The biochemical function of human @GENE_TGDS @@@TGDS@@@ is not known. It cannot be acting in @CHEMICAL_Rhamnose @@@rhamnose@@@ biosynthesis, because this @CHEMICAL_Sugars @@@sugar@@@ is not found in humans, but @GENE_TGDS @@@TGDS@@@ is presumed to be involved in proteoglycan biology. ", + "citations": { + "NLM": "O'Rourke D, Gravato-Nobre MJ, Stroud D, Pritchett E, Barker E, Price RL, Robinson SA, Spiro S, Kuwabara P, Hodgkin J. Isolation and molecular identification of nematode surface mutants with resistance to bacterial pathogens. G3 (Bethesda). 2023 May 2;13(5):. PMID: 36911920", + "BibTeX": "@article{36911920, title={Isolation and molecular identification of nematode surface mutants with resistance to bacterial pathogens.}, author={O'Rourke D and Gravato-Nobre MJ and Stroud D and Pritchett E and Barker E and Price RL and Robinson SA and Spiro S and Kuwabara P and Hodgkin J}, journal={G3 (Bethesda)}, volume={13}, number={5}}" + } + }, + "abstract": { + "_id": "36911920|None", + "id": "36911920", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "G3 (Bethesda). 2023 May 2;13(5):jkad056. doi: 10.1093/g3journal/jkad056.", + "year": "2023", + "article-id_pmc": "PMC10151413", + "type": "title", + "authors": "O Rourke D, Gravato-Nobre MJ, Stroud D, Pritchett E, Barker E, Price RL, Robinson SA, Spiro S, Kuwabara P, Hodgkin J" + }, + "offset": 0, + "text": "Isolation and molecular identification of nematode surface mutants with resistance to bacterial pathogens.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "MESH:D001424", + "type": "Disease", + "valid": true, + "normalized": ["D001424"], + "database": "ncbi_mesh", + "normalized_id": "D001424", + "biotype": "disease", + "name": "Bacterial Infections", + "accession": "@DISEASE_Bacterial_Infections" + }, + "text": "bacterial", + "locations": [{ "offset": 86, "length": 9 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 107, + "text": "Numerous mutants of the nematode Caenorhabditis elegans with surface abnormalities have been isolated by utilizing their resistance to a variety of bacterial pathogens (Microbacterium nematophilum, Yersinia pseudotuberculosis and two Leucobacter strains), all of which are able to cause disease or death when worms are grown on bacterial lawns containing these pathogens. Previous work led to the identification of nine srf or bus genes; here we report molecular identification and characterization of a further ten surface-affecting genes. Three of these were found to encode factors implicated in glycosylation (srf-2, bus-5, bus-22), like several of those previously reported; srf-2 belongs to the GT92 family of putative galactosyltransferases, and bus-5 is homologous to human TGDS, which is implicated in Catel-Manzke syndrome. Other genes encoded proteins with sequence similarity to phosphatidylinositol phosphatases (bus-6), Patched-related receptors (ptr-15/bus-13), steroid dehydrogenases (dhs-5/bus-21) or glypiation factors (bus-24). Three genes appeared to be nematode-specific (srf-5, bus-10, bus-28). Many mutants exhibited cuticle fragility as revealed by bleach and detergent sensitivity; this fragility was correlated with increased drug sensitivity, as well as with abnormal skiddy locomotion. Most of the genes examined were found to be expressed in epidermal seam cells, which appear to be important for synthesizing nematode surface coat. The results reveal the genetic and biochemical complexity of this critical surface layer, and provide new tools for its analysis.", + "sentences": [], + "annotations": [ + { + "id": "14", + "infons": { + "identifier": "6239", + "type": "Species", + "valid": true, + "normalized": [6239], + "database": "ncbi_taxonomy", + "normalized_id": 6239, + "biotype": "species", + "name": "6239", + "accession": null + }, + "text": "Caenorhabditis elegans", + "locations": [{ "offset": 140, "length": 22 }] + }, + { + "id": "15", + "infons": { + "identifier": "MESH:D001424", + "type": "Disease", + "valid": true, + "normalized": ["D001424"], + "database": "ncbi_mesh", + "normalized_id": "D001424", + "biotype": "disease", + "name": "Bacterial Infections", + "accession": "@DISEASE_Bacterial_Infections" + }, + "text": "bacterial", + "locations": [{ "offset": 255, "length": 9 }] + }, + { + "id": "16", + "infons": { + "identifier": "151262", + "type": "Species", + "valid": true, + "normalized": [151262], + "database": "ncbi_taxonomy", + "normalized_id": 151262, + "biotype": "species", + "name": "151262", + "accession": null + }, + "text": "Microbacterium nematophilum", + "locations": [{ "offset": 276, "length": 27 }] + }, + { + "id": "17", + "infons": { + "identifier": "633", + "type": "Species", + "valid": true, + "normalized": [633], + "database": "ncbi_taxonomy", + "normalized_id": 633, + "biotype": "species", + "name": "633", + "accession": null + }, + "text": "Yersinia pseudotuberculosis", + "locations": [{ "offset": 305, "length": 27 }] + }, + { + "id": "18", + "infons": { + "identifier": "55968", + "type": "Species", + "valid": true, + "normalized": [55968], + "database": "ncbi_taxonomy", + "normalized_id": 55968, + "biotype": "species", + "name": "55968", + "accession": null + }, + "text": "Leucobacter", + "locations": [{ "offset": 341, "length": 11 }] + }, + { + "id": "19", + "infons": { + "type": "Species", + "valid": false, + "normalized_id": null, + "biotype": "species" + }, + "text": "worms", + "locations": [{ "offset": 416, "length": 5 }] + }, + { + "id": "20", + "infons": { + "identifier": "MESH:D001424", + "type": "Disease", + "valid": true, + "normalized": ["D001424"], + "database": "ncbi_mesh", + "normalized_id": "D001424", + "biotype": "disease", + "name": "Bacterial Infections", + "accession": "@DISEASE_Bacterial_Infections" + }, + "text": "bacterial", + "locations": [{ "offset": 435, "length": 9 }] + }, + { + "id": "21", + "infons": { + "identifier": "9606", + "type": "Species", + "valid": true, + "normalized": [9606], + "database": "ncbi_taxonomy", + "normalized_id": 9606, + "biotype": "species", + "name": "9606", + "accession": null + }, + "text": "human", + "locations": [{ "offset": 883, "length": 5 }] + }, + { + "id": "22", + "infons": { + "identifier": "23483", + "type": "Gene", + "ncbi_homologene": "129708", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "text": "TGDS", + "locations": [{ "offset": 889, "length": 4 }] + }, + { + "id": "23", + "infons": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "text": "Catel-Manzke syndrome", + "locations": [{ "offset": 918, "length": 21 }] + }, + { + "id": "24", + "infons": { + "identifier": "191749", + "type": "Gene", + "ncbi_homologene": "115773", + "valid": true, + "normalized": [191749], + "database": "ncbi_gene", + "normalized_id": 191749, + "biotype": "gene", + "name": "ptr-15", + "accession": "@GENE_PTR_15" + }, + "text": "ptr-15", + "locations": [{ "offset": 1068, "length": 6 }] + }, + { + "id": "25", + "infons": { + "identifier": "173930", + "type": "Gene", + "ncbi_homologene": "137726", + "valid": true, + "normalized": [173930], + "database": "ncbi_gene", + "normalized_id": 173930, + "biotype": "gene", + "name": "dhs-5", + "accession": "@GENE_DHS_5" + }, + "text": "dhs-5", + "locations": [{ "offset": 1108, "length": 5 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "score": "0.9997", + "role1": { + "identifier": "OMIM:616145", + "type": "Disease", + "valid": true, + "normalized": ["616145"], + "database": "omim", + "normalized_id": "616145", + "biotype": "disease", + "name": "616145", + "accession": "@DISEASE_616145" + }, + "role2": { + "identifier": "23483", + "type": "Gene", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "type": "Association" + }, + "nodes": [{ "refid": "0", "role": "10,9" }] + } + ], + "pmid": 36911920, + "pmcid": null, + "meta": {}, + "date": "2023-05-02T00:00:00Z", + "journal": "G3 (Bethesda)", + "authors": [ + "O'Rourke D", + "Gravato-Nobre MJ", + "Stroud D", + "Pritchett E", + "Barker E", + "Price RL", + "Robinson SA", + "Spiro S", + "Kuwabara P", + "Hodgkin J" + ], + "relations_display": [{ "name": "associate|@DISEASE_616145|@GENE_TGDS" }] + } + }, + "37361548": { + "searchResult": { + "_id": "37361548", + "pmid": 37361548, + "title": "The Quebec Dental Anomalies Registry: Identifying genes for rare disorders.", + "journal": "PNAS Nexus", + "authors": [ + "Wredenhagen MS", + "Goldstein A", + "Mathieu H", + "Miranda V", + "Morali B", + "Santerre J", + "Maftei C", + "Delrue MA", + "Schmittbuhl M", + "Vu DD", + "Moldovan F", + "Campeau PM" + ], + "date": "2023-06-14T00:00:00Z", + "doi": "10.1093/pnasnexus/pgad196", + "meta_date_publication": "2023 Jun", + "meta_volume": "2", + "meta_issue": "6", + "meta_pages": "pgad196", + "score": 234.24649, + "text_hl": "We recruited 37 patients and we identified pathogenic or likely pathogenic variants in @GENE_WNT10A @@@WNT10A@@@, @GENE_EDAR @@@EDAR@@@, @GENE_AMBN @@@AMBN@@@, @GENE_PLOD1 @@@PLOD1@@@, @GENE_TSPEAR @@@TSPEAR@@@, @GENE_PRKAR1A @@@PRKAR1A@@@, @GENE_FAM83H @@@FAM83H@@@, @GENE_PRKACB @@@PRKACB@@@, @GENE_DLX3 @@@DLX3@@@, @GENE_DSPP @@@DSPP@@@, @GENE_BMP2 @@@BMP2@@@, @GENE_TGDS @@@TGDS@@@. Our project led to the establishment of the Quebec @DISEASE_614188 @@@Dental Anomalies@@@ Registry, which will help researchers, medical and dental practitioners alike understand the genetics of @DISEASE_614188 @@@dental anomalies@@@ and facilitate research collaborations into improved standards of care for patients with rare @DISEASE_614188 @@@dental anomalies@@@ and any accompanying @DISEASE_Genetic_Diseases_Inborn @@@genetic diseases@@@.", + "citations": { + "NLM": "Wredenhagen MS, Goldstein A, Mathieu H, Miranda V, Morali B, Santerre J, Maftei C, Delrue MA, Schmittbuhl M, Vu DD, Moldovan F, Campeau PM. The Quebec Dental Anomalies Registry: Identifying genes for rare disorders. PNAS Nexus. 2023 Jun;2(6):pgad196. PMID: 37361548", + "BibTeX": "@article{37361548, title={The Quebec Dental Anomalies Registry: Identifying genes for rare disorders.}, author={Wredenhagen MS and Goldstein A and Mathieu H and Miranda V and Morali B and Santerre J and Maftei C and Delrue MA and Schmittbuhl M and Vu DD and Moldovan F and Campeau PM}, journal={PNAS Nexus}, volume={2}, number={6}, pages={pgad196}}" + } + }, + "abstract": { + "_id": "37361548|None", + "id": "37361548", + "infons": {}, + "passages": [ + { + "infons": { + "journal": "PNAS Nexus;2023Jun; 2 (6) 196. doi:10.1093/pnasnexus/pgad196", + "year": "2023", + "article-id_pmc": "PMC10290489", + "type": "title", + "authors": "Wredenhagen MS, Goldstein A, Mathieu H, Miranda V, Morali B, Santerre J, Maftei C, Delrue MA, Schmittbuhl M, Vu DD, Moldovan F, Campeau PM, " + }, + "offset": 0, + "text": "The Quebec Dental Anomalies Registry: Identifying genes for rare disorders.", + "sentences": [], + "annotations": [ + { + "id": "1", + "infons": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "text": "Dental Anomalies", + "locations": [{ "offset": 11, "length": 16 }] + } + ], + "relations": [] + }, + { + "infons": { "type": "abstract" }, + "offset": 76, + "text": "There are more than 900 genetic syndromes associated with oral manifestations. These syndromes can have serious health implications, and left undiagnosed, can hamper treatment and prognosis later in life. About 6.67% of the population will develop a rare disease during their lifetime, some of which are difficult to diagnose. The establishment of a data and tissue bank of rare diseases with oral manifestations in Quebec will help medical professionals identify the genes involved, will improve knowledge on the rare genetic diseases, and will also lead to improved patient management. It will also allow samples and information sharing with other clinicians and investigators. As an example of a condition requiring additional research, dental ankylosis is a condition in which the tooth's cementum fuses to the surrounding alveolar bone. This can be secondary to traumatic injury but is often idiopathic, and the genes involved in the idiopathic cases, if any, are poorly known. To date, patients with both identified and unidentified genetic etiology for their dental anomalies were recruited through dental and genetics clinics for the study. They underwent sequencing of selected genes or exome sequencing depending on the manifestation. We recruited 37 patients and we identified pathogenic or likely pathogenic variants in WNT10A, EDAR, AMBN, PLOD1, TSPEAR, PRKAR1A, FAM83H, PRKACB, DLX3, DSPP, BMP2, TGDS. Our project led to the establishment of the Quebec Dental Anomalies Registry, which will help researchers, medical and dental practitioners alike understand the genetics of dental anomalies and facilitate research collaborations into improved standards of care for patients with rare dental anomalies and any accompanying genetic diseases.", + "sentences": [], + "annotations": [ + { + "id": "23", + "infons": { + "identifier": "MESH:D035583", + "type": "Disease", + "valid": true, + "normalized": ["D035583"], + "database": "ncbi_mesh", + "normalized_id": "D035583", + "biotype": "disease", + "name": "Rare Diseases", + "accession": "@DISEASE_Rare_Diseases" + }, + "text": "rare diseases", + "locations": [{ "offset": 450, "length": 13 }] + }, + { + "id": "24", + "infons": { + "identifier": "MESH:D030342", + "type": "Disease", + "valid": true, + "normalized": ["D030342"], + "database": "ncbi_mesh", + "normalized_id": "D030342", + "biotype": "disease", + "name": "Genetic Diseases Inborn", + "accession": "@DISEASE_Genetic_Diseases_Inborn" + }, + "text": "genetic diseases", + "locations": [{ "offset": 595, "length": 16 }] + }, + { + "id": "25", + "infons": { + "identifier": "MESH:D020254", + "type": "Disease", + "valid": true, + "normalized": ["D020254"], + "database": "ncbi_mesh", + "normalized_id": "D020254", + "biotype": "disease", + "name": "Tooth Ankylosis", + "accession": "@DISEASE_Tooth_Ankylosis" + }, + "text": "dental ankylosis", + "locations": [{ "offset": 816, "length": 16 }] + }, + { + "id": "26", + "infons": { + "identifier": "MESH:D014947", + "type": "Disease", + "valid": true, + "normalized": ["D014947"], + "database": "ncbi_mesh", + "normalized_id": "D014947", + "biotype": "disease", + "name": "Wounds and Injuries", + "accession": "@DISEASE_Wounds_and_Injuries" + }, + "text": "traumatic injury", + "locations": [{ "offset": 943, "length": 16 }] + }, + { + "id": "27", + "infons": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "text": "dental anomalies", + "locations": [{ "offset": 1142, "length": 16 }] + }, + { + "id": "28", + "infons": { + "identifier": "80326", + "type": "Gene", + "ncbi_homologene": "22525", + "valid": true, + "normalized": [80326], + "database": "ncbi_gene", + "normalized_id": 80326, + "biotype": "gene", + "name": "WNT10A", + "accession": "@GENE_WNT10A" + }, + "text": "WNT10A", + "locations": [{ "offset": 1408, "length": 6 }] + }, + { + "id": "29", + "infons": { + "identifier": "10913", + "type": "Gene", + "ncbi_homologene": "7699", + "valid": true, + "normalized": [10913], + "database": "ncbi_gene", + "normalized_id": 10913, + "biotype": "gene", + "name": "EDAR", + "accession": "@GENE_EDAR" + }, + "text": "EDAR", + "locations": [{ "offset": 1416, "length": 4 }] + }, + { + "id": "30", + "infons": { + "identifier": "258", + "type": "Gene", + "ncbi_homologene": "7625", + "valid": true, + "normalized": [258], + "database": "ncbi_gene", + "normalized_id": 258, + "biotype": "gene", + "name": "AMBN", + "accession": "@GENE_AMBN" + }, + "text": "AMBN", + "locations": [{ "offset": 1422, "length": 4 }] + }, + { + "id": "31", + "infons": { + "identifier": "5351", + "type": "Gene", + "ncbi_homologene": "256", + "valid": true, + "normalized": [5351], + "database": "ncbi_gene", + "normalized_id": 5351, + "biotype": "gene", + "name": "PLOD1", + "accession": "@GENE_PLOD1" + }, + "text": "PLOD1", + "locations": [{ "offset": 1428, "length": 5 }] + }, + { + "id": "32", + "infons": { + "identifier": "54084", + "type": "Gene", + "ncbi_homologene": "36972", + "valid": true, + "normalized": [54084], + "database": "ncbi_gene", + "normalized_id": 54084, + "biotype": "gene", + "name": "TSPEAR", + "accession": "@GENE_TSPEAR" + }, + "text": "TSPEAR", + "locations": [{ "offset": 1435, "length": 6 }] + }, + { + "id": "33", + "infons": { + "identifier": "5573", + "type": "Gene", + "ncbi_homologene": "37664", + "valid": true, + "normalized": [5573], + "database": "ncbi_gene", + "normalized_id": 5573, + "biotype": "gene", + "name": "PRKAR1A", + "accession": "@GENE_PRKAR1A" + }, + "text": "PRKAR1A", + "locations": [{ "offset": 1443, "length": 7 }] + }, + { + "id": "34", + "infons": { + "identifier": "286077", + "type": "Gene", + "ncbi_homologene": "15890", + "valid": true, + "normalized": [286077], + "database": "ncbi_gene", + "normalized_id": 286077, + "biotype": "gene", + "name": "FAM83H", + "accession": "@GENE_FAM83H" + }, + "text": "FAM83H", + "locations": [{ "offset": 1452, "length": 6 }] + }, + { + "id": "35", + "infons": { + "identifier": "5567", + "type": "Gene", + "ncbi_homologene": "121718", + "valid": true, + "normalized": [5567], + "database": "ncbi_gene", + "normalized_id": 5567, + "biotype": "gene", + "name": "PRKACB", + "accession": "@GENE_PRKACB" + }, + "text": "PRKACB", + "locations": [{ "offset": 1460, "length": 6 }] + }, + { + "id": "36", + "infons": { + "identifier": "1747", + "type": "Gene", + "ncbi_homologene": "74544", + "valid": true, + "normalized": [1747], + "database": "ncbi_gene", + "normalized_id": 1747, + "biotype": "gene", + "name": "DLX3", + "accession": "@GENE_DLX3" + }, + "text": "DLX3", + "locations": [{ "offset": 1468, "length": 4 }] + }, + { + "id": "37", + "infons": { + "identifier": "1834", + "type": "Gene", + "valid": true, + "normalized": [1834], + "database": "ncbi_gene", + "normalized_id": 1834, + "biotype": "gene", + "name": "DSPP", + "accession": "@GENE_DSPP" + }, + "text": "DSPP", + "locations": [{ "offset": 1474, "length": 4 }] + }, + { + "id": "38", + "infons": { + "identifier": "650", + "type": "Gene", + "ncbi_homologene": "926", + "valid": true, + "normalized": [650], + "database": "ncbi_gene", + "normalized_id": 650, + "biotype": "gene", + "name": "BMP2", + "accession": "@GENE_BMP2" + }, + "text": "BMP2", + "locations": [{ "offset": 1480, "length": 4 }] + }, + { + "id": "39", + "infons": { + "identifier": "23483", + "type": "Gene", + "ncbi_homologene": "129708", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + }, + "text": "TGDS", + "locations": [{ "offset": 1486, "length": 4 }] + }, + { + "id": "40", + "infons": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "text": "Dental Anomalies", + "locations": [{ "offset": 1543, "length": 16 }] + }, + { + "id": "41", + "infons": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "text": "dental anomalies", + "locations": [{ "offset": 1665, "length": 16 }] + }, + { + "id": "42", + "infons": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "text": "dental anomalies", + "locations": [{ "offset": 1776, "length": 16 }] + }, + { + "id": "43", + "infons": { + "identifier": "MESH:D030342", + "type": "Disease", + "valid": true, + "normalized": ["D030342"], + "database": "ncbi_mesh", + "normalized_id": "D030342", + "biotype": "disease", + "name": "Genetic Diseases Inborn", + "accession": "@DISEASE_Genetic_Diseases_Inborn" + }, + "text": "genetic diseases", + "locations": [{ "offset": 1814, "length": 16 }] + } + ], + "relations": [] + } + ], + "relations": [ + { + "id": "R1", + "infons": { + "type": "Association", + "score": "0.9444", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "80326", + "type": "Gene", + "valid": true, + "normalized": [80326], + "database": "ncbi_gene", + "normalized_id": 80326, + "biotype": "gene", + "name": "WNT10A", + "accession": "@GENE_WNT10A" + } + }, + "nodes": [{ "refid": "0", "role": "40,28" }] + }, + { + "id": "R2", + "infons": { + "type": "Association", + "score": "0.9739", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "286077", + "type": "Gene", + "valid": true, + "normalized": [286077], + "database": "ncbi_gene", + "normalized_id": 286077, + "biotype": "gene", + "name": "FAM83H", + "accession": "@GENE_FAM83H" + } + }, + "nodes": [{ "refid": "1", "role": "40,34" }] + }, + { + "id": "R3", + "infons": { + "type": "Association", + "score": "0.9922", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "5573", + "type": "Gene", + "valid": true, + "normalized": [5573], + "database": "ncbi_gene", + "normalized_id": 5573, + "biotype": "gene", + "name": "PRKAR1A", + "accession": "@GENE_PRKAR1A" + } + }, + "nodes": [{ "refid": "2", "role": "40,33" }] + }, + { + "id": "R4", + "infons": { + "type": "Association", + "score": "0.9914", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "1747", + "type": "Gene", + "valid": true, + "normalized": [1747], + "database": "ncbi_gene", + "normalized_id": 1747, + "biotype": "gene", + "name": "DLX3", + "accession": "@GENE_DLX3" + } + }, + "nodes": [{ "refid": "3", "role": "40,36" }] + }, + { + "id": "R5", + "infons": { + "type": "Association", + "score": "0.9547", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "54084", + "type": "Gene", + "valid": true, + "normalized": [54084], + "database": "ncbi_gene", + "normalized_id": 54084, + "biotype": "gene", + "name": "TSPEAR", + "accession": "@GENE_TSPEAR" + } + }, + "nodes": [{ "refid": "4", "role": "40,32" }] + }, + { + "id": "R6", + "infons": { + "type": "Association", + "score": "0.9475", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "10913", + "type": "Gene", + "valid": true, + "normalized": [10913], + "database": "ncbi_gene", + "normalized_id": 10913, + "biotype": "gene", + "name": "EDAR", + "accession": "@GENE_EDAR" + } + }, + "nodes": [{ "refid": "5", "role": "40,29" }] + }, + { + "id": "R7", + "infons": { + "type": "Association", + "score": "0.9916", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "5567", + "type": "Gene", + "valid": true, + "normalized": [5567], + "database": "ncbi_gene", + "normalized_id": 5567, + "biotype": "gene", + "name": "PRKACB", + "accession": "@GENE_PRKACB" + } + }, + "nodes": [{ "refid": "6", "role": "40,35" }] + }, + { + "id": "R8", + "infons": { + "type": "Association", + "score": "0.985", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "258", + "type": "Gene", + "valid": true, + "normalized": [258], + "database": "ncbi_gene", + "normalized_id": 258, + "biotype": "gene", + "name": "AMBN", + "accession": "@GENE_AMBN" + } + }, + "nodes": [{ "refid": "7", "role": "40,30" }] + }, + { + "id": "R9", + "infons": { + "type": "Association", + "score": "0.9888", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "1834", + "type": "Gene", + "valid": true, + "normalized": [1834], + "database": "ncbi_gene", + "normalized_id": 1834, + "biotype": "gene", + "name": "DSPP", + "accession": "@GENE_DSPP" + } + }, + "nodes": [{ "refid": "8", "role": "40,37" }] + }, + { + "id": "R10", + "infons": { + "type": "Association", + "score": "0.9871", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "5351", + "type": "Gene", + "valid": true, + "normalized": [5351], + "database": "ncbi_gene", + "normalized_id": 5351, + "biotype": "gene", + "name": "PLOD1", + "accession": "@GENE_PLOD1" + } + }, + "nodes": [{ "refid": "9", "role": "40,31" }] + }, + { + "id": "R11", + "infons": { + "type": "Association", + "score": "0.9963", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "650", + "type": "Gene", + "valid": true, + "normalized": [650], + "database": "ncbi_gene", + "normalized_id": 650, + "biotype": "gene", + "name": "BMP2", + "accession": "@GENE_BMP2" + } + }, + "nodes": [{ "refid": "10", "role": "40,38" }] + }, + { + "id": "R12", + "infons": { + "type": "Association", + "score": "0.996", + "role1": { + "identifier": "OMIM:614188", + "type": "Disease", + "valid": true, + "normalized": ["614188"], + "database": "omim", + "normalized_id": "614188", + "biotype": "disease", + "name": "614188", + "accession": "@DISEASE_614188" + }, + "role2": { + "identifier": "23483", + "type": "Gene", + "valid": true, + "normalized": [23483], + "database": "ncbi_gene", + "normalized_id": 23483, + "biotype": "gene", + "name": "TGDS", + "accession": "@GENE_TGDS" + } + }, + "nodes": [{ "refid": "11", "role": "40,39" }] + } + ], + "pmid": 37361548, + "pmcid": null, + "meta": {}, + "date": "2023-06-14T00:00:00Z", + "journal": "PNAS Nexus", + "authors": [ + "Wredenhagen MS", + "Goldstein A", + "Mathieu H", + "Miranda V", + "Morali B", + "Santerre J", + "Maftei C", + "Delrue MA", + "Schmittbuhl M", + "Vu DD", + "Moldovan F", + "Campeau PM" + ], + "relations_display": [ + { "name": "associate|@DISEASE_614188|@GENE_WNT10A" }, + { "name": "associate|@DISEASE_614188|@GENE_FAM83H" }, + { "name": "associate|@DISEASE_614188|@GENE_PRKAR1A" }, + { "name": "associate|@DISEASE_614188|@GENE_DLX3" }, + { "name": "associate|@DISEASE_614188|@GENE_TSPEAR" }, + { "name": "associate|@DISEASE_614188|@GENE_EDAR" }, + { "name": "associate|@DISEASE_614188|@GENE_PRKACB" }, + { "name": "associate|@DISEASE_614188|@GENE_AMBN" }, + { "name": "associate|@DISEASE_614188|@GENE_DSPP" }, + { "name": "associate|@DISEASE_614188|@GENE_PLOD1" }, + { "name": "associate|@DISEASE_614188|@GENE_BMP2" }, + { "name": "associate|@DISEASE_614188|@GENE_TGDS" } + ] + } + } +} diff --git a/src/store/index.ts b/src/store/index.ts new file mode 100644 index 0000000..c9f6f04 --- /dev/null +++ b/src/store/index.ts @@ -0,0 +1 @@ +export * from './types' diff --git a/src/store/pubtator/index.ts b/src/store/pubtator/index.ts new file mode 100644 index 0000000..d04e177 --- /dev/null +++ b/src/store/pubtator/index.ts @@ -0,0 +1,67 @@ +/** + * Store wrapping the PubTator access. + */ +import { defineStore } from 'pinia' +import { ref } from 'vue' + +import { PubtatorClient } from '../../api/pubtator' +import { StoreState } from '../../store/types' +import { SearchResults } from './types' + +export * from './types' + +export const usePubtatorStore = defineStore('pubtator', () => { + /** The current store state. */ + const storeState = ref(StoreState.Initial) + + /** The HGNC symbol currently loaded for. */ + const hgncSymbol = ref(undefined) + + /** Detailed result information. */ + const searchResults = ref({}) + + /** Initialize the store for the given HGNC symbol. */ + const initialize = async (hgncSymbol$?: string, force: boolean = false) => { + // Skip if already loaded + if (!force && hgncSymbol$ === hgncSymbol.value) { + return + } + + // Clear against artifacts. + clearData() + + storeState.value = StoreState.Loading + + // Bail out if no HGNC symbol is available. + if (!hgncSymbol$) { + storeState.value = StoreState.Active + return + } + + // "Just" lookup via PubTator client. + const client = new PubtatorClient() + try { + searchResults.value = await client.performSearch(hgncSymbol$) + storeState.value = StoreState.Active + } catch (err) { + storeState.value = StoreState.Error + throw new Error(`Error running PubTator 3 search: ${err}`) + } + } + + /** Clear the store. */ + const clearData = () => { + storeState.value = StoreState.Initial + hgncSymbol.value = undefined + searchResults.value = {} + } + + /** The current gene Ranking. */ + return { + storeState, + hgncSymbol, + searchResults, + initialize, + clearData + } +}) diff --git a/src/store/pubtator/types.ts b/src/store/pubtator/types.ts new file mode 100644 index 0000000..8f2def8 --- /dev/null +++ b/src/store/pubtator/types.ts @@ -0,0 +1,40 @@ +import { SearchResult } from '../../api/pubtator' + +/** Enumeration for annotation types */ +export enum AnnotationType { + /** Disease */ + Disease = 'Disease', + /** Gene */ + Gene = 'Gene', + /** Chemical */ + Chemical = 'Chemical', + /** Species */ + Species = 'Species', + /** Variant */ + Variant = 'Variant', + /** CellLine */ + CellLine = 'CellLine' +} + +/** Location of an annotation. */ +export interface AnnotationLocation { + /** The offset of the annotation. */ + offset: number + /** The length of the annotation. */ + length: number +} + +/** One annotation record. */ +export interface Annotation { + /** The type of annotation. */ + type: AnnotationType + /** The name of the annotation. */ + name?: string + /** The text of the annotation. */ + text?: string + /** Locations of the annotation */ + locations: AnnotationLocation[] +} + +/** Search results type. */ +export type SearchResults = { [key: string]: SearchResult } diff --git a/src/store/types.ts b/src/store/types.ts new file mode 100644 index 0000000..aef8dd1 --- /dev/null +++ b/src/store/types.ts @@ -0,0 +1,15 @@ +/** + * Store state enum + */ +export enum StoreState { + /** Initial state, not loaded yet. */ + Initial = 'initial', + /** Loading state, loading data. */ + Loading = 'loading', + /** Active state, data loaded. */ + Active = 'active', + /** Error state, error loading data. */ + Error = 'error', + /** Redirect state, redirecting to another page. */ + Redirect = 'redirect' +}