File size: 9,818 Bytes
0cb481f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | #!/usr/bin/env python3
"""Materialize Docking Base PDB outputs into GNNCP's flat pose layout.
The operation is intentionally non-destructive: it reads canonical common
outputs and creates hard links in a new directory. It neither rewrites nor
moves a docking result. The resulting layout is accepted by
``gnncp/system_split_code/build_compact_v1_direct.py``.
"""
from __future__ import annotations
import argparse
import csv
import json
import os
import re
import shutil
import tempfile
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Iterable
METHODS = ("diffdock", "autodock_vina", "medusagraph", "protenix")
TARGET_RE = re.compile(r"[A-Za-z0-9_.-]+\Z")
class MaterializeError(RuntimeError):
pass
def _utc_now() -> str:
return datetime.now(timezone.utc).isoformat()
def _write_json(path: Path, value: dict[str, Any]) -> None:
path.write_text(json.dumps(value, indent=2, sort_keys=True) + "\n", encoding="utf-8")
def _read_manifest(path: Path) -> dict[str, Any]:
try:
value = json.loads(path.read_text(encoding="utf-8"))
except (OSError, json.JSONDecodeError) as exc:
raise MaterializeError(f"cannot read manifest {path}: {exc}") from exc
if not isinstance(value, dict):
raise MaterializeError(f"manifest is not an object: {path}")
return value
def _inside(path: Path, root: Path) -> Path:
resolved = path.resolve()
try:
resolved.relative_to(root.resolve())
except ValueError as exc:
raise MaterializeError(f"path escapes native output directory: {path}") from exc
return resolved
def _pose_paths(native: Path) -> list[Path]:
csv_path = native / "poses.csv"
try:
with csv_path.open("r", newline="", encoding="utf-8") as handle:
rows = list(csv.DictReader(handle))
except OSError as exc:
raise MaterializeError(f"cannot read {csv_path}: {exc}") from exc
if not rows:
raise MaterializeError(f"no emitted poses in {csv_path}")
poses: list[tuple[int, str, Path]] = []
for ordinal, row in enumerate(rows, start=1):
raw_path = row.get("pose_file")
if not raw_path:
raise MaterializeError(f"{csv_path}: pose row {ordinal} has no pose_file")
candidate = Path(raw_path)
source = candidate if candidate.is_absolute() else native / candidate
source = _inside(source, native)
if source.suffix.lower() != ".pdb" or not source.is_file():
raise MaterializeError(f"{csv_path}: unsupported or missing PDB pose {source}")
rank_text = row.get("rank", "")
try:
rank = int(rank_text)
except ValueError:
rank = ordinal
poses.append((rank, source.name, source))
poses.sort(key=lambda item: (item[0], item[1]))
return [item[2] for item in poses]
def _discover(source_roots: Iterable[Path], method: str) -> dict[str, dict[str, Any]]:
"""Discover eligible outputs; later source roots deliberately take precedence."""
selected: dict[str, dict[str, Any]] = {}
for source_root in source_roots:
if not source_root.is_dir():
raise MaterializeError(f"source root is not a directory: {source_root}")
# Do not use a recursive glob here: a bulk run's work tree includes
# multi-gigabyte raw model artifacts. These are the only published
# Docking Base layouts produced by the normal/sharded/bulk launchers.
patterns = (
f"output/{method}/*/native/manifest.json",
f"shards/*/{method}/output/{method}/*/native/manifest.json",
f"workers/*/units/*/{method}/output/{method}/*/native/manifest.json",
f"*/{method}/output/{method}/*/native/manifest.json",
)
manifest_paths = {
path
for pattern in patterns
for path in source_root.glob(pattern)
}
for manifest_path in sorted(manifest_paths, key=lambda value: str(value)):
native = manifest_path.parent
target = native.parent.name
if not TARGET_RE.fullmatch(target):
raise MaterializeError(f"unsafe target name {target!r} in {native}")
manifest = _read_manifest(manifest_path)
if manifest.get("status") not in {"success", "partial"}:
continue
selected[target] = {
"native": native.resolve(),
"manifest": manifest_path.resolve(),
"source_root": source_root.resolve(),
}
return selected
def _link(source: Path, destination: Path) -> None:
if destination.exists() or destination.is_symlink():
raise MaterializeError(f"unexpected existing materialized file: {destination}")
try:
os.link(source, destination)
except OSError as exc:
raise MaterializeError(
f"hard-link failed ({source} -> {destination}); source and output must share a filesystem: {exc}"
) from exc
def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--method", choices=METHODS, required=True)
parser.add_argument(
"--source-root",
action="append",
type=Path,
required=True,
help="run root to scan; repeatable, later roots take target precedence",
)
parser.add_argument("--output-root", type=Path, required=True)
parser.add_argument("--max-systems", type=int, help="materialize this many ordered systems")
parser.add_argument("--max-poses-per-system", type=int, default=20)
return parser
def main() -> int:
args = build_parser().parse_args()
if args.max_systems is not None and args.max_systems <= 0:
raise MaterializeError("--max-systems must be positive")
if args.max_poses_per_system <= 0:
raise MaterializeError("--max-poses-per-system must be positive")
output_root = args.output_root.expanduser().resolve()
if output_root.exists():
raise MaterializeError(f"output root already exists; refusing to replace it: {output_root}")
source_roots = [path.expanduser().resolve() for path in args.source_root]
selected = _discover(source_roots, args.method)
ordered_targets = sorted(selected, key=str.casefold)
if args.max_systems is not None:
ordered_targets = ordered_targets[: args.max_systems]
if not ordered_targets:
raise MaterializeError("no success/partial common outputs discovered")
output_root.parent.mkdir(parents=True, exist_ok=True)
staging = Path(tempfile.mkdtemp(prefix=f".{output_root.name}.building-", dir=output_root.parent))
records: dict[str, Any] = {}
skipped: dict[str, str] = {}
try:
for target in ordered_targets:
source = selected[target]
native = Path(source["native"])
try:
protein = _inside(native / "protein.pdb", native)
ligand = _inside(native / "ligand.pdb", native)
if not protein.is_file() or not ligand.is_file():
raise MaterializeError("missing protein.pdb or ligand.pdb")
poses = _pose_paths(native)[: args.max_poses_per_system]
if not poses:
raise MaterializeError("no usable PDB poses")
destination = staging / target
destination.mkdir()
_link(protein, destination / "protein.pdb")
_link(ligand, destination / "ligand.pdb")
names: list[str] = []
for ordinal, pose in enumerate(poses, start=1):
name = f"{target}_pose_{ordinal:03d}.pdb"
_link(pose, destination / name)
names.append(name)
records[target] = {
"source_root": str(source["source_root"]),
"source_native": str(native),
"source_manifest": str(source["manifest"]),
"pose_count": len(names),
"materialized_poses": names,
}
except MaterializeError as exc:
shutil.rmtree(staging / target, ignore_errors=True)
skipped[target] = str(exc)
if not records:
raise MaterializeError("all selected systems were unusable")
source_index = {
"kind": "docking_base_common_output_to_gnncp_flat_index",
"method": args.method,
"records": records,
"skipped": skipped,
}
_write_json(staging / "source_index.json", source_index)
_write_json(
staging / "materialization_manifest.json",
{
"kind": "docking_base_gnncp_materialization",
"created_utc": _utc_now(),
"method": args.method,
"link_mode": "hardlink",
"source_roots": [str(path) for path in source_roots],
"requested_system_count": len(ordered_targets),
"materialized_system_count": len(records),
"materialized_pose_count": sum(item["pose_count"] for item in records.values()),
"skipped_system_count": len(skipped),
"max_poses_per_system": args.max_poses_per_system,
},
)
os.replace(staging, output_root)
except Exception:
shutil.rmtree(staging, ignore_errors=True)
raise
print(json.dumps({"output_root": str(output_root), **json.loads((output_root / "materialization_manifest.json").read_text())}, sort_keys=True))
return 0
if __name__ == "__main__":
try:
raise SystemExit(main())
except MaterializeError as exc:
print(f"error: {exc}")
raise SystemExit(2)
|