greenelab / django-genes

A Django package to represent genes
BSD 3-Clause "New" or "Revised" License
2 stars 3 forks source link

If sending Entrez IDs to translate_genes() function in utils.py, the response returns the search keys (these Entrez IDs) as strings, rather than integers. #15

Open rzelayafavila opened 6 years ago

rzelayafavila commented 6 years ago

For example, the dictionary returned might be something like: {"1431": "CS", "1737": "DLAT", "not_found": []},

as opposed to: {1431: "CS", 1737: "DLAT", "not_found": []}

This might be confusing to users.