File size: 16,047 Bytes
cd0c7a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
Comprehensive Domain & Motif Analysis tool.

Aggregates data from InterPro (domain architecture) and UniProtKB (features,
functional sites, PTMs, topology, motifs, variants, GO terms, pathways).

Provides the shared analysis functions used by both the standalone router
and the pipeline_v2 orchestrator.
"""
import re
import httpx
from typing import Any


INTERPRO_API = "https://www.ebi.ac.uk/interpro/api/entry/all/protein/UniProt/{accession}/?format=json&page_size=50"
UNIPROT_API = "https://rest.uniprot.org/uniprotkb/{accession}.json"


def _sanitize(s: str) -> str:
    return re.sub(r'[\x00-\x1f\x7f-\x9f]', '', s).strip().upper()


async def fetch_uniprot_raw(accession: str) -> dict:
    """Fetch raw UniProt JSON for an accession."""
    accession = _sanitize(accession)
    async with httpx.AsyncClient(timeout=30) as client:
        resp = await client.get(UNIPROT_API.format(accession=accession))
        if resp.status_code in (400, 404):
            return {}
        resp.raise_for_status()
        return resp.json()


# ---------------------------------------------------------------------------
# 1. InterPro Domain Architecture (existing, refactored)
# ---------------------------------------------------------------------------

async def fetch_interpro_domains(accession: str) -> dict:
    """Fetch domain annotations from InterPro (Pfam, SMART, PROSITE, CDD, PANTHER, PRINTS)."""
    accession = _sanitize(accession)
    url = INTERPRO_API.format(accession=accession)
    async with httpx.AsyncClient(timeout=30) as client:
        r = await client.get(url)
        if r.status_code == 404:
            return {"uniprot_accession": accession, "sequence_length": 0, "domains": []}
        r.raise_for_status()
        data = r.json()

    domains: list[dict] = []
    seq_len = 0

    for result in data.get("results", []):
        entry = result.get("metadata", {})
        db = entry.get("source_database", "").upper()
        acc = entry.get("accession", "")
        name_raw = entry.get("name")
        if isinstance(name_raw, str):
            name_str = name_raw
        elif isinstance(name_raw, dict):
            name_str = name_raw.get("name", acc)
        else:
            name_str = acc

        for protein in result.get("proteins", []):
            if protein.get("accession", "").upper() != accession.upper():
                continue
            seq_len = protein.get("protein_length", seq_len)
            for loc in protein.get("entry_protein_locations", []):
                for fragment in loc.get("fragments", []):
                    domains.append({
                        "accession": acc,
                        "name": name_str,
                        "source_db": db,
                        "start": fragment.get("start", 0),
                        "end": fragment.get("end", 0),
                        "score": loc.get("score"),
                    })

    domains.sort(key=lambda d: d["start"])
    return {"uniprot_accession": accession, "sequence_length": seq_len, "domains": domains}


# ---------------------------------------------------------------------------
# 2. UniProt Feature Table
# ---------------------------------------------------------------------------

_FEATURE_CATEGORIES = {
    "active_sites":        {"Active site", "Catalytic residue"},
    "binding_sites":       {"Binding site", "Metal ion-binding site"},
    "ptm":                 {"Modified residue", "Phosphorylation", "Glycosylation",
                            "Acetylation", "Ubiquitination", "Methylation",
                            "Sumoylation", "Prenylation", "Palmitoylation",
                            "Myristoylation", "Nitrosylation", "Chromophore"},
    "structural_motifs":   {"Zinc finger", "Coiled-coil", "Leucine-rich repeat",
                            "Ankyrin repeat", "EF-hand", "Death domain",
                            "SH2 domain", "SH3 domain", "PDZ domain",
                            "WW domain", "HEAT repeat", "Arm repeat",
                            "Tetratricopeptide repeat", "Kelch repeat"},
    "topology":            {"Signal peptide", "Transmembrane region", "Chain",
                            "Peptide", "Propeptide", "Region"},
    "disulfide":           {"Disulfide bond"},
    "composition_bias":    {"Compositional bias", "Repeat", "Repeat CC"},
    "mutagenesis":         {"Mutagenesis"},
    "other":               set(),
}

for _cat, _types in list(_FEATURE_CATEGORIES.items()):
    if _cat != "other":
        _FEATURE_CATEGORIES["other"]  # ensure it exists


def _categorize_feature(ftype: str) -> str:
    for cat, types in _FEATURE_CATEGORIES.items():
        if cat == "other":
            continue
        if ftype in types:
            return cat
    return "other"


def _extract_feature_positions(f: dict) -> tuple[int | None, int | None]:
    loc = f.get("location", {}) or {}
    begin = loc.get("start", {}).get("value")
    end = loc.get("end", {}).get("value")
    return begin, end


def extract_features(raw: dict) -> dict:
    """Extract and categorize all UniProt features."""
    features = raw.get("features") or []
    result: dict[str, list[dict]] = {
        "active_sites": [],
        "binding_sites": [],
        "ptm": [],
        "structural_motifs": [],
        "topology": [],
        "disulfide": [],
        "composition_bias": [],
        "mutagenesis": [],
        "other": [],
    }

    for f in features:
        ftype = f.get("type", "")
        desc = f.get("description", "")
        begin, end = _extract_feature_positions(f)
        cat = _categorize_feature(ftype)
        entry = {
            "type": ftype,
            "description": desc,
            "begin": begin,
            "end": end,
        }
        if cat in result:
            result[cat].append(entry)
        else:
            result["other"].append(entry)

    return result


# ---------------------------------------------------------------------------
# 3. Functional Sites (active + binding + catalytic)
# ---------------------------------------------------------------------------

def extract_functional_sites(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    sites = []
    for f in features:
        ftype = f.get("type", "")
        if ftype in ("Active site", "Catalytic residue", "Binding site",
                      "Metal ion-binding site"):
            begin, end = _extract_feature_positions(f)
            sites.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
                "amino_acid": f.get("aminoAcid", []),
            })
    return sites


# ---------------------------------------------------------------------------
# 4. Post-Translational Modifications
# ---------------------------------------------------------------------------

def extract_ptms(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    ptms = []
    ptm_types = {
        "Modified residue", "Phosphorylation", "Glycosylation",
        "Acetylation", "Ubiquitination", "Methylation",
        "Sumoylation", "Prenylation", "Palmitoylation",
        "Myristoylation", "Nitrosylation", "Chromophore",
        "Lipidation", "Deamidation", "Hydroxylation",
        "Iodination", "Sulfation",
    }
    for f in features:
        ftype = f.get("type", "")
        if ftype in ptm_types or "modif" in ftype.lower():
            begin, end = _extract_feature_positions(f)
            ptms.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
                "amino_acid": f.get("aminoAcid", []),
            })
    return ptms


# ---------------------------------------------------------------------------
# 5. Topology (signal peptides, TM regions, chains, propeptides)
# ---------------------------------------------------------------------------

def extract_topology(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    topo = []
    topo_types = {"Signal peptide", "Transmembrane region", "Chain",
                  "Peptide", "Propeptide", "Signal", "Initiator methionine"}
    for f in features:
        ftype = f.get("type", "")
        if ftype in topo_types:
            begin, end = _extract_feature_positions(f)
            topo.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
            })
    return topo


# ---------------------------------------------------------------------------
# 6. Structural Motifs (zinc fingers, coiled coils, repeats, domains)
# ---------------------------------------------------------------------------

def extract_structural_motifs(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    motifs = []
    motif_types = {
        "Zinc finger", "Coiled-coil", "Leucine-rich repeat",
        "Ankyrin repeat", "EF-hand", "Death domain",
        "SH2 domain", "SH3 domain", "PDZ domain",
        "WW domain", "HEAT repeat", "Arm repeat",
        "Tetratricopeptide repeat", "Kelch repeat",
        "Immunoglobulin-like domain", "Fibronectin type-III domain",
        "EGF-like domain", "Cadherin domain", "Laminin G domain",
        "G-patch domain", "PAC motif", "BTB domain",
        "MATH domain", "Bromodomain", "Chromodomain",
        "PH domain", "FYVE domain", "PX domain",
        "C1 domain", "C2 domain", "DEATH domain",
        "CARD domain", "DD domain", "DED domain",
        "RAF-like domain", "Ras-binding domain",
    }
    for f in features:
        ftype = f.get("type", "")
        if ftype in motif_types:
            begin, end = _extract_feature_positions(f)
            motifs.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
            })
    return motifs


# ---------------------------------------------------------------------------
# 7. Mutagenesis & Disease Variants
# ---------------------------------------------------------------------------

def extract_variants(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    variants = []
    for f in features:
        ftype = f.get("type", "")
        if ftype in ("Mutagenesis", "Natural variant"):
            begin, end = _extract_feature_positions(f)
            variants.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
                "amino_acid": f.get("aminoAcid", []),
            })
    return variants


# ---------------------------------------------------------------------------
# 8. Disulfide Bonds
# ---------------------------------------------------------------------------

def extract_disulfide_bonds(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    bonds = []
    for f in features:
        if f.get("type") == "Disulfide bond":
            begin, end = _extract_feature_positions(f)
            bonds.append({
                "begin": begin,
                "end": end,
                "description": f.get("description", ""),
            })
    return bonds


# ---------------------------------------------------------------------------
# 9. Composition Bias (low complexity, repeats)
# ---------------------------------------------------------------------------

def extract_composition_bias(raw: dict) -> list[dict]:
    features = raw.get("features") or []
    bias = []
    for f in features:
        ftype = f.get("type", "")
        if ftype in ("Compositional bias", "Repeat", "Repeat CC",
                      "Simple sequence", "Low complexity"):
            begin, end = _extract_feature_positions(f)
            bias.append({
                "type": ftype,
                "description": f.get("description", ""),
                "begin": begin,
                "end": end,
            })
    return bias


# ---------------------------------------------------------------------------
# 10. Gene Ontology Annotations
# ---------------------------------------------------------------------------

def extract_go_terms(raw: dict) -> list[dict]:
    refs = raw.get("uniProtKBCrossReferences") or []
    go_terms = []
    for r in refs:
        if r.get("database") == "GO":
            term_id = r.get("id", "")
            props = r.get("properties") or []
            term_text = props[0].get("value", "") if props else ""
            category = ""
            if "F:" in term_text:
                category = "molecular_function"
            elif "P:" in term_text:
                category = "biological_process"
            elif "C:" in term_text:
                category = "cellular_component"
            go_terms.append({
                "id": term_id,
                "term": term_text,
                "category": category,
            })
    return go_terms


# ---------------------------------------------------------------------------
# 11. Pathway Annotations (KEGG, Reactome)
# ---------------------------------------------------------------------------

def extract_pathways(raw: dict) -> list[dict]:
    refs = raw.get("uniProtKBCrossReferences") or []
    pathways = []
    for r in refs:
        db = r.get("database", "")
        if db in ("KEGG", "Reactome", "WikiPathways"):
            pathway_id = r.get("id", "")
            props = r.get("properties") or []
            name = ""
            for p in props:
                if p.get("key") == "Pathway name":
                    name = p.get("value", "")
                    break
            if not name and props:
                name = props[0].get("value", "")
            pathways.append({
                "database": db,
                "id": pathway_id,
                "name": name,
            })
    return pathways


# ---------------------------------------------------------------------------
# 12. Combined Analysis (all features at once)
# ---------------------------------------------------------------------------

async def full_analysis(accession: str) -> dict:
    """Run all domain/motif analyses for a UniProt accession."""
    accession = _sanitize(accession)
    raw = await fetch_uniprot_raw(accession)

    interpro = await fetch_interpro_domains(accession)
    features = extract_features(raw) if raw else {}
    functional_sites = extract_functional_sites(raw) if raw else []
    ptms = extract_ptms(raw) if raw else []
    topology = extract_topology(raw) if raw else []
    motifs = extract_structural_motifs(raw) if raw else []
    variants = extract_variants(raw) if raw else []
    disulfide = extract_disulfide_bonds(raw) if raw else []
    composition = extract_composition_bias(raw) if raw else []
    go_terms = extract_go_terms(raw) if raw else []
    pathways = extract_pathways(raw) if raw else []

    seq_len = (raw.get("sequence", {}) or {}).get("length", 0)
    seq = (raw.get("sequence", {}) or {}).get("value", "")
    organism = ((raw.get("organism", {}) or {}).get("scientificName", ""))
    protein_name = ""
    desc = raw.get("proteinDescription", {}) or {}
    rec = desc.get("recommendedName", {}) or {}
    protein_name = (rec.get("fullName", {}) or {}).get("value", "")

    return {
        "accession": accession,
        "protein_name": protein_name,
        "organism": organism,
        "sequence_length": seq_len,
        "sequence": seq,
        "domains": interpro.get("domains", []),
        "active_sites": functional_sites,
        "ptms": ptms,
        "topology": topology,
        "structural_motifs": motifs,
        "variants": variants,
        "disulfide_bonds": disulfide,
        "composition_bias": composition,
        "go_terms": go_terms,
        "pathways": pathways,
        "feature_summary": {
            cat: len(items) for cat, items in features.items() if items
        },
    }