Skip to content

Commit

Permalink
fix: don't check wget certs
Browse files Browse the repository at this point in the history
  • Loading branch information
xnought committed May 22, 2024
1 parent dd9a977 commit 8474389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function restart_from_scratch() {
}

function add_foldseek() {
docker exec -it venome-backend wget https://mmseqs.com/foldseek/foldseek-linux-sse2.tar.gz
docker exec -it venome-backend wget --no-check-certificate https://mmseqs.com/foldseek/foldseek-linux-sse2.tar.gz
docker exec -it venome-backend tar -xvf foldseek-linux-sse2.tar.gz
docker exec -it venome-backend rm -f foldseek-linux-sse2.tar.gz
}
Expand All @@ -154,7 +154,7 @@ function remove_foldseek() {
}

function add_tmalign() {
docker exec -it venome-backend wget https://seq2fun.dcmb.med.umich.edu//TM-align/TMalign_cpp.gz
docker exec -it venome-backend wget --no-check-certificate https://seq2fun.dcmb.med.umich.edu//TM-align/TMalign_cpp.gz
docker exec -it venome-backend mkdir tmalign
docker exec -it venome-backend gzip -d TMalign_cpp.gz
docker exec -it venome-backend mv TMalign_cpp tmalign/tmalign
Expand Down

0 comments on commit 8474389

Please sign in to comment.