Skip to content

Commit

Permalink
v1.3.8.17 (20/11/2019) - bug fix: refine routine in XChemCootReferenc…
Browse files Browse the repository at this point in the history
…e.py did not contain argument for covalent bonds (#270)
  • Loading branch information
Tobias Krojer authored Nov 20, 2019
1 parent 00288f7 commit 2cd68f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.3.8.17 (20/11/2019)
- bug fix: refine routine in XChemCootReference.py did not contain argument for covalent bonds

v1.3.8.16 (17/10/2019)
- added CompoundSMILESproduct field in DB to provide SMILES string of product of covalent binders
- new function to use phenix.ligandfit and rhofit to fit ligands into initial maps (all enantiomers are tried and best one is selected)
Expand Down
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.16'
xce_object.xce_version = 'v1.3.8.17'

# general settings
xce_object.allowed_unitcell_difference_percent = 12
Expand Down
2 changes: 1 addition & 1 deletion lib/XChemCootReference.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def REFINE(self,widget):
coot.write_pdb_file(item,os.path.join(self.reference_directory,self.refinementDir,'Refine_'+str(self.Serial),'in.pdb'))
break

self.Refine.RunRefmac(self.Serial,self.RefmacParams,self.external_software,self.xce_logfile)
self.Refine.RunRefmac(self.Serial,self.RefmacParams,self.external_software,self.xce_logfile,None)
# self.spinnerBox.add(self.refinementRunning)
# self.refinementRunning.start()
self.status_label.set_text('Refinement running...')
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: 17/10/2019 #\n'
' # Date: 20/11/2019 #\n'
' # #\n'
' # Authors: Tobias Krojer, Structural Genomics Consortium, Oxford, UK #\n'
' # [email protected] #\n'
Expand Down

0 comments on commit 2cd68f3

Please sign in to comment.