Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
KateSakharova committed Feb 20, 2024
1 parent 92a29b4 commit c3ab4d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genomeuploader/genome_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ def extract_ENA_info(genomeInfo, uploadDir, webin, password):
longitude = longitude.split('E')[0].strip()

if latitude:
latitude = "{:.8f}".format(latitude)
latitude = "{:.8f}".format(float(latitude))
else:
latitude = "not provided"

if longitude:
latitude = "{:.8f}".format(longitude)
latitude = "{:.8f}".format(float(longitude))
else:
longitude = "not provided"

Expand Down

0 comments on commit c3ab4d6

Please sign in to comment.