G101-ILK
A minimal Gene resource example.
JSON-LD
{
"@context": "http://clingen.org/models/Gene.jsonld",
"@id": "http://clingendb.clingen.org/Gene/G101",
"@type": "Gene",
"id": "G101",
"symbol": "ILK",
"name": "integrin-linked kinase",
"xref":
[
"http://www.genenames.org/cgi-bin/gene_symbol_report?hgnc_id=HGNC:6040",
"http://www.ncbi.nlm.nih.gov/gene/3661"
]
}
example: G101-ILK.json
XML
<?xml version="1.0" encoding="UTF-8"?>
<Gene xmlns="http://clingen.org/dm/allele/v1" xmlns:f="http://hl7.org/fhir"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://clingen.org/dm/allele/v1 ../clingen-xsd/gene.xsd ">
<f:id value="G101"></f:id>
<identifier>
<f:use value="usual"></f:use>
<!-- this is the system OID for www.genenames.org (HUGO Gene Nomenclature) -->
<f:system value="urn:oid:2.16.840.1.113883.6.281"></f:system>
<f:value value="HGNC:6040"></f:value>
</identifier>
<identifier>
<f:use value="secondary"></f:use>
<f:system value="http://www.ncbi.nlm.nih.gov/gene"></f:system>
<f:value value="3611"></f:value>
</identifier>
<symbol value="ILK"></symbol>
<name value="integrin-linked kinase"></name>
</Gene>
example: G101-ILK.xml
schema: Gene.xsd
JSON
{
"id": "G101",
"identifier":
[
{
"use": "official",
"system": "urn:oid:2.16.840.1.113883.6.281",
"value": "HGNC:6040"
},
{
"system": "http://www.ncbi.nlm.nih.gov/gene",
"value": "3611"
}
],
"symbol": "ILK",
"name": "integrin-linked kinase"
}
example: G101-ILK.json