Skip to content

Commit

Permalink
FutureWarnings ignored in dedup
Browse files Browse the repository at this point in the history
  • Loading branch information
agalitsyna committed Oct 12, 2022
1 parent ef696d4 commit 3ba2423
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pairtools/lib/dedup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
logger = get_logger()
import time

# Ignore pandas future warnings:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)

# Setting for cython deduplication:
# you don't need to load more than 10k lines at a time b/c you get out of the
# CPU cache, so this parameter is not adjustable
Expand Down

0 comments on commit 3ba2423

Please sign in to comment.