Skip to content

Commit

Permalink
stricter filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Oct 20, 2023
1 parent cf1c7b5 commit f2f2533
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.1:
if cc - self._cc_prev < -0.05:
confs = np.delete(confs, i, 0)
wei = np.delete(wei, i, 0)

Expand Down

0 comments on commit f2f2533

Please sign in to comment.