Skip to content

Instantly share code, notes, and snippets.

@jmandel
Created June 26, 2012 04:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmandel/2993298 to your computer and use it in GitHub Desktop.
Save jmandel/2993298 to your computer and use it in GitHub Desktop.
curated_rdf
@prefix : <http://i2b2.org/terms#> .
[] a :Observation;
:code "ICD9:724.5"; # backache
:date "2012-04-14";
:modifier [
:code "SNOMED:24484000" # severe
].
[] a :Observation;
:code "LOINC:2951-2"; # serum sodium
:nval_num 3.2;
:units_cd "mg/ml";
:date "2012-04-14".
[] a :Observation;
:code "LOINC:8480-6"; # intravascular systolic
:nval_num 125;
:units_cd "mmhg";
:date "2012-03-08".
[] a :Observation;
:code "LOINC:8462-4"; # intravascular diastolic
:nval_num 82;
:units_cd "mmhg";
:date "2012-03-08".
@prefix : <http://i2b2.org/terms#> .
@prefix c: <http://i2b2.org/curated#> .
[] a :Observation;
:code "ICD9:724.5";
:date "2012-04-14";
### Curated additions ###
a c:Problem;
c:code <http://purl.bioontology.org/ontology/SNOMEDCT/161891005>;
c:severity <http://purl.bioontology.org/ontology/SNOMEDCT/24484000>.
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005>
c:title "Backache".
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000>
c:title "Severe".
@prefix : <http://i2b2.org/terms#> .
@prefix c: <http://i2b2.org/curated#> .
[] a :Observation
:code "LOINC:2951-2";
:nval_num 3.2;
:units_cd "mg/ml";
:date "2012-04-14";
### Curated additions ###
a c:LabResult;
c:code <http://purl.bioontology.org/ontology/LNC/2951-2>
c:value 140;
c:unit "mEq/L".
<http://purl.bioontology.org/ontology/LNC/2951-2>
c:title "Serum sodium".
@prefix : <http://i2b2.org/terms#> .
@prefix c: <http://i2b2.org/curated#> .
_:1 a :Observation;
:code "LOINC:8480-6";
:nval_num 125;
:units_cd "mmhg";
:date "2012-03-08".
_:2 a :Observation;
:code "LOINC:8462-4";
:nval_num 82;
:units_cd "mmhg";
:date "2012-03-08".
### Curated additions ###
_:0 a :BloodPressure;
c:systolic _:1;
c:diastolic _:2.
_:1 a c:VitalSign;
c:code <http://purl.bioontology.org/ontology/LNC/8480-6>.
<http://purl.bioontology.org/ontology/LNC/8480-6>
c:title "Intravascular systolic".
_:2 a c:VitalSign
c:code <http://purl.bioontology.org/ontology/LNC/8462-4>.
<http://purl.bioontology.org/ontology/LNC/8462-4>
c:title "Intravascular diastolic".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment