Spaces:
Runtime error
Runtime error
import abc | |
from typing import List | |
FilePath = str | |
class DockingEngine(abc.ABC): | |
def __enter__(self): | |
pass | |
def __exit__(self, typ, value, traceback): | |
pass | |
def set_receptor(self, pdb_path: FilePath): | |
pass | |
def set_ligand(self, pdb_path: FilePath): | |
pass | |
def dock(self) -> List[FilePath]: | |
pass | |