| from __future__ import annotations | |
| from pathlib import Path | |
| from .rdock_features import parse_rdock_output | |
| def parse_rdock_sdf(path: str | Path) -> dict[str, object]: | |
| """Parse real rDock SDF output and extract native/derived score features.""" | |
| source = Path(path) | |
| return parse_rdock_output(source) | |