From 65beb90a767e88a3a15ded7839b598a53082f8ff Mon Sep 17 00:00:00 2001 From: Alex Morehead Date: Tue, 24 Dec 2024 09:54:11 -0600 Subject: [PATCH] Fix alphafold3 name --- posebench/__init__.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/posebench/__init__.py b/posebench/__init__.py index 5f63e0b..9b0624c 100644 --- a/posebench/__init__.py +++ b/posebench/__init__.py @@ -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", @@ -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":