diff options
author | Munyoki Kilyungi | 2023-08-15 14:06:11 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-08-15 19:32:48 +0300 |
commit | 7b77057639891565ef249471b590fa35ad98c9d0 (patch) | |
tree | 0262f938f9e71b000ffa7292270c696aa873f8f2 | |
parent | 877906dc164add37bfff07ebc1d0684ab6a3a333 (diff) | |
download | gn-transform-databases-7b77057639891565ef249471b590fa35ad98c9d0.tar.gz |
Replace "used" with "uses" in ontology
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | examples/dump-dataset-metadata.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/dump-dataset-metadata.scm b/examples/dump-dataset-metadata.scm index 8a93bc3..3d2e1f9 100755 --- a/examples/dump-dataset-metadata.scm +++ b/examples/dump-dataset-metadata.scm @@ -84,12 +84,12 @@ (gnt:hasTissueInfo rdfs:domain gnc:dataset) (gnt:hasTissueInfo a owl:ObjectProperty) (gnt:hasTissueInfo skos:definition "Metadata about Tissue for this resource") - (gnt:usedNormalization rdfs:domain gnc:dataset) - (gnt:usedNormalization a owl:ObjectProperty) - (gnt:usedNormalization skos:definition "Normalization techniques this resource has") - (gnt:usedPlatform rdfs:domain gnc:dataset) - (gnt:usedPlatform a owl:ObjectProperty) - (gnt:usedPlatform skos:definition "The Platform this resource uses") + (gnt:usesNormalization rdfs:domain gnc:dataset) + (gnt:usesNormalization a owl:ObjectProperty) + (gnt:usesNormalization skos:definition "Normalization techniques this resource has") + (gnt:usesPlatform rdfs:domain gnc:dataset) + (gnt:usesPlatform a owl:ObjectProperty) + (gnt:usesPlatform skos:definition "The Platform this resource uses") (gnt:hasGeoSeriesId rdfs:domain gnc:dataset) (gnt:hasGeoSeriesId a owl:ObjectProperty) (gnt:hasGeoSeriesId skos:definition "id of record in NCBI database") @@ -161,12 +161,12 @@ (string->identifier "inbredSet" (field InbredSet Name InbredSetName))) (set gnt:hasTissue (string->identifier "tissue" (field Tissue Short_Name))) - (set gnt:usedNormalization + (set gnt:usesNormalization (string->identifier "avgmethod" ;; If AvgMethodName is NULL, assume N/A. (if (string-blank? (field AvgMethod Name AvgMethodName)) "N/A" (field AvgMethod Name AvgMethodName)))) - (set gnt:usedPlatform + (set gnt:usesPlatform (string->identifier "platform" (field GeneChip Name GeneChip))) (set gdmt:isDescribedBy |