Hi all,
I created a customized ligand, and we want to sample different rotamers around certein bonds by changing the torsion angles. And below is what we have done and we ran into an issue:
atom1 = AtomID(13,1)
atom2 = AtomID(14,1)
atom3 = AtomID(15,1)
atom4 = AtomID(16,1)
old_torsion_angle = pyrosetta.rosetta.core.conformation.Conformation().torsion_angle(atom1, atom2, atom3, atom4)
print (old_torsion_angle)
new_torsion_angle = pyrosetta.rosetta.core.conformation.Conformation().set_torsion_angle(atom1, aomt2, atom3, atom4, pi/4)
print (new_torsion_angle)
Then it outputs Segmentation fault (core dump)
Is there anyone that can give us some suggestion? Thank you all