Skip to content

Commit

Permalink
Add genome assembly name to splash dropdown
Browse files Browse the repository at this point in the history
Disambiguates between assemblies for the same species
  • Loading branch information
kevinlul committed Mar 18, 2021
1 parent dc25970 commit 96d49d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/primer-design/web/ajaxCalls/fetchInstalledGenomes.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main():
for option in result:
org = option[0]
name = option[1]
print """<option value="{org}">{name}</option>""".format(**locals())
print """<option value="{org}">{name} ({org})</option>""".format(**locals())


if __name__ == "__main__":
Expand Down

0 comments on commit 96d49d2

Please sign in to comment.