Skip to content

Commit

Permalink
Merge pull request #46 from alliance-genome/md5_sum_zfin
Browse files Browse the repository at this point in the history
Allow blast DB creation from zfin URIs
  • Loading branch information
nuin authored Oct 4, 2024
2 parents 12f9f1a + 7dd392a commit 6f495bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/create_blast_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ def get_files_ftp(fasta_uri: str, md5sum: str) -> bool:
if check_md5sum(fasta_file, md5sum):
LOGGER.info(f"Successfully downloaded and verified {fasta_uri}")
return True
elif fasta_uri.find("zfin") != -1:
return True
else:
LOGGER.error("MD5sums do not match")
return False
Expand Down

0 comments on commit 6f495bf

Please sign in to comment.