Re: [PyMOL] Ray Tracing Crash

2004-01-22 Thread Michael Banck
On Wed, Jan 21, 2004 at 09:11:01PM -0800, Morri Feldman wrote: Regarding my problems raytracing on my debian/testing machine. What is the exact version of the pymol .deb you're using? 0.93-2? What architecture are you running on? i386 or something else? Do you use pymol's internal raytracer, or

[PyMOL] Help for user-defined functions

2004-01-22 Thread Gareth Stockwell
Does anyone know if it is possible to add 'help' documentation to my own user-defined functions? What I want is to be able to define a new PyMOL command by executing the following script: #-- def some_func: ''' Some help docs here... ''' #

Re: [PyMOL] Ray Tracing Crash

2004-01-22 Thread Morri Feldman
On Thu, 22 Jan 2004 11:02:25 +0100 Michael Banck wrote: On Wed, Jan 21, 2004 at 09:11:01PM -0800, Morri Feldman wrote: Regarding my problems raytracing on my debian/testing machine. What is the exact version of the pymol .deb you're using? 0.93-2? pymol_0.93-2_i386.deb What architecture

Re: [PyMOL] Help for user-defined functions

2004-01-22 Thread Michael George Lerner
Hi, I haven't seen this documented anywhere, so I have no idea if it's the Right Way to do things, but I think all you need to do is add cmd.help_sc.append('some_func') after the cmd.extend('some_func',some_func) call. should this be built in to cmd.extend()? -michael -- This isn't a

[PyMOL] crash with new version

2004-01-22 Thread Mark Pfuhl
I recently installed a new version of pymol using all-in-one archive pymol-0_93-bin-linux-libc6-i386.tgz. When I try to run pymol the program crashes and gives this error message: pymol.com: line 14: 10610 Floating point exception$PYMOL_PATH/pymol.exe $* I am trying to do this on a PC running

RE: [PyMOL] How to send pymol command to pymol by python interpreter

2004-01-22 Thread Warren L. DeLano
Takefumi, You only need to worry about this if you're using an external Python interpreter with a modular build of PyMOL. For example, after installing a late-model linux PyMOL RPM, you run python script.py Where script.py contains the following sequence: import pymol pymol.finish_launching()

RE: [PyMOL] How to send pymol command to pymol by python interpreter

2004-01-22 Thread pymol
On Thu, 22 Jan 2004, Warren L. DeLano wrote: Where script.py contains the following sequence: import pymol pymol.finish_launching() [PS If there's anyone out there with a more elegant alternative for launching the PyMOL thread from a standalone Python script, I'd sure like to hear it :