Member Site › Forums › PyRosetta › PyRosetta – General › Cannot get PyMOL_Observer to work on MacOS
- This topic has 1 reply, 2 voices, and was last updated 12 years, 10 months ago by Anonymous.
-
AuthorPosts
-
-
February 16, 2012 at 5:15 pm #1165Anonymous
The PyMOL_Mover is working but PyMOL_Observer() complains. Hope you can help:
MacOS 10.7.3, 64 bit system
Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53)
Type “copyright”, “credits” or “license” for more information.IPython 0.12 — An enhanced Interactive Python.
? -> Introduction and overview of IPython’s features.
%quickref -> Quick reference.
help -> Python’s own help system.
object? -> Details about ‘object’, use ‘object??’ for extra details.In [1]: from rosetta import *
init()
In [2]: init()
Found rosetta_database at /Users/cno/software/PyRosetta.MacOSX.Lion-r47452.64Bit/rosetta_database, using it…
PyRosetta 2.011 [r47452] retrieved from: https://svn.rosettacommons.org/source/trunk/rosetta/rosetta_source
(C) Copyright Rosetta Commons Member Institutions.
Created in JHU by Sergey Lyskov and PyRosetta Team.core.init: Mini-Rosetta version 47452 from https://svn.rosettacommons.org/source/trunk/rosetta/rosetta_source
core.init: command: app -database /Users/cno/software/PyRosetta.MacOSX.Lion-r47452.64Bit/rosetta_database -ex1 -ex2aro
core.init: ‘RNG device’ seed mode, using ‘/dev/urandom’, seed=1996275085 seed_offset=0 real_seed=1996275085
core.init.random: RandomGenerator:init: Normal mode, seed=1996275085 RG_type=mt19937In [3]: pyobs = PyMOL_Observer()
TypeError Traceback (most recent call last)
/Users/cno/software/PyRosetta.MacOSX.Lion-r47452.64Bit/in ()
—-> 1 pyobs = PyMOL_Observer()/Users/cno/software/PyRosetta.MacOSX.Lion-r47452.64Bit/rosetta/__init__.pyc in __init__(self, keep_history)
994 def __init__(self, keep_history=False):
995 rosetta.core.pose.PosePyObserver.__init__(self)
–> 996 self.pymol = rosetta.PyMOL_Mover(keep_history=keep_history)
997
998TypeError: __init__() got an unexpected keyword argument ‘keep_history’
Thanks
-
February 17, 2012 at 5:21 pm #6662Anonymous
Thank you for reporting this! I fixed this error, so next build will have working version. Here the work-around that could be used now: Instead of creating Observer object directly use this function:
rosetta.protocols.moves.AddPyMolObserver(core::pose::Pose &p, bool keep_history=false, core::Real update_interval=0), alternatively you can edit line 996 in __init__.py and change it to:self.pymol = rosetta.PyMOL_Mover()
-
-
AuthorPosts
- You must be logged in to reply to this topic.