Datasets:
File size: 10,104 Bytes
8d2d3e2 | 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 | #!/usr/bin/env python3
"""Build phylogenetic relationship metadata for cognate pairs.
Cross-references cognate pair language pairs against the Glottolog
tree index to classify each unique (Lang_A, Lang_B) pair by its
phylogenetic relationship.
Usage:
python scripts/build_phylo_pairs.py
"""
from __future__ import annotations
import csv
import io
import json
import logging
import sys
from pathlib import Path
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8")
sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding="utf-8")
ROOT = Path(__file__).resolve().parent.parent
logger = logging.getLogger(__name__)
GLOTTOLOG_DIR = ROOT / "data" / "training" / "raw" / "glottolog_cldf"
COGNATE_DIR = ROOT / "data" / "training" / "cognate_pairs"
METADATA_DIR = ROOT / "data" / "training" / "metadata"
OUTPUT_FILE = METADATA_DIR / "phylo_pairs.tsv"
COGNATE_FILES = [
"cognate_pairs_inherited.tsv",
"cognate_pairs_borrowing.tsv",
"cognate_pairs_similarity.tsv",
]
# Curated map of attested ancient/medieval languages to the Glottolog clades
# they are historically ancestral to. Glottocodes verified against Glottolog
# CLDF v5.x (2026-03-14).
#
# Logic: If language A is in this map AND language B's ancestry path passes
# through one of the listed clades AND B is not itself an ancient language
# in this map, then the pair is "near_ancestral".
#
# Limitation: "Near-ancestral" is approximate — Latin is not literally the
# ancestor of French (Vulgar Latin, unattested, is). We use it to mean
# "the attested language is historically ancestral to the clade."
NEAR_ANCESTOR_MAP: dict[str, list[str]] = {
# Latin → Romance
"lat": ["roma1334"],
# Ancient Greek → Koineic Greek (descendants of Koine)
"grc": ["koin1234"],
# Sanskrit → Indo-Aryan
"san": ["indo1321"],
# Old English → Anglic
"ang": ["angl1265"],
# Middle English → Anglic (more recent ancestor)
"enm": ["angl1265"],
# Old French → Oil (includes modern French, Picard, etc.)
"fro": ["oila1234"],
# Old Spanish → Castilic
"osp": ["cast1243"],
# Old Norse → North Germanic
"non": ["nort3160"],
# Old High German → High German
"goh": ["high1289"],
# Middle Dutch → Modern Dutch group
"dum": ["mode1257"],
# Old Irish → Goidelic
"sga": ["goid1240"],
# Middle Irish → Goidelic
"mga": ["goid1240"],
# Old Church Slavonic → South Slavic
"chu": ["sout3147"],
# Old East Slavic → East Slavic
"orv": ["east1426"],
# Old Chinese → Classical Chinese (modern Sinitic descends from this)
"och": ["clas1255"],
# Ottoman Turkish → Oghuz
"ota": ["oghu1243"],
}
# Threshold: MRCA depth >= this value → close_sister, else distant_sister
CLOSE_SISTER_DEPTH_THRESHOLD = 3
def load_tree_index() -> dict:
"""Load the Glottolog tree index JSON."""
tree_file = GLOTTOLOG_DIR / "glottolog_tree.json"
with open(tree_file, "r", encoding="utf-8") as f:
return json.load(f)
def extract_unique_pairs() -> set[tuple[str, str]]:
"""Extract unique canonically-ordered (Lang_A, Lang_B) pairs from cognate files."""
pairs: set[tuple[str, str]] = set()
for fname in COGNATE_FILES:
fpath = COGNATE_DIR / fname
if not fpath.exists():
logger.warning("Missing cognate file: %s", fpath)
continue
with open(fpath, "r", encoding="utf-8") as f:
reader = csv.DictReader(f, delimiter="\t")
for row in reader:
a, b = row["Lang_A"], row["Lang_B"]
key = (min(a, b), max(a, b))
pairs.add(key)
logger.info("After %s: %d unique pairs", fname, len(pairs))
return pairs
def find_mrca(path_a: list[str], path_b: list[str]) -> tuple[str, int, int]:
"""Find Most Recent Common Ancestor of two ancestry paths.
Returns (mrca_glottocode, mrca_depth, tree_distance).
Tree distance = edges from A to MRCA + edges from MRCA to B.
"""
# Find longest common prefix
mrca_idx = -1
min_len = min(len(path_a), len(path_b))
for i in range(min_len):
if path_a[i] == path_b[i]:
mrca_idx = i
else:
break
if mrca_idx < 0:
# No common ancestor (different top-level families)
return ("", 0, 99)
mrca = path_a[mrca_idx]
mrca_depth = mrca_idx # depth from root (root = 0)
dist_a = len(path_a) - 1 - mrca_idx
dist_b = len(path_b) - 1 - mrca_idx
tree_distance = dist_a + dist_b
return (mrca, mrca_depth, tree_distance)
def check_near_ancestral(
iso_a: str,
iso_b: str,
path_a: list[str],
path_b: list[str],
) -> tuple[bool, str]:
"""Check if either language is a near-ancestor of the other.
Returns (is_near_ancestral, ancestor_iso).
"""
# Check if A is in the near-ancestor map
if iso_a in NEAR_ANCESTOR_MAP:
target_clades = NEAR_ANCESTOR_MAP[iso_a]
# Check if B's path passes through any target clade
if any(clade in path_b for clade in target_clades):
# B must NOT be an ancient language itself
if iso_b not in NEAR_ANCESTOR_MAP:
return (True, iso_a)
# Check if B is in the near-ancestor map
if iso_b in NEAR_ANCESTOR_MAP:
target_clades = NEAR_ANCESTOR_MAP[iso_b]
if any(clade in path_a for clade in target_clades):
if iso_a not in NEAR_ANCESTOR_MAP:
return (True, iso_b)
return (False, "-")
def classify_pair(
iso_a: str,
iso_b: str,
langs: dict,
family_names: dict,
) -> dict:
"""Classify a single language pair.
Returns a dict with the TSV row fields.
"""
info_a = langs.get(iso_a)
info_b = langs.get(iso_b)
# Default values
result = {
"Lang_A": iso_a,
"Lang_B": iso_b,
"Phylo_Relation": "unclassified",
"Tree_Distance": 99,
"MRCA_Clade": "-",
"MRCA_Depth": 0,
"Ancestor_Lang": "-",
"Family_A": "-",
"Family_B": "-",
}
if not info_a or not info_b:
# One or both not in tree
if info_a:
result["Family_A"] = info_a.get("family_name", "-")
if info_b:
result["Family_B"] = info_b.get("family_name", "-")
return result
family_a = info_a["family"]
family_b = info_b["family"]
result["Family_A"] = info_a.get("family_name", family_a)
result["Family_B"] = info_b.get("family_name", family_b)
# Cross-family check
if family_a != family_b:
result["Phylo_Relation"] = "cross_family"
return result
# Same family — find MRCA
path_a = info_a["path"]
path_b = info_b["path"]
mrca, mrca_depth, tree_distance = find_mrca(path_a, path_b)
result["Tree_Distance"] = tree_distance
result["MRCA_Clade"] = mrca
result["MRCA_Depth"] = mrca_depth
# Check near-ancestral
is_near_anc, ancestor = check_near_ancestral(iso_a, iso_b, path_a, path_b)
if is_near_anc:
result["Phylo_Relation"] = "near_ancestral"
result["Ancestor_Lang"] = ancestor
return result
# Sister classification based on MRCA depth
if mrca_depth >= CLOSE_SISTER_DEPTH_THRESHOLD:
result["Phylo_Relation"] = "close_sister"
else:
result["Phylo_Relation"] = "distant_sister"
return result
def main():
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(message)s",
)
# Check prerequisites
tree_file = GLOTTOLOG_DIR / "glottolog_tree.json"
if not tree_file.exists():
logger.error("Missing: %s — run build_glottolog_tree.py first", tree_file)
sys.exit(1)
logger.info("Loading tree index...")
tree_index = load_tree_index()
langs = tree_index["languages"]
family_names = tree_index.get("family_names", {})
logger.info("Loaded %d languages from tree index", len(langs))
logger.info("Extracting unique pairs from cognate files...")
pairs = extract_unique_pairs()
logger.info("Total unique pairs: %d", len(pairs))
logger.info("Classifying pairs...")
results = []
for i, (a, b) in enumerate(sorted(pairs)):
row = classify_pair(a, b, langs, family_names)
results.append(row)
if (i + 1) % 100000 == 0:
logger.info(" Classified %d/%d pairs...", i + 1, len(pairs))
logger.info("Classification complete. Writing output...")
# Write TSV
METADATA_DIR.mkdir(parents=True, exist_ok=True)
columns = [
"Lang_A", "Lang_B", "Phylo_Relation", "Tree_Distance",
"MRCA_Clade", "MRCA_Depth", "Ancestor_Lang", "Family_A", "Family_B",
]
with open(OUTPUT_FILE, "w", encoding="utf-8", newline="") as f:
writer = csv.DictWriter(f, fieldnames=columns, delimiter="\t")
writer.writeheader()
for row in results:
writer.writerow(row)
logger.info("Wrote %d rows to %s", len(results), OUTPUT_FILE)
# Print statistics
from collections import Counter
relation_counts = Counter(r["Phylo_Relation"] for r in results)
logger.info("=== Distribution by Phylo_Relation ===")
for relation, count in sorted(relation_counts.items(), key=lambda x: -x[1]):
pct = 100 * count / len(results)
logger.info(" %-18s %7d (%5.1f%%)", relation, count, pct)
# Count unique families
families_a = set(r["Family_A"] for r in results if r["Family_A"] != "-")
families_b = set(r["Family_B"] for r in results if r["Family_B"] != "-")
all_families = families_a | families_b
logger.info("Unique families: %d", len(all_families))
# Near-ancestral breakdown
near_anc = [r for r in results if r["Phylo_Relation"] == "near_ancestral"]
if near_anc:
anc_counts = Counter(r["Ancestor_Lang"] for r in near_anc)
logger.info("=== Near-Ancestral by Ancestor Language ===")
for anc, count in sorted(anc_counts.items(), key=lambda x: -x[1]):
logger.info(" %s: %d pairs", anc, count)
if __name__ == "__main__":
main()
|