refactor, full run

This commit is contained in:
based-tachikoma 2025-05-20 20:11:52 -07:00
parent de9dfff221
commit 1ee67de035
12 changed files with 1039 additions and 1127 deletions

View file

@ -0,0 +1,472 @@
import logging
import json
import re
from typing import Dict, Any, List, Tuple, Optional, Union
from pathlib import Path
from environments.hack0.protein_design_env.models.alphafold2 import call_alphafold2
from environments.hack0.protein_design_env.models.rfdiffusion import call_rfdiffusion
from environments.hack0.protein_design_env.models.proteinmpnn import call_proteinmpnn
from environments.hack0.protein_design_env.models.alphafold2_multimer import call_alphafold2_multimer
from environments.hack0.protein_design_env.utils.pdb_utils import get_pdb_chain_details
logger = logging.getLogger(__name__)
class ToolExecutor:
def __init__(self, nim_api_key: str, api_timeout: int, polling_interval: int,
output_dir: Path, debug_protein_design_calls: bool):
self.nim_api_key = nim_api_key
self.api_timeout = api_timeout
self.polling_interval = polling_interval
self.output_dir = output_dir
self.debug_protein_design_calls = debug_protein_design_calls
self._debug_af2m_call_count = 0
def _validate_rfd_contigs(self, contigs_str: str, target_chain_details: Dict[str, Dict[str, int]]) -> Optional[str]:
"""
Validates the RFDiffusion contigs string against target PDB chain details.
Returns None if valid, or an error message string if invalid.
"""
if not contigs_str: return "Contigs string is empty."
target_segment_pattern = re.compile(r"([A-Za-z0-9])(\d+)-(\d+)")
active_contig_parts = contigs_str.split('/')
for part in active_contig_parts:
chain_segments_in_part = part.strip().split(' ')
for segment_text in chain_segments_in_part:
segment_text = segment_text.strip()
if not segment_text or segment_text.isdigit():
continue
match = target_segment_pattern.fullmatch(segment_text)
if match:
seg_chain_id, seg_start_str, seg_end_str = match.groups()
seg_start = int(seg_start_str)
seg_end = int(seg_end_str)
if seg_chain_id not in target_chain_details:
return f"Chain '{seg_chain_id}' in contig segment '{segment_text}' not in target. Valid: {list(target_chain_details.keys())}."
chain_min = target_chain_details[seg_chain_id]["min_residue"]
chain_max = target_chain_details[seg_chain_id]["max_residue"]
if not (chain_min <= seg_start <= chain_max and chain_min <= seg_end <= chain_max and seg_start <= seg_end):
return (f"Residue range {seg_start}-{seg_end} for chain '{seg_chain_id}' in '{segment_text}' "
f"is invalid/out of bounds. Chain '{seg_chain_id}' actual range: {chain_min}-{chain_max}.")
return None
def _validate_rfd_hotspots(self, hotspot_list: List[str], target_chain_details: Dict[str, Dict[str, int]]) -> Optional[str]:
"""
Validates hotspot residues (e.g., ["A50", "B25"]) against target PDB chain details.
Returns None if valid, or an error message string if invalid.
"""
if not hotspot_list: return None
hotspot_pattern = re.compile(r"([A-Za-z0-9])(\d+)")
for hotspot_str in hotspot_list:
match = hotspot_pattern.fullmatch(hotspot_str.strip()) # Add strip
if not match:
return f"Hotspot '{hotspot_str}' is not in expected format (e.g., 'A50')."
hs_chain_id, hs_res_num_str = match.groups()
hs_res_num = int(hs_res_num_str)
if hs_chain_id not in target_chain_details:
return f"Chain '{hs_chain_id}' for hotspot '{hotspot_str}' not in target. Valid: {list(target_chain_details.keys())}."
chain_min = target_chain_details[hs_chain_id]["min_residue"]
chain_max = target_chain_details[hs_chain_id]["max_residue"]
if not (chain_min <= hs_res_num <= chain_max):
return (f"Residue {hs_res_num} for hotspot '{hotspot_str}' (chain '{hs_chain_id}') "
f"out of bounds. Chain '{hs_chain_id}' actual range: {chain_min}-{chain_max}.")
return None
async def _run_nim_alphafold2(self, args: Dict, workflow_state: Dict) -> Dict:
"""
Runs AlphaFold2 for target structure prediction. Returns structured output with
tool_output and state_updates separated.
"""
item_id = workflow_state["item_id"]
current_internal_step = workflow_state["current_internal_step"]
target_sequence_from_state = workflow_state["target_sequence"]
tool_output = {}
state_updates = {}
if self.debug_protein_design_calls:
logger.warning(f"DEBUG MODE: Bypassing AlphaFold2 API call for workflow {item_id}.")
project_root = Path(__file__).parent.parent.parent.parent
fixed_pdb_path = project_root / "binder_outputs" / "target.pdb"
if not fixed_pdb_path.exists():
logger.error(f"Debug mode failed: {fixed_pdb_path} not found.")
tool_output = {"success": False, "error": f"Debug mode failed: Required file {fixed_pdb_path} not found."}
return {"tool_output": tool_output, "state_updates": state_updates}
with open(fixed_pdb_path, "r") as f:
pdb_content = f.read()
chain_details, pdb_preview = get_pdb_chain_details(pdb_content)
state_updates["target_pdb_content"] = pdb_content
state_updates["target_chain_details"] = chain_details
state_updates["target_pdb_preview"] = pdb_preview
state_updates["target_structure_predicted"] = True
debug_pdb_path = self.output_dir / f"target_{item_id}_s{current_internal_step}_af2_DEBUG.pdb"
with open(debug_pdb_path, "w") as f:
f.write(pdb_content)
logger.info(f"DEBUG MODE: Copied fixed AlphaFold2 PDB to {debug_pdb_path}")
tool_output = {
"success": True,
"message": "DEBUG MODE: Used fixed PDB for AlphaFold2.",
"target_pdb_preview": pdb_preview,
"saved_pdb_path": str(debug_pdb_path)
}
return {"tool_output": tool_output, "state_updates": state_updates}
sequence_from_llm = args.get("sequence")
if not sequence_from_llm:
tool_output = {"success": False, "error": "Missing 'sequence' for AlphaFold2."}
return {"tool_output": tool_output, "state_updates": state_updates}
actual_sequence_to_use = target_sequence_from_state
if sequence_from_llm != target_sequence_from_state:
logger.warning(
f"LLM provided sequence '{sequence_from_llm[:20]}...' for 'predict_target_structure_alphafold2'. "
f"However, this tool will use the canonical target sequence from the workflow state: '{target_sequence_from_state[:20]}...'"
)
api_result = await call_alphafold2(
sequence=actual_sequence_to_use, api_key=self.nim_api_key,
timeout=self.api_timeout, polling_interval=self.polling_interval
)
if api_result and isinstance(api_result, list) and api_result[0]:
pdb_content = api_result[0]
chain_details, pdb_preview = get_pdb_chain_details(pdb_content)
state_updates["target_pdb_content"] = pdb_content
state_updates["target_chain_details"] = chain_details
state_updates["target_pdb_preview"] = pdb_preview
state_updates["target_structure_predicted"] = True
pdb_path = self.output_dir / f"target_{item_id}_s{current_internal_step}_af2.pdb"
with open(pdb_path, "w") as f: f.write(pdb_content)
logger.info(f"Workflow {item_id}: AlphaFold2 PDB saved to {pdb_path}. Chain details: {chain_details}")
tool_output = {"success": True, "message": "AlphaFold2 prediction complete.", "target_pdb_preview": pdb_preview, "saved_pdb_path": str(pdb_path)}
else:
error_detail = api_result.get("error", "AlphaFold2 prediction failed.") if isinstance(api_result, dict) else "AlphaFold2 prediction failed."
logger.error(f"Workflow {item_id}: AlphaFold2 call failed: {error_detail}")
tool_output = {"success": False, "error": error_detail}
state_updates["target_structure_predicted"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
async def _run_nim_rfdiffusion(self, args: Dict, workflow_state: Dict) -> Dict:
"""
Runs RFDiffusion for binder backbone design. Returns structured output with
tool_output and state_updates separated.
"""
item_id = workflow_state["item_id"]
current_internal_step = workflow_state["current_internal_step"]
target_pdb_content = workflow_state.get("target_pdb_content")
target_chain_details = workflow_state.get("target_chain_details", {})
tool_output = {}
state_updates = {}
contigs_str_from_llm = args.get("contigs")
if not target_pdb_content:
tool_output = {"success": False, "error": "Target PDB not found in state for RFDiffusion."}
return {"tool_output": tool_output, "state_updates": state_updates}
if not contigs_str_from_llm:
tool_output = {"success": False, "error": "Missing 'contigs' for RFDiffusion."}
return {"tool_output": tool_output, "state_updates": state_updates}
validation_error = self._validate_rfd_contigs(contigs_str_from_llm, target_chain_details)
if validation_error:
logger.warning(f"RFDiffusion contigs validation failed for item {item_id}: {validation_error}. Contigs: '{contigs_str_from_llm}'")
tool_output = {"success": False, "error": f"Invalid contigs: {validation_error}"}
return {"tool_output": tool_output, "state_updates": state_updates}
hotspot_residues = args.get("hotspot_residues")
if hotspot_residues:
hotspot_validation_error = self._validate_rfd_hotspots(hotspot_residues, target_chain_details)
if hotspot_validation_error:
logger.warning(f"RFDiffusion hotspot validation failed for item {item_id}: {hotspot_validation_error}. Hotspots: {hotspot_residues}")
tool_output = {"success": False, "error": f"Invalid hotspots: {hotspot_validation_error}"}
return {"tool_output": tool_output, "state_updates": state_updates}
api_result = await call_rfdiffusion(
input_pdb=target_pdb_content, api_key=self.nim_api_key,
contigs=contigs_str_from_llm, hotspot_res=hotspot_residues,
timeout=self.api_timeout, polling_interval=self.polling_interval
)
if api_result and "output_pdb" in api_result:
binder_pdb = api_result["output_pdb"]
binder_chain_details, binder_pdb_preview = get_pdb_chain_details(binder_pdb)
state_updates["binder_backbone_pdb_content"] = binder_pdb
state_updates["binder_chain_details"] = binder_chain_details
state_updates["binder_pdb_preview"] = binder_pdb_preview
state_updates["binder_backbone_designed"] = True
pdb_path = self.output_dir / f"binder_backbone_{item_id}_s{current_internal_step}_rfd.pdb"
with open(pdb_path, "w") as f: f.write(binder_pdb)
logger.info(f"Workflow {item_id}: RFDiffusion PDB saved to {pdb_path}")
tool_output = {"success": True, "message": "RFDiffusion complete.", "binder_backbone_pdb_preview": binder_pdb_preview, "saved_pdb_path": str(pdb_path)}
else:
error_detail = api_result.get("error", "RFDiffusion failed.") if isinstance(api_result, dict) else "RFDiffusion failed."
logger.error(f"Workflow {item_id}: RFDiffusion call failed: {error_detail}. API Result: {api_result}")
tool_output = {"success": False, "error": error_detail}
state_updates["binder_backbone_designed"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
async def _run_nim_proteinmpnn(self, args: Dict, workflow_state: Dict) -> Dict:
"""
Runs ProteinMPNN for binder sequence design. Returns structured output with
tool_output and state_updates separated.
"""
item_id = workflow_state["item_id"]
current_internal_step = workflow_state["current_internal_step"]
binder_pdb = workflow_state.get("binder_backbone_pdb_content")
tool_output = {}
state_updates = {}
if not binder_pdb:
tool_output = {"success": False, "error": "Binder backbone PDB not found for ProteinMPNN."}
return {"tool_output": tool_output, "state_updates": state_updates}
sampling_temp_list = args.get("sampling_temp", [0.1])
api_result = await call_proteinmpnn(
input_pdb=binder_pdb, api_key=self.nim_api_key,
sampling_temp=sampling_temp_list,
timeout=self.api_timeout, polling_interval=self.polling_interval
)
if not (api_result and "mfasta" in api_result):
error_detail = api_result.get("error", "ProteinMPNN call failed or no mfasta in result.") if isinstance(api_result, dict) else "PMPNN call failed"
logger.error(f"Workflow {item_id}: ProteinMPNN call failed: {error_detail}. API Result: {api_result}")
tool_output = {"success": False, "error": error_detail}
state_updates["binder_sequence_designed"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
fasta_content = api_result["mfasta"]
entries: List[Tuple[float, str, str]] = []
current_header = None
current_sequence_parts: List[str] = []
for line_content in fasta_content.splitlines():
line = line_content.strip()
if not line: continue
if line.startswith(">"):
if current_header and current_sequence_parts:
full_sequence_line = "".join(current_sequence_parts)
score_match = re.search(r"global_score=([-\d.]+)", current_header)
global_score = float(score_match.group(1)) if score_match else -float('inf')
entries.append((global_score, current_header, full_sequence_line))
current_header = line
current_sequence_parts = []
else:
current_sequence_parts.append(line)
if current_header and current_sequence_parts:
full_sequence_line = "".join(current_sequence_parts)
score_match = re.search(r"global_score=([-\d.]+)", current_header)
global_score = float(score_match.group(1)) if score_match else -float('inf')
entries.append((global_score, current_header, full_sequence_line))
if not entries:
tool_output = {"success": False, "error": "No sequences parsed from PMPNN."}
state_updates["binder_sequence_designed"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
entries.sort(key=lambda x: x[0], reverse=True)
best_global_score, best_header, best_full_sequence_line = entries[0]
logger.info(f"Workflow {item_id}: Best PMPNN sequence chosen (global_score={best_global_score:.4f}) from header: '{best_header}' -> Seq line: '{best_full_sequence_line}'")
parsed_binder_chains = [s.strip() for s in best_full_sequence_line.split('/') if s.strip()]
if not parsed_binder_chains or not all(s and s.isalpha() and s.isupper() for s in parsed_binder_chains):
tool_output = {"success": False, "error": f"Invalid binder chains from PMPNN after parsing '{best_full_sequence_line}'. Parsed: {parsed_binder_chains}"}
state_updates["binder_sequence_designed"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
state_updates["designed_binder_sequence"] = parsed_binder_chains
state_updates["binder_sequence_designed"] = True
fasta_path = self.output_dir / f"binder_sequence_{item_id}_s{current_internal_step}_pmpnn.fasta"
with open(fasta_path, "w") as f: f.write(fasta_content)
logger.info(f"Workflow {item_id}: ProteinMPNN FASTA saved to {fasta_path}. Selected binder chains: {parsed_binder_chains}")
preview = parsed_binder_chains[0][:60] + "..." if parsed_binder_chains else "N/A"
if len(parsed_binder_chains) > 1:
preview += f" (+ {len(parsed_binder_chains)-1} more chain(s))"
tool_output = {
"success": True,
"message": f"ProteinMPNN complete. Selected best (global_score={best_global_score:.4f}).",
"designed_binder_sequence_list": parsed_binder_chains,
"designed_binder_sequence_preview": preview,
"saved_fasta_path": str(fasta_path)
}
return {"tool_output": tool_output, "state_updates": state_updates}
async def _run_nim_af2_multimer(self, args: Dict, workflow_state: Dict) -> Dict:
"""
Runs AlphaFold2-Multimer to evaluate the target-binder complex. Returns structured output
with tool_output and state_updates separated.
"""
item_id = workflow_state["item_id"]
current_internal_step = workflow_state["current_internal_step"]
target_seq = workflow_state.get("target_sequence")
designed_binder_chains_list = workflow_state.get("designed_binder_sequence")
tool_output = {}
state_updates = {}
if not target_seq or not designed_binder_chains_list or not isinstance(designed_binder_chains_list, list):
tool_output = {"success": False, "error": "Missing or invalid sequences for AF2-Multimer."}
return {"tool_output": tool_output, "state_updates": state_updates}
all_input_sequences_for_multimer = [target_seq] + designed_binder_chains_list
for i, seq_to_validate in enumerate(all_input_sequences_for_multimer):
if not (seq_to_validate and isinstance(seq_to_validate, str) and seq_to_validate.isalpha() and seq_to_validate.isupper()):
error_msg = (f"Sequence {i+1} (part of target/binder complex) is invalid: "
f"'{str(seq_to_validate)[:30]}...'. Contains non-alpha/lowercase, is empty, or not a string.")
logger.error(f"Workflow {item_id}: {error_msg}")
tool_output = {"success": False, "error": error_msg}
return {"tool_output": tool_output, "state_updates": state_updates}
relax = args.get("relax_prediction", True) # Added to use LLM arg
if self.debug_protein_design_calls:
self._debug_af2m_call_count += 1
mock_plddt = 87.5 if self._debug_af2m_call_count % 2 == 1 else 45.2
success_message = f"DEBUG MODE: Returning {'high' if mock_plddt > 50 else 'low'}-quality mock results (call #{self._debug_af2m_call_count})"
mock_pdb_path = self.output_dir / f"mock_complex_{item_id}_s{current_internal_step}_af2m.pdb"
with open(mock_pdb_path, "w") as f:
f.write(f"MOCK PDB FILE for complex. Predicted pLDDT {mock_plddt}\n")
state_updates["complex_pdb_content_path"] = str(mock_pdb_path)
state_updates["af2_multimer_plddt"] = mock_plddt
state_updates["complex_evaluated"] = True
tool_output = {
"success": True, "message": f"{success_message}. Mock pLDDT: {mock_plddt:.2f}",
"plddt": mock_plddt,
"complex_file_path": str(mock_pdb_path)
}
return {"tool_output": tool_output, "state_updates": state_updates}
output_subdir = self.output_dir / f"alphafold2_multimer_{item_id}_s{current_internal_step}"
logger.info(f"Using output directory for AlphaFold2-Multimer results: {output_subdir}")
api_result = await call_alphafold2_multimer(
sequences=all_input_sequences_for_multimer,
api_key=self.nim_api_key,
relax_prediction=relax,
timeout=self.api_timeout,
polling_interval=self.polling_interval,
output_dir=output_subdir
)
if isinstance(api_result, dict):
if "success" in api_result and api_result["success"] is False:
error_detail = api_result.get("error", "AF2-Multimer call failed with error.")
detail_info = api_result.get("detail", "")
if detail_info:
error_detail += f" Details: {detail_info}"
logger.error(f"Workflow {item_id}: AF2-Multimer call failed: {error_detail}")
tool_output = {"success": False, "error": error_detail}
state_updates["complex_evaluated"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
if "structures" in api_result and len(api_result["structures"]) > 0:
all_structures_info = api_result["structures"]
best_structure_info = None
highest_plddt = -1.0
for struct_info in all_structures_info:
current_plddt = struct_info.get("average_plddt", 0.0)
if current_plddt > highest_plddt:
highest_plddt = current_plddt
best_structure_info = struct_info
if best_structure_info is None: # Should not happen if all_structures_info was not empty
logger.error(f"Workflow {item_id}: No valid structure with pLDDT found in AF2-Multimer results.")
tool_output = {"success": False, "error": "No valid structure with pLDDT in AF2-Multimer results."}
state_updates["complex_evaluated"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
best_plddt = best_structure_info.get("average_plddt", 0.0)
best_pdb_path = best_structure_info.get("saved_pdb_path")
best_model_idx = best_structure_info.get("model_index", "N/A")
state_updates["complex_pdb_content_path"] = best_pdb_path
state_updates["af2_multimer_plddt"] = best_plddt
state_updates["complex_evaluated"] = True
logger.info(f"Workflow {item_id}: AlphaFold2-Multimer complete. Selected best model (Index {best_model_idx}) with pLDDT: {best_plddt:.2f} from {len(all_structures_info)} models. PDB: {best_pdb_path}")
complex_quality_message = f"AlphaFold2-Multimer evaluation complete. Selected best model (Index {best_model_idx}) with pLDDT: {best_plddt:.2f}"
tool_output = {
"success": True,
"message": complex_quality_message,
"plddt": best_plddt,
"complex_file_path": best_pdb_path,
"selected_model_index": best_model_idx
}
return {"tool_output": tool_output, "state_updates": state_updates}
error_detail = "AF2-Multimer call failed or returned unexpected data format."
if isinstance(api_result, dict) and "error" in api_result:
error_detail = api_result["error"]
logger.error(f"Workflow {item_id}: AF2-Multimer call failed: {error_detail}. Full API Result: {api_result}")
tool_output = {"success": False, "error": error_detail}
state_updates["complex_evaluated"] = False
return {"tool_output": tool_output, "state_updates": state_updates}
async def dispatch_tool_call(self, tool_name: str, args: Dict, workflow_state: Dict) -> Dict:
"""Main dispatch method for executing tools."""
item_id = workflow_state["item_id"]
internal_step = workflow_state["current_internal_step"]
logger.info(f"ToolExecutor: Dispatching tool '{tool_name}' for workflow {item_id}, Step {internal_step} with args: {args}")
if not self.nim_api_key:
return {
"tool_output": {"success": False, "error": "NIM API key not configured in ToolExecutor."},
"state_updates": {}
}
if tool_name == "predict_target_structure_alphafold2":
return await self._run_nim_alphafold2(args, workflow_state)
elif tool_name == "design_binder_backbone_rfdiffusion":
return await self._run_nim_rfdiffusion(args, workflow_state)
elif tool_name == "design_binder_sequence_proteinmpnn":
return await self._run_nim_proteinmpnn(args, workflow_state)
elif tool_name == "evaluate_binder_complex_alphafold2_multimer":
return await self._run_nim_af2_multimer(args, workflow_state)
else:
logger.error(f"ToolExecutor: Unknown tool name '{tool_name}' for workflow {item_id}")
return {
"tool_output": {"success": False, "error": f"Unknown tool name: {tool_name}"},
"state_updates": {}
}