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

Add abnormal thickness of anat. entity template #843

Merged
merged 4 commits into from
Jul 11, 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
56 changes: 56 additions & 0 deletions src/patterns/dosdp-dev/abnormalThicknessOfAnatomicalEntity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
pattern_name: abnormalThicknessOfAnatomicalEntity

pattern_iri: http://purl.obolibrary.org/obo/upheno/patterns-dev/abnormalThicknessOfAnatomicalEntity.yaml

description: 'Use this phenotype pattern when an anatomical entity displays abnormal thickness.'
rays22 marked this conversation as resolved.
Show resolved Hide resolved

# examples:
# - http://purl.obolibrary.org/obo/HP_0011486 # Abnormality of corneal thickness
# - http://purl.obolibrary.org/obo/MP_0011961 # abnormal cornea thickness
# - http://purl.obolibrary.org/obo/MP_0020135 # abnormal heart ventricle wall thickness

contributors:
- https://orcid.org/0000-0001-8314-2140 # Ray Stefancsik
rays22 marked this conversation as resolved.
Show resolved Hide resolved

classes:
thickness: PATO:0000915
abnormal: PATO:0000460
anatomical_entity: UBERON:0001062

relations:
characteristic_of: RO:0000052
has_modifier: RO:0002573
has_part: BFO:0000051

annotationProperties:
exact_synonym: oio:hasExactSynonym

vars:
anatomical_entity: "'anatomical_entity'"

name:
text: "abnormal %s thickness"
vars:
- anatomical_entity

annotations:
- annotationProperty: exact_synonym
text: "%s thickness abnormality"
vars:
- anatomical_entity

def:
text: "Abnormal thickness of %s in a dimension that is perpendicular to its length or width."
vars:
- anatomical_entity

equivalentTo:
text: "'has_part' some (
'thickness' and
('characteristic_of' some %s) and
('has_modifier' some 'abnormal')
)"
vars:
- anatomical_entity
...