On Sep 8, 2010, at 6:26 AM, Rajan Prabu wrote:
Dear Chimera users,
I am trying to make a morphing pdb with chimera without opening the interface using --nogui option. It works and calculates the interpolation and then it crashes. If i understood it correctly, it is trying to open the MD Movie GUI. By default morph movie command calls the MD Movie interface. Is it possible to make it work without opening the interface.
I am trying to run the script with chimera using the following command
chimera --nogui --script chi1.py
and my script chi1.py is the following
from chimera import runCommand
runCommand('open starting.pdb')
runCommand('open end.pdb')
runCommand('morph start #0')
runCommand('morph interpolate #1')
runCommand('morph movie')
runCommand('stop')
from chimera import runCommand, openModels
runCommand('open starting.pdb')
runCommand('open end.pdb')
runCommand('morph start #0')
runCommand('morph interpolate #1')
#runCommand('morph movie')
from Morph.cmdline import _find
morph = _find("default")
traj, xform = morph.makeTrajectory(minimize=None, steps=None)
openModels.add([traj])
runCommand('stop')
Unfortunately it uses a "private" function of the Morph module (_find; functions/methods that start with an underscore are "private" and are supposed to be used only by other functions/methods in the same module). I hope the Morph module API can be improved so that scripts like yours don't need to "cheat" and access private functions/data.
I note that your script doesn't really do anything with the morph after it's created. I assume you'll add some commands in there to save the morph or to run through it with the "coordset" command and save images or something. :-)
I've attached the modified script for your convenience.
--Eric