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

#5858
Anonymous


    coord = pose.residue(740).atom('N').xyz()
    print coord
    coord.x = 100.0
    print pose.residue(740).atom('N').xyz()

    …should prove that this is a pointer. It looks like there are two sets of coordinates kept. One in the atomtree and one elsewhere, and I may need to trigger an update somehow.