Hi everyone, I was looking through the source code of D090_Ala_scan.py, which contains code such as:
p = Pose()
pose_from_pdb(p, “aacap1_0290.pdb”)
starting_p = Pose()
#parameters
dock_jump = 1
interface_dist = 8.0 #angstroms
DockingProtocol().setup_foldtree(p)
scorefxn = create_score_function(‘standard’)
scorefxn(p) #needed for proper Interface calculation
interface = Interface(dock_jump)
interface.distance(8.0)
interface.calculate(p)
However, when I try to run the script, it says that Interface is not defined. Does anyone know how to access the Interface class in PyRosetta?
Thanks,
Julius