Skip to content

Commit

Permalink
fix add
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 3, 2023
1 parent be07b5b commit 239b286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prody/atomic/atomgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ def __add__(self, other):
else:
new.setCoords(np.concatenate((self._getCoords(),
other._getCoords())))
new.setAnisous(np.concatenate((self._getCoords(),
other._getCoords())))
new.setAnisous(np.concatenate((self.getAnisous(),
other.getAnisous())))
LOGGER.info('Active coordinate sets are copied to {0}.'
.format(new.getTitle()))
elif other._n_csets:
Expand Down

0 comments on commit 239b286

Please sign in to comment.