[PyMOL] Distance measurment

2009-07-12 Thread Rotem Sertchook
Hi all I have to measure a distance between one atom in one molecule (object) and second atom in many molecules (objects) - to do so interactively there is no problem: distance MODEL1//A/211/CA , ManyMODELS_*///100/CA. How can I write a script that will help to get the list of the distan

[PyMOL] PyMOLWiki MovieSchool

2009-07-12 Thread Jason Vertrees
PyMOLers, There's a new tutorial on the PyMOLWiki for making movies with the newer PyMOL versions 1.2+. It's detailed, covers concepts, and has scripts that you can directly copy/paste into PyMOL. So, if you have time and want to learn about making movies in PyMOL, check out the PyMOLWiki's

Re: [PyMOL] PyMOL-users Digest, Vol 38, Issue 9

2009-07-12 Thread Jason Vertrees
> Message: 6 > Date: Sat, 11 Jul 2009 23:34:01 -0700 > From: Donnie Berkholz > Subject: [PyMOL] Comparing B-factors of aligned residues > To: pymol-users@lists.sourceforge.net > Message-ID: <20090712063401.ga10...@comet> > Content-Type: text/plain; charset=us-ascii > > Hi all, > > I'm trying to

Re: [PyMOL] Comparing B-factors of aligned residues

2009-07-12 Thread Donnie Berkholz
On 10:11 Sun 12 Jul , Jason Vertrees wrote: > Donnie Berkholz wrote: > > I'm trying to compare the B-factors in two homologous proteins I > > aligned using 'super'. I can create an alignment object mapping > > residue pairs together, so I think what I want to do should be > > possible. I'd l

Re: [PyMOL] Comparing B-factors of aligned residues

2009-07-12 Thread Warren DeLano
Donnie, Please try: load $TUT/1hpv.pdb extract chA, chain A extract chB, chain B # assign some B values onto chA from random import random alter chACA, b=random() # show for later comparison... iterate chA///1-10/CA, chain,resi,b # generate an alignment align chACA, chBCA, o

Re: [PyMOL] Comparing B-factors of aligned residues

2009-07-12 Thread Donnie Berkholz
On 15:51 Sun 12 Jul , Warren DeLano wrote: > Donnie, > > Please try: > > > load $TUT/1hpv.pdb > > extract chA, chain A > > extract chB, chain B > > # assign some B values onto chA > > from random import random > > alter chACA, b=random() > > # show for later comparison... > > iter