Skip to content

Commit 564511f

Browse files
committed
Merge branch 'release/V1.2.0'
2 parents 28c571a + 469a653 commit 564511f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1036
-251
lines changed
File renamed without changes.

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/resource-metadata-schema.iml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/sonarIssues.xml

Lines changed: 0 additions & 79 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The core model is designed to represent data about a rare disease patient and bi
1616
The figure below gives an overview of upper level concepts and properties used in our metadata model.
1717

1818
<p align="center">
19-
<img src="images/resourceSemanticMetadataModel.png">
19+
<img src="docs/ResourceMetadataSchema.png">
2020
</p>
2121

2222
You can browse different metadata modules by visiting the links below.
@@ -28,6 +28,7 @@ You can browse different metadata modules by visiting the links below.
2828
* [Patient Registry](docs/patient-registry.md) - describes a patient registry
2929
* [Biobank](docs/biobank.md) - describes a biobank
3030
* [Guideline](docs/guideline.md) - describes a guideline
31+
* [Dataset](docs/dataset.md) - describes a dataset
3132

3233
### Ontologies used in the metadata model
3334

@@ -39,7 +40,7 @@ To describe different metadata modules listed above we used various exiting onto
3940

4041
Concepts to describe resources that we use in the Rare diseases domain such as biobank and patient registry are <b>not</b> defined in resource description vocabulary as a DCAT. To overcome this issue we have extended DCAT with by added missing concepts to DCAT vocabulary.
4142

42-
* [Data Catalog Vocabulary extension](docs/dcat-extension.md)
43+
* [Data Catalog Vocabulary extension](https://github.com/ejp-rd-vp/resource-metadata-schema-ontology)
4344

4445

4546

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
@prefix : <http://purl.org/ejp-rd/metadata-model/v1/example-rdf/> .
2+
@prefix dcat: <http://www.w3.org/ns/dcat#> .
3+
@prefix dct: <http://purl.org/dc/terms/> .
4+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
5+
6+
:cellosaurusDataService a dcat:DataService ;
7+
dct:publisher :publisher ;
8+
dct:title "Cellosaurus API" ;
9+
dct:description "An API for searching Cellosaurus cell lines" ;
10+
dct:license <https://creativecommons.org/licenses/by/4.0> ;
11+
dcat:endpointURL <https://web.expasy.org/cgi-bin/cellosaurus/search> ;
12+
dcat:servesDataset <https://web.expasy.org/cellosaurus/> .
13+
14+
:publisher a foaf:Agent ;
15+
dct:title "Cellosaurus - a knowledge resource on cell lines" ;
16+
foaf:page <https://web.expasy.org/cellosaurus/> ;
17+
dct:spatial :location .
18+
19+
:location a dct:Location ;
20+
dct:title "Online Resource" .
21+
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
@prefix : <http://purl.org/ejp-rd/metadata-model/v1/example-rdf/> .
2+
@prefix dcat: <http://www.w3.org/ns/dcat#> .
3+
@prefix dct: <http://purl.org/dc/terms/> .
4+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
5+
6+
:cellosaurusDataset a dcat:Dataset ;
7+
dct:publisher :publisher ;
8+
dct:title "Cellosaurus" ;
9+
dct:description "A knowledge resource on cell lines" ;
10+
dcat:theme <http://purl.obolibrary.org/obo/CLO_0000031>, <http://purl.obolibrary.org/obo/NCIT_C16403> ;
11+
dcat:keyword "cell lines" ;
12+
dct:license <https://creativecommons.org/licenses/by/4.0> ;
13+
dct:hasVersion "39" ;
14+
dcat:distribution :cellosaurusRefsDistribution, :cellosaurusXMLDistribution, :cellosaurusTextDistribution;
15+
dcat:landingPage <https://web.expasy.org/cellosaurus/> .
16+
17+
:cellosaurusRefsDistribution a dcat:Distribution ;
18+
dct:title "References file for the Cellosaurus" ;
19+
dct:description "References file for the Cellosaurus" ;
20+
dcat:downloadURL <https://ftp.expasy.org/databases/cellosaurus/cellosaurus_refs.txt> ;
21+
dct:license <https://creativecommons.org/licenses/by/4.0> ;
22+
dct:hasVersion "39" ;
23+
dcat:mediaType "text/plain" ;
24+
dct:publisher :publisher .
25+
26+
:cellosaurusXMLDistribution a dcat:Distribution ;
27+
dct:title "Cellosaurus data as XML" ;
28+
dct:description "Cellosaurus data as XML" ;
29+
dcat:downloadURL <https://ftp.expasy.org/databases/cellosaurus/cellosaurus.xml> ;
30+
dct:license <https://creativecommons.org/licenses/by/4.0> ;
31+
dct:hasVersion "39" ;
32+
dcat:mediaType "text/xml" ;
33+
dct:publisher :publisher .
34+
35+
:cellosaurusTextDistribution a dcat:Distribution ;
36+
dct:title "Cellosaurus data as plain text" ;
37+
dct:description "Cellosaurus data as plain text" ;
38+
dcat:downloadURL <https://ftp.expasy.org/databases/cellosaurus/cellosaurus.txt> ;
39+
dct:license <https://creativecommons.org/licenses/by/4.0> ;
40+
dct:hasVersion "39" ;
41+
dcat:mediaType "text/plain" ;
42+
dct:publisher :publisher .
43+
44+
:publisher a foaf:Agent ;
45+
dct:title "Cellosaurus - a knowledge resource on cell lines" ;
46+
foaf:page <https://web.expasy.org/cellosaurus/> ;
47+
dct:spatial :location .
48+
49+
:location a dct:Location ;
50+
dct:title "Online Resource" .

0 commit comments

Comments
 (0)