Skip to content

Commit

Permalink
Merge pull request #203 from HadrienG/dev
Browse files Browse the repository at this point in the history
fix for #202 - v1.5.3
  • Loading branch information
HadrienG committed May 5, 2021
2 parents fc46082 + 105b1b5 commit 0996c6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion iss/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def ncbi(kingdom, n_genomes, output):
genome_info = Entrez.read(
Entrez.esummary(
db='assembly',
id=ident))["DocumentSummarySet"]["DocumentSummary"][0]
id=ident),
validate=False)["DocumentSummarySet"]["DocumentSummary"][0]
if genome_info['FtpPath_RefSeq']:
url = genome_info['FtpPath_RefSeq']
url = "%s/%s_%s_genomic.fna.gz" \
Expand Down
2 changes: 1 addition & 1 deletion iss/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.2'
__version__ = '1.5.3'

0 comments on commit 0996c6f

Please sign in to comment.