Hi Guys,
I am trying to set up the PyMOLMover object to view structure manipulations. We have PyRosetta set up on a compter cluster, and I was going to have it run scripts and send structure info to another PyMOL instance on a separate computer on the same network – however it errors out when trying to assign an IP address to the link.udp_ip attribute. The code is simple and pulled straight from the following documentation/tutorial: http://www.pyrosetta.org/pymol_mover-tutorial
Here is the code snippet that gives the run-time error:
pmm = PyMOLMover()
pmm.link.udp_ip = ‘192.168.168.182’
pmm.link.edp_port = 65000
pmm.apply(pose)
However, it raises the following exception/error, AttributeError: ‘pyrosetta.rosetta.protocols.moves.PyMOLMover’ object has no attribute ‘link’
Obviously the PyRosetta distribution I have doesn’t have the right objects/object-attributes to do this, is there any other way?
Thanks!
Nathan