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 medical action above treatment, plus action to disease & action to phenotype associations #1523

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
80 changes: 78 additions & 2 deletions src/biolink_model/schema/biolink_model.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9156,10 +9156,16 @@ classes:
mixins:
- gene grouping mixin

treatment:
medical action:
aliases: ['medical action', 'medical intervention']
# 'named thing' seems too generic here but not sure what applies better here
is_a: named thing
description: >-
A clinically prescribed procedure, therapy, intervention, or recommendation.
exact_mappings:
- MAXO:0000001

treatment:
is_a: medical action
mixins:
- exposure event
- chemical or drug or treatment
Expand Down Expand Up @@ -9347,6 +9353,22 @@ classes:
- retrieval source ids
- p value
- adjusted p value
- subject aspect qualifier
- subject direction qualifier
- subject form or variant qualifier
- subject part qualifier
- subject derivative qualifier
- subject context qualifier
- qualified predicate
- object aspect qualifier
- object direction qualifier
- object form or variant qualifier
- object part qualifier
- object derivative qualifier
- object context qualifier
- causal mechanism qualifier
- anatomical context qualifier
- species context qualifier
slot_usage:
type:
description: rdf:type of biolink:Association should be fixed at rdf:Statement
Expand Down Expand Up @@ -9786,6 +9808,46 @@ classes:
range: disease or phenotypic feature
description: "the disease or phenotype that is affected by the chemical"

medical action to disease or phenotypic feature association:
is_a: association
description: >-
This association defines a relationship between a medical action and a disease or phenotypic feature
defining_slots:
- subject
- predicate
- object
mixins:
- medical action to entity association mixin
- entity to disease or phenotypic feature association mixin
slot_usage:
predicate:
subproperty_of:

medical action to disease association:
is_a: medical action to disease or phenotypic feature association
description: >-
This association defines a relationship between a medical action and a disease
defining_slots:
- subject
- predicate
- object
mixins:
- medical action to entity association mixin
- entity to disease association mixin

medical action to phenotypic feature association:
is_a: medical action to disease or phenotypic feature association
description: >-
This association defines a relationship between a medical action and a phenotypic feature
defining_slots:
- subject
- predicate
- object
mixins:
- medical action to entity association mixin
- entity to phenotypic feature association mixin


chemical or drug or treatment to disease or phenotypic feature association:
description: >-
This association defines a relationship between a chemical or treatment (or procedure) and a disease or phenotypic feature
Expand Down Expand Up @@ -10246,6 +10308,20 @@ classes:
- object direction qualifier
- qualified predicate

medical action to entity association mixin:
description: >-
An association between a medical action and another entity
mixin: true
slots:
- subject
- predicate
- object
defining_slots:
- subject
slot_usage:
subject:
range: medical action

entity to phenotypic feature association mixin:
mixin: true
is_a: entity to feature or disease qualifiers mixin
Expand Down
Loading