Skip to content

Commit 681f30c

Browse files
committed
[core] log thinning
1 parent c3ff1d9 commit 681f30c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

smcpp/analysis.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def _perform_thinning(self, thinning):
124124
thinning = (1000 * np.log(2 + ns)).astype("int") # 500 * ns
125125
if np.any(thinning > 1):
126126
logger.info("Thinning...")
127+
logger.debug("Thinning parameters: %s", thinning)
127128
new_data = estimation_tools.thin_dataset(self._data, thinning)
128129
self._contigs = [Contig(data=d, pid=c.pid, fn=c.fn, n=c.n, a=c.a)
129130
for c, d in zip(self._contigs, new_data)]

0 commit comments

Comments
 (0)