Skip to content

Commit

Permalink
Add BFMD database to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Aug 12, 2024
1 parent bde99a7 commit 928984b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions data/structdatabases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,15 @@ case "${SELECTION}" in
push_back "${TMP_PATH}/cath50"
INPUT_TYPE="FOLDSEEK_DB"
;;
"BFMD")
if notExists "${TMP_PATH}/bfmd.tar.gz"; then
downloadFile "https://foldseek.steineggerlab.workers.dev/bfmd.tar.gz" "${TMP_PATH}/bfmd.tar.gz"
downloadFile "https://foldseek.steineggerlab.workers.dev/bfmd.version" "${TMP_PATH}/version"
fi
tar xvfz "${TMP_PATH}/bfmd.tar.gz" -C "${TMP_PATH}"
push_back "${TMP_PATH}/bfmd"
INPUT_TYPE="FOLDSEEK_DB"
;;
"ProstT5")
MODEL=prostt5-f16-safetensors.tar.gz
if [ -n "${PROSTT5_QUANTIZED}" ]; then
Expand Down
8 changes: 8 additions & 0 deletions src/FoldseekBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,14 @@ std::vector<DatabaseDownload> externalDownloads = {
true, Parameters::DBTYPE_AMINO_ACIDS, structdatabases_sh, structdatabases_sh_len,
{}
},
{
"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)",
"https://foldseek.steineggerlab.workers.dev/bfmd.version",
true, Parameters::DBTYPE_AMINO_ACIDS, structdatabases_sh, structdatabases_sh_len,
{}
},
{
"ProstT5",
"Protein language model to predict 3Di directly from sequence.",
Expand Down

0 comments on commit 928984b

Please sign in to comment.