Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change subject and object source references to be CURIEs in table format #177

Merged
merged 2 commits into from
Jun 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions src/linkml/sssom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,12 @@ slots:
slot_uri: dcterms:license
subject_source:
description: URI of ontology source for the subject.
range: uri
range: EntityReference
examples:
- value: http://purl.obolibrary.org/obo/mondo.owl
description: (A persistent IRI pointing to the latest version of the Mondo ontology.)
- value: obo:mondo.owl
description: A persistent OBO CURIE pointing to the latest version of the Mondo ontology.
- value: wikidata:Q7876491
description: A Wikidata identifier for the Uberon ontology resource.
subject_source_version:
description: Version IRI or version string of the source of the subject term.
range: string
Expand All @@ -276,10 +278,12 @@ slots:
description: (A persistent Version IRI pointing to the Mondo version '2021-01-30')
object_source:
description: IRI of ontology source for the object. Version IRI preferred.
range: uri
range: EntityReference
examples:
- value: http://purl.obolibrary.org/obo/mondo.owl
description: (A persistent IRI pointing to the latest version of the Mondo ontology.)
- value: obo:mondo.owl
Copy link
Contributor

@cmungall cmungall Jun 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's slightly unsatisfying we don't have a way to specify the logical resource independent of serialization format. See OBOFoundry/purl.obolibrary.org#852

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I 100% agree. obo:mondo would be better here as the canonical way to refer to OBO ontologies.

description: A persistent OBO CURIE pointing to the latest version of the Mondo ontology.
- value: wikidata:Q7876491
description: A Wikidata identifier for the Uberon ontology resource.
object_source_version:
description: Version IRI or version string of the source of the object term.
range: string
Expand Down