Hello pyMol Users,
I have recently started working with pyMol. Here is my script, which one of the
users (I am not sure whether it is right or not to write the name) has helped
me to fix:
import os
from pymol import cmd
cmd.reinitialize()
myDir = '/Users/User/myFolder'
#print(myDir)
for filenam
Good day,
I have several thousands of files, which I upload using the loop:
myDir = ‘/dirWithFiles'
for filename in os.listdir(myDir):
cmd.load (filename)
filenameN = os.path.splitext(filename)[0]
cmd.save(filenameN + '.mol')
cmd.disable(filename)
I am trying to s
Good day,
I have several thousands of files, which I upload using the loop:
myDir = ‘/dirWithFiles'
for filename in os.listdir(myDir):
cmd.load (filename)
filenameN = os.path.splitext(filename)[0]
cmd.save(filenameN + '.mol')
cmd.disable(filename)
I am trying to s