File size: 8,541 Bytes
b950dbe |
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 |
# Shared client for ClinicalTrials.gov v2 API and scoring
import re
import requests
from typing import Any, Dict, List, Tuple
DEFAULT_DIAG_TERMS = {
"Glioblastoma": ["glioblastoma", "GBM", "glioblastoma multiforme"],
"Diffuse midline glioma": ["diffuse midline glioma", "DMG", "H3 K27M"],
"Anaplastic astrocytoma": ["anaplastic astrocytoma", "grade 3 astrocytoma"],
"Astrocytoma": ["astrocytoma", "grade 2 astrocytoma", "grade 4 astrocytoma"],
"Oligodendroglioma": ["oligodendroglioma", "1p19q codeleted"],
"Meningioma": ["meningioma"],
"Medulloblastoma": ["medulloblastoma"],
"Ependymoma": ["ependymoma"],
"Spinal cord tumor": ["spinal cord tumor", "spinal cord neoplasm"],
}
API_BASE = "https://clinicaltrials.gov/api/v2/studies"
UA = {"User-Agent": "BrainTrialsFinder-Desktop/1.0 (+https://clinicaltrials.gov)"}
def build_terms(diagnosis: str, keywords: str) -> List[str]:
terms: List[str] = []
if diagnosis in DEFAULT_DIAG_TERMS:
terms.extend(DEFAULT_DIAG_TERMS[diagnosis])
else:
terms.extend(["brain tumor", "spinal cord tumor", "CNS tumor"])
extra = [k.strip() for k in (keywords or "").split(",") if k.strip()]
return terms + extra
def ctgov_search_one(term: str, statuses: List[str], page_size: int = 100, max_pages: int = 5) -> List[Dict[str, Any]]:
session = requests.Session()
session.headers.update(UA)
all_studies: List[Dict[str, Any]] = []
page_token = None
count = 0
max_iters = max_pages or 0
while count < max_iters:
params = {
"query.term": term,
"filter.overallStatus": ",".join(statuses),
"pageSize": page_size,
}
if page_token:
params["pageToken"] = page_token
r = session.get(API_BASE, params=params, timeout=30)
r.raise_for_status()
data = r.json()
studies = data.get("studies", [])
if not studies:
break
all_studies.extend(studies)
page_token = data.get("nextPageToken")
if not page_token:
break
count += 1
return all_studies
def fetch_all_terms(terms: List[str], statuses: List[str], page_size=100, max_pages=5) -> List[Dict[str, Any]]:
dedup: Dict[str, Dict[str, Any]] = {}
for t in terms:
try:
for s in ctgov_search_one(t, statuses, page_size=page_size, max_pages=max_pages):
ident = (s.get("protocolSection", {}) or {}).get("identificationModule", {}) or {}
nct = ident.get("nctId")
key = nct or id(s)
if key not in dedup:
dedup[key] = s
except requests.HTTPError:
continue
return list(dedup.values())
def mentions(txt: str, term: str) -> bool:
return bool(re.search(rf"\b{re.escape(term)}\b", txt or "", re.I))
def as_text(obj: Any) -> str:
if obj is None:
return ""
if isinstance(obj, dict):
for k in ("textblock", "textBlock", "value"):
if k in obj:
return str(obj.get(k) or "")
return " ".join(str(v) for v in obj.values() if v is not None)
if isinstance(obj, list):
return "; ".join(as_text(x) for x in obj)
return str(obj)
def parse_age_to_int(v: Any):
if v is None:
return None
if isinstance(v, dict):
return parse_age_to_int(v.get("value"))
if isinstance(v, (int, float)):
return int(v)
m = re.search(r"(\d+)", str(v))
return int(m.group(1)) if m else None
def ensure_list(v: Any):
if v is None:
return []
if isinstance(v, list):
return v
return [v]
def score_trial(t: Dict[str, Any], intake: Dict[str, Any]) -> Tuple[int, List[str]]:
age_local = (intake or {}).get("age")
kps_local = (intake or {}).get("kps")
prior_bev_local = bool((intake or {}).get("prior_bev", False))
setting_local = (intake or {}).get("setting") or ""
keywords_local = (intake or {}).get("keywords") or ""
diagnosis_local = (intake or {}).get("diagnosis") or ""
if diagnosis_local in DEFAULT_DIAG_TERMS:
diag_terms = DEFAULT_DIAG_TERMS[diagnosis_local]
elif diagnosis_local and diagnosis_local != "Other":
diag_terms = [diagnosis_local]
else:
diag_terms = ["brain tumor", "CNS tumor", "spinal cord tumor"]
ps = (t or {}).get("protocolSection") or {}
elig = ps.get("eligibilityModule")
crit = ""
min_age = None
max_age = None
if isinstance(elig, dict):
crit_raw = elig.get("eligibilityCriteria") or elig.get("criteria") or elig
crit = as_text(crit_raw)
min_age = parse_age_to_int(elig.get("minimumAge"))
max_age = parse_age_to_int(elig.get("maximumAge"))
elif isinstance(elig, str):
crit = as_text(elig)
phases_list = ensure_list(ps.get("designModule", {}).get("phases"))
phases_up = [str(p).upper() for p in phases_list]
conds_list = ensure_list(ps.get("conditionsModule", {}).get("conditions"))
title = (ps.get("identificationModule", {}) or {}).get("briefTitle", "")
s = 0
reasons: List[str] = []
if any(any(mentions(c, term) for term in diag_terms) for c in conds_list) or any(mentions(title, term) for term in diag_terms):
s += 30
reasons.append(f"Matches diagnosis: {diagnosis_local or 'neuro-oncology'}.")
if any("PHASE 2" in p or "PHASE2" in p for p in phases_up):
s += 8
if any("PHASE 3" in p or "PHASE3" in p for p in phases_up):
s += 12
try:
if min_age is not None and age_local is not None and age_local < min_age:
reasons.append(f"Age below minimum ({min_age}).")
s -= 30
if max_age is not None and age_local is not None and age_local > max_age:
reasons.append(f"Age above maximum ({max_age}).")
s -= 30
except Exception:
pass
if mentions(crit, "ECOG 0-1") and (kps_local is None or kps_local < 80):
s -= 15
reasons.append("Requires ECOG 0–1 (KPS ~≥80).")
if mentions(crit, "Karnofsky") and (kps_local is None or kps_local < 70):
s -= 10
reasons.append("Requires KPS ≥70.")
if prior_bev_local and mentions(crit, "no prior bevacizumab"):
s -= 25
reasons.append("Excludes prior bevacizumab.")
if setting_local == "Recurrent" and mentions(crit, "recurrent"):
s += 8
if setting_local == "Newly diagnosed" and (mentions(crit, "newly diagnosed") or mentions(title, "adjuvant")):
s += 8
for kw in [k.strip() for k in (keywords_local or "").split(",") if k.strip()]:
if mentions(title, kw) or mentions(crit, kw):
s += 3
return max(0, min(100, s)), reasons
# python
def extract_row(study: dict) -> dict:
"""Return a flat row dict for the table/PDF. Safe against missing fields."""
ps = (study.get("protocolSection") or {})
idm = (ps.get("identificationModule") or {})
scm = (ps.get("statusModule") or {})
dsm = (ps.get("designModule") or {})
cdnm = (ps.get("conditionsModule") or {})
slm = (ps.get("sponsorCollaboratorsModule") or {})
clm = (ps.get("contactsLocationsModule") or {})
title = (idm.get("officialTitle") or idm.get("briefTitle") or "").strip()
nct = (idm.get("nctId") or "").strip()
status_raw = (scm.get("overallStatus") or "").strip()
# e.g., RECRUITING -> Recruiting
status = status_raw.replace("_", " ").title() if status_raw else ""
phases_list = ensure_list(dsm.get("phases"))
phases = ", ".join(phases_list)
conditions = ", ".join(ensure_list(cdnm.get("conditions")))
sponsor = ""
lead = slm.get("leadSponsor") or {}
if isinstance(lead, dict):
sponsor = (lead.get("name") or "").strip()
city_country = ""
locs = ensure_list(clm.get("locations"))
if locs:
first = locs[0]
city = (first.get("locationCity") or "").strip()
country = (first.get("locationCountry") or "").strip()
parts = [p for p in [city, country] if p]
city_country = ", ".join(parts)
return {
"title": title,
"nct": nct,
"status": status,
"phases": phases,
"conditions": conditions,
"sponsor": sponsor,
"city_country": city_country,
}
|