Hi,
Just a quick note about a simple fix I found to get the app working. In genome_utils.py on line 45, the code splits date strings assuming they use slashes ("/") as separators. However, I noticed the actual data from assembly_summary.txt uses dashes ("-").
Changing this line from:
Edit
rel_date = row[14].split("/")
to
rel_date = row[14].split("-")
seems to keep the program running smoothly.
Hope this helps anyone running into similar issues!