Skip to content

Commit

Permalink
Updating Screening
Browse files Browse the repository at this point in the history
  • Loading branch information
gandrianov committed Aug 20, 2021
1 parent f414b36 commit fa8e804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Screening.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def init(params=None, beta=True, mute=["protocols.simple_moves.SuperimposeMover"
if beta:
init_str += " -beta"


pyrosetta.init(init_str)


Expand Down Expand Up @@ -197,7 +196,8 @@ def screening(pdb, output, lig_name="LG1", tolerance=0.000001, max_iter=2000, re
"""

# bound_pose = pose_from_pdb(pdb)
bound_pose = pose_from_pdbstring(pdb)
bound_pose = Pose()
pose_from_pdbstring(bound_pose, pdb)
non_minimized_pose = bound_pose.clone()

scorefxn = get_score_function()
Expand Down

0 comments on commit fa8e804

Please sign in to comment.