Dear PyMol users,
I am generating png images of protein-ligand complex using png command
of pymol. This is the syntax that I am using from my bash script:

image=800
pdb='my.pdb'
# load pdb, split states, make image
  MacPyMOL -c -d "
  from pymol import cmd
  cmd.load('${pdb}')
  cmd.split_states('complex*')
  cmd.bg_color('white')
 
cmd.draw(${image},${image});cmd.png('test.png',width=${image},height=${image},ray=1)
  "

Briefly, it works well but the time of the production of each image is
up to 10 minutes (in the case if I have many models in my.pdb). Is it
possible to speed PNG, while keeping the same resolution of image
(800x800)?

Cheers,
J.


_______________________________________________
PyMOL-users mailing list
Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net
Unsubscribe: 
https://sourceforge.net/projects/pymol/lists/pymol-users/unsubscribe

Reply via email to