diff options
Diffstat (limited to 'examples')
-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 |