This is a read-only mirror of pymolwiki.org

Main Page

From PyMOL Wiki
Jump to navigation Jump to search
hosted by SBGridlogo2.jpg
Welcome to the PyMOL Wiki!
The community-run support site for the PyMOL molecular viewer.
To request a new account, email SBGrid at: accounts (@) sbgrid dot org
Quick Links
Tutorials Table of Contents Commands
Script Library Plugins FAQ
Gallery | Covers PyMOL Cheat Sheet (PDF) Getting Help
News & Updates
Official Release PyMOL v2.5 has been released on May 10, 2021.
Python 3 New Python 3 compatibility guide for scripts and plugins
POSF New PyMOL fellows announced for 2018-2019
Tutorial Plugins Tutorial updated for PyQt5
New Plugin PICv is a new plugin for clustering protein-protein interactions and visualization with available data from PDBe
Selection keywords New polymer.protein and polymer.nucleic selection keywords. Thanks everyone who participated in the poll!
Plugin Update MOLE 2.5 is an updated version of channel analysis software in PyMOL
New Script dssr_block is a wrapper for DSSR (3dna) and creates block-shaped nucleic acid cartoons
Older News See Older News.
Did you know...

Translate And Measure

To use, you would call it like :
print translateAndMeasure("molA", "molB", [1,0,0], 4)

which would print "overlap" if any of the atoms in molA or molB were within 4 Angstrom after translating by 1 along X.

Of course, this could be improved to report exactly which atoms were overlapping, or to make distance objects (using cmd.distance) to show them.

<source lang="python"> def translateAndMeasure(selection, other, translationVector, cutoff):

   cmd.translate(translationVector, selection)
   return checkDistances(selection, other, cutoff)

def checkDistances(moleculeA, moleculeB, cutoff):

   ids_A = getIds(moleculeA)
   ids_B = getIds(moleculeB)
   for idA in ids_A:
       for idB in idsB:
           d = distance(moleculeA, idA, moleculeB, idB)
           if d > cutoff: return "overlap"
   return "no overlap"

def distance(a, idA, b, idB):

   atomA = "%s and id %s" % (a, idA)
   atomB = "%s and id %s" % (b, idB)
   return cmd.get_distance(atomA, atomB)

def getIds(selection):

   my_dict  ..→
A Random PyMOL-generated Cover. See Covers.