Skip to content

Commit 00e8b88

Browse files
authored
Merge pull request #71 from TranslatorSRI/ctd
Using a different bl
2 parents 972f619 + 8dd56a4 commit 00e8b88

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bl_lookup/bl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,12 @@ def get_models() -> (dict,dict):
102102
#This is what we really want, but there's a bit of bugs in 3.1.0 so until 3.1.1 we're gonna use mine
103103
#See the "latest" below as well
104104
#mappings.update({version: f'https://raw.githubusercontent.com/biolink/biolink-model/{version}/predicate_mapping.yaml'})
105-
mappings.update({version: f'https://raw.githubusercontent.com/biolink/biolink-model/cbizon-patch-3/predicate_mapping.yaml'})
105+
mappings.update({version: f'https://raw.githubusercontent.com/biolink/biolink-model/response/predicate_mapping.yaml'})
106106

107107
# tack on the latest version
108108
models.update({'latest': get_latest_bl_model_release_url()})
109109
#mappings.update({'latest': models['latest'].replace("biolink-model.yaml", "predicate_mapping.yaml")})
110-
mappings.update( {"latest": f'https://raw.githubusercontent.com/biolink/biolink-model/cbizon-patch-3/predicate_mapping.yaml'})
110+
mappings.update( {"latest": f'https://raw.githubusercontent.com/biolink/biolink-model/response/predicate_mapping.yaml'})
111111
return models, mappings
112112

113113

bl_lookup/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from bl_lookup.ubergraph import UberGraph
1414
from main import args
1515

16-
APP_VERSION = '1.4.0'
16+
APP_VERSION = '1.4.1'
1717
APP = FastAPI(title='Biolink Model Lookup', version=APP_VERSION)
1818

1919
biolink_data = dict()

0 commit comments

Comments
 (0)