From f6fd5aade6c299a25fd00d25836c90e55f294db4 Mon Sep 17 00:00:00 2001 From: Nico MAILLET <nicolas.maillet@.pasteur.fr> Date: Thu, 27 Mar 2025 15:42:06 +0100 Subject: [PATCH] Don't check certificates --- parsers/scripts/getters/get_CATNAP-HIV.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsers/scripts/getters/get_CATNAP-HIV.py b/parsers/scripts/getters/get_CATNAP-HIV.py index afa47b6d..91247956 100644 --- a/parsers/scripts/getters/get_CATNAP-HIV.py +++ b/parsers/scripts/getters/get_CATNAP-HIV.py @@ -33,7 +33,7 @@ print(f"Starting {filename}...") # Get the raw data try: - subprocess.run(f"wget https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/heavy_seqs_aa.fasta -O ../RAW/{filename}_heavy.fasta", + subprocess.run(f"wget --no-check-certificate https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/heavy_seqs_aa.fasta -O ../RAW/{filename}_heavy.fasta", shell=True, check=True) except subprocess.CalledProcessError as err: @@ -42,7 +42,7 @@ except subprocess.CalledProcessError as err: sys.exit(1) # Get the raw data try: - subprocess.run(f"wget https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/light_seqs_aa.fasta -O ../RAW/{filename}_light.fasta", + subprocess.run(f"wget --no-check-certificate https://www.hiv.lanl.gov/cgi-bin/common_code/download.cgi?/scratch/NEUTRALIZATION/light_seqs_aa.fasta -O ../RAW/{filename}_light.fasta", shell=True, check=True) except subprocess.CalledProcessError as err: -- GitLab