Skip to content

Commit

Permalink
also including #281
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Feb 15, 2023
1 parent aa11b29 commit 3afdd5d
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 3afdd5d

Please sign in to comment.