Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
rajaram5 committed Nov 26, 2020
2 parents fdc719c + 379de6e commit 16531f6
Show file tree
Hide file tree
Showing 93 changed files with 796 additions and 12 deletions.
26 changes: 26 additions & 0 deletions example-data/turtle/sio-model/biobanks.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_1.

:role_1 a obo:OBI_0000093 ;
sio:SIO_000356 :sample_collection_process_ .

:sample_collection_process_ a obo:OBI_0000659;
sio:SIO_000229 :specimen_ .

:specimen_ a sio:SIO_010412 .

:biobank_ a obo:OMIABIS_0000010 ;
dc:title "UK BioBank"^^xsd:string ;
sio:SIO_000228 :role_2 .

:role_2 a obo:OBI_0000947 ;
sio:SIO_000356 :sample_storing_process_ .

:sample_storing_process_ a obo:ICO_0000060;
sio:SIO_000230 :specimen_.
21 changes: 21 additions & 0 deletions example-data/turtle/sio-model/birthDateQuality.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .


:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ ;
sio:SIO_000217 :quality_ .

:quality_ a obo:NCIT_C68615 ;
sio:SIO_000642 :output_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :process_ .

:process_ a sio:SIO_000006 ;
sio:SIO_000229 :output_ .

:output_ a sio:SIO_000340 ;
sio:SIO_000300 "2020-02-31T12:00:00"^^xsd:dateTime .
13 changes: 13 additions & 0 deletions example-data/turtle/sio-model/carePathway.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :process_ .

:process_ a obo:NCIT_C142427, obo:NCIT_C159705, sio:SIO_000006 ;
sio:SIO_000680 "2020-10-18T13:00:00"^^xsd:dateTime .
25 changes: 25 additions & 0 deletions example-data/turtle/sio-model/consent.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_1, :role_2 .

:role_1 a obo:OBI_0000093 ;
sio:SIO_000356 :process_1 .

:process_1 a obo:ICO_0000149 ;
sio:SIO_000229 :output_1 ;
sio:SIO_000680 "2020-10-18T13:00:00"^^xsd:dateTime .

:role_2 a obo:OBI_0000093 ;
sio:SIO_000356 :process_2 .

:process_2 a obo:ICO_0000181 ;
sio:SIO_000229 :output_2 ;
sio:SIO_000680 "2020-10-18T13:03:00"^^xsd:dateTime .

:output_1 a sio:SIO_000340, obo:OPMI_0000023 .

:output_2 a sio:SIO_000340, obo:OPMI_0000024 .
33 changes: 33 additions & 0 deletions example-data/turtle/sio-model/disability.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix snomedct: <http://purl.bioontology.org/ontology/SNOMEDCT/> .


:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :test_process_ .

:questionnaire_document_ a obo:NCIT_C130322, obo:NCIT_C91102 ;
sio:SIO_000028 :questionnaire_question_ .

:questionnaire_question_ a obo:NCIT_C130916 ;
sio:SIO_000300 "How many days difficulty present?"^^xsd:string .

:test_process_ a obo:OMIT_0028217 ;
sio:SIO_000230 :questionnaire_question_ ;
sio:SIO_000229 :answer_ .

:answer_ a sio:SIO_000340 ;
sio:SIO_000221 obo:UO_0000033 ;
sio:SIO_000300 "1"^^xsd:integer .

:evaluation_process_ a obo:OMIT_0005448 ;
sio:SIO_000230 :answer_ ;
sio:SIO_000229 :score_ .

:score_ a snomedct:715823002 ;
sio:SIO_000300 "22.3"^^xsd:decimal .
46 changes: 46 additions & 0 deletions example-data/turtle/sio-model/diseaseHistoryAndDiagnosis.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ordo: <http://www.orpha.net/ORDO/> .
@prefix loinc: <http://purl.bioontology.org/ontology/LNC/> .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ ;
sio:SIO_000217 :quality_1, :quality_2 .

:role_ a obo:OBI_0000093;
sio:SIO_000356 :process_1;
sio:SIO_000356 :process_2;
sio:SIO_000356 :process_3 .

:process_1 a sio:SIO_001001 ;
sio:SIO_000229 :output_1;
sio:SIO_000680 "2017-10-18T13:00:00"^^xsd:dateTime .

:process_2 a sio:SIO_000006 ;
sio:SIO_000229 :output_2;
sio:SIO_000230 :output_1;
sio:SIO_000680 "2015-10-18T13:00:00"^^xsd:dateTime .


:process_3 a sio:SIO_000006 ;
sio:SIO_000229 :output_3;
sio:SIO_000230 :output_1;
sio:SIO_000680 "2017-10-19T13:00:00"^^xsd:dateTime .

:output_1 a sio:SIO_000340, sio:SIO_000015;
sio:SIO_000628 :disease_ .

:disease_ a ordo:Orphanet_377793.

:output_2 a sio:SIO_000340, loinc:LP91394-4.

:output_3 a sio:SIO_000340, loinc:LP91394-4.


:quality_1 a obo:NCIT_C124353 ;
sio:SIO_000216 :output_2 .

:quality_2 a obo:NCIT_C156420 ;
sio:SIO_000216 :output_3 .
20 changes: 20 additions & 0 deletions example-data/turtle/sio-model/genderQuality.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix snomedct: <http://purl.bioontology.org/ontology/SNOMEDCT/> .


:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ ;
sio:SIO_000217 :quality_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :process_ .

:quality_ a obo:NCIT_C17357 ;
sio:SIO_000642 :output_ .

:process_ a sio:SIO_000006 ;
sio:SIO_000229 :output_ .

:output_ a sio:SIO_000340, snomedct:703118005 .
16 changes: 16 additions & 0 deletions example-data/turtle/sio-model/geneticDiagnosis.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:process_ a obo:NCIT_C15709 ;
sio:SIO_000229 :variant_ .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :process_ .

:variant_ a obo:VariO_0138;
rdfs:label "NG_007148.2:g.146889G>A" .
20 changes: 20 additions & 0 deletions example-data/turtle/sio-model/patientDeadDate.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ ;
sio:SIO_000217 :quality_ .

:role_ a obo:OBI_0000093;
sio:SIO_000356 :process_ .

:process_ a sio:SIO_000006 ;
sio:SIO_000229 :output_ .

:output_ a sio:SIO_000340 ;
sio:SIO_000300 "1990-01-01T01:12:50"^^xsd:dateTime .

:quality_ a obo:NCIT_C70810 ;
sio:SIO_000642 :output_ .
41 changes: 41 additions & 0 deletions example-data/turtle/sio-model/patientStatus.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .


# An example rdf of person's status

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_1 ;
sio:SIO_000217 :quality_1 .

:role_1 a obo:OBI_0000093 ;
sio:SIO_000356 :process_1 .

:process_1 a sio:SIO_000006 ;
sio:SIO_000229 :output_1 .

:output_1 a obo:PATO_0001421 .

:quality_1 a obo:NCIT_C25688 ;
sio:SIO_000642 :output_1 .


# An example rdf of person's dead date

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_2 ;
sio:SIO_000217 :quality_2 .

:role_2 a obo:OBI_0000093;
sio:SIO_000356 :process_2 .

:process_2 a sio:SIO_000006 ;
sio:SIO_000229 :output_2 .

:output_2 a sio:SIO_000340 ;
sio:SIO_000300 "1990-01-01T01:12:50"^^xsd:dateTime .

:quality_2 a obo:NCIT_C70810 ;
sio:SIO_000642 :output_2 .
19 changes: 19 additions & 0 deletions example-data/turtle/sio-model/patientStatusAlive.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .


:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_ ;
sio:SIO_000217 :quality_ .

:role_ a obo:OBI_0000093 ;
sio:SIO_000356 :process_ .

:process_ a sio:SIO_000006 ;
sio:SIO_000229 :output_ .

:output_ a obo:PATO_0001421 .

:quality_ a obo:NCIT_C25688 ;
sio:SIO_000642 :output_ .
11 changes: 11 additions & 0 deletions example-data/turtle/sio-model/person.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .

:person_ a sio:SIO_000498 ; # :person_ a sio:person ;
sio:SIO_000228 :role_ ; # sio:has-role :role_ ;
obo:RO_0002162 :taxon_ . # ro:in-taxon :taxon_ .

:role_ a obo:OBI_0000093 . # :role_ a obo:patient_role .

:taxon_ a obo:NCBITaxon_9606 . # :taxon_ a obo:homo_sapiens .
42 changes: 42 additions & 0 deletions example-data/turtle/sio-model/personInformation.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix snomedct: <http://purl.bioontology.org/ontology/SNOMEDCT/> .


# An example rdf of person's birthdate

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_1 ;
sio:SIO_000217 :quality_1 .

:quality_1 a obo:NCIT_C68615 ;
sio:SIO_000642 :output_1 .

:role_1 a obo:OBI_0000093 ;
sio:SIO_000356 :process_1 .

:process_1 a sio:SIO_000006 ;
sio:SIO_000229 :output_1 .

:output_1 a sio:SIO_000340 ;
sio:SIO_000300 "2020-02-31T12:00:00"^^xsd:dateTime .


# An example rdf of person's gender

:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_2 ;
sio:SIO_000217 :quality_2 .

:role_2 a obo:OBI_0000093 ;
sio:SIO_000356 :process_2 .

:quality_2 a obo:NCIT_C17357 ;
sio:SIO_000642 :output_2 .

:process_2 a sio:SIO_000006 ;
sio:SIO_000229 :output_2 .

:output_2 a sio:SIO_000340, snomedct:703118005 .
15 changes: 15 additions & 0 deletions example-data/turtle/sio-model/pseudonym.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix edam: <http://edamontology.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .


:person_ a sio:SIO_000498 ; # :person_ a sio:person ;
sio:SIO_000228 :role_ . # sio:has-role :role_ .

:role_ a obo:OBI_0000093 . # :role_ a obo:patient_role .

:identifier_ a edam:data_0842 ; # :identifier_ a edam:identifier ;
sio:SIO_000020 :role_ ; # sio:denotes :role_ ;
sio:SIO_000300 "1234567890"^^xsd:string . # sio:has-value "1234567890"^^xsd:string .
28 changes: 28 additions & 0 deletions example-data/turtle/sio-model/unDiagnosis.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@prefix : <http://purl.org/ejp-rd/cde/v020/example-rdf/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .


:person_ a sio:SIO_000498 ;
sio:SIO_000228 :role_1 ;
sio:SIO_000228 :role_2 .

:role_1 a obo:OBI_0000093 ;
sio:SIO_000356 :process_1 .

:process_1 a obo:NCIT_C15709 ;
sio:SIO_000229 :variant_ .

:variant_ a obo:VariO_0138;
rdfs:label "NG_007148.2:g.146889G>A" .


:role_2 a obo:OBI_0000093 ;
sio:SIO_000356 :process_2 .

:process_2 a obo:NCIT_C16205 ;
sio:SIO_000229 :phenotype_ .

:phenotype_ a obo:HP_0001249 .
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,3 @@

:diagnosisAgeValue1
a snomedct:373068000 .


File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 16531f6

Please sign in to comment.