Skip to content

Commit

Permalink
removed pdb; version bump; changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aschroed committed Aug 21, 2024
1 parent 33b47a4 commit 3c14ab0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ foursight
Change Log
----------

4.8.3
=====

* Update entrez_gene_id validation check to play more nicely with ncbi
* add kwargs so gids can be added or removed from the ignore list - for those genes without any status live or other


4.8.2
=====

Expand Down
3 changes: 1 addition & 2 deletions chalicelib_fourfront/checks/wrangler_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ def validate_entrez_geneids(connection, **kwargs):
return check

# because until this update this check had no full_output need this (only once)
if not 'full_output' in last_result:
if 'full_output' not in last_result:
last_result['full_output'] = {}
# gids to ignore list
gids2ignore = last_result['full_output'].get('ignore', [])
Expand All @@ -1091,7 +1091,6 @@ def validate_entrez_geneids(connection, **kwargs):
gids2ignore.extend([ni.strip() for ni in new_ignores.split(',') if ni not in gids2ignore])
rm_ignores = kwargs.get('rm_from_ignore')
if rm_ignores:
import pdb; pdb.set_trace()
if rm_ignores == 'all':
# reset ignore list
gids2ignore = []
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "foursight"
version = "4.9.0"
version = "4.8.3"
description = "Serverless Chalice Application for Monitoring"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 3c14ab0

Please sign in to comment.