Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added BFVD as a foldseek database #344

Merged
merged 6 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions data/structdatabases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,14 @@ case "${SELECTION}" in
tar xvfz "${TMP_PATH}/${MODEL}" -C "${OUTDB}"
INPUT_TYPE="MODEL_WEIGHTS"
;;
"BFVD")
if notExists "${TMP_PATH}/bfvd.tar.gz"; then
downloadFile "https://bfvd.steineggerlab.workers.dev/bfvd_foldseekdb.tar.gz" "${TMP_PATH}/bfvd.tar.gz"
downloadFile "https://bfvd.steineggerlab.workers.dev/bfvd.version" "${TMP_PATH}/version"
fi
tar xvfz "${TMP_PATH}/bfvd.tar.gz" -C "${TMP_PATH}"
push_back "${TMP_PATH}/bfvd"
INPUT_TYPE="FOLDSEEK_DB"
esac

if notExists "${OUTDB}.dbtype"; then
Expand Down
10 changes: 9 additions & 1 deletion src/FoldseekBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,11 +435,19 @@ std::vector<DatabaseDownload> externalDownloads = {
{
"BFMD",
"BFMD Big fantastic multimer database (combined multimers from large prediction projects).",
"Kim et al. Rapid and Sensitive Protein Complex Alignment with Foldseek-Multimer. bioRxiv (2024)",
"Kim W et al. Rapid and Sensitive Protein Complex Alignment with Foldseek-Multimer. bioRxiv (2024)",
"https://foldseek.steineggerlab.workers.dev/bfmd.version",
true, Parameters::DBTYPE_AMINO_ACIDS, structdatabases_sh, structdatabases_sh_len,
{}
},
{
"BFVD",
"BFVD Big fantastic virus database (predicted viral protein structures based on the viral sequence representatives of the UniRef30 clusters",
"Kim R et al. BFVD - a large repository of predicted viral protein structures. bioRxiv, 2024.09.08.611582v1 (2024)",
"https://bfvd.steineggerlab.workers.dev",
true, Parameters::DBTYPE_AMINO_ACIDS, structdatabases_sh, structdatabases_sh_len,
{}
},
{
"ProstT5",
"Protein language model to predict 3Di directly from sequence.",
Expand Down
Loading