File size: 313 Bytes
c289d87 | 1 2 3 4 5 6 7 8 9 10 11 | 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)
|