Skip to content

Commit

Permalink
filter any worse
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Oct 20, 2023
1 parent 2b7954c commit a255a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/dynamics/clustenm.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def _filter(self, *args):
sim_map = self._blurrer(ag.toTEMPyStructure(), self._fit_resolution, self._fitmap)
cc = self._scorer.CCC(sim_map, self._fitmap)
ccList[i] = cc
if cc - self._cc_prev < -0.05:
if cc - self._cc_prev < 0:
confs = np.delete(confs, i, 0)
wei = np.delete(wei, i, 0)

Expand Down

0 comments on commit a255a72

Please sign in to comment.