Skip to content

Commit

Permalink
deactivated ssl verification to avoid download error
Browse files Browse the repository at this point in the history
  • Loading branch information
ArlindNocaj authored Aug 26, 2022
1 parent 01fbbca commit cb64a35
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bin/download_alphafold_params.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOURCE_URL="https://storage.googleapis.com/alphafold/alphafold_params_2022-03-02
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
tar --extract --verbose --file="${ROOT_DIR}/${BASENAME}" \
--directory="${ROOT_DIR}" --preserve-permissions
rm "${ROOT_DIR}/${BASENAME}"
2 changes: 1 addition & 1 deletion bin/download_bfd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SOURCE_URL="https://storage.googleapis.com/alphafold-databases/casp14_versions/b
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
tar --extract --verbose --file="${ROOT_DIR}/${BASENAME}" \
--directory="${ROOT_DIR}"
rm "${ROOT_DIR}/${BASENAME}"
2 changes: 1 addition & 1 deletion bin/download_mgnify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SOURCE_URL="https://storage.googleapis.com/alphafold-databases/casp14_versions/m
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
pushd "${ROOT_DIR}"
gunzip "${ROOT_DIR}/${BASENAME}"
popd
2 changes: 1 addition & 1 deletion bin/download_pdb70.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SOURCE_URL="http://wwwuser.gwdg.de/~compbiol/data/hhsuite/databases/hhsuite_dbs/
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
tar --extract --verbose --file="${ROOT_DIR}/${BASENAME}" \
--directory="${ROOT_DIR}"
rm "${ROOT_DIR}/${BASENAME}"
2 changes: 1 addition & 1 deletion bin/download_pdb_seqres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ SOURCE_URL="ftp://ftp.wwpdb.org/pub/pdb/derived_data/pdb_seqres.txt"
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
2 changes: 1 addition & 1 deletion bin/download_small_bfd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOURCE_URL="https://storage.googleapis.com/alphafold-databases/reduced_dbs/bfd-f
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
pushd "${ROOT_DIR}"
gunzip "${ROOT_DIR}/${BASENAME}"
popd
2 changes: 1 addition & 1 deletion bin/download_uniclust30.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ SOURCE_URL="https://storage.googleapis.com/alphafold-databases/casp14_versions/u
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
tar --extract --verbose --file="${ROOT_DIR}/${BASENAME}" \
--directory="${ROOT_DIR}"
rm "${ROOT_DIR}/${BASENAME}"
2 changes: 1 addition & 1 deletion bin/download_uniref90.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SOURCE_URL="ftp://ftp.uniprot.org/pub/databases/uniprot/uniref/uniref90/uniref90
BASENAME=$(basename "${SOURCE_URL}")

mkdir --parents "${ROOT_DIR}"
aria2c "${SOURCE_URL}" --dir="${ROOT_DIR}"
aria2c "${SOURCE_URL}" --check-certificate=false --dir="${ROOT_DIR}"
pushd "${ROOT_DIR}"
gunzip "${ROOT_DIR}/${BASENAME}"
popd

0 comments on commit cb64a35

Please sign in to comment.