Skip to content

Commit

Permalink
Merge pull request #80 from rcsb/dev-dwp
Browse files Browse the repository at this point in the history
V1.27 Update order of CARD resource cache loading
  • Loading branch information
piehld authored Aug 27, 2024
2 parents b890f54 + 4ead5d1 commit 96ec0e2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,4 @@
25-Jul-2024 - V1.25 Update ligand neighbor calculations and populate them into polymer entity instance features;
Remove NeighborInteractionProvider from DictMethodResourceProvider, since will now be calculating interactions on the fly
20-Aug-2024 - V1.26 Add support for accessing target cofactor data from MongoDB
27-Aug-2024 - V1.27 Update order of CARD resource cache loading
2 changes: 1 addition & 1 deletion rcsb/utils/dictionary/DictMethodResourceCacheWorkflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ def syncResourceCache(self):
"DrugBankTargetCofactorProvider instance",
"ChEMBLTargetCofactorProvider instance",
"PharosTargetCofactorProvider instance",
"CARDTargetAnnotationProvider instance",
"CARDTargetOntologyProvider instance",
"CARDTargetAnnotationProvider instance",
"IMGTTargetFeatureProvider instance",
"SAbDabTargetFeatureProvider instance",
]:
Expand Down
8 changes: 4 additions & 4 deletions rcsb/utils/dictionary/DictMethodResourceProvider.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,15 +329,15 @@ def __init__(self, cfgOb, **kwargs):
"buildable": False,
"providerType": "optional",
},
"CARDTargetAnnotationProvider instance": {
"class": CARDTargetAnnotationProvider,
"CARDTargetOntologyProvider instance": {
"class": CARDTargetOntologyProvider,
"configArgMap": {},
"stashable": True,
"buildable": False,
"providerType": "optional",
},
"CARDTargetOntologyProvider instance": {
"class": CARDTargetOntologyProvider,
"CARDTargetAnnotationProvider instance": {
"class": CARDTargetAnnotationProvider,
"configArgMap": {},
"stashable": True,
"buildable": False,
Expand Down
2 changes: 1 addition & 1 deletion rcsb/utils/dictionary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
__author__ = "John Westbrook"
__email__ = "[email protected]"
__license__ = "Apache 2.0"
__version__ = "1.26"
__version__ = "1.27"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
scipy
numpy
mmcif >= 0.88.0
mmcif >= 0.89.0
rcsb.utils.chemref >= 0.91
rcsb.utils.citation >= 0.22
rcsb.utils.config >= 0.40
Expand All @@ -10,7 +10,7 @@ rcsb.utils.multiproc >= 0.19
rcsb.utils.repository >= 0.43
rcsb.utils.seq >= 0.82
rcsb.utils.struct >= 0.47
rcsb.utils.targets >= 0.80
rcsb.utils.targets >= 0.82
rcsb.utils.taxonomy >= 0.43
rcsb.utils.validation >= 0.31
rcsb.utils.insilico3d >= 0.38

0 comments on commit 96ec0e2

Please sign in to comment.