Re: [PyMOL] how to get pymol sec structure assignments printed out to a file

2005-06-17 Thread hari jayaram
Thanks a tonne!!! It worked so I did ffout=open('secstruc.txt','w') iterate name ca, ffout.write(repr((chain, resi, ss))) ffout.close() And the file was written to the pymol install directory.. This has convinced me of the power of pymols design and python in general..lots of learning to do. Th

Re: [PyMOL] how to get pymol sec structure assignments printed out to a file

2005-06-17 Thread T.A.Wassenaar
I think you can try: ffout=open('secstruc.txt','w') iterate name ca, ffout.write(repr((chain, resi, ss))) Hope it works, but otherwise Warren will correct me :) Tsjerk On Fri, 17 Jun 2005 11:12:53 -0400 hari jayaram wrote: I am sorry for being so needy ..Is there a way to quickly write thi