Skip to content

Commit

Permalink
https instead of http
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Sep 22, 2023
1 parent a3bc07e commit ba5784d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eva_submission/eload_backlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def find_file_on_ena(self, fn, analysis):
if not os.path.exists(full_path):
try:
self.info(f'Retrieve {basename} in {analysis} from ENA ftp')
url = f'http://ftp.sra.ebi.ac.uk/vol1/{analysis[:6]}/{analysis}/{basename}'
url = f'https://ftp.sra.ebi.ac.uk/vol1/{analysis[:6]}/{analysis}/{basename}'
download_file(url, full_path)
except urllib.error.URLError:
self.error(f'Could not access {url} on ENA: most likely does not exist')
Expand Down

0 comments on commit ba5784d

Please sign in to comment.