Member Site › Forums › PyRosetta › PyRosetta – Scripts › ddg Script Problem › Reply To: ddg Script Problem
May 13, 2011 at 4:56 am
#5575
Anonymous
As Steven pointed out you probably just need to add full namespace to specify which Interface class you want to use. There is a few Interface classes in rosetta from your context I am guessing that it most likely protocols::scoring::Interface. So here what you need to add to use it:
import rosetta.protocols.scoring
...
I = rosetta.protocols.scoring.Interface()