Skip to content

Commit

Permalink
Merge pull request #108 from HobnobMancer/fix_tax_invalid_ids
Browse files Browse the repository at this point in the history
Fix tax invalid ids
  • Loading branch information
HobnobMancer authored Jan 12, 2023
2 parents d7f773a + 82865ea commit 0672fab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cazy_webscraper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from cazy_webscraper.sql import sql_orm


__version__ = "2.2.5"
__version__ = "2.2.6"


VERSION_INFO = f"cazy_webscraper version: {__version__}"
Expand Down
7 changes: 6 additions & 1 deletion cazy_webscraper/ncbi/taxonomy/multiple_taxa.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,12 @@ def replace_multiple_tax(cazy_data, genbank_accessions, replaced_taxa_logger, ar

else:
# first time replace_multiple_tax was called
cazy_data, success = replace_multiple_tax_with_invalid_ids(cazy_data, args)
cazy_data, success = replace_multiple_tax_with_invalid_ids(
cazy_data,
genbank_accessions,
replaced_taxa_logger,
args,
)

if success is False:
logger.error(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

setuptools.setup(
name="cazy_webscraper",
version="2.2.5",
version="2.2.6",
# Metadata
author="Emma E. M. Hobbs",
author_email="[email protected]",
Expand Down

0 comments on commit 0672fab

Please sign in to comment.