Spaces:
Sleeping
Sleeping
File size: 8,436 Bytes
bc2a98e | 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 242 243 244 245 246 247 248 249 250 251 | """CIF -> metal symbols + linker SMILES extraction with 3-level degradation."""
import math
import re
from pathlib import Path
import yaml
from pymatgen.core import Structure
_METAL_ELEMENTS = {
"Li", "Be", "Na", "Mg", "Al", "K", "Ca", "Sc", "Ti", "V", "Cr", "Mn",
"Fe", "Co", "Ni", "Cu", "Zn", "Ga", "Rb", "Sr", "Y", "Zr", "Nb", "Mo",
"Ru", "Rh", "Pd", "Ag", "Cd", "In", "Sn", "Sb", "Cs", "Ba", "La", "Ce",
"Pr", "Nd", "Sm", "Eu", "Gd", "Tb", "Dy", "Ho", "Er", "Tm", "Yb", "Lu",
"Hf", "Ta", "W", "Re", "Os", "Ir", "Pt", "Au", "Hg", "Tl", "Pb", "Bi",
"U", "Th",
}
def _load_known_linkers() -> dict:
config_path = Path(__file__).resolve().parent.parent / "configs" / "known_linkers.yaml"
with open(config_path, "r", encoding="utf-8") as f:
data = yaml.safe_load(f)
return data.get("linkers", {})
def _extract_metals(structure: Structure) -> list[str]:
metals = set()
for site in structure:
symbol = site.specie.symbol
if symbol in _METAL_ELEMENTS:
metals.add(symbol)
return sorted(metals)
def _get_organic_elements(structure: Structure) -> dict[str, int]:
organic = {}
for site in structure:
symbol = site.specie.symbol
if symbol not in _METAL_ELEMENTS:
organic[symbol] = organic.get(symbol, 0) + 1
return organic
def _format_formula(elements: dict[str, int]) -> str:
parts = []
for el in ["C", "H", "N", "O", "F", "Cl", "Br", "S", "P"]:
if el in elements:
count = elements[el]
parts.append(f"{el}{count}" if count > 1 else el)
for el in sorted(set(elements.keys()) - {"C", "H", "N", "O", "F", "Cl", "Br", "S", "P"}):
count = elements[el]
parts.append(f"{el}{count}" if count > 1 else el)
return "".join(parts)
def _parse_formula(formula: str) -> dict[str, int]:
elements = {}
for m in re.finditer(r"([A-Z][a-z]?)(\d*)", formula):
el, count = m.groups()
if el:
elements[el] = int(count) if count else 1
return elements
def _deprotonate_linker(formula: dict[str, int]) -> list[dict[str, int]]:
"""Generate deprotonated variants by removing 1-6 H atoms (carboxylate deprotonation)."""
variants = [formula.copy()]
if "H" in formula:
for n_remove in range(1, min(7, formula["H"] + 1)):
v = formula.copy()
v["H"] = formula["H"] - n_remove
if v["H"] == 0:
del v["H"]
variants.append(v)
return variants
def _score_linker_match(
linker_elements: dict[str, int],
observed: dict[str, int],
n_metals: int,
) -> tuple[float, int]:
"""Score how well a linker formula matches observed organic composition.
Uses C (or N if no C) as anchor to determine multiplier.
Allows O excess (metal-oxide clusters) and H tolerance (protonation states).
Returns (score, multiplier) where score 0.0=no match, 1.0=perfect.
"""
anchor = "C" if "C" in linker_elements else ("N" if "N" in linker_elements else None)
if anchor is None or anchor not in observed:
return 0.0, 0
multiplier_raw = observed[anchor] / linker_elements[anchor]
multiplier = round(multiplier_raw)
if multiplier < 1 or abs(multiplier_raw - multiplier) > 0.1:
return 0.0, 0
score = 1.0
penalties = 0.0
for el in linker_elements:
expected = linker_elements[el] * multiplier
actual = observed.get(el, 0)
if el == anchor:
if actual != expected:
return 0.0, 0
continue
if el == "O":
if actual < expected:
penalties += 0.3
elif actual > expected:
excess = actual - expected
max_cluster_o = n_metals * 2
if excess <= max_cluster_o:
penalties += 0.05
else:
penalties += 0.4
continue
if el == "H":
tolerance = max(multiplier * 2, 4)
if abs(actual - expected) <= tolerance:
penalties += min(abs(actual - expected) / (expected + 1) * 0.2, 0.2)
else:
penalties += 0.5
continue
if actual != expected:
if abs(actual - expected) / max(expected, 1) < 0.15:
penalties += 0.1
else:
return 0.0, 0
for el in observed:
if el not in linker_elements and el != "O":
return 0.0, 0
final_score = max(0.0, score - penalties)
return final_score, multiplier
def extract_linker(cif_path: str) -> dict:
"""Extract metal nodes and organic linker information from a CIF file.
Three-level degradation:
Level 1: exact formula match (direct or deprotonated variant).
Level 2: ratio-based match with tolerance for cluster atoms.
Level 3: unable_to_assess (metals still reported).
Args:
cif_path: absolute path to a .cif file.
Returns:
{
"metals": list[str],
"linker_smiles": str | None,
"linker_name": str | None,
"linker_formula": str | None,
"extraction_level": int,
"extraction_note": str,
}
Raises:
FileNotFoundError: if cif_path does not exist.
ValueError: if CIF cannot be parsed.
"""
path = Path(cif_path)
if not path.exists():
raise FileNotFoundError(f"CIF file not found: {cif_path}")
structure = Structure.from_file(str(path))
metals = _extract_metals(structure)
observed = _get_organic_elements(structure)
organic_formula = _format_formula(observed)
known_linkers = _load_known_linkers()
if not observed or "C" not in observed:
return {
"metals": metals,
"linker_smiles": None,
"linker_name": None,
"linker_formula": organic_formula if organic_formula else None,
"extraction_level": 3,
"extraction_note": (
f"No organic carbon detected. Formula: {organic_formula}. "
"Adsorption predictions remain valid; toxicity assessment skipped."
),
}
# Level 1: exact formula match (including deprotonated variants)
for key, info in known_linkers.items():
linker_el = _parse_formula(info.get("formula", ""))
for variant in _deprotonate_linker(linker_el):
if variant == observed:
return {
"metals": metals,
"linker_smiles": info["smiles"],
"linker_name": info["name"],
"linker_formula": info["formula"],
"extraction_level": 1,
"extraction_note": f"Exact formula match: '{key}'.",
}
# Level 2: ratio-based match with scoring
n_metals = sum(1 for s in structure if s.specie.symbol in _METAL_ELEMENTS)
best_score = 0.0
best_match = None
best_key = None
best_multiplier = 0
for key, info in known_linkers.items():
linker_el = _parse_formula(info.get("formula", ""))
for variant in _deprotonate_linker(linker_el):
score, mult = _score_linker_match(variant, observed, n_metals)
if score > best_score:
best_score = score
best_match = info
best_key = key
best_multiplier = mult
if best_score >= 0.5 and best_match is not None:
return {
"metals": metals,
"linker_smiles": best_match["smiles"],
"linker_name": best_match["name"],
"linker_formula": best_match["formula"],
"extraction_level": 2,
"extraction_note": (
f"Ratio match to '{best_key}' (score={best_score:.2f}, "
f"~{best_multiplier} linkers/cell). "
f"Organic formula: {organic_formula}."
),
}
# Level 3: unable to assess
return {
"metals": metals,
"linker_smiles": None,
"linker_name": None,
"linker_formula": organic_formula if organic_formula else None,
"extraction_level": 3,
"extraction_note": (
f"Unable to identify linker. Organic formula: {organic_formula}. "
"Adsorption predictions remain valid; toxicity assessment skipped."
),
}
|