Skip to content

Commit

Permalink
Merge pull request #1327 from biolink/remove_infores_import
Browse files Browse the repository at this point in the history
Remove infores import
  • Loading branch information
sierra-moxon authored May 24, 2023
2 parents 21dc15d + ab2f567 commit 1f1a48f
Show file tree
Hide file tree
Showing 7 changed files with 260 additions and 290 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Publish Python Package

on:
release:
types: [created]
push:
branches: [no_branch_here]

jobs:
build-n-publish:
Expand Down
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
CHANGES
=======
3.4.2
----
move GeneToPhenotypeAssociation to GeneToPhenotypicFeatureAssociation

3.4.1
-----
recreate wheel with pydantic included

3.4.0
-----
remove support for dynamic enumerations in anatomical context qualifier
Expand Down
6 changes: 2 additions & 4 deletions biolink-model.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license: https://creativecommons.org/publicdomain/zero/1.0/

# Version should be kept in sync with primary Git repository release tag

version: 3.4.0
version: 3.4.2


## ------------
Expand Down Expand Up @@ -203,7 +203,6 @@ subsets:

imports:
- linkml:types
- information-resource

types:

Expand Down Expand Up @@ -527,7 +526,6 @@ slots:
in_subset:
- translator_minimal


publication type:
slot_uri: dct:type
description: >-
Expand Down Expand Up @@ -9864,7 +9862,7 @@ classes:
- for use in describing the affect that the loss of function of a gene can have on exacerbating or ameliorating a symptom/phenotype
- if the relationship of the statement using this predicate is statistical in nature, please use `associated with likelihood` or one of its children.

gene to phenotype association:
gene to phenotypic feature association:
is_a: gene to disease or phenotypic feature association
exact_mappings:
- WBVocab:Gene-Phenotype-Association
Expand Down
4 changes: 2 additions & 2 deletions biolink/model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Auto generated from biolink-model.yaml by pythongen.py version: 0.9.0
# Generation date: 2023-05-23T23:23:30
# Generation date: 2023-05-23T17:37:18
# Schema: Biolink-Model
#
# id: https://w3id.org/biolink/biolink-model
Expand All @@ -25,7 +25,7 @@
from linkml_runtime.utils.metamodelcore import Bool, URIorCURIE, XSDDate, XSDTime

metamodel_version = "1.7.0"
version = "3.4.0"
version = "3.4.2"

# Overwrite dataclasses _init_fn to add **kwargs in __init__
dataclasses._init_fn = dataclasses_init_fn_with_kwargs
Expand Down
524 changes: 244 additions & 280 deletions biolink/pydanticmodel.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = biolink_model
description = 'A high level datamodel of biological entities and associations'
version = 3.4.0
version = 3.4.2

url = https://github.com/biolink/biolink-model
author = Harold Solbrig
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
REQUIREMENTS = FH.readlines()

NAME = 'biolink-model'
VERSION = '3.4.0'
VERSION = '3.4.2'

DESCRIPTION = 'Biolink Model: A high level datamodel of biological entities and associations'
URL = 'https://github.com/biolink/biolink-model'
Expand Down

0 comments on commit 1f1a48f

Please sign in to comment.