diff options
author | Munyoki Kilyungi | 2024-02-09 19:05:33 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-02-09 19:05:33 +0300 |
commit | 86b57f52f36140028daf8ee089aeac57ae4b1da1 (patch) | |
tree | b9bcd4a3cbbcc4ca990702087f8a7c17dcd226c1 /examples | |
parent | 8cef41b000d39a8c16b9bce7bb505ef8863100fb (diff) | |
download | gn-transform-databases-86b57f52f36140028daf8ee089aeac57ae4b1da1.tar.gz |
Re-add triplets that describe dataset terms.
These triplets will be re-used when constructing the json-ld endpoints
for GN3.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/dataset-metadata.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/dataset-metadata.scm b/examples/dataset-metadata.scm index 442663a..62df74e 100755 --- a/examples/dataset-metadata.scm +++ b/examples/dataset-metadata.scm @@ -121,6 +121,34 @@ (gnt:hasGeoSeriesId skos:definition "id of record in NCBI database") (gnt:hasExperimentType rdfs:domain dcat:Dataset) (gnt:hasExperimentType rdfs:label "Experiment Type Metadata") + (gnt:hasTissueInfo rdfs:domain dcat:Dataset) + (gnt:hasTissueInfo a owl:ObjectProperty) + (gnt:hasTissueInfo skos:definition "Metadata about Tissue for this resource") + (gnt:hasExperimentDesignInfo rdfs:domain dcat:Dataset) + (gnt:hasExperimentDesignInfo rdfs:label "Experiment Design") + (gnt:hasExperimentDesignInfo a owl:ObjectProperty) + (gnt:hasExperimentDesignInfo skos:definition "Information about how the experiment was designed") + (gnt:hasNotes rdfs:domain dcat:Dataset) + (gnt:hasNotes a owl:ObjectProperty) + (gnt:hasNotes rdfs:label "Notes") + (gnt:hasNotes skos:definition "Extra Notes about this dataset") + (gnt:hasDataProcessingInfo rdfs:domain dcat:Dataset) + (gnt:hasDataProcessingInfo rdfs:label "About Data Processing") + (gnt:hasDataProcessingInfo a owl:ObjectProperty) + (gnt:hasDataProcessingInfo skos:definition "Information about how this dataset was processed") + (gnt:hasPlatformInfo rdfs:domain dcat:Dataset) + (gnt:hasPlatformInfo a owl:ObjectProperty) + (gnt:hasPlatformInfo rdfs:label "About Platform") + (gnt:hasPlatformInfo skos:definition "Information about the platform that was used with this dataset") + (gnt:hasCaseInfo rdfs:domain dcat:Dataset) + (gnt:hasCaseInfo rdfs:label "About Case") + (gnt:hasCaseInfo a owl:ObjectProperty) + (gnt:hasCaseInfo skos:definition "Information about the cases used in this platform") + (gnt:hasExperimentType skos:definition "Information about the experiment type") + (gnt:hasAcknowledgement rdfs:domain dcat:Dataset) + (gnt:hasAcknowledgement rdfs:label "Acknowledgement") + (gnt:hasAcknowledgement a owl:ObjectProperty) + (gnt:hasAcknowledgement skos:definition "People to acknowledge")) (gnt:hasExperimentType a owl:ObjectProperty) (gnt:hasExperimentType skos:definition "Information about the experiment type")) (triples (string->identifier |