Skip to content

Commit

Permalink
add some debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Sep 10, 2023
1 parent 0523014 commit 37eb839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bbconf/bbconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@
from geniml.region2vec import Region2VecExModel
from geniml.io import RegionSet


_LOGGER = getLogger(PKG_NAME)


class BedBaseConf:
"""
This class standardizes reporting of bedstat and bedbuncher results.
Expand All @@ -76,6 +74,7 @@ def __init__(self, config_path: str = None, database_only: bool = False):
self._config = self._read_config_file(cfg_path)

# Create Pipestat objects and tables if they do not exist
_LOGGER.debug("Creating pipestat objects...")
self.__pipestats = {
BED_TABLE: pipestat.PipestatManager(
config_file=cfg_path,
Expand All @@ -92,6 +91,7 @@ def __init__(self, config_path: str = None, database_only: bool = False):
self._create_bedset_bedfiles_table()

try:
_LOGGER.debug("Setting up qdrant database connection...")
self._qdrant_client = self._init_qdrant_client()
if self.config[CFG_PATH_KEY].get(CFG_PATH_REGION2VEC_KEY) and self.config[
CFG_PATH_KEY
Expand Down

0 comments on commit 37eb839

Please sign in to comment.