Skip to content
Snippets Groups Projects
Commit f6fd5aad authored by Nico MAILLET's avatar Nico MAILLET
Browse files

Don't check certificates

parent f1b2697e
No related branches found
No related tags found
No related merge requests found
Pipeline #153260 passed
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment