Traceback (most recent call last):
File "/home/thomas/Programs/Chimera/share/chimeraInit.py", line 698, in init
midas_text.doRunScript("runscript", script)
File "/home/thomas/Programs/Chimera/share/Midas/midas_text.py", line 2248, in doRunScript
execfile(scriptPath, scriptGlobals)
File "/usr/local/bin/protonate_receptor.py", line 12, in <module>
from ete3 import Tree
ImportError: No module named ete3
hi Thomas,I’m pretty sure this would have to be a Python script. The general idea would be to select residues within a certain distance of the ligand, systematically change their names to indicate alternative protonation states, delete all protons and then run AddH and write out PDBs. Since you have an indeterminate number of loops needed, I would use recursion, so something like:pdb_num = 1from chimera import runCommand as rcrc(“sel ligands z<DIST”)from chimera.selection import currentResiduesresidues = currentResidues()def change_protonation(remaining_residues):if not remaining_residues:global pdb_numrc(“del H”)rc(“addh”)rc(“write %d.pdb” % pdb_num)pdb_num += 1returnr = remaining_residues[0]if r.type == “GLU”:states = [“GLU”, “GLH”]elif r.type == “ASP”:states = [“ASP”, “ASH”]elif r.type == “HIS”:etc….else:states = [r.type]for state in states:r.type = statechange_protonation(remaining_residues[1:])change_protonation(residues)The script is incomplete and I haven’t tested it, but you get the idea.—EricEric PettersenUCSF Computer Graphics Lab
On Mar 19, 2019, at 7:59 AM, Thomas Evangelidis <tevang3@gmail.com> wrote:_______________________________________________Greetings,I want to write a script that will read a protein-ligand complex, will find all residues with alternative protonation states within a radius from the ligand, and will write to separate pdb files all combinations of alternative protonations or the protein's binding site. Is this possible in Chimera? I saw at the documentation of addh command that there is not a way to specify explicitly which residues to protonate and how (e.g. I can protonate all ASP to ASH but not ASP34 to ASH34 and keep ASP52 as it is).Thanks in advance.Thomas--======================================================================
Dr Thomas Evangelidis
Research Scientist
IOCB - Institute of Organic Chemistry and Biochemistry of the Czech Academy of Sciences
CEITEC - Central European Institute of TechnologyPrague, Czech Republic&
Brno, Czech Republic
Chimera-users mailing list: Chimera-users@cgl.ucsf.edu
Manage subscription: http://plato.cgl.ucsf.edu/mailman/listinfo/chimera-users
======================================================================
Dr Thomas Evangelidis
Research Scientist
IOCB - Institute of Organic Chemistry and Biochemistry of the Czech Academy of Sciences