Skip to content

Commit

Permalink
Escaped out logging statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav committed Aug 9, 2023
1 parent 0656d3a commit c942ad4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions node_normalizer/normalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,12 +529,12 @@ async def get_normalized_nodes(
if conflate_gene_protein:
other_ids.extend(await app.state.redis_connection5.mget(*canonical_nonan, encoding='utf8'))

logger.error(f"After conflate_gene_protein: {other_ids}")
# logger.error(f"After conflate_gene_protein: {other_ids}")

if conflate_chemical_drug:
other_ids.extend(await app.state.redis_connection6.mget(*canonical_nonan, encoding='utf8'))

logger.error(f"After conflate_chemical_drug: {other_ids}")
# logger.error(f"After conflate_chemical_drug: {other_ids}")

# if there are other ids, then we want to rebuild eqids and types. That's because even though we have them,
# they're not necessarily first. For instance if what came in and got canonicalized was a protein id
Expand All @@ -558,9 +558,9 @@ async def get_normalized_nodes(
all_other_ids = sum(other_ids, [])
eqids2, types2 = await get_eqids_and_types(app, all_other_ids)

logger.error(f"other_ids = {other_ids}")
logger.error(f"dereference_others = {dereference_others}")
logger.error(f"all_other_ids = {all_other_ids}")
# logger.error(f"other_ids = {other_ids}")
# logger.error(f"dereference_others = {dereference_others}")
# logger.error(f"all_other_ids = {all_other_ids}")

final_eqids = []
final_types = []
Expand Down

0 comments on commit c942ad4

Please sign in to comment.