Skip to content

Commit

Permalink
Fix alphafold3 name
Browse files Browse the repository at this point in the history
  • Loading branch information
amorehead committed Dec 24, 2024
1 parent 4390d54 commit 65beb90
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions posebench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"flowdock": "FlowDock",
"rfaa": "RoseTTAFold-All-Atom",
"chai-lab": "chai-lab",
"alphafold3": "AlphaFold 3",
"alphafold3": "alphafold3",
"vina": "Vina",
"tulip": "TULIP",
"p2rank": "P2Rank",
Expand Down Expand Up @@ -87,9 +87,11 @@ def resolve_method_protein_dir(
else os.path.join(
"data",
f"{dataset}_set",
"predicted_structures"
if dataset == "casp15"
else f"{dataset}_predicted_structures",
(
"predicted_structures"
if dataset == "casp15"
else f"{dataset}_predicted_structures"
),
)
)
elif method == "dynamicbind":
Expand Down

0 comments on commit 65beb90

Please sign in to comment.