Spaces:
Running
Running
File size: 19,176 Bytes
060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 44bdb52 060bb47 | 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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 | """Phase 4 — Reverse translation, host-specific codon optimization, and
restriction-site scrubbing for downstream Golden Gate / synthesis assembly.
For each amino acid we choose the codon with the highest empirical frequency
in the chosen host. The user can swap in a different host's table without
touching the rest of the pipeline.
After the initial reverse-translation we scan the DNA — and its reverse
complement, because Type IIS enzymes like BsaI/BsmBI cut on either strand —
for forbidden sites (BsaI ``GGTCTC``, BsmBI ``CGTCTC``, NotI ``GCGGCCGC``).
When a hit is found we introduce a *synonymous* mutation in an overlapping
codon (a different codon for the same amino acid) so the encoded protein is
unchanged but the restriction enzyme recognition pattern is destroyed. This
is the standard practice for synthesis-vendor DNA prep: silent edits to keep
cloning enzymes from chewing the insert apart at unintended positions.
"""
from __future__ import annotations
import logging
import re
from dataclasses import dataclass
from typing import Any, Dict, List, Optional, Tuple
import pandas as pd
from Bio.Seq import Seq
from Bio.SeqUtils import MeltingTemp as _mt
from dee.optimizer.search import Variant, apply_variant
logger = logging.getLogger(__name__)
# --------------------------------------------------------------------- tables
# E. coli K12 highly-expressed codon preferences. Values are codon-frequency
# weights per amino acid (sourced from the standard Kazusa / HEG-based tables
# commonly used in synthesis-vendor optimizers). The pipeline only needs the
# *relative* ranking, so exact percentages are unnecessary.
_E_COLI_K12: Dict[str, Dict[str, float]] = {
"A": {"GCG": 0.36, "GCC": 0.27, "GCA": 0.21, "GCT": 0.16},
"R": {"CGT": 0.38, "CGC": 0.40, "CGG": 0.10, "CGA": 0.06, "AGA": 0.04, "AGG": 0.02},
"N": {"AAC": 0.55, "AAT": 0.45},
"D": {"GAT": 0.63, "GAC": 0.37},
"C": {"TGC": 0.55, "TGT": 0.45},
"Q": {"CAG": 0.65, "CAA": 0.35},
"E": {"GAA": 0.68, "GAG": 0.32},
"G": {"GGT": 0.34, "GGC": 0.40, "GGA": 0.11, "GGG": 0.15},
"H": {"CAT": 0.57, "CAC": 0.43},
"I": {"ATT": 0.51, "ATC": 0.42, "ATA": 0.07},
"L": {"CTG": 0.50, "CTC": 0.10, "CTT": 0.10, "CTA": 0.04, "TTA": 0.13, "TTG": 0.13},
"K": {"AAA": 0.74, "AAG": 0.26},
"M": {"ATG": 1.00},
"F": {"TTT": 0.58, "TTC": 0.42},
"P": {"CCG": 0.52, "CCA": 0.19, "CCT": 0.16, "CCC": 0.12},
"S": {"AGC": 0.28, "TCT": 0.17, "TCC": 0.15, "TCA": 0.14, "AGT": 0.15, "TCG": 0.14},
"T": {"ACC": 0.44, "ACG": 0.27, "ACA": 0.13, "ACT": 0.17},
"W": {"TGG": 1.00},
"Y": {"TAT": 0.59, "TAC": 0.41},
"V": {"GTG": 0.37, "GTT": 0.28, "GTC": 0.20, "GTA": 0.15},
"*": {"TAA": 0.61, "TAG": 0.09, "TGA": 0.30},
}
_S_CEREVISIAE: Dict[str, Dict[str, float]] = {
"A": {"GCT": 0.38, "GCC": 0.22, "GCA": 0.29, "GCG": 0.11},
"R": {"AGA": 0.48, "AGG": 0.21, "CGT": 0.14, "CGC": 0.06, "CGA": 0.07, "CGG": 0.04},
"N": {"AAT": 0.59, "AAC": 0.41},
"D": {"GAT": 0.65, "GAC": 0.35},
"C": {"TGT": 0.63, "TGC": 0.37},
"Q": {"CAA": 0.69, "CAG": 0.31},
"E": {"GAA": 0.71, "GAG": 0.29},
"G": {"GGT": 0.47, "GGC": 0.19, "GGA": 0.22, "GGG": 0.12},
"H": {"CAT": 0.64, "CAC": 0.36},
"I": {"ATT": 0.46, "ATC": 0.26, "ATA": 0.27},
"L": {"TTA": 0.28, "TTG": 0.29, "CTT": 0.13, "CTC": 0.06, "CTA": 0.14, "CTG": 0.11},
"K": {"AAA": 0.58, "AAG": 0.42},
"M": {"ATG": 1.00},
"F": {"TTT": 0.59, "TTC": 0.41},
"P": {"CCT": 0.31, "CCC": 0.15, "CCA": 0.42, "CCG": 0.12},
"S": {"TCT": 0.26, "TCC": 0.16, "TCA": 0.21, "TCG": 0.10, "AGT": 0.16, "AGC": 0.11},
"T": {"ACT": 0.35, "ACC": 0.22, "ACA": 0.30, "ACG": 0.14},
"W": {"TGG": 1.00},
"Y": {"TAT": 0.56, "TAC": 0.44},
"V": {"GTT": 0.39, "GTC": 0.21, "GTA": 0.21, "GTG": 0.19},
"*": {"TAA": 0.48, "TAG": 0.23, "TGA": 0.30},
}
_H_SAPIENS: Dict[str, Dict[str, float]] = {
"A": {"GCT": 0.27, "GCC": 0.40, "GCA": 0.23, "GCG": 0.11},
"R": {"CGT": 0.08, "CGC": 0.19, "CGA": 0.11, "CGG": 0.21, "AGA": 0.20, "AGG": 0.20},
"N": {"AAT": 0.46, "AAC": 0.54},
"D": {"GAT": 0.46, "GAC": 0.54},
"C": {"TGT": 0.45, "TGC": 0.55},
"Q": {"CAA": 0.25, "CAG": 0.75},
"E": {"GAA": 0.42, "GAG": 0.58},
"G": {"GGT": 0.16, "GGC": 0.34, "GGA": 0.25, "GGG": 0.25},
"H": {"CAT": 0.41, "CAC": 0.59},
"I": {"ATT": 0.36, "ATC": 0.48, "ATA": 0.16},
"L": {"TTA": 0.07, "TTG": 0.13, "CTT": 0.13, "CTC": 0.20, "CTA": 0.07, "CTG": 0.41},
"K": {"AAA": 0.42, "AAG": 0.58},
"M": {"ATG": 1.00},
"F": {"TTT": 0.45, "TTC": 0.55},
"P": {"CCT": 0.28, "CCC": 0.33, "CCA": 0.27, "CCG": 0.11},
"S": {"TCT": 0.15, "TCC": 0.22, "TCA": 0.15, "TCG": 0.06, "AGT": 0.15, "AGC": 0.24},
"T": {"ACT": 0.24, "ACC": 0.36, "ACA": 0.28, "ACG": 0.12},
"W": {"TGG": 1.00},
"Y": {"TAT": 0.43, "TAC": 0.57},
"V": {"GTT": 0.18, "GTC": 0.24, "GTA": 0.11, "GTG": 0.47},
"*": {"TAA": 0.28, "TAG": 0.20, "TGA": 0.52},
}
CODON_USAGE_TABLES: Dict[str, Dict[str, Dict[str, float]]] = {
"e_coli": _E_COLI_K12,
"ecoli": _E_COLI_K12,
"yeast": _S_CEREVISIAE,
"s_cerevisiae": _S_CEREVISIAE,
"human": _H_SAPIENS,
"h_sapiens": _H_SAPIENS,
}
# Type IIS / Golden Gate-relevant sites we always want to scrub.
DEFAULT_FORBIDDEN_SITES: Dict[str, str] = {
"BsaI": "GGTCTC",
"BsmBI": "CGTCTC",
"NotI": "GCGGCCGC",
}
# ---------------------------------------------------------------- helpers
def _ranked_codons(usage: Dict[str, float]) -> List[str]:
return [c for c, _ in sorted(usage.items(), key=lambda kv: kv[1], reverse=True)]
def _best_codon(aa: str, table: Dict[str, Dict[str, float]]) -> str:
if aa not in table:
raise ValueError(f"Amino acid {aa!r} not present in codon usage table.")
return _ranked_codons(table[aa])[0]
def _reverse_complement(dna: str) -> str:
return str(Seq(dna).reverse_complement())
def _resolve_table(host: str) -> Dict[str, Dict[str, float]]:
key = host.lower().replace(".", "_").replace(" ", "_")
if key not in CODON_USAGE_TABLES:
raise ValueError(
f"Unknown host {host!r}. Known: {sorted(set(CODON_USAGE_TABLES))}."
)
return CODON_USAGE_TABLES[key]
# ---------------------------------------------------------------- API
def reverse_translate(
protein: str,
host: str = "e_coli",
*,
append_stop: bool = True,
) -> str:
"""Reverse-translate ``protein`` using the host's most-frequent codon for each AA."""
table = _resolve_table(host)
codons = [_best_codon(aa, table) for aa in protein]
if append_stop:
codons.append(_best_codon("*", table))
return "".join(codons)
def _find_all(seq: str, motif: str) -> List[int]:
"""Return all 0-indexed start positions of ``motif`` inside ``seq``."""
return [m.start() for m in re.finditer(f"(?={re.escape(motif)})", seq)]
def _try_clear_motif_at(
dna: List[str], # mutable list of codons
nt_start: int, # 0-indexed nt position of the offending motif
motif_len: int,
protein: str,
table: Dict[str, Dict[str, float]],
forbidden: Dict[str, str],
) -> bool:
"""Attempt to silently disrupt the motif starting at ``nt_start``.
Iterates over every codon that overlaps the motif and tries each
synonymous alternative (ranked by host frequency, best first). Returns
``True`` on success, ``False`` if no synonymous edit can break the site.
"""
first_codon = nt_start // 3
last_codon = (nt_start + motif_len - 1) // 3
motif_end = nt_start + motif_len
for codon_idx in range(first_codon, last_codon + 1):
if codon_idx >= len(protein):
continue # Stop-codon region — skip.
aa = protein[codon_idx]
original = dna[codon_idx]
alternatives = [c for c in _ranked_codons(table[aa]) if c != original]
for alt in alternatives:
dna[codon_idx] = alt
full = "".join(dna)
# Confirm the offending motif is gone in the local window AND no
# new forbidden site was created on either strand by the edit.
local = full[max(0, nt_start - 7) : motif_end + 7]
local_rc = _reverse_complement(local)
if all(
site not in local and site not in local_rc
for site in forbidden.values()
):
logger.debug(
"Cleared motif at nt %d via synonymous edit at codon %d: %s -> %s (%s).",
nt_start,
codon_idx,
original,
alt,
aa,
)
return True
dna[codon_idx] = original # Undo before trying the next overlapping codon.
return False
@dataclass
class CleanupReport:
"""Diagnostic record for one variant's restriction-site scrubbing pass."""
sites_found: Dict[str, int]
sites_cleared: Dict[str, int]
unresolved: List[Tuple[str, int]] # (enzyme, nt_position)
@property
def fully_clean(self) -> bool:
return not self.unresolved
def _scan_for_sites(
dna: str, forbidden: Dict[str, str]
) -> Tuple[Dict[str, int], List[Tuple[str, int]]]:
"""Pure observation pass: count + locate every forbidden site on both
strands of ``dna``. No mutation. Returned positions are 0-indexed on the
FORWARD strand for both forward and reverse-complement hits (the RC hit
position is mapped back to its forward-strand coordinate) so callers
don't have to keep track of which strand a hit came from.
"""
rc = _reverse_complement(dna)
counts: Dict[str, int] = {k: 0 for k in forbidden}
sites: List[Tuple[str, int]] = []
seen: set = set() # (enzyme, fwd_pos) — dedup forward+RC overlap on palindromes
for enzyme, motif in forbidden.items():
for hit in _find_all(dna, motif):
key = (enzyme, hit)
if key not in seen:
seen.add(key)
sites.append(key)
counts[enzyme] += 1
for hit_rc in _find_all(rc, motif):
fwd = len(dna) - hit_rc - len(motif)
key = (enzyme, fwd)
if key not in seen:
seen.add(key)
sites.append(key)
counts[enzyme] += 1
sites.sort()
return counts, sites
def scrub_restriction_sites(
dna: str,
protein: str,
host: str = "e_coli",
*,
forbidden_sites: Optional[Dict[str, str]] = None,
) -> Tuple[str, CleanupReport]:
"""Iteratively introduce synonymous mutations until no forbidden site
remains, then ground-truth the report by re-scanning the final sequence.
Scans both strands (Type IIS enzymes recognize asymmetric sites on either
strand, so the reverse complement must also be searched). Stops when the
sequence is clean or no further synonymous fix exists within the
``max_passes`` budget.
The reported numbers (``sites_found``, ``sites_cleared``, ``unresolved``)
are derived from two pure scans — one of the original input and one of
the final output — rather than from accumulators inside the loop. Earlier
versions double-counted a site that took multiple passes to resolve and
could leave stale entries in ``unresolved`` for sites the loop later
cleared. Trusting the final scan is the only way to keep the row's
``Restriction_Sites_Unresolved`` column honest, because that number gates
whether the UI lets the user push the sequence to a synthesis vendor.
"""
forbidden = forbidden_sites or DEFAULT_FORBIDDEN_SITES
table = _resolve_table(host)
# Snapshot the initial site population. This becomes ``sites_found`` —
# the count of sites that were present BEFORE scrubbing, not the number
# of attempts the loop made.
initial_counts, _ = _scan_for_sites(dna, forbidden)
codons = [dna[i : i + 3] for i in range(0, len(dna), 3)]
max_passes = 20 # Defensive cap; in practice 2-3 passes suffice.
for _ in range(max_passes):
current = "".join(codons)
rc = _reverse_complement(current)
any_hit = False
for enzyme, motif in forbidden.items():
# Forward strand hits.
for hit in _find_all(current, motif):
any_hit = True
_try_clear_motif_at(codons, hit, len(motif), protein, table, forbidden)
break # Restart scan after any mutation; positions shift logically.
# Reverse strand hits — translate the RC coordinate back to forward.
for hit_rc in _find_all(rc, motif):
any_hit = True
fwd_start = len(current) - hit_rc - len(motif)
_try_clear_motif_at(
codons, fwd_start, len(motif), protein, table, forbidden
)
break
if not any_hit:
break
final = "".join(codons)
# Final sanity check: protein must be unchanged.
translated = str(Seq(final[: len(protein) * 3]).translate(table=1))
if translated != protein:
raise RuntimeError(
"Synonymous scrubbing altered the encoded protein; aborting. "
f"Expected {protein!r}, got {translated!r}."
)
# Ground truth: what's actually still in the final sequence?
final_counts, final_sites = _scan_for_sites(final, forbidden)
cleared_counts = {
enzyme: max(0, initial_counts.get(enzyme, 0) - final_counts.get(enzyme, 0))
for enzyme in forbidden
}
report = CleanupReport(
sites_found=initial_counts,
sites_cleared=cleared_counts,
unresolved=final_sites,
)
return final, report
def gc_content(dna: str) -> float:
"""GC fraction (0-100) of a DNA string. Treats only A/C/G/T as real bases —
ambiguity codes or stop-codon asterisks don't count toward the denominator."""
if not dna:
return 0.0
dna_u = dna.upper()
bases = sum(1 for c in dna_u if c in "ACGT")
if not bases:
return 0.0
gc = sum(1 for c in dna_u if c in "GC")
return 100.0 * gc / bases
def _tm(dna: str) -> Optional[float]:
"""Nearest-neighbor melting temperature in °C under standard PCR salt
conditions (Na⁺ 50 mM, Mg²⁺ 1.5 mM, dNTPs 0.2 mM, primer 500 nM, template
50 nM). Returns ``None`` if the sequence is too short for the NN method."""
if len(dna) < 8:
return None
return float(
_mt.Tm_NN(dna, dnac1=500, dnac2=50, Na=50, Mg=1.5, dNTPs=0.2)
)
def _has_gc_clamp(primer: str) -> bool:
"""True if the primer's 3' end is G or C — improves polymerase priming."""
return primer[-1:].upper() in {"G", "C"}
def design_primer(
template: str,
*,
target_tm: float = 60.0,
min_len: int = 18,
max_len: int = 28,
) -> Tuple[str, Optional[float]]:
"""Pick a primer from the 5' end of ``template`` closest to ``target_tm``.
Iterates lengths in [min_len, max_len], computes Tm at each, returns the
candidate whose Tm is closest to the target — preferring 3'-end G/C
("GC clamp") at the upper end of the length range. For ``min_len`` up to
the polymerase-friendly default 60 °C, this typically lands at 18-22 bp.
"""
if not template:
return "", None
best: Tuple[str, Optional[float]] = (template[:min_len], None)
best_score = float("inf")
for length in range(min_len, max_len + 1):
if length > len(template):
break
candidate = template[:length]
tm = _tm(candidate)
if tm is None:
continue
# Score is distance from target; small bonus for having a GC clamp.
score = abs(tm - target_tm) - (0.4 if _has_gc_clamp(candidate) else 0.0)
if score < best_score:
best_score = score
best = (candidate, tm)
return best
def pcr_metrics(dna: str) -> Dict[str, Any]:
"""Compute PCR-relevant numbers + designed primers for a CDS.
The forward primer reads from the 5' end of the CDS; the reverse primer
reads from the 5' end of the *reverse complement* (i.e. binds the 3' end
of the coding strand). Annealing temperature is conservatively set to
Tm − 5 °C of the cooler of the two primers, which is the standard rule
for high-fidelity polymerases like Q5/Phusion.
"""
if not dna:
return {}
rev = str(Seq(dna).reverse_complement())
fwd_primer, fwd_tm = design_primer(dna)
rev_primer, rev_tm = design_primer(rev)
annealing: Optional[float] = None
if fwd_tm is not None and rev_tm is not None:
annealing = round(min(fwd_tm, rev_tm) - 5.0, 1)
return {
"length_bp": len(dna),
"gc_percent": round(gc_content(dna), 1),
"primer_fwd": fwd_primer,
"primer_fwd_tm_c": round(fwd_tm, 1) if fwd_tm is not None else None,
"primer_fwd_gc": round(gc_content(fwd_primer), 1),
"primer_fwd_clamp": _has_gc_clamp(fwd_primer),
"primer_rev": rev_primer,
"primer_rev_tm_c": round(rev_tm, 1) if rev_tm is not None else None,
"primer_rev_gc": round(gc_content(rev_primer), 1),
"primer_rev_clamp": _has_gc_clamp(rev_primer),
"annealing_temp_c": annealing,
}
def variants_to_dataframe(
wt_protein: str,
variants: List[Variant],
host: str = "e_coli",
*,
forbidden_sites: Optional[Dict[str, str]] = None,
) -> pd.DataFrame:
"""Build the Phase-4 output table: one row per optimized multi-mutant."""
rows: List[Dict[str, object]] = []
for v in variants:
mut_protein = apply_variant(wt_protein, v)
raw_dna = reverse_translate(mut_protein, host=host, append_stop=True)
clean_dna, report = scrub_restriction_sites(
raw_dna, mut_protein + "*", host=host, forbidden_sites=forbidden_sites
)
pcr = pcr_metrics(clean_dna)
rows.append(
{
"Variant_ID": f"V{v.rank:04d}",
"Mutations_AA": ",".join(v.mutation_labels),
"Mutant_AA_Seq": mut_protein,
"Optimized_DNA_Seq": clean_dna,
"Predicted_Fitness_Score": round(v.fitness, 6),
"Length_bp": pcr.get("length_bp"),
"GC_Percent": pcr.get("gc_percent"),
"Primer_Fwd": pcr.get("primer_fwd"),
"Primer_Fwd_Tm_C": pcr.get("primer_fwd_tm_c"),
"Primer_Fwd_GC_Percent": pcr.get("primer_fwd_gc"),
"Primer_Rev": pcr.get("primer_rev"),
"Primer_Rev_Tm_C": pcr.get("primer_rev_tm_c"),
"Primer_Rev_GC_Percent": pcr.get("primer_rev_gc"),
"Annealing_Temp_C": pcr.get("annealing_temp_c"),
"Restriction_Sites_Found": sum(report.sites_found.values()),
"Restriction_Sites_Unresolved": len(report.unresolved),
}
)
return pd.DataFrame(rows)
def write_library_csv(df: pd.DataFrame, path: str) -> None:
"""Write the final library to disk. Columns match the spec."""
df.to_csv(path, index=False)
logger.info("Wrote %d variants to %s.", len(df), path)
|