Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help
Special pages
SBGrid Resources
SBGrid Consortium
SBGrid Data Bank
Software Webinars
PyMOL Webinar
PyMOL Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Sidechaincenters
(section)
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
= The Script = <source lang="python"> ''' (c) 2010 Thomas Holder ''' from pymol import cmd from chempy import Atom, cpv, models sidechaincenteratoms = { 'GLY': ('CA',), 'ALA': ('CB',), 'VAL': ('CG1', 'CG2'), 'ILE': ('CD1',), 'LEU': ('CD1', 'CD2'), 'SER': ('OG',), 'THR': ('OG1', 'CG2'), 'ASP': ('OD1', 'OD2'), 'ASN': ('OD1', 'ND2'), 'GLU': ('OE1', 'OE2'), 'GLN': ('OE1', 'NE2'), 'LYS': ('NZ',), 'ARG': ('NE', 'NH1', 'NH2'), 'CYS': ('SG',), 'MET': ('SD',), 'MSE': ('SE',), 'PHE': ('CG', 'CD1', 'CD2', 'CE1', 'CE2', 'CZ'), 'TYR': ('CG', 'CD1', 'CD2', 'CE1', 'CE2', 'CZ', 'OH'), 'TRP': ('CG', 'CD1', 'CD2', 'NE1', 'CE2', 'CE3', 'CZ2', 'CZ3'), 'HIS': ('CG', 'ND1', 'CD2', 'CE1', 'NE2'), 'PRO': ('CB', 'CG', 'CD'), } def sidechaincenters(object='scc', selection='all', name='PS1', method='bahar1996'): ''' DESCRIPTION Creates an object with sidechain representing pseudoatoms for each residue in selection. Sidechain interaction centers as defined by Bahar and Jernigan 1996 http://www.ncbi.nlm.nih.gov/pubmed/9080182 USAGE sidechaincenters object [, selection] ARGUMENTS object = string: name of object to create selection = string: atoms to consider {default: (all)} name = string: atom name of pseudoatoms {default: PS1} SEE ALSO sidechaincentroids, pseudoatom ''' atmap = dict() if method == 'bahar1996': modelAll = cmd.get_model('(%s) and resn %s' % (selection, '+'.join(sidechaincenteratoms))) for at in modelAll.atom: if at.name in sidechaincenteratoms[at.resn]: atmap.setdefault((at.segi, at.chain, at.resn, at.resi), []).append(at) elif method == 'centroid': modelAll = cmd.get_model('(%s) and not (hydro or name C+N+O)' % selection) for at in modelAll.atom: atmap.setdefault((at.segi, at.chain, at.resn, at.resi), []).append(at) else: print('Error: unknown method:', method) return model = models.Indexed() for centeratoms in atmap.values(): center = cpv.get_null() for at in centeratoms: center = cpv.add(center, at.coord) center = cpv.scale(center, 1./len(centeratoms)) atom = Atom() atom.coord = center atom.index = model.nAtom + 1 atom.name = name for key in ['resn','chain','resi','resi_number','hetatm','ss','segi']: setattr(atom, key, getattr(at, key)) model.add_atom(atom) model.update_index() if object in cmd.get_object_list(): cmd.delete(object) cmd.load_model(model, object) return model def sidechaincentroids(object='scc', selection='all', name='PS1'): ''' DESCRIPTION Sidechain centroids. Works like "sidechaincenters", but the pseudoatom is the centroid of all atoms except hydrogens and backbone atoms (N, C and O). NOTE If you want to exclude C-alpha atoms from sidechains, modify the selection like in this example: sidechaincentroids newobject, all and (not name CA or resn GLY) SEE ALSO sidechaincenters ''' return sidechaincenters(object, selection, name, method='centroid') cmd.extend('sidechaincenters', sidechaincenters) cmd.extend('sidechaincentroids', sidechaincentroids) cmd.auto_arg[1].update({ 'sidechaincenters' : [ cmd.selection_sc , 'selection' , '' ], 'sidechaincentroids' : [ cmd.selection_sc , 'selection' , '' ], }) # vi: ts=4:sw=4:smarttab:expandtab </source> [[Category:Script_Library]] [[Category:Structural_Biology_Scripts]]
Summary:
Please note that all contributions to PyMOL Wiki are considered to be released under the GNU Free Documentation License 1.2 (see
PyMOL Wiki:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Sidechaincenters
(section)
Add topic