This page is part of the Genetic Reporting Implementation Guide (v0.3.0: STU 1 Ballot 2) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:CodeSystem; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "genetic-coordinate-system"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>GeneticCoordinateSystem</h2><div><p>Base coordinate systems start and end measurements for variants</p>\n</div><p>This code system http://hl7.org/fhir/uv/genomics-reporting/CodeSystem/genetic-coordinate-system defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">Interval<a name=\"genetic-coordinate-system-Interval\"> </a></td><td>Interval</td><td>0-based numbering or interbase coordinate system, inclusive start, exclusive end</td></tr><tr><td style=\"white-space:nowrap\">Variant method<a name=\"genetic-coordinate-system-Variantmethod\"> </a></td><td>Variant method</td><td>1-based [inclusive start, inclusive end] - with Alignment Method (VCF-like)</td></tr><tr><td style=\"white-space:nowrap\">Alignment method<a name=\"genetic-coordinate-system-Alignmentmethod\"> </a></td><td>Alignment method</td><td>1-based [inclusive start, inclusive end] - with Variant Method (HGVS-like)</td></tr></table></div>" ]; fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/uv/genomics-reporting/CodeSystem/genetic-coordinate-system"]; fhir:CodeSystem.version [ fhir:value "0.3.0"]; fhir:CodeSystem.name [ fhir:value "GeneticCoordinateSystem"]; fhir:CodeSystem.status [ fhir:value "draft"]; fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean]; fhir:CodeSystem.date [ fhir:value "2018-12-04T11:36:15+11:00"^^xsd:dateTime]; fhir:CodeSystem.contact [ fhir:index 0; fhir:ContactDetail.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "url" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "email" ] ] ]; fhir:CodeSystem.description [ fhir:value "Base coordinate systems start and end measurements for variants"]; fhir:CodeSystem.jurisdiction [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://unstats.un.org/unsd/methods/m49/m49.htm" ]; fhir:Coding.code [ fhir:value "001" ]; fhir:Coding.display [ fhir:value "World" ] ] ]; fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean]; fhir:CodeSystem.valueSet [ fhir:value "http://hl7.org/fhir/uv/genomics-reporting/ValueSet/genetic-coordinate-system"; fhir:link <http://hl7.org/fhir/uv/genomics-reporting/ValueSet/genetic-coordinate-system> ]; fhir:CodeSystem.content [ fhir:value "complete"]; fhir:CodeSystem.concept [ fhir:index 0; fhir:CodeSystem.concept.code [ fhir:value "Interval" ]; fhir:CodeSystem.concept.display [ fhir:value "Interval" ]; fhir:CodeSystem.concept.definition [ fhir:value "0-based numbering or interbase coordinate system, inclusive start, exclusive end" ] ], [ fhir:index 1; fhir:CodeSystem.concept.code [ fhir:value "Variant method" ]; fhir:CodeSystem.concept.display [ fhir:value "Variant method" ]; fhir:CodeSystem.concept.definition [ fhir:value "1-based [inclusive start, inclusive end] - with Alignment Method (VCF-like)" ] ], [ fhir:index 2; fhir:CodeSystem.concept.code [ fhir:value "Alignment method" ]; fhir:CodeSystem.concept.display [ fhir:value "Alignment method" ]; fhir:CodeSystem.concept.definition [ fhir:value "1-based [inclusive start, inclusive end] - with Variant Method (HGVS-like)" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.