Quote:
Originally Posted by koland
Not sure how easy it would be in python, but it is a trivial excercise to do this using a command/batch file. Just as it is to do the same the mobidedrm. You end up needing two batch files, one processes each file in the directory, the second accepts the variable needed to define the filename/directory and calls the python script.
|
Actually one batch should do it.
The command would appear like:
For %%i in (*.pdb) Do command parameters.
Where command is the python script and the parameters are the standard arguments for the script. Use %%i wherever you need the file name.
For help open a cmd window and type: help for