Skip to content

Commit

Permalink
Bug fixes: inch_to_key converter args missing (#1391)
Browse files Browse the repository at this point in the history
* Update config.yml - fix Circle CI pipeline

* Bug fixes: inch_to_key converter args missing

---------

Co-authored-by: Dhanshree Arora <[email protected]>
  • Loading branch information
Abellegese and DhanshreeA authored Nov 21, 2024
1 parent 6f879b5 commit ebc1066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ersilia/utils/identifiers/compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def process_smiles(self, smiles, semaphore, session, result_list):
logger.info("Inchikey converted using PUBCHEM")

if inchikey is None:
inchikey = self._nci_smiles_to_inchikey(smiles)
inchikey = self._nci_smiles_to_inchikey(session, smiles)
if inchikey:
logger.info("Inchikey converted using NCI")

Expand Down

0 comments on commit ebc1066

Please sign in to comment.