Skip to content

Commit

Permalink
Fix citations not correctly including alphafold
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Dec 28, 2023
1 parent 2515b3b commit 5fd3a84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colabfold/citations.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ def write_bibtex(
bibtex_file: str = "cite.bibtex",
) -> Path:
to_cite = ["Mirdita2021"]
if model == "AlphaFold2-ptm":
if model == "alphafold2_ptm" or model == "alphafold2":
to_cite += ["Jumper2021"]
if model == "DeepFold-v1":
if model == "deepfold_v1":
to_cite += ["Lee2023"]
if model.startswith("AlphaFold2-multimer"):
if model.startswith("alphafold2_multimer"):
to_cite += ["Evans2021"]
if use_msa:
to_cite += ["Mirdita2019"]
Expand Down

0 comments on commit 5fd3a84

Please sign in to comment.