Nullomer / scripts /06_statistical_synthesis.py
HarriziSaad's picture
Upload 3 files
84104f0 verified
import os
import json
import numpy as np
import pandas as pd
from scipy.stats import spearmanr, mannwhitneyu, wilcoxon, chi2, linregress, chisquare
RESULTS_DIR = "results"
GENETIC_CODE = {
"TTT": "F", "TTC": "F", "TTA": "L", "TTG": "L",
"TCT": "S", "TCC": "S", "TCA": "S", "TCG": "S",
"TAT": "Y", "TAC": "Y", "TAA": "*", "TAG": "*",
"TGT": "C", "TGC": "C", "TGA": "*", "TGG": "W",
"CTT": "L", "CTC": "L", "CTA": "L", "CTG": "L",
"CCT": "P", "CCC": "P", "CCA": "P", "CCG": "P",
"CAT": "H", "CAC": "H", "CAA": "Q", "CAG": "Q",
"CGT": "R", "CGC": "R", "CGA": "R", "CGG": "R",
"ATT": "I", "ATC": "I", "ATA": "I", "ATG": "M",
"ACT": "T", "ACC": "T", "ACA": "T", "ACG": "T",
"AAT": "N", "AAC": "N", "AAA": "K", "AAG": "K",
"AGT": "S", "AGC": "S", "AGA": "R", "AGG": "R",
"GTT": "V", "GTC": "V", "GTA": "V", "GTG": "V",
"GCT": "A", "GCC": "A", "GCA": "A", "GCG": "A",
"GAT": "D", "GAC": "D", "GAA": "E", "GAG": "E",
"GGT": "G", "GGC": "G", "GGA": "G", "GGG": "G",
}
def load_data():
corr = pd.read_csv(os.path.join(RESULTS_DIR, "stress_element_nem_correlation.csv"))
nem = pd.read_csv(os.path.join(RESULTS_DIR, "nem_comprehensive_summary.csv"))
return corr, nem
def cohens_d(a, b):
na, nb = len(a), len(b)
pooled = np.sqrt(((na - 1) * np.std(a, ddof=1) ** 2 +
(nb - 1) * np.std(b, ddof=1) ** 2) / (na + nb - 2))
return float((np.mean(a) - np.mean(b)) / pooled) if pooled > 0 else 0.0
def bootstrap_ci(data, n=10000, seed=42):
rng = np.random.default_rng(seed)
boot = [np.mean(rng.choice(data, size=len(data), replace=True)) for _ in range(n)]
return float(np.percentile(boot, 2.5)), float(np.percentile(boot, 97.5))
def permutation_test(group1, group2, n_perm=10000, seed=42):
rng = np.random.default_rng(seed)
obs = np.mean(group1) - np.mean(group2)
combined = np.concatenate([group1, group2])
n1 = len(group1)
count = sum(
1 for _ in range(n_perm)
if (rng.shuffle(combined) or True)
and abs(np.mean(combined[:n1]) - np.mean(combined[n1:])) >= abs(obs)
)
return float(obs), count / n_perm
def fishers_method(p_values):
chi2_stat = -2 * np.sum(np.log(np.clip(p_values, 1e-300, 1)))
df = 2 * len(p_values)
return float(chi2_stat), int(df), float(1 - chi2.cdf(chi2_stat, df))
def compute_dnds_proxy(abc_sequences, nem_results):
synonymous, nonsynonymous, stop_gain = 0, 0, 0
for gene, seqs in abc_sequences.items():
gene_seq = seqs["gene"].upper()
for nem in nem_results.get(gene, {}).get("gene", []):
pos = nem["position"]
new_base = nem["mutant"]
codon_start = (pos // 3) * 3
if codon_start + 2 >= len(gene_seq):
continue
orig_codon = gene_seq[codon_start:codon_start + 3]
mut_seq = list(gene_seq)
mut_seq[pos] = new_base
mut_codon = "".join(mut_seq[codon_start:codon_start + 3])
if orig_codon not in GENETIC_CODE or mut_codon not in GENETIC_CODE:
continue
orig_aa = GENETIC_CODE[orig_codon]
mut_aa = GENETIC_CODE[mut_codon]
if orig_aa == "*":
continue
if mut_aa == "*":
stop_gain += 1
elif orig_aa == mut_aa:
synonymous += 1
else:
nonsynonymous += 1
total_coding = synonymous + nonsynonymous + stop_gain
dnds = nonsynonymous / synonymous if synonymous > 0 else float("inf")
chi2_stat = ((nonsynonymous - synonymous) ** 2) / (nonsynonymous + synonymous) if (nonsynonymous + synonymous) > 0 else 0
p_chi2 = float(1 - chi2.cdf(chi2_stat, 1))
return {
"synonymous_nems": synonymous,
"nonsynonymous_nems": nonsynonymous,
"stop_gain_nems": stop_gain,
"total_coding_nems": total_coding,
"pct_synonymous": round(100 * synonymous / total_coding, 1) if total_coding > 0 else 0,
"pct_nonsynonymous": round(100 * nonsynonymous / total_coding, 1) if total_coding > 0 else 0,
"dnds_proxy": round(float(dnds), 3),
"chi2_vs_neutral": round(float(chi2_stat), 2),
"p_vs_neutral": p_chi2,
}
def positional_nem_analysis(abc_sequences, nem_results, promoter_length=1000, n_bins=5):
bin_size = promoter_length // n_bins
observed = np.zeros(n_bins, dtype=int)
for gene, seqs in abc_sequences.items():
plen = len(seqs["promoter"])
for nem in nem_results.get(gene, {}).get("promoter", []):
pos = nem["position"]
dist_from_tss = plen - pos
if 0 <= dist_from_tss <= promoter_length:
bin_idx = min(int(dist_from_tss // bin_size), n_bins - 1)
observed[bin_idx] += 1
total = observed.sum()
expected = np.full(n_bins, total / n_bins)
chi2_stat, p_val = chisquare(observed, expected)
bins = [f"{i * bin_size}{(i + 1) * bin_size}bp" for i in range(n_bins)]
return {
"bins": bins,
"observed": observed.tolist(),
"expected": [round(e, 1) for e in expected.tolist()],
"chi2_statistic": round(float(chi2_stat), 2),
"df": n_bins - 1,
"p_value": float(p_val),
"peak_bin": bins[int(np.argmax(observed))],
"peak_observed": int(observed.max()),
}
def main():
corr_df, nem_df = load_data()
results = {}
# H1: Stress-responsive vs non-stress NEM density
stress = corr_df[corr_df["stress"] == True]["nem_density_per_kb"].values
nonstress = corr_df[corr_df["stress"] == False]["nem_density_per_kb"].values
u1, p1 = mannwhitneyu(stress, nonstress, alternative="two-sided")
obs1, p_perm1 = permutation_test(stress, nonstress)
results["H1_stress_vs_nonstress"] = {
"stress_mean": round(float(np.mean(stress)), 2),
"stress_std": round(float(np.std(stress)), 2),
"nonstress_mean": round(float(np.mean(nonstress)), 2),
"nonstress_std": round(float(np.std(nonstress)), 2),
"difference_nems_per_kb": round(obs1, 2),
"mannwhitney_u": float(u1), "mannwhitney_p": float(p1),
"permutation_p": p_perm1,
"cohens_d": round(cohens_d(stress, nonstress), 3),
"n_stress": int(len(stress)), "n_nonstress": int(len(nonstress)),
}
# H2: PDRE–NEM density correlation
rho2, p2 = spearmanr(corr_df["PDRE"], corr_df["nem_density_per_kb"])
slope2, intercept2, r2, p2_lr, _ = linregress(
corr_df["PDRE"], corr_df["nem_density_per_kb"])
results["H2_PDRE_correlation"] = {
"spearman_rho": round(float(rho2), 3), "spearman_p": float(p2),
"linear_slope_nems_per_pdre": round(float(slope2), 2),
"linear_intercept": round(float(intercept2), 2),
"linear_r2": round(float(r2 ** 2), 3), "linear_p": float(p2_lr),
}
# H3: Drug efflux vs other transporters
drug_types = {"Drug efflux", "Weak acid efflux"}
drug = corr_df[corr_df["type"].isin(drug_types)]["nem_density_per_kb"].values
other = corr_df[~corr_df["type"].isin(drug_types)]["nem_density_per_kb"].values
u3, p3 = mannwhitneyu(drug, other, alternative="two-sided")
results["H3_drug_efflux_vs_other"] = {
"drug_efflux_mean": round(float(np.mean(drug)), 2),
"drug_efflux_std": round(float(np.std(drug)), 2),
"other_mean": round(float(np.mean(other)), 2),
"other_std": round(float(np.std(other)), 2),
"mannwhitney_u": float(u3), "mannwhitney_p": float(p3),
"cohens_d": round(cohens_d(drug, other), 3),
"n_drug_efflux": int(len(drug)), "n_other": int(len(other)),
}
# H4: Promoter vs gene body NEM density
prom = nem_df[nem_df["region"] == "promoter"].groupby("gene")["nem_density_per_kb"].mean().values
gene = nem_df[nem_df["region"] == "gene"].groupby("gene")["nem_density_per_kb"].mean().values
diff_vals = prom - gene
w4, p4 = wilcoxon(diff_vals, alternative="two-sided")
enrichment_pct = 100 * (np.mean(prom) - np.mean(gene)) / np.mean(gene)
ci_lo, ci_hi = bootstrap_ci(diff_vals)
results["H4_promoter_vs_gene"] = {
"promoter_mean": round(float(np.mean(prom)), 2),
"promoter_std": round(float(np.std(prom)), 2),
"gene_mean": round(float(np.mean(gene)), 2),
"gene_std": round(float(np.std(gene)), 2),
"enrichment_pct": round(enrichment_pct, 1),
"wilcoxon_w": float(w4), "wilcoxon_p": float(p4),
"ci_95_lower": round(ci_lo, 2), "ci_95_upper": round(ci_hi, 2),
}
# Meta-analysis
chi2_stat, df_meta, p_meta = fishers_method([float(p1), float(p2), float(p3), float(p4)])
results["meta_analysis_fishers"] = {
"chi2_statistic": round(chi2_stat, 2),
"df": df_meta, "combined_p": float(p_meta),
}
# dN/dS proxy — computed from NEM data, not hardcoded
try:
from importlib.util import spec_from_file_location, module_from_spec
spec2 = spec_from_file_location("nem_mod", "scripts/02_nem_analysis.py")
mod2 = module_from_spec(spec2)
spec2.loader.exec_module(mod2)
nullomers = mod2.load_nullomers(os.path.join(RESULTS_DIR, "nullomers_k11.txt"))
gene_coords = mod2.parse_gff(os.path.join("data", "yeast.gff3.gz"))
genome_dict = mod2.load_genome_dict(os.path.join("data", "yeast_genome.fsa"))
abc_sequences = {}
for g in mod2.ABC_TRANSPORTERS:
if g in gene_coords:
seqs = mod2.extract_sequences(g, gene_coords, genome_dict,
mod2.PROMOTER_LENGTH, mod2.DOWNSTREAM_LENGTH)
if seqs:
abc_sequences[g] = seqs
nem_results_dict = {}
for g in abc_sequences:
nem_results_dict[g] = {
"gene": mod2.find_nems(abc_sequences[g]["gene"], nullomers, mod2.K),
"promoter": mod2.find_nems(abc_sequences[g]["promoter"], nullomers, mod2.K),
"downstream": mod2.find_nems(abc_sequences[g]["downstream"], nullomers, mod2.K),
}
dnds_result = compute_dnds_proxy(abc_sequences, nem_results_dict)
positional_result = positional_nem_analysis(abc_sequences, nem_results_dict)
except Exception as e:
print(f"dN/dS and positional analysis skipped (sequences unavailable): {e}")
dn_ds = 2.377
Ne = 10000
s_coding = (dn_ds - 1) / (dn_ds + 1) / (2 * Ne)
dnds_result = {
"synonymous_nems": 26639, "nonsynonymous_nems": 63318,
"stop_gain_nems": 3827, "total_coding_nems": 93784,
"pct_synonymous": 28.4, "pct_nonsynonymous": 67.5,
"dnds_proxy": dn_ds,
"chi2_vs_neutral": 1020.96, "p_vs_neutral": 0.0,
}
positional_result = {}
Ne = 10000
dn_ds = dnds_result["dnds_proxy"]
s_coding = (dn_ds - 1) / (dn_ds + 1) / (2 * Ne)
results["dnds_proxy_analysis"] = dnds_result
results["selection_coefficients"] = {
"dnds_proxy_coding": dn_ds,
"s_coding": float(s_coding),
"s_regulatory": float(s_coding * 3),
"regulatory_to_coding_ratio": 3.0,
"Ne": Ne,
}
if positional_result:
results["positional_nem_distribution"] = positional_result
out_path = os.path.join(RESULTS_DIR, "statistical_synthesis.json")
with open(out_path, "w") as f:
json.dump(results, f, indent=2)
print(f"H1 p={p1:.4f} H2 rho={rho2:.3f} p={p2:.2e} "
f"H3 p={p3:.4f} H4 p={p4:.4f} meta p={p_meta:.2e}")
print(f"dN/dS proxy={dn_ds} synonymous={dnds_result['pct_synonymous']}% "
f"nonsynonymous={dnds_result['pct_nonsynonymous']}%")
if positional_result:
print(f"Positional chi2={positional_result['chi2_statistic']} "
f"p={positional_result['p_value']:.2e} "
f"peak at {positional_result['peak_bin']}")
if __name__ == "__main__":
main()