[PyMOL] Unequal sizes of spheres - how?

2009-08-26 Thread Andy Millston
I want to show different water molecules in an image with spheres of different radii. Is there any way to do that in Pymol? Can the same be done with different Ca atoms? Thank you -- Let Crystal Reports handle

[PyMOL] Inexplicable exception raised by cmd.color()

2009-08-26 Thread Stuart Ballard
Hello Warren, all, When attempting to execute this block of code: colors = [red,orange,yellow,green,blue,purple,salmon,grey,pink,teal,brown] for i in range(10): cmd.color(colors[i], sym0 + str(i) + *) The following error message is displayed: Traceback (most recent call last):

Re: [PyMOL] Inexplicable exception raised by cmd.color()

2009-08-26 Thread Warren DeLano
Stuart, Hmm...it appear that QuietException is being thrown when the input pattern fails to match any valid object name (but without an error message being printed). The easiest immediate workaround is to simply swallow the exception. for i in range(10): try: cmd.color(colors[i],