Skip to content

Commit

Permalink
Fix sqlalchemy tuple error
Browse files Browse the repository at this point in the history
  • Loading branch information
prihoda committed May 17, 2023
1 parent ccfbc14 commit 6e3305c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biophi/humanization/methods/humanness.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ def parse_peptide_humanness(peptide: str, oas_hits: pd.DataFrame, num_total_oas_


def get_oas_hits(peptides: Union[str, List[str]], engine: Engine, filter_chain=None):
if not isinstance(peptides, list):
peptides = list(peptides)
if not isinstance(peptides, tuple):
peptides = tuple(peptides)
filter_chain_statement = ""
if filter_chain:
assert filter_chain in ['Heavy', 'Light']
Expand Down

0 comments on commit 6e3305c

Please sign in to comment.