Skip to content

Commit

Permalink
v1.3.8.10 (#254)
Browse files Browse the repository at this point in the history
v1.3.8.9 (07/08/2019)
- removed obsolete 'Run DIMPLE on All Autoprocessing MTZ files' option from yellow Datasets action box
- added option to parse Agamemnon data structure at DLS
* v1.3.8.10 (14/08/2019) 
- bug fix: update DB from file system now looks for refine.split.bound-state.pdb instead of refine.bound.pdb
  • Loading branch information
Tobias Krojer committed Aug 15, 2019
1 parent acf5ad9 commit 8281f44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gui_scripts/settings_preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def set_xce_logfile(self, xce_object):

def settings(self, xce_object):
# set XCE version
xce_object.xce_version = 'v1.3.8.9'
xce_object.xce_version = 'v1.3.8.10'

# general settings
xce_object.allowed_unitcell_difference_percent = 12
Expand Down
2 changes: 1 addition & 1 deletion lib/XChemLog.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_logfile(self,version):
' # #\n'
' # Version: %s #\n' %pasteVersion+
' # #\n'
' # Date: 07/08/2019 #\n'
' # Date: 14/08/2019 #\n'
' # #\n'
' # Authors: Tobias Krojer, Structural Genomics Consortium, Oxford, UK #\n'
' # [email protected] #\n'
Expand Down
4 changes: 2 additions & 2 deletions lib/XChemThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ def sync_refinement_results(self,xtal,db_dict):
# REFINE bound pdb
#

if os.path.isfile('refine.bound.pdb'):
db_dict['RefinementBoundConformation']=os.path.realpath('refine.bound.pdb')
if os.path.isfile('refine.split.bound-state.pdb'):
db_dict['RefinementBoundConformation']=os.path.realpath('refine.split.bound-state.pdb')
# db_dict['RefinementBoundConformation']='refine.bound.pdb'
else:
# if os.path.isfile('refine.pdb'):
Expand Down

0 comments on commit 8281f44

Please sign in to comment.