Spaces:
Paused
Paused
File size: 16,773 Bytes
ff34739 37a1395 ff34739 37a1395 ff34739 37a1395 ff34739 37a1395 ff34739 37a1395 ff34739 8ffc9f7 ff34739 8ffc9f7 ff34739 | 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 | """``python -m extract build|check`` β build the spec from the HTML, or verify no drift."""
from __future__ import annotations
import argparse
import json
import sys
from pathlib import Path
from extract.builder import DEFAULT_HTML, SPEC_ID, build_spec, to_canonical_json
_REPO = Path(__file__).resolve().parents[1]
# Per-spec metadata used when assembling an LLM-extracted spec.
_WHITELIST_3M = {
"cell_barcode_3M_feb2018": {
"name": "3M-february-2018", "path": "whitelists/3M-february-2018.txt.gz", "md5": None,
"md5_provenance": "computed_local_no_official_checksum",
"source_url": "https://raw.githubusercontent.com/f0t1h/3M-february-2018/master/3M-february-2018.txt.gz",
"source_note": "community mirror; no vendor checksum published",
"size_bytes_gz": 18350152, "count": 6794880, "length": 16, "retrieved_date": None,
}
}
_SPEC_META = {
"10x_3p_v3": {
"assay": "10x Chromium Single Cell 3' Gene Expression", "chemistry_version": "v3/v3.1",
"protocol_name": "10x Chromium 3' Gene Expression v3", "whitelist": _WHITELIST_3M,
},
# Technology-agnostic inference: respect the LLM's read structure, no 10x template.
"generic": {
"assay": "", "chemistry_version": "",
"protocol_name": "the sequencing library described in the document", "whitelist": {},
},
}
def _out_path(spec: str, out: str | None) -> Path:
return Path(out) if out else _REPO / "spec" / f"{spec}.json"
def cmd_build(args: argparse.Namespace) -> int:
spec = build_spec(args.html)
data = to_canonical_json(spec)
out = _out_path(args.spec, args.out)
out.parent.mkdir(parents=True, exist_ok=True)
out.write_bytes(data)
print(f"wrote {out} ({len(data)} bytes, {len(spec['oligos'])} oligos, "
f"sha256={spec['build']['source_html_sha256'][:12]}β¦)")
return 0
def cmd_check(args: argparse.Namespace) -> int:
data = to_canonical_json(build_spec(args.html))
out = _out_path(args.spec, args.out)
if not out.exists():
print(f"ERROR: {out} does not exist β run `python -m extract build` first", file=sys.stderr)
return 1
if out.read_bytes() != data:
print(f"DRIFT: {out} differs from a fresh build β run `python -m extract build`", file=sys.stderr)
return 1
print(f"OK: {out} matches a fresh build")
return 0
def cmd_from_doc(args: argparse.Namespace) -> int:
"""Extract a spec from a protocol/description doc via Claude Code headless (LLM extraction).
`--spec generic` runs technology-agnostic INFERENCE (respects the model's inferred read structure β
use for custom/novel assays); `--spec 10x_3p_v3` uses the 10x-anchored template assembly.
"""
from extract.doc_extract import (assemble_generic_spec, assemble_spec, cross_check, evaluate,
extract_document, extract_documents, _INFER_ADDENDUM)
meta = _SPEC_META.get(args.spec)
if meta is None:
print(f"ERROR: no metadata registered for spec {args.spec!r} (known: {list(_SPEC_META)})", file=sys.stderr)
return 1
generic = args.spec == "generic"
print(f"[from-doc] extracting {args.doc} via Claude Code ({args.model}"
f"{'; inferring structure' if generic else ''}) β¦", file=sys.stderr)
if generic:
result = extract_documents([args.doc], meta["protocol_name"], model=args.model,
extra_instructions=_INFER_ADDENDUM)
else:
result = extract_document(args.doc, meta["protocol_name"], model=args.model)
extraction = result["extraction"]
print(f"[from-doc] extracted {len(extraction['oligos'])} oligos "
f"(source {result['source_chars']} chars, {result.get('duration_ms', 0)/1000:.0f}s, "
f"${result.get('cost_usd') or 0:.3f})", file=sys.stderr)
if generic:
spec = assemble_generic_spec(
extraction, spec_id=args.spec,
assay=extraction.get("title") or "Custom sequencing library",
chemistry_version="",
source_docs=[{"doc_id": "protocol", "title": Path(args.doc).name, "url": None,
"path": str(args.doc), "retrieved_date": None}],
model=args.model,
)
else:
cc = cross_check(extraction)
print(f"[from-doc] cross-check vs verified constants: {cc['matched']}/{cc['checked']} matched", file=sys.stderr)
spec = assemble_spec(extraction, spec_id=args.spec, assay=meta["assay"],
chemistry_version=meta["chemistry_version"], source_doc_path=args.doc,
model=args.model, whitelist_block=meta["whitelist"])
out = Path(args.out) if args.out else _REPO / "spec" / f"{args.spec}.pdf.json"
out.parent.mkdir(parents=True, exist_ok=True)
out.write_bytes(to_canonical_json(spec))
print(f"[from-doc] wrote {out} ({len(spec['oligos'])} oligos, LLM-extracted)")
if args.eval and not generic:
gt_dir = args.groundtruth_dir or str(Path(args.doc).parent)
ev = evaluate(extraction, gt_dir)
print("\n[from-doc] EVAL vs groundtruth:")
print(f" oligo sequence recall : {ev['oligo_seqs_matched']}/{ev['oligo_seqs_total']} "
f"({ev['oligo_seq_recall']})")
if ev["missed_oligos"]:
print(f" missed : {', '.join(ev['missed_oligos'])}")
print(f" annotated library : {'EXACT MATCH' if ev['annotated_library_exact_match'] else 'DIFFERS'}")
if not ev["annotated_library_exact_match"]:
print(f" got : {ev['annotated_library_got']}")
print(f" expected: {ev['annotated_library_expected']}")
return 0
def cmd_wiki(args: argparse.Namespace) -> int:
"""Extract one technology's wiki spec from ALL its documents + cross-check the curated ground truth."""
from extract.doc_gather import get_technology
from extract.doc_extract import assemble_generic_spec, extract_documents
from extract.cross_check import cross_check_against_groundtruth
tech = get_technology(args.tech)
protocol_name = args.tech.replace("_", " ")
source_docs = [{"doc_id": d.name, "title": d.title or d.name,
"url": (f"https://doi.org/{d.doi}" if d.doi else None),
"path": str(d.path), "retrieved_date": None} for d in tech.docs]
reference = {"kind": "paper" if tech.doi else "protocol_doc", "label": tech.title or protocol_name,
"path": None, "url": tech.landing_url, "doi": tech.doi}
print(f"[wiki] {args.tech}: {len(tech.docs)} docs β extracting via {args.model} β¦", file=sys.stderr)
result = extract_documents(tech.doc_paths, protocol_name, model=args.model, char_budget=args.char_budget)
extraction = result["extraction"]
trunc = [d["name"] for d in result.get("text_log", []) if d.get("truncated")]
print(f"[wiki] extracted {len(extraction.get('oligos', []))} oligos "
f"({result['source_chars']} chars, {result.get('duration_ms', 0)/1000:.0f}s, "
f"${result.get('cost_usd') or 0:.3f}){'; truncated: ' + ', '.join(trunc) if trunc else ''}",
file=sys.stderr)
spec = assemble_generic_spec(extraction, spec_id=args.tech,
assay=(extraction.get("title") or protocol_name),
chemistry_version=extraction.get("chemistry_version") or "",
source_docs=source_docs, reference=reference, model=args.model)
out = Path(args.out) if args.out else _REPO / "spec" / "technologies" / f"{args.tech}.json"
out.parent.mkdir(parents=True, exist_ok=True)
out.write_bytes(to_canonical_json(spec))
cc = cross_check_against_groundtruth(extraction, tech.groundtruth_dir)
(out.parent / f"{args.tech}.crosscheck.json").write_text(json.dumps(
{"folder": args.tech, "title": spec.get("title"), "split": tech.split,
"crosscheck": cc, "text_log": result.get("text_log")}, indent=2) + "\n")
print(f"[wiki] wrote {out} ({len(spec['oligos'])} oligos, platform={spec['platform']}) | "
f"cross-check recall={cc.get('oligo_seq_recall')} big_conflict={cc.get('big_conflict')}")
return 0
def cmd_enrich(args: argparse.Namespace) -> int:
"""Enrich an existing wiki spec with modality / method_type / data_processing (+ aligned lib-seq)."""
from extract.doc_gather import get_technology
from extract.doc_extract import enrich_extraction, merge_enrichment
spec_path = _REPO / "spec" / "technologies" / f"{args.tech}.json"
if not spec_path.exists():
print(f"ERROR: no spec at {spec_path} β run `extract wiki --tech {args.tech}` first", file=sys.stderr)
return 1
spec = json.loads(spec_path.read_text())
tech = get_technology(args.tech)
# primary sources only (paper/protocol) β modality + data-processing live there, not the oligo tables
primary_kinds = ("foundational_paper", "paper", "protocol_article", "author_protocol",
"vendor_protocol", "protocol", "technical_note")
docs = [d.path for d in tech.docs if d.kind in primary_kinds] or tech.doc_paths
print(f"[enrich] {args.tech}: {len(docs)} primary docs β {args.model} β¦", file=sys.stderr)
res = enrich_extraction(spec, docs, args.tech.replace("_", " "), model=args.model)
spec = merge_enrichment(spec, res["extraction"])
spec_path.write_bytes(to_canonical_json(spec))
print(f"[enrich] {args.tech}: modality={spec.get('modality')!r} method={spec.get('method_type')!r} "
f"data_processing={'yes' if spec.get('data_processing') else 'no'} "
f"(${res.get('cost_usd') or 0:.2f})")
return 0
def cmd_dag(args: argparse.Namespace) -> int:
"""Convert a wiki spec's flat data_processing into a proper DAG (stages/nodes/edges)."""
from extract.doc_extract import graphify_data_processing
from seqcolyte.spec.loader import validate_spec
spec_path = _REPO / "spec" / "technologies" / f"{args.tech}.json"
if not spec_path.exists():
print(f"ERROR: no spec at {spec_path}", file=sys.stderr)
return 1
spec = json.loads(spec_path.read_text())
res = graphify_data_processing(spec, model=args.model)
g = res["extraction"]
dp = spec.get("data_processing") or {}
spec["data_processing"] = {
"summary": dp.get("summary"),
"stages": g.get("stages", []), "nodes": g.get("nodes", []), "edges": g.get("edges", []),
"statistical_model": g.get("statistical_model") or dp.get("statistical_model"),
}
validate_spec(spec)
spec_path.write_bytes(to_canonical_json(spec))
print(f"[dag] {args.tech}: {len(g.get('nodes', []))} nodes, {len(g.get('edges', []))} edges, "
f"{len(g.get('stages', []))} stages (${res.get('cost_usd') or 0:.2f})")
return 0
def cmd_wiki_index(args: argparse.Namespace) -> int:
"""Rebuild spec/technologies/index.json + CONFLICTS.md, re-running each cross-check from the written
spec against its ground truth so the conflict flags always reflect the current thresholds."""
from extract.cross_check import cross_check_against_groundtruth, render_report
from extract.doc_gather import protocols_root
tdir = _REPO / "spec" / "technologies"
index, records = [], []
for f in sorted(tdir.glob("*.json")):
if f.name in ("index.json", "roadmap.json") or f.name.endswith(".crosscheck.json"):
continue
spec = json.loads(f.read_text())
# the spec itself acts as the extraction (it carries oligos + the annotated library)
cc = cross_check_against_groundtruth(spec, protocols_root() / "protocols" / spec["spec_id"])
(tdir / f"{f.stem}.crosscheck.json").write_text(json.dumps(
{"folder": spec["spec_id"], "title": spec.get("title"), "crosscheck": cc}, indent=2) + "\n")
index.append({"id": spec["spec_id"], "title": spec.get("title") or spec.get("assay"),
"platform": spec.get("platform"), "chemistry_version": spec.get("chemistry_version"),
"modality": spec.get("modality"), "method_type": spec.get("method_type"),
"description": spec.get("description"), "big_conflict": cc.get("big_conflict", False),
"oligo_seq_recall": cc.get("oligo_seq_recall"),
"status": spec.get("status", "supported"), "source_url": spec.get("source_url")})
records.append({"folder": spec["spec_id"], "title": spec.get("title"), "crosscheck": cc})
# Roadmap / not-yet-supported methods (the scg_lib_structs TODO list) live in roadmap.json β they have
# no spec file (id + title + source_url only), so they're appended here and deduped against shipped ids.
roadmap_path = tdir / "roadmap.json"
if roadmap_path.exists():
have = {x["id"] for x in index}
for e in json.loads(roadmap_path.read_text()):
if e["id"] in have:
continue
have.add(e["id"])
index.append({"id": e["id"], "title": e.get("title"), "platform": None,
"chemistry_version": None, "modality": None, "method_type": None,
"description": None, "big_conflict": False, "oligo_seq_recall": None,
"status": e.get("status", "tbd"), "source_url": e.get("source_url")})
# supported first (alphabetical), then roadmap entries (alphabetical)
index.sort(key=lambda x: (x.get("status", "supported") != "supported", (x["title"] or x["id"]).lower()))
(tdir / "index.json").write_text(json.dumps(index, indent=2) + "\n")
(tdir / "CONFLICTS.md").write_text(render_report(records))
n_flag = sum(1 for x in index if x["big_conflict"])
n_supported = sum(1 for x in index if x.get("status", "supported") == "supported")
n_roadmap = len(index) - n_supported
print(f"wrote {tdir/'index.json'} ({n_supported} supported + {n_roadmap} roadmap, "
f"{n_flag} big conflicts) + CONFLICTS.md")
return 0
def main(argv: list[str] | None = None) -> int:
parser = argparse.ArgumentParser(prog="extract", description="Build/check the Seqcolyte read-structure spec")
sub = parser.add_subparsers(dest="cmd", required=True)
for name, fn in (("build", cmd_build), ("check", cmd_check)):
sp = sub.add_parser(name, help=fn.__doc__)
sp.add_argument("--spec", default=SPEC_ID, help="spec id (default: %(default)s)")
sp.add_argument("--html", default=str(DEFAULT_HTML), help="source protocol HTML")
sp.add_argument("--out", default=None, help="output path (default: spec/<spec>.json)")
sp.set_defaults(func=fn)
fd = sub.add_parser("from-doc", help=cmd_from_doc.__doc__)
fd.add_argument("--doc", required=True, help="protocol PDF to extract from")
fd.add_argument("--spec", default=SPEC_ID, help="spec id (default: %(default)s)")
fd.add_argument("--model", default="claude-opus-4-8", help="Claude model (default: %(default)s)")
fd.add_argument("--out", default=None, help="output path (default: spec/<spec>.pdf.json)")
fd.add_argument("--eval", action="store_true", help="evaluate against groundtruth in the PDF's dir")
fd.add_argument("--groundtruth-dir", default=None, dest="groundtruth_dir")
fd.set_defaults(func=cmd_from_doc)
wk = sub.add_parser("wiki", help=cmd_wiki.__doc__)
wk.add_argument("--tech", required=True, help="protocol folder name (e.g. drop_seq)")
wk.add_argument("--model", default="claude-opus-4-8", help="Claude model (default: %(default)s)")
wk.add_argument("--out", default=None, help="output path (default: spec/technologies/<tech>.json)")
wk.add_argument("--char-budget", type=int, default=1_800_000, dest="char_budget",
help="max total document chars fed to the model (default: %(default)s)")
wk.set_defaults(func=cmd_wiki)
en = sub.add_parser("enrich", help=cmd_enrich.__doc__)
en.add_argument("--tech", required=True, help="protocol folder name (must already have a wiki spec)")
en.add_argument("--model", default="claude-opus-4-8", help="Claude model (default: %(default)s)")
en.set_defaults(func=cmd_enrich)
dg = sub.add_parser("dag", help=cmd_dag.__doc__)
dg.add_argument("--tech", required=True, help="protocol folder name (must already have a wiki spec)")
dg.add_argument("--model", default="claude-opus-4-8", help="Claude model (default: %(default)s)")
dg.set_defaults(func=cmd_dag)
wi = sub.add_parser("wiki-index", help=cmd_wiki_index.__doc__)
wi.set_defaults(func=cmd_wiki_index)
args = parser.parse_args(argv)
return args.func(args)
if __name__ == "__main__":
raise SystemExit(main())
|