This page is part of the Genetic Reporting Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR v3.3.0. 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\">0<a name=\"genetic-coordinate-system-0\"> </a></td><td>0-based</td><td>0-based numbering or interbase coordinate system, inclusive start, exclusive end</td></tr><tr><td style=\"white-space:nowrap\">1<a name=\"genetic-coordinate-system-1\"> </a></td><td>1-based</td><td>1 for 1-based numbering or base coordinate system, inclusive start, inclusive end</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 "2018may"]; 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-04-04T06:23:39+10: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.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 "0" ]; fhir:CodeSystem.concept.display [ fhir:value "0-based" ]; 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 "1" ]; fhir:CodeSystem.concept.display [ fhir:value "1-based" ]; fhir:CodeSystem.concept.definition [ fhir:value "1 for 1-based numbering or base coordinate system, inclusive start, inclusive end" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.