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

response to predicate additions #1525

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
109 changes: 106 additions & 3 deletions biolink-model.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,27 +213,32 @@
- Should be implemented as a stronger type

iri type:
uri: xsd:string
typeof: uriorcurie
description: >-
An IRI

label type:
uri: xsd:string
typeof: string
description: >-
A string that provides a human-readable name for an entity

predicate type:
uri: xsd:string
typeof: uriorcurie
description: >-
A CURIE from the biolink related_to hierarchy.
For example, biolink:related_to, biolink:causes, biolink:treats.

narrative text:
uri: xsd:string
typeof: string
description: >-
A string that provides a human-readable description of something

symbol type:
uri: xsd:string
typeof: string

frequency value:
Expand All @@ -258,9 +263,11 @@
- qud:Unit

time type:
uri: xsd:string
typeof: time

biological sequence:
uri: xsd:string
typeof: string

## ------------
Expand Down Expand Up @@ -1161,12 +1168,26 @@
- SNOMED:has_route_of_administration


response context qualifier:
description: >-
a biological response (general, study, cohort, etc.) with a specific set of characteristics to constrain
an association.
is_a: context qualifier
range: ResponseEnum

response target context qualifier:
description: >-
a biological response target (a patient, a cohort, a model system, a cell line, a sample of biological material,
etc.)
is_a: context qualifier
range: ResponseTargetEnum

population context qualifier:
description: >-
a biological population (general, study, cohort, etc.) with a specific
set of characteristics to constrain an association.
is_a: qualifier
range: population of individual organisms
range: population of individual organisms # TODO: harmonize with 'response target context qualifier'

Check warning on line 1190 in biolink-model.yaml

View workflow job for this annotation

GitHub Actions / build (3.9)

1190:47 [comments] too few spaces before comment

Check warning on line 1190 in biolink-model.yaml

View workflow job for this annotation

GitHub Actions / validate-yaml

1190:47 [comments] too few spaces before comment

Check warning on line 1190 in biolink-model.yaml

View workflow job for this annotation

GitHub Actions / build (3.10)

1190:47 [comments] too few spaces before comment

temporal context qualifier:
description: >-
Expand Down Expand Up @@ -2577,8 +2598,38 @@
another existing entity.
inverse: affects

associated with sensitivity to:
associated with response to:
is_a: associated with
description: >-
A statistical association used to indicate that the object of a statement using this predicate
induces a response of some kind in the subject entity. Intentionally broad in definition, this predicate
should be used with qualifiers to narrow the type of response (E.g. whether the response is therapeutic,
phenotypic, detrimental, resistant, etc. is captured in context, direction, and
aspect qualifiers).
annotations:
canonical_predicate: true
comments: >-
subject: NCBIGene:2064 # HER2
subject_aspect: Amplification
predicate: associated with response to
object: CHEBI:10035 # Trastuzumab
response_type_qualifier: therapeutic_sensitivity
response_direction_qualifer: increased
response_target_qualifier: human patient
disease_context_qualifier: MONDO:0007254 # breast cancer

subject: MONDO:0007254
predicate: associated with response to
qualified_predicate: associated with
object: CHEBI:10035 # Trastuzumab
response_context_qualifier: therapeutic_sensitivity

response associated with:
is_a: associated with
inverse: associated with response to

associated with sensitivity to:
is_a: associated with response to
description: >-
A relation that holds between a named thing and a chemical
that specifies that the change in the named
Expand All @@ -2599,7 +2650,7 @@
domain: chemical entity

associated with resistance to:
is_a: associated with
is_a: associated with response to
description: >-
A relation that holds between a named thing and a chemical
that specifies that the change in the named
Expand Down Expand Up @@ -9359,6 +9410,30 @@
- owl:Axiom


disease associated with response to chemical entity association:
description: >-
A statistical association between a disease and a chemical entity where the
chemical entity has a therapeutic or adverse effect on the disease progression, symptoms or outcomes
in a patient, cell line, or any model system.
is_a: association
slots:
- response context qualifier
- response target context qualifier
defining_slots:
- subject
- predicate
- object
- response context qualifier
- response target context qualifier
slot_usage:
subject:
range: disease
object:
range: chemical entity
predicate:
subproperty_of: associated with response to


chemical entity assesses named thing association:
is_a: association
slot_usage:
Expand Down Expand Up @@ -11536,6 +11611,34 @@

enums:

ResponseEnum:
description: >-
A response to a treatment or intervention
permissible_values:
therapeutic_response:
description: >-
A positive response to a treatment or intervention
negative:
description: >-
A negative response to a treatment or intervention

ResponseTargetEnum:
description: >-
The target of a treatment or intervention
permissible_values:
cohort:
description: >-
A group of individuals that are the target of a treatment or intervention
cell line:
description: >-
A cell line that is the target of a treatment or intervention
individual:
description: >-
An individual that is the target of a treatment or intervention
sample:
description: >-
A biological materialsample that is the target of a treatment or intervention

ApprovalStatusEnum:
description: >-
permissible_values:
Expand Down
Loading
Loading