Skip to content

Commit

Permalink
fixup: use singular form of id
Browse files Browse the repository at this point in the history
Co-authored-by: Jover Lee <[email protected]>
  • Loading branch information
j23414 and joverlee521 committed Feb 12, 2024
1 parent 5efb20d commit 06d6a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingest/bin/infer-dengue-serotype.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def _set_dengue_serotype(record, col="virus_tax_id"):
"31634": "denv2", # Dengue virus 2 Thailand/16681/84
}

ids = record[col]
id = record[col]

return dengue_types.get(ids, "")
return dengue_types.get(id, "")


def main():
Expand Down

0 comments on commit 06d6a02

Please sign in to comment.