Member Site Forums PyRosetta PyRosetta – General (1) Score pose, (2) move atom, (3) score pose Reply To: (1) Score pose, (2) move atom, (3) score pose

#5856
Anonymous

    coord is not a reference, it is a local copy. You haven’t modified the coordinate of residue 740 atom N, you’ve made a local copy of that coordinate and then modified THAT.

    You’ll need to make a local copy of the Residue object for residue 740, modify that, and replace the Pose’s 740 with your new 740 (if you really wanted to do that to it, anyway….)