Hi there, I am trying to call the spectrumany plugin (or any plugin) from within a python script. I am generating a PSE file from within python in the following fashion:
#!/usr/bin/python import __main__ __main__.pymol_argv = ['pymol','-qc'] # Pymol: quiet and no GUI import pymol pymol.finish_launching() pdbID = "1G68" fetchResult = pymol.cmd.fetch(pdbID, type='pdb', quiet=1) if fetchResult == -1: sys.exit("The provided PDB ID %s does not exist"%pdbID) pymol.cmd.save(“test.pse”) how would I now call the spectrumany plugin or any plugin function extending to the console in this way? cmd.<plugin_name> doesn’t work thank you! ------------------------------------------------------------------------------ What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and protocols are consuming the most bandwidth. Provides multi-vendor support for NetFlow, J-Flow, sFlow and other flows. Make informed decisions using capacity planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e _______________________________________________ PyMOL-users mailing list (PyMOL-users@lists.sourceforge.net) Info Page: https://lists.sourceforge.net/lists/listinfo/pymol-users Archives: http://www.mail-archive.com/pymol-users@lists.sourceforge.net