Skip to content

Commit

Permalink
update for new ensembl API version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy McRae committed Dec 14, 2015
1 parent 44b73e2 commit 8fac211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion denovonear/ensembl_requester.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def check_ensembl_api_version(self):
major = release[0]
minor = release[1]

if major != "4" or minor not in ["0", "1", "2", "3"]:
if major != "4" or minor not in ["0", "1", "2", "3", "4"]:
raise ValueError("check ensembl api version")

def open_url(self, url, headers):
Expand Down

0 comments on commit 8fac211

Please sign in to comment.