Dear PyMOL list,
I am trying to load files from a morph in pymol with:
from glob import glob
lst = glob("../TSHR_und_G_Protein/ff*.pdb")
lst.sort()
for fil in lst: cmd.load(fil,"mov")
from glob import glob
lst = glob("ff*.pdb")
lst.sort()
for fil in lst: cmd.load(fil,"mov1")
in two different objects and they are supposed to be in different states.
Right now I think they are all in the states 1-30 (30 files each)
How do I change this?
Thanks for your reply!
Annika
