Skip to content

Commit

Permalink
Update species.py
Browse files Browse the repository at this point in the history
Link to the documentation
  • Loading branch information
rraadd88 committed Feb 15, 2023
1 parent 04711f6 commit cba24a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyensembl/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def normalize_species_name(name):
def find_species_by_name(species_name):
latin_name = normalize_species_name(species_name)
if latin_name not in Species._latin_names_to_species:
raise ValueError("Species not found: %s" % species_name)
raise ValueError("Species not found: %s; For non-Ensembl Data, see https://github.com/openvax/pyensembl#non-ensembl-data" % species_name)
return Species._latin_names_to_species[latin_name]


Expand Down

0 comments on commit cba24a3

Please sign in to comment.