Re: [PyMOL] script with arguments.

2014-02-04 Thread Jordan Willis
Oh, I see what your saying. This is a python question. from sys import argv c_arg1 = argv[1] c_arg2 = argv[2] from pymol import cmd, stored def align_heme(arg1, arg2 ): cmd.load(arg1) cmd.load(arg2) cmd align(arg1,arg2) #cmd.create(obj1, arg1) #There is no need

[PyMOL] script with arguments.

2014-02-04 Thread Yarrow Madrona
Hello, I am making a script that loads in two molecules as arguments in the command line. I want to then align these molecules and make a pretty picture of the molecules that were input as arguments in the comand line but I am not sure how to name them as objects. I don't know how to select the ne