diff options
author | Munyoki Kilyungi | 2024-02-13 12:57:47 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-02-13 12:57:47 +0300 |
commit | 236c6a4ef4dd4f315e961fde24daeb579d6214c2 (patch) | |
tree | 4b8c64c59a889bbaf1bdc5da20cd8878c3ce99f8 /examples | |
parent | 86b57f52f36140028daf8ee089aeac57ae4b1da1 (diff) | |
download | gn-transform-databases-236c6a4ef4dd4f315e961fde24daeb579d6214c2.tar.gz |
Fix missplaced parens.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/dataset-metadata.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dataset-metadata.scm b/examples/dataset-metadata.scm index 62df74e..2cb3820 100755 --- a/examples/dataset-metadata.scm +++ b/examples/dataset-metadata.scm @@ -120,7 +120,9 @@ (gnt:hasGeoSeriesId a owl:ObjectProperty) (gnt:hasGeoSeriesId skos:definition "id of record in NCBI database") (gnt:hasExperimentType rdfs:domain dcat:Dataset) + (gnt:hasExperimentType a owl:ObjectProperty) (gnt:hasExperimentType rdfs:label "Experiment Type Metadata") + (gnt:hasExperimentType skos:definition "Information about the experiment type") (gnt:hasTissueInfo rdfs:domain dcat:Dataset) (gnt:hasTissueInfo a owl:ObjectProperty) (gnt:hasTissueInfo skos:definition "Metadata about Tissue for this resource") @@ -149,8 +151,6 @@ (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 "" (regexp-substitute/global #f "[^A-Za-z0-9:]" (field InfoFiles InfoPageName) |