<div dir="ltr">Hello Chimera Team<div>i have been trying to make a script for looping through a set of pdb files and get WebGL (.html) file as the output.</div><div><br></div><div><br></div><div><br></div><div><br></div><div>import os<br>import chimera<br>import Midas<br>from chimera import exports<br>from chimera import runCommand as rc # use 'rc' as shorthand for runCommand<br># change to folder with data files<br>os.chdir("E:/files to work/")<br><br># gather the names of .pdb files in the folder<br>file_names = [fn for fn in os.listdir(".") if fn.endswith(".pdb")]<br><br># loop through the files, opening, processing, and closing each in turn<br>for fn in file_names:<br>rc("open " + fn)<br>rc("ac wb")<br>rc("ac c2")<br>htmlname = fn[:-3] +'.html'<br>exports.doExportCommand("WebGL",htmlname)<br>rc("close")</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>This is the code I have been using in the script , but the output i get is not working , i have been getting 26kb files instead of 3-5 mb files and it doesn't show anything when I open it.</div><div><br></div><div>can you please help me with the same as i am new to python code</div></div>