-
Notifications
You must be signed in to change notification settings - Fork 12
Add new bone length from to DOSDP pattern template #75
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
Open
rays22
wants to merge
25
commits into
master
Choose a base branch
from
issue73
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3acbac9
Add new bone length from to DOSDP pattern template
rays22 66185aa
Fix multi_clause syntax in pattern template
rays22 8d97a2a
Add multiple subClassOf axioms
rays22 7e6c4cf
Add missing fovt var
rays22 113703e
Fix text definition
rays22 5877961
Add an xref on the definition
rays22 b8211e9
adding my edits
meghalithic 82eb444
Update bone_length_from_to.yaml
meghalithic 956219c
Update bone_length_from_to.yaml
meghalithic d7b3b93
Merge branch 'master' into issue73
rays22 ad9d851
Implement data_lis_vars
rays22 06e82cf
Update bone_length_from_to.yaml
meghalithic 1560a76
Add comment field to template
rays22 fbfbc71
Merge branch 'issue73' of github.com:obophenotype/bio-attribute-ontol…
rays22 2e912b9
Fix xref annotation
rays22 2d61e2c
Delete redundant vars and axioms
rays22 8e9ab15
fixing pattern
meghalithic ea7f682
Update dosdp patterns file
599e0a1
getting rid of unneeded syn
meghalithic 57fadc6
Merge branch 'master' into issue73
matentzn 55481cb
Update length_from_to.yaml
meghalithic 4869992
Update length_from_to.yaml
meghalithic fc03cf1
Merge branch 'master' into issue73
rays22 fef5f75
Merge branch 'master' into issue73
rays22 e3dc2fe
Update pattern templates
rays22 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| --- | ||
| pattern_name: bone_length_from_to | ||
|
|
||
| pattern_iri: http://purl.obolibrary.org/obo/oba/patterns/bone_length_from_to.yaml | ||
|
|
||
| description: 'A bone length trait that is the distance between two anatomical reference points measured in a straight line.' | ||
|
|
||
| # examples: | ||
| # - http://purl.obolibrary.org/obo/FOVT_0001070 # femur length from caput to lateral condyle | ||
| # - http://purl.obolibrary.org/obo/FOVT_0001077 # length of talus along the midline | ||
| # - http://purl.obolibrary.org/obo/FOVT_0000007 # femur length from caput to medial condyle | ||
|
|
||
| contributors: | ||
| - https://orcid.org/0000-0002-7073-9172 # David Osumi-Sutherland | ||
| - https://orcid.org/0000-0001-8314-2140 # Ray Stefancsik | ||
| - https://orcid.org/0000-0002-7356-1779 # Nicolas Matentzoglu | ||
| - https://orcid.org/0000-0003-2699-3066 # Meghan A. Balk | ||
|
|
||
| classes: | ||
| skeletal_element: UBERON:0004765 | ||
| anatomical_entity: UBERON:0001062 | ||
| length: PATO:0000122 | ||
| line: BFO:0000026 # one-dimensional spatial region | ||
| physical_object_quality: PATO:0001241 | ||
|
|
||
| relations: | ||
| connected_to: RO:0002170 | ||
| characteristic_of: RO:0000052 | ||
|
|
||
| annotationProperties: | ||
| exact_synonym: oio:hasExactSynonym | ||
meghalithic marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| related_synonym: oio:hasRelatedSynonym | ||
| xref: oio:hasDbXref | ||
|
|
||
| vars: | ||
| bone: "'skeletal_element'" | ||
| from: "'anatomical_entity'" | ||
| to: "'anatomical_entity'" | ||
| fovt: "'physical_object_quality'" # FOVT id | ||
|
|
||
| name: | ||
| text: "%s length from %s to %s" | ||
| vars: | ||
| - bone | ||
| - from | ||
| - to | ||
|
|
||
| annotations: | ||
| - annotationProperty: related_synonym | ||
| text: "%s length" | ||
| vars: | ||
| - bone | ||
|
|
||
meghalithic marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| - annotationProperty: xref | ||
| text: "FOVT:%s" # give FOVT id here | ||
| vars: | ||
| - fovt | ||
meghalithic marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| def: | ||
| text: "The length of a line from %s of a %s to %s." | ||
rays22 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| vars: | ||
| - from | ||
| - bone | ||
| - to | ||
rays22 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| logical_axioms: | ||
| - axiom_type: subClassOf | ||
| text: "'length' and 'characteristic_of' some %s" | ||
| vars: | ||
| - bone | ||
| - axiom_type: subClassOf | ||
| text: "'characteristic_of' some ('line' and 'connected_to' some %s)" | ||
rays22 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| vars: | ||
| - from | ||
| - axiom_type: subClassOf | ||
| text: "'characteristic_of' some ('line' and 'connected_to' some %s)" | ||
| vars: | ||
| - to | ||
| ... | ||
rays22 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.