Member Site Forums PyRosetta PyRosetta – General [Solved] Docking to a trimer Reply To: [Solved] Docking to a trimer

#4354
Anonymous

    Actually, solution was simple: I did not use DockingProtocol() at all, instead of it I made fold tree manually, the first edge of which covered all three subunits:

    ft = FoldTree()

    ft.add_edge(1,977,-1)

    ft.add_edge(977,978,1)

    ft.add_edge(978,1012,-1)

    pose.fold_tree(ft)