Skip to content

Commit

Permalink
removing random logs
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Nov 13, 2024
1 parent 4e0e859 commit 3103c5c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions beacon/connections/mongo/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def cross_query(self, query: dict, scope: str, collection: str, request_paramete
mongo_collection=client.beacon.individuals
original_id="id"
join_ids=list(join_query(self, mongo_collection, query, original_id))
LOG.debug(join_ids)
'''
final_id="individualId"
for id_item in join_ids:
Expand All @@ -55,7 +54,6 @@ def cross_query(self, query: dict, scope: str, collection: str, request_paramete
biosampleId=id_item.pop(original_id)
position=bioids.index(biosampleId)
positions_list.append(position)
LOG.debug(positions_list)
query_cl={}
query_cl["$or"]=[]
for position in positions_list:
Expand Down Expand Up @@ -672,7 +670,6 @@ def apply_ontology_filter(self, query: dict, filter: OntologyFilter, collection:
dict_regex['$regex']=label
except Exception:# pragma: no cover
dict_regex['$regex']=''
LOG.debug(dict_regex)
dict_id={}
dict_id['id']=dict_regex
dict_scope={}
Expand Down

0 comments on commit 3103c5c

Please sign in to comment.