Mark, That doesn't work...yet. Generalized wildcarding is in the works for PyMOL.
Cheers, Warren -- Warren L. DeLano, Ph.D. Principal Scientist . DeLano Scientific LLC . 400 Oyster Point Blvd., Suite 213 . South San Francisco, CA 94080 . Biz:(650)-872-0942 Tech:(650)-872-0834 . Fax:(650)-872-0273 Cell:(650)-346-1154 . mailto:war...@delsci.com > -----Original Message----- > From: pymol-users-ad...@lists.sourceforge.net > [mailto:pymol-users-ad...@lists.sourceforge.net] On Behalf Of > Mark A Saper > Sent: Wednesday, March 09, 2005 8:01 AM > To: Pymol > Subject: [PyMOL] combine distance objects > > How about > disable _dist* > enable _dist* > > Mark > _________________________________ > Mark A. Saper, Ph.D. > Associate Professor of Biological Chemistry Biophysics > Research Division, University of Michigan Chemistry Building > Room 3040 930 N University Ave Ann Arbor MI 48109-1055 U.S.A. > > sa...@umich.edu (734) 764-3353 fax > (734) 764-3323 > http://www.biochem.med.umich.edu/biochem/research/profiles/saper.html > On Mar 8, 2005, at 11:27 PM, pymol-users-requ...@lists.sourceforge.net > wrote: > > > Send PyMOL-users mailing list submissions to > > pymol-users@lists.sourceforge.net > > > > To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/pymol-users > > or, via email, send a message with subject or body 'help' to > > pymol-users-requ...@lists.sourceforge.net > > > > You can reach the person managing the list at > > pymol-users-ad...@lists.sourceforge.net > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of PyMOL-users digest..." > > > > > > Today's Topics: > > > > 1. Re: combine distance objects (Robert Campbell) > > 2. [Re: [PyMOL] combine distance objects] (Viktor Hornak) > > 3. Re: combine distance objects (Michael George Lerner) > > 4. RE: combine distance objects (Garcia, Tzintzuni I.) > > > > --__--__-- > > > > Message: 1 > > Date: Tue, 8 Mar 2005 10:55:20 -0500 > > From: Robert Campbell <r...@post.queensu.ca> > > To: pymol-users@lists.sourceforge.net > > Subject: Re: [PyMOL] combine distance objects > > > > Hi, > > > >> Daniel Farrell [Monday, March 07, 2005 1:23 PM] wrote: > >>> > >>> I want to create a lot of distance objects (in the > hundreds) between > >>> particular atomic pairs. Obviously I can make a script like the > >>> following, inserting the exact atomic selections that I want: > >>> > >>> distance distobj12 = (atom1), (atom2) distance distobj34 > = (atom3), > >>> (atom4) ... etc. > >>> > >>> However, I will end up with hundreds of distance object > controls on > >>> the right side of the pymol viewer. I want to have just a SINGLE > >>> distance object that contains all of the individual > distance objects > >>> combined. > >>> That way I could enable/disable the entire object with a single > >>> click, or change the color, etc. Hundreds of individual objects > >>> would be unmanageable. > >>> > >>> Is there a way to do this? Thanks, > > > > * Warren L. DeLano <war...@delanoscientific.com> [2005-03-07 13:46] > > wrote: > >> > >> This is a reasonable request, but no, it isn't possible > right now -- > >> sorry. > >> > >> If it isn't necessary to be able to turn the distances on and off, > >> then you can name them using a preceeding underscore "_" > so that they > >> are omitted from the object list. > > > > But in fact one *can* still turn them on and off, with the > "enable" or > > "disable" command on the command line: > > > > enable _dist1 > > disable _dist1 > > > > And it would be straightforward to put those commands within a loop: > > > > # turn them all off: > > for i in range(100): > > cmd.disable("_dist1%s" % i) > > > > # turn them all on: > > for i in range(100): > > cmd.enable("_dist1%s" % i) > > > > Change "100" to whatever is appropriate. > > > > Cheers, > > Rob > > -- > > Robert L. Campbell, Ph.D. > > <r...@post.queensu.ca> > > Senior Research Associate phone: > > 613-533-6821 > > Dept. of Biochemistry, Queen's University, fax: > > 613-533-2497 > > Kingston, ON K7L 3N6 Canada > > http://adelie.biochem.queensu.ca/~rlc > > PGP Fingerprint: 9B49 3D3F A489 05DC B35C 8E33 F238 A8F5 F635 > > C0E2 > > > > > > --__--__-- > > > > Message: 2 > > Date: Tue, 08 Mar 2005 11:31:16 -0500 > > From: Viktor Hornak <hor...@csb.sunysb.edu> > > To: pymol-users@lists.sourceforge.net > > Subject: [Re: [PyMOL] combine distance objects] > > > > > > Robert Campbell wrote: > > > >> Hi, > >> > >>> Daniel Farrell [Monday, March 07, 2005 1:23 PM] wrote: > >>> > >>>> I want to create a lot of distance objects (in the hundreds) > >>>> between particular atomic pairs. Obviously I can make a script > >>>> like the following, inserting the exact atomic selections that I > >>>> want: > >>>> > >>>> distance distobj12 = (atom1), (atom2) distance distobj34 > = (atom3), > >>>> (atom4) ... etc. > >>>> > >>>> However, I will end up with hundreds of distance object > controls on > >>>> the right side of the pymol viewer. I want to have just > a SINGLE > >>>> distance object that contains all of the individual distance > >>>> objects combined. > >>>> That way I could enable/disable the entire object with a single > >>>> click, or change the color, etc. Hundreds of individual objects > >>>> would be unmanageable. > >>>> > >>>> Is there a way to do this? Thanks, > >>>> > >> > >> * Warren L. DeLano <war...@delanoscientific.com> [2005-03-07 13:46] > >> wrote: > >> > >>> This is a reasonable request, but no, it isn't possible > right now -- > >>> sorry. > >>> > >>> If it isn't necessary to be able to turn the distances on > and off, > >>> then you can name them using a preceeding underscore "_" so that > >>> they are omitted from the object list. > >>> > >> > >> But in fact one *can* still turn them on and off, with the > "enable" > >> or "disable" command on the command line: > >> > >> enable _dist1 > >> disable _dist1 > >> > >> And it would be straightforward to put those commands > within a loop: > >> > >> # turn them all off: > >> for i in range(100): > >> cmd.disable("_dist1%s" % i) > >> > >> # turn them all on: > >> for i in range(100): > >> cmd.enable("_dist1%s" % i) > >> > >> Change "100" to whatever is appropriate. > >> > >> Cheers, > >> Rob > >> > > > > Even though the scripting of this sort is flexible and will get you > > what you want, I'd still support Daniels's suggestion. Grouping > > multiple objects (not just distances) would be extremely useful > > because one can split the objects into functional or > logical units and > > collectively manipulate their properties (e.g. color, > state, graphical > > representation) and it would be more interactive than scripting the > > same functionality. I can imagine however, that > incorporating object > > hierarchy/grouping into PyMol may not be a trivial task... > > > > Cheers, > > -Viktor > > > > -- > > ============================= > > Viktor Hornak > > Center for Structural Biology > > SUNY at Stony Brook > > ============================= > > > > > > > > > > --__--__-- > > > > Message: 3 > > Date: Tue, 8 Mar 2005 11:42:28 -0500 (EST) > > From: Michael George Lerner <mler...@umich.edu> > > To: Robert Campbell <r...@post.queensu.ca> > > cc: pymol-users@lists.sourceforge.net > > Subject: Re: [PyMOL] combine distance objects > > > > > > On Tue, 8 Mar 2005, Robert Campbell wrote: > > > >> Hi, > >> > >>> Daniel Farrell [Monday, March 07, 2005 1:23 PM] wrote: > >>>> > >>>> I want to create a lot of distance objects (in the hundreds) > >>>> between particular atomic pairs. Obviously I can make a > >>>> script like the following, inserting the exact atomic > >>>> selections that I want: > >>>> > >>>> distance distobj12 = (atom1), (atom2) > >>>> distance distobj34 = (atom3), (atom4) > >>>> ... etc. > >>>> > > > >> But in fact one *can* still turn them on and off, with the > "enable" or > >> "disable" command on the command line: > >> > >> enable _dist1 > >> disable _dist1 > >> > >> And it would be straightforward to put those commands > within a loop: > >> > >> # turn them all off: > >> for i in range(100): > >> cmd.disable("_dist1%s" % i) > >> > >> # turn them all on: > >> for i in range(100): > >> cmd.enable("_dist1%s" % i) > >> > >> Change "100" to whatever is appropriate. > > > > I was just about to write something like this. In fact, I > have tons of > > files called something like x.py sprinkled around that do > things like > > > > ----------------------------------------- > > from pymol import cmd > > num_dist = 100 > > > > def show_dist(): > > """ show all of my distance objects """ > > for i in range(num_dist): > > cmd.enable('_dist%s'%i) > > > > def hide_dist(): > > """ hide all of my distance objects """ > > for i in range(num_dist): > > cmd.disable('_dist%s'%i) > > > > cmd.extend('sd',show_dist) > > cmd.extend('hd',hide_dist) > > ----------------------------------------- > > > > You could also try something cute like > > > > def show_dist(): > > dists = [name for name in cmd.get_names() if > cmd.get_type(name) == > > 'object:distance'] > > for name in dists: cmd.enable(name) > > > > etc. > > > > if you don't want to have to keep track of how many there are. > > > > -michael > > > > -- > > www.umich.edu/~mlerner | _ |Michael Lerner > > This isn't a democracy;| ASCII ribbon campaign ( ) | Michigan > > it's a cheer-ocracy. | - against HTML email X | Biophysics > > -Torrence, Bring It On| / \ | mler...@umich > > > >> Cheers, > >> Rob > >> -- > >> Robert L. Campbell, Ph.D. > >> <r...@post.queensu.ca> > >> Senior Research Associate phone: > >> 613-533-6821 > >> Dept. of Biochemistry, Queen's University, fax: > >> 613-533-2497 > >> Kingston, ON K7L 3N6 Canada > >> http://adelie.biochem.queensu.ca/~rlc > >> PGP Fingerprint: 9B49 3D3F A489 05DC B35C 8E33 F238 > A8F5 F635 C0E2 > >> > >> > >> ------------------------------------------------------- > >> SF email is sponsored by - The IT Product Guide > >> Read honest & candid reviews on hundreds of IT Products from real > >> users. > >> Discover which products truly live up to the hype. Start > reading now. > >> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > >> _______________________________________________ > >> PyMOL-users mailing list > >> PyMOL-users@lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/pymol-users > >> > >> > >> > > > > > > --__--__-- > > > > Message: 4 > > Subject: RE: [PyMOL] combine distance objects > > Date: Tue, 8 Mar 2005 14:11:39 -0600 > > From: "Garcia, Tzintzuni I." <tzgar...@utmb.edu> > > To: <pymol-users@lists.sourceforge.net> > > > > > UmVhZGluZyB0aGlzIHRocmVhZCBnYXZlIG1lIHRoZSBpZGVhIHRoYXQgbWF5Ym > UgYSBnb29 > > kIGZl > > > YXR1cmUgZm9yIGFuIHVwY29taW5nIHJlbGVhc2UgbWlnaHQgYmUgdGhlIGFkZG > l0aW9uIG9 > > mIHNv > > > bWV0aGluZyBsaWtlIGZvbGRlcnMgdG8gdGhlIG9iamVjdC9zZWxlY3Rpb24gYm > FyIG9uIHR > > oZSBy > > > aWdodCwgdGhpcyB3YXkgb2JqZWN0cyBhbmQgc2VsZWN0aW9ucyBjb3VsZCBiZS > Bncm91cGV > > kIGFu > > > ZCBhZmZlY3RlZCBhbGwgYXQgb25jZS4gIEkgdGhpbmsgdGhpcyB3b3VsZCBiZS > BleHRyZW1 > > lbHkg > > > dXNlZnVsIGZvciBtYWtpbmcgZmlndXJlcyB3aGVyZSB5b3Ugb2Z0ZW4gaGF2ZS > BtdWx0aXB > > sZSBv > > > YmplY3RzIGFuZCBzZWxlY3Rpb25zIGFsbCBjb252ZXJnaW5nIHRvIGlsbHVzdH > JhdGUgb25 > > lIHBv > > > aW50LiAgUGx1cyBpdCB3b3VsZCBoZWxwIHRvIHJlZHVjZSB0aGUgY2x1dHRlci > B5b3UgYnV > > pbGQg > > > dXAgaWYgeW91IGNvdWxkIG9wZW4gYW5kIGNsb3NlIHRoZSBmb2xkZXIgdG8gc2 > hvdyBvciB > > oaWRl > > > IGl0cyBjb250ZW50cyBpbiB0aGUgcmVzb3VyY2UgYmFyLg0KIA0KLVR6dW5pDQ > oNCgktLS0 > > tLU9y > > > aWdpbmFsIE1lc3NhZ2UtLS0tLSANCglGcm9tOiBweW1vbC11c2Vycy1hZG1pbk > BsaXN0cy5 > > zb3Vy > > > Y2Vmb3JnZS5uZXQgb24gYmVoYWxmIG9mIE1pY2hhZWwgR2VvcmdlIExlcm5lci > ANCglTZW5 > > 0OiBU > > > dWUgMy84LzIwMDUgMTA6NDIgQU0gDQoJVG86IFJvYmVydCBDYW1wYmVsbCANCg > lDYzogcHl > > tb2wt > > > dXNlcnNAbGlzdHMuc291cmNlZm9yZ2UubmV0IA0KCVN1YmplY3Q6IFJlOiBbUH > lNT0xdIGN > > vbWJp > > > bmUgZGlzdGFuY2Ugb2JqZWN0cw0KCQ0KCQ0KDQoNCglPbiBUdWUsIDggTWFyID > IwMDUsIFJ > > vYmVy > > > dCBDYW1wYmVsbCB3cm90ZToNCgkNCgk+IEhpLA0KCT4NCgk+PiBEYW5pZWwgRm > FycmVsbCB > > bTW9u > > > ZGF5LCBNYXJjaCAwNywgMjAwNSAxOjIzIFBNXSB3cm90ZToNCgk+Pj4NCgk+Pj > 4gSSB3YW5 > > 0IHRv > > > IGNyZWF0ZSBhIGxvdCBvZiBkaXN0YW5jZSBvYmplY3RzIChpbiB0aGUgaHVuZH > JlZHMpDQo > > JPj4+ > > > IGJldHdlZW4gcGFydGljdWxhciBhdG9taWMgcGFpcnMuICBPYnZpb3VzbHkgSS > BjYW4gbWF > > rZSBh > > > DQoJPj4+IHNjcmlwdCBsaWtlIHRoZSBmb2xsb3dpbmcsIGluc2VydGluZyB0aG > UgZXhhY3Q > > gYXRv > > > bWljDQoJPj4+IHNlbGVjdGlvbnMgdGhhdCBJIHdhbnQ6DQoJPj4+DQoJPj4+IG > Rpc3RhbmN > > lIGRp > > > c3RvYmoxMiA9IChhdG9tMSksIChhdG9tMikNCgk+Pj4gZGlzdGFuY2UgZGlzdG > 9iajM0ID0 > > gKGF0 > > > b20zKSwgKGF0b200KQ0KCT4+PiAuLi4gZXRjLg0KCT4+Pg0KCQ0KCT4gQnV0IG > luIGZhY3Q > > gb25l > > > ICpjYW4qIHN0aWxsIHR1cm4gdGhlbSBvbiBhbmQgb2ZmLCB3aXRoIHRoZSAiZW > 5hYmxlIiB > > vcg0K > > > CT4gImRpc2FibGUiIGNvbW1hbmQgb24gdGhlIGNvbW1hbmQgbGluZToNCgk+DQ > oJPiAgZW5 > > hYmxl > > > IF9kaXN0MQ0KCT4gIGRpc2FibGUgX2Rpc3QxDQoJPg0KCT4gQW5kIGl0IHdvdW > xkIGJlIHN > > 0cmFp > > > Z2h0Zm9yd2FyZCB0byBwdXQgdGhvc2UgY29tbWFuZHMgd2l0aGluIGEgbG9vcD > oNCgk+DQo > > JPiAg > > > IyB0dXJuIHRoZW0gYWxsIG9mZjoNCgk+ICBmb3IgaSBpbiByYW5nZSgxMDApOg > 0KCT4gICA > > gY21k > > > LmRpc2FibGUoIl9kaXN0MSVzIiAlIGkpDQoJPg0KCT4gICMgdHVybiB0aGVtIG > FsbCBvbjo > > NCgk+ > > > ICBmb3IgaSBpbiByYW5nZSgxMDApOg0KCT4gICAgY21kLmVuYWJsZSgiX2Rpc3 > QxJXMiICU > > gaSkN > > > Cgk+DQoJPiBDaGFuZ2UgIjEwMCIgdG8gd2hhdGV2ZXIgaXMgYXBwcm9wcmlhdG > UuDQoJDQo > > JSSB3 > > > YXMganVzdCBhYm91dCB0byB3cml0ZSBzb21ldGhpbmcgbGlrZSB0aGlzLiAgSW > 4gZmFjdCw > > gSSBo > > > YXZlIHRvbnMgb2YNCglmaWxlcyBjYWxsZWQgc29tZXRoaW5nIGxpa2UgeC5weS > BzcHJpbmt > > sZWQg > > > YXJvdW5kIHRoYXQgZG8gdGhpbmdzIGxpa2UNCgkNCgktLS0tLS0tLS0tLS0tLS > 0tLS0tLS0 > > tLS0t > > > LS0tLS0tLS0tLS0tLS0tLQ0KCWZyb20gcHltb2wgaW1wb3J0IGNtZA0KCW51bV > 9kaXN0ID0 > > gMTAw > > > DQoJDQoJZGVmIHNob3dfZGlzdCgpOg0KCSAgICIiIiBzaG93IGFsbCBvZiBteS > BkaXN0YW5 > > jZSBv > > > YmplY3RzICIiIg0KCSAgIGZvciBpIGluIHJhbmdlKG51bV9kaXN0KToNCgkgIC > AgIGNtZC5 > > lbmFi > > > bGUoJ19kaXN0JXMnJWkpDQoJDQoJZGVmIGhpZGVfZGlzdCgpOg0KCSAgICIiIi > BoaWRlIGF > > sbCBv > > > ZiBteSBkaXN0YW5jZSBvYmplY3RzICIiIg0KCSAgIGZvciBpIGluIHJhbmdlKG > 51bV9kaXN > > 0KToN > > > CgkgICAgIGNtZC5kaXNhYmxlKCdfZGlzdCVzJyVpKQ0KCQ0KCWNtZC5leHRlbm > QoJ3NkJyx > > zaG93 > > > X2Rpc3QpDQoJY21kLmV4dGVuZCgnaGQnLGhpZGVfZGlzdCkNCgktLS0tLS0tLS > 0tLS0tLS0 > > tLS0t > > > LS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KCQ0KCVlvdSBjb3VsZCBhbHNvIHRyeS > Bzb21ldGh > > pbmcg > > > Y3V0ZSBsaWtlDQoJDQoJZGVmIHNob3dfZGlzdCgpOg0KCSAgIGRpc3RzID0gW2 > 5hbWUgZm9 > > yIG5h > > > bWUgaW4gY21kLmdldF9uYW1lcygpIGlmIGNtZC5nZXRfdHlwZShuYW1lKSA9PS > Anb2JqZWN > > 0OmRp > > > c3RhbmNlJ10NCgkgICBmb3IgbmFtZSBpbiBkaXN0czogY21kLmVuYWJsZShuYW > 1lKQ0KCQ0 > > KCWV0 > > > Yy4NCgkNCglpZiB5b3UgZG9uJ3Qgd2FudCB0byBoYXZlIHRvIGtlZXAgdHJhY2 > sgb2YgaG9 > > 3IG1h > > > bnkgdGhlcmUgYXJlLg0KCQ0KCS1taWNoYWVsDQoJDQoJLS0NCgl3d3cudW1pY2 > guZWR1L35 > > tbGVy > > > bmVyIHwgICAgICAgICAgICAgICAgICAgICAgICBfICB8TWljaGFlbCBMZXJuZX > INCglUaGl > > zIGlz > > > bid0IGEgZGVtb2NyYWN5O3wgQVNDSUkgcmliYm9uIGNhbXBhaWduICggKSB8IC > AgTWljaGl > > nYW4N > > > CgkgIGl0J3MgYSBjaGVlci1vY3JhY3kuICB8ICAtIGFnYWluc3QgSFRNTCBlbW > FpbCAgWCA > > gfCAg > > > QmlvcGh5c2ljcw0KCS1Ub3JyZW5jZSwgIEJyaW5nIEl0IE9ufCAgICAgICAgIC > AgICAgICA > > gICAg > > > ICAgLyBcIHwgbWxlcm5lckB1bWljaA0KCQ0KCT4gQ2hlZXJzLA0KCT4gUm9iDQ > oJPiAtLQ0 > > KCT4g > > > Um9iZXJ0IEwuIENhbXBiZWxsLCBQaC5ELiAgICAgICAgICAgICAgICAgICAgIC > AgICA8cmx > > jMUBw > > > b3N0LnF1ZWVuc3UuY2E+DQoJPiBTZW5pb3IgUmVzZWFyY2ggQXNzb2NpYXRlIC > AgICAgICA > > gICAg > > > ICAgICAgICAgICAgICAgIHBob25lOiA2MTMtNTMzLTY4MjENCgk+IERlcHQuIG > 9mIEJpb2N > > oZW1p > > > c3RyeSwgUXVlZW4ncyBVbml2ZXJzaXR5LCAgICAgICAgICAgICBmYXg6IDYxMy > 01MzMtMjQ > > 5Nw0K > > > CT4gS2luZ3N0b24sIE9OIEs3TCAzTjYgIENhbmFkYSAgICAgICBodHRwOi8vYW > RlbGllLmJ > > pb2No > > > ZW0ucXVlZW5zdS5jYS9+cmxjDQoJPiAgICBQR1AgRmluZ2VycHJpbnQ6IDlCND > kgM0QzRiB > > BNDg5 > > > IDA1REMgQjM1QyAgOEUzMyBGMjM4IEE4RjUgRjYzNSBDMEUyDQoJPg0KCT4NCg > k+IC0tLS0 > > tLS0t > > > LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS > 0NCgk+IFN > > GIGVt > > > YWlsIGlzIHNwb25zb3JlZCBieSAtIFRoZSBJVCBQcm9kdWN0IEd1aWRlDQoJPi > BSZWFkIGh > > vbmVz > > > dCAmIGNhbmRpZCByZXZpZXdzIG9uIGh1bmRyZWRzIG9mIElUIFByb2R1Y3RzIG > Zyb20gcmV > > hbCB1 > > > c2Vycy4NCgk+IERpc2NvdmVyIHdoaWNoIHByb2R1Y3RzIHRydWx5IGxpdmUgdX > AgdG8gdGh > > lIGh5 > > cGUuIFN0YXJ0IHJlYWRpbmcgbm93Lg0KCT4gaHR0cDovL2Fkcy5vc2RuLmNvbS8/ > > YWRfaWQ9NjU5 > > > NSZhbGxvY19pZD0xNDM5NiZvcD1jbGljaw0KCT4gX19fX19fX19fX19fX19fX1 > 9fX19fX19 > > fX19f > > > X19fX19fX19fX19fX19fX19fX18NCgk+IFB5TU9MLXVzZXJzIG1haWxpbmcgbG > lzdA0KCT4 > > gUHlN > > > T0wtdXNlcnNAbGlzdHMuc291cmNlZm9yZ2UubmV0DQoJPiBodHRwczovL2xpc3 > RzLnNvdXJ > > jZWZv > > > cmdlLm5ldC9saXN0cy9saXN0aW5mby9weW1vbC11c2Vycw0KCT4NCgk+DQoJPg > 0KCQ0KCQ0 > > KCS0t > > > LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS > 0tLS0tLS0 > > NCglT > > > RiBlbWFpbCBpcyBzcG9uc29yZWQgYnkgLSBUaGUgSVQgUHJvZHVjdCBHdWlkZQ > 0KCVJlYWQ > > gaG9u > > > ZXN0ICYgY2FuZGlkIHJldmlld3Mgb24gaHVuZHJlZHMgb2YgSVQgUHJvZHVjdH > MgZnJvbSB > > yZWFs > > > IHVzZXJzLg0KCURpc2NvdmVyIHdoaWNoIHByb2R1Y3RzIHRydWx5IGxpdmUgdX > AgdG8gdGh > > lIGh5 > > > cGUuIFN0YXJ0IHJlYWRpbmcgbm93Lg0KCWh0dHA6Ly9hZHMub3Nkbi5jb20vP2 > FkX2lkPTY > > 1OTUm > > > YWxsb2NfaWQ9MTQzOTYmb3A9Y2xpY2sNCglfX19fX19fX19fX19fX19fX19fX1 > 9fX19fX19 > > fX19f > > > X19fX19fX19fX19fX19fXw0KCVB5TU9MLXVzZXJzIG1haWxpbmcgbGlzdA0KCV > B5TU9MLXV > > zZXJz > > > QGxpc3RzLnNvdXJjZWZvcmdlLm5ldA0KCWh0dHBzOi8vbGlzdHMuc291cmNlZm > 9yZ2UubmV > > 0L2xp > > c3RzL2xpc3RpbmZvL3B5bW9sLXVzZXJzDQoJDQoNCg== > > > > > > > > --__--__-- > > > > _______________________________________________ > > PyMOL-users mailing list > > PyMOL-users@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/pymol-users > > > > > > End of PyMOL-users Digest > > > > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from > real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > PyMOL-users mailing list > PyMOL-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/pymol-users >