bio-causal-genomics-pleiotropy-detection

SkillAI & models

Detect and adjust for horizontal pleiotropy in two-sample Mendelian randomization by distinguishing uncorrelated (UHP) from correlated (CHP) pleiotropy and choosing among Egger, MR-PRESSO, MR-RAPS, CAUSE, LHC-MR, LCV, MR-Clust, MR-Mix, and contamination-mixture methods. Use when validating an MR causal claim, running the STROBE-MR sensitivity battery, suspecting a shared heritable confounder, working under weak-instrument or polygenic-exposure regimes, or reconciling discordant estimates across robust methods.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the bio-causal-genomics-pleiotropy-detection skill

What this skill tells your AI

The instructions your AI receives, as published by pku-yuangroup/openai4s in skills/bioskills/bio-causal-genomics-pleiotropy-detection/SKILL.md and read by ahel’s review.

Version Compatibility

Reference examples tested with: TwoSampleMR 0.5.11+, MendelianRandomization 0.9.0+, MR-PRESSO 1.0+, CAUSE 1.2.0+, MR-Clust 0.1.0+, MRMix 0.1+, mr.raps 0.4.1+ (GitHub), LHC-MR 0.0.0.9000+ (GitHub), LCV (script-based, no version tag), simex 1.8+.

Before using code patterns, verify installed versions match. If versions differ:

  • R: packageVersion('<pkg>') then ?function_name to verify parameters
  • For GitHub-only packages, check the repo HEAD vs the local install date

If code throws errors, introspect the installed package and adapt the example rather than retrying.

Pleiotropy Detection in Mendelian Randomization

"Validate my MR result against pleiotropic bias" -> Decompose violations of the exclusion-restriction assumption into uncorrelated horizontal pleiotropy (UHP, addressable by Egger / median / mode / MR-PRESSO) and correlated horizontal pleiotropy (CHP, addressable only by CAUSE / LHC-MR / LCV), then run a method battery whose assumptions span both regimes.

  • R: TwoSampleMR::mr() (IVW + Egger + median + mode), mr_pleiotropy_test(), mr_heterogeneity(), mr_leaveoneout(), directionality_test()
  • R: MRPRESSO::mr_presso() for UHP outlier removal + distortion test
  • R: cause::cause() for CHP-aware estimation; mrclust::mr_clust_em() for mechanism-heterogeneous instruments
  • R: MendelianRandomization::mr_conmix() for contamination mixture; MRMix::MRMix() for mixture-of-distributions

UHP vs CHP: The Central Postdoc-Grade Distinction

Horizontal pleiotropy comes in two regimes, and most "standard" MR sensitivity methods address only one of them.

RegimeDefinitionInSIDE assumptionMethods that handle it
UHP (uncorrelated horizontal pleiotropy)Pleiotropic effect alpha_j independent of instrument-exposure effect gamma_jHoldsIVW (balanced UHP only), MR-Egger, weighted median, weighted mode, MR-PRESSO, MR-RAPS, MR-Mix, contamination mixture
CHP (correlated horizontal pleiotropy)alpha_j correlates with gamma_j through a shared upstream factor (heritable confounder, network mediator)ViolatedCAUSE, LHC-MR, LCV, MR-Clust (partial), Steiger-filtered MR (partial)

InSIDE = INstrument Strength Independent of Direct Effect (Bowden 2015 IJE 44:512). Plain English: across SNPs, the per-SNP pleiotropic effect alpha and per-SNP instrument-exposure effect gamma are treated as independent random variables. CHP is the case where they covary because both flow from a shared upstream genetic factor.

The trap (Morrison 2020 Nat Genet 52:740): IVW, MR-Egger, MR-PRESSO, and GSMR are all blind to CHP. Under a shared heritable confounder they each return a plausible-looking corrected causal estimate that is systematically biased in the direction of the confounder. The MR-PRESSO global test does not flag CHP because correlated pleiotropy is not an outlier pattern, it is a population mean shift in the alpha distribution conditional on gamma.

Operational rule: If genetic correlation rg(exposure, outcome) is high (LDSC >= 0.3) or biology strongly suggests a shared upstream factor, the IVW / Egger / PRESSO triple is insufficient. Add CAUSE (preferred when sig SNPs >= 100) or LHC-MR (preferred for polygenic genome-wide IVs).

Operational Decision Flow (4 Steps)

  1. Compute genetic correlation (LDSC). Run ldsc.py --rg <exposure.sumstats.gz>,<outcome.sumstats.gz> (see causal-genomics/genetic-correlation). If |rg| > 0.3, CHP is plausible -> flag for Step 3 escalation. If the LDSC rg standard error spans zero broadly, treat low-rg evidence as weak rather than confirming absence of CHP.
  2. Standard battery. IVW (random-effects when Cochran Q p < 0.05) + MR-Egger (with NOME I^2_GX check) + weighted median + weighted mode + MR-PRESSO (NbDistribution >= 10000 for stringent reporting). Report all five with point estimate, SE, p, 95% CI, and n_SNPs_used. Compute Egger I^2_GX; apply SIMEX if I^2_GX < 0.9 (see examples/simex_egger_correction.R).
  3. CHP escalation. Trigger when rg > 0.3 OR PRESSO global p < 0.05 with > 50% nominal outliers OR Egger / median / mode disagree by > 2 SE. Run CAUSE (if >= 100 significant SNPs after pruning) or LHC-MR (any N; uses genome-wide sumstats). Report ELPD delta + z + q (CHP fraction) + gamma (CHP-adjusted causal estimate).
  4. Triangulate. Pre-MR Steiger filter; bidirectional MR (examples/bidirectional_mr.R); LCV gcp; LDSC rg report. Consensus across methods supports a publication-ready claim. Disagreement requires narrowing the scope (e.g., subgroup, cis-MR, time-varying analysis) rather than reporting a single point estimate.

Algorithmic Taxonomy

MethodModelsUHP-robustCHP-robustMin #SNPsFails whenCitation
Inverse-variance weighted (IVW)Weighted regression through originBalanced UHP onlyNo3Directional UHP; CHP; weak IV bias; heterogeneityBurgess 2013 Genet Epidemiol 37:658
MR-Egger intercept + slopeIVW + free interceptDirectional UHPNo>=10 for powerNOME violated (I^2_GX < 0.9); <10 SNPs; CHPBowden 2015 IJE 44:512
Weighted medianMedian of Wald ratiosUp to 50% invalidNo>=10>50% invalid; CHPBowden 2016 Genet Epidemiol 40:304
Weighted mode (MBE)Mode of estimate densityPlurality validPartial>=10Multimodal estimates from CHP clustersHartwig 2017 IJE 46:1985
Cochran QHeterogeneity across Wald ratiosTotal heterogeneity flag, not direction-specificNo3Cannot distinguish UHP from heterogeneity from CHPDel Greco M F 2015 Stat Med 34:2926
MR-PRESSODetect + remove UHP outliers via RSS-outYes (assumes majority valid)No>=4>50% pleiotropic; any CHP; small nVerbanck 2018 Nat Genet 50:693
GSMR + HEIDI-outlierOutlier removal via single-instrument estimate heterogeneityYesNo>=10CHP (HEIDI-outlier is heterogeneity-driven)Zhu 2018 Nat Commun 9:224
MR-RAPSProfile likelihood with overdispersion + Huber/Tukey lossYes; weak-IV robustPartial via overdispersion>=10Strong CHPZhao 2020 Ann Stat 48:1742
MR-MixMixture-of-distributions over valid + invalidYesPartial>=20Few SNPs; very heterogeneous CHPQi & Chatterjee 2019 Nat Commun 10:1941
Contamination mixtureProfile likelihood over contamination fractionYesPartial>=20Few SNPsBurgess 2020 Nat Commun 11:376
MR-Clustk-means over Wald estimates with NULL clusterYesDiagnostic for CHP via clusters>=20Single-mechanism exposure (no clustering signal)Foley 2021 Bioinformatics 37:531
CAUSEBayesian mixture: shared causal + shared-factor (CHP) componentsYesYes (explicit)>=100 sig SNPs at p<5e-8<100 sig SNPs; non-overlapping GWAS samplesMorrison 2020 Nat Genet 52:740
LHC-MRLatent heritable confounder + bidirectional + heritabilityYesYesGenome-wide GWAS sumstatsHeritability mis-estimated; severe sample overlapDarrous 2021 Nat Commun 12:7274
LCV (latent causal variable)gcp parameter on genome-wide rgN/A (not an MR method)DiagnosticGenome-wide GWAS sumstatsHeritability low; non-Gaussian effect distributionO'Connor & Price 2018 Nat Genet 50:1728

Methodology evolves; verify against the Burgess & Thompson textbook (2nd ed 2021), Hemani 2018 (basic four-method battery), and Sanderson 2022 Nat Rev Methods Primers 2:6 before locking a sensitivity battery.

Decision Tree by Scenario

ScenarioPrimary estimatorSensitivity / triangulation
Many strong IVs, no biological shared trait suspectedIVW + Egger + weighted median + weighted mode + PRESSOCochran Q; leave-one-out; F-stat; Steiger filtering
LDSC rg(exposure, outcome) >= 0.3 or strong shared-factor biologyCAUSE (if sig SNPs >= 100) OR LHC-MRLCV gcp; cross-check IVW after Steiger filter
Many weak IVs (mean F < 20)MR-RAPS with overdispersion + robust Huber lossMR-Mix or contamination mixture; report F-stat range
Suspected heterogeneous causal mechanisms (e.g. LDL on CHD via multiple lipoprotein pathways)MR-Clust; report per-cluster IVWPathway annotation of cluster instruments; Bayesian mixture
Cis-MR drug target (single locus, few SNPs in LD)Colocalization (causal-genomics/colocalization-analysis) + SteigerPWCoCo; conditional analysis; not Egger (low SNP count)
Polygenic exposure (heritability spread genome-wide; few significant loci)LHC-MR (uses all SNPs)LDSC rg; genome-wide IVW with weak-IV-aware methods (RAPS)
Reverse causation suspectedBidirectional MR with Steiger filter; LHC-MR (jointly estimates both directions)directionality_test; effect-size r2 comparison
Population-level summary discordant with biologyRe-examine instrument selection; check Winner's curse; LD pruning settingsTriangulate with cis-MR; family-based MR if available

Per-Method Failure Modes

MR-Egger NOME violation

Trigger: I^2_GX = (Q_GX - df) / Q_GX is below 0.9, indicating measurement-error attenuation of the Egger slope (NOME = "no measurement error" in the exposure GWAS effect sizes).

Mechanism: MR-Egger regresses outcome effects on exposure effects with a free intercept. Imprecise exposure effects (high beta.exposure SE relative to beta.exposure variability across instruments) introduce regression dilution that pulls the Egger slope toward the null and inflates the intercept.

Symptom: Egger slope much closer to zero than IVW, weighted median, and weighted mode estimates; large Egger SE.

Fix: Apply SIMEX correction (Bowden 2016 IJE 45:1961; Cook & Stefanski 1994 JASA 89:1314 SIMEX framework) using the simex package on the Egger regression, treating beta.exposure SE as measurement error. See examples/simex_egger_correction.R. Alternative: use MR-RAPS, which models the exposure-effect error explicitly via profile likelihood and does not suffer the NOME failure.

MR-PRESSO majority-outlier breakdown

Trigger: More than 50% of instruments are pleiotropic (UHP), e.g. when instrument set was loosely selected (genome-wide significant but unfiltered).

Mechanism: MR-PRESSO's global RSS-out statistic and outlier detection both assume a majority-valid set; outliers are defined relative to that majority. With a pleiotropic majority, PRESSO removes the valid minority.

Symptom: PRESSO-corrected estimate is similar in magnitude (and sign) to the uncorrected estimate even after dropping nominally "outlier" SNPs; distortion-test p-value paradoxically non-significant; few or no outliers detected despite obvious global-test significance.

Fix: Do not trust PRESSO corrected estimate. Re-examine instrument selection (drop loose p-thresholds, prune LD harder); switch to CAUSE or LHC-MR; consider weighted-mode estimator which is plurality-valid rather than majority-valid.

MR-PRESSO false negative under CHP

Trigger: Strong shared heritable confounder (high rg) producing CHP. Confirmed by significant LDSC rg or LCV gcp.

Mechanism: Correlated pleiotropy is a population-level mean shift in alpha conditional on gamma; it is not an outlier pattern. PRESSO's RSS-out distance is invariant under such a mean shift, so the global test is not powered against CHP.

Symptom: PRESSO global p > 0.05 (no detected pleiotropy) while a CHP-aware method (CAUSE, LHC-MR) returns a substantially different (often null) causal estimate.

Fix: When CHP is plausible, ALWAYS run CAUSE or LHC-MR in addition to PRESSO; do not rely on PRESSO global non-significance as evidence of no pleiotropy.

MR-Egger underpowered with few SNPs

Trigger: Fewer than 10 instruments.

Mechanism: Egger's intercept variance is driven by the spread of beta.exposure across instruments; with few SNPs the intercept CI is so wide that even strongly pleiotropic data give non-significant intercepts.

Symptom: Non-significant Egger intercept p-value alongside obviously discordant IVW and weighted-median estimates.

Fix: Report intercept point estimate and CI rather than a binary "pleiotropy present / absent" verdict; do not use Egger as the only sensitivity method when SNP count is low; weight evidence toward weighted-median, weighted-mode, and CAUSE / LHC-MR.

Steiger filter inverted by exposure measurement error (Hemani 2017)

Trigger: Exposure is imprecisely measured (lower heritability ascertained in the exposure GWAS) and outcome is well-measured.

Mechanism: Steiger compares r^2_GX vs r^2_GY per SNP. Measurement error in the exposure underestimates r^2_GX; well-measured outcome captures r^2_GY accurately. Per-SNP, the inequality can flip even when the true causal direction is exposure -> outcome.

Symptom: A large fraction of instruments fail Steiger (steiger_dir == FALSE) in a direction that conflicts with biological plausibility.

Fix: Interpret Steiger as one signal among many, not a hard gate; cross-check with bidirectional MR; verify exposure GWAS heritability and sample size; switch to LHC-MR which models both directions jointly and accounts for heritability.

CAUSE underpowered with few significant SNPs

Trigger: Fewer than 100 genome-wide-significant instruments (p < 5e-8) after harmonization and LD pruning.

Mechanism: CAUSE fits a Bayesian mixture model over a shared-factor (CHP) component, a shared-causal component, and a null component. Posterior identification of the mixture weights requires substantial signal across many SNPs.

Symptom: CAUSE delta_ELPD CI crosses zero; Pareto-k diagnostic flags unstable points; posterior intervals on q (CHP fraction) span [0, 1].

Fix: Use LCV gcp for genome-wide directional inference (does not require many significant SNPs); use LHC-MR if heritability and sumstats are available; or report CAUSE alongside an explicit caveat about its underpowered regime.

LCV gcp under non-Gaussian effect distributions

Trigger: Highly polygenic trait with substantial sparsity in true effects (mixture of large-effect and zero-effect loci).

Mechanism: LCV assumes a bivariate normal model for effect sizes after LDSC adjustment. Sparse architectures (e.g. immune traits with HLA dominance) violate this and bias gcp estimates.

Symptom: LCV gcp point estimate appears extreme but heritability LDSC z-scores are modest; partitioned heritability shows extreme HLA enrichment.

Fix: Exclude HLA region from LDSC inputs; complement with CAUSE / LHC-MR; report gcp with awareness of the polygenicity caveat.

Quantitative Thresholds

MetricThresholdSource / rationale
F-statistic per SNP>=10 strong; <10 weakBurgess 2011 IJE 40:755 (rule of thumb); weak-IV bias toward observational confounded estimate
I^2_GX (NOME)>=0.9 Egger reliableBowden 2016 IJE 45:1961
I^2_GX (NOME) intermediate0.6-0.9 SIMEX-corrected EggerBowden 2016 IJE
I^2_GX (NOME) severe<0.6 drop Egger; use MR-RAPS or CAUSEBowden 2016 IJE; SIMEX unreliable below 0.6
Egger min SNP count for adequate power>=10Bowden 2015 IJE 44:512
Cochran Q significancep < 0.05 indicates heterogeneityDel Greco M F 2015 Stat Med 34:2926
MR-PRESSO NbDistribution1000 exploratory; >=5000 publication; >=10000 stringentVerbanck 2018 Nat Genet 50:693 (Methods)
MR-PRESSO global test p< 0.05 -> heterogeneity / outliers presentVerbanck 2018 Nat Genet
MR-PRESSO distortion test p< 0.05 -> outliers materially shifted estimate; if >= 0.05 report uncorrected IVWVerbanck 2018 Nat Genet
MR-PRESSO min instruments>=4 to run; >=10 for non-degenerate global testVerbanck 2018 Nat Genet
MR-PRESSO SignifThreshold0.05 defaultVerbanck 2018 Nat Genet
MR-PRESSO majority-valid breakdownFails when >50% instruments pleiotropicVerbanck 2018 Nat Genet (theoretical limit)
Weighted median validityRobust to <=50% invalid IVsBowden 2016 Genet Epidemiol 40:304
Weighted mode validityPlurality-valid (largest valid subset is most common estimate)Hartwig 2017 IJE 46:1985
CAUSE min #SNPs>=100 p < 5e-8 SNPs after pruningMorrison 2020 Nat Genet 52:740 (Supplement)
CAUSE delta_ELPD criterionone-sided p < 0.05; z = delta_elpd / se(delta_elpd); z > 1.96 standard; z > 3.0 stringentMorrison 2020 Nat Genet
LDSC rg suggesting CHP>= 0.3 flags need for CAUSE / LHC-MROperational rule; see causal-genomics/genetic-correlation
Steiger r^2 differenceReverse-causal flag at any per-SNP r2_GY > r2_GXHemani 2017 PLoS Genet 13:e1007081
Standard sensitivity batteryIVW + Egger + median + mode + PRESSO + Steiger + LOOHemani 2018 eLife 7:e34408 / STROBE-MR 2021

LCV gcp interpretation thresholds (0, 0.5, 0.6, 1) are tabulated in usage-guide.md.

Standard Sensitivity Battery (Working Reference)

Goal: Run the canonical UHP-focused MR sensitivity suite on harmonized two-sample data.

Approach: Compute IVW + Egger + median + mode side-by-side; test Egger intercept and heterogeneity; run MR-PRESSO with >=5000 distributions for publication or >=10000 for stringent reporting; apply Steiger filter; leave-one-out; report all estimates.

library(TwoSampleMR)
library(MRPRESSO)

methods <- c('mr_ivw', 'mr_egger_regression', 'mr_weighted_median', 'mr_weighted_mode')
res_mr <- mr(dat, method_list = methods)

het <- mr_heterogeneity(dat)
pleio <- mr_pleiotropy_test(dat)
loo <- mr_leaveoneout(dat)
steiger <- directionality_test(dat)

isq <- Isq(dat$beta.exposure, dat$se.exposure)
nome_pass <- isq >= 0.9

presso <- mr_presso(
    BetaOutcome='beta.outcome', BetaExposure='beta.exposure',
    SdOutcome='se.outcome', SdExposure='se.exposure',
    OUTLIERtest=TRUE, DISTORTIONtest=TRUE,
    data=dat, NbDistribution=10000, SignifThreshold=0.05)

global_p <- presso$`MR-PRESSO results`$`Global Test`$Pvalue
outlier_p <- presso$`MR-PRESSO results`$`Outlier Test`$Pvalue
distortion_p <- presso$`MR-PRESSO results`$`Distortion Test`$Pvalue
n_outliers <- sum(outlier_p < 0.05, na.rm=TRUE)

Full working pipeline incl SIMEX, MR-RAPS, contamination mixture, and STROBE-MR table: examples/sensitivity_battery.R.

CAUSE for CHP-Aware Estimation

Goal: Distinguish causal from shared-factor (correlated horizontal pleiotropy) explanations of an exposure-outcome association.

Approach: Fit nuisance parameters (LD pruning + rho_GWAS sample-overlap correction) on a random SNP set; fit the sharing and causal posterior; compare ELPD (expected log predictive density) via Pareto-k smoothed importance sampling.

library(cause)
params <- est_cause_params(dat_cause, variants = pruned_subset_snps)
res_cause <- cause(X = dat_cause, variants = pruned_snps, param_ests = params)
elpd <- summary(res_cause)$tab

Full posterior extraction + reporting: examples/cause_analysis.R.

Interpreting CAUSE output:

  • q: posterior CHP fraction; 0 = no CHP, 1 = all instruments operate via the shared factor
  • eta: shared-factor effect on Y (the "confounder pathway" magnitude)
  • gamma: posterior causal effect of E on Y after partialling out CHP; report median + 95% credible interval
  • delta_ELPD (sharing - causal): negative -> causal model preferred; z = delta_elpd / se(delta_elpd); z > 1.96 standard, z > 3.0 stringent; one-sided p reported alongside posterior gamma
  • Pareto-k > 0.7 indicates unstable posterior on those points; if more than 10% of points are unstable, treat the posterior as unreliable; remediation: add more SNPs (loosen p-threshold one notch then re-prune in LD) or re-fit excluding flagged outliers

CAUSE requires sumstats from both exposure and outcome GWAS in matched effect-allele coding. The pruning step typically retains 100-5000 signature SNPs at LD r^2 < 0.01 in a 1 Mb window; nuisance estimation should use a larger random SNP subset (>= 100,000 genome-wide SNPs) to fit rho (sample overlap) stably.

MR-RAPS Loss Function and Overdispersion

Trigger: Weak instruments (mean F < 20) and/or suspected UHP requiring outlier-resistant estimation.

  • over.dispersion = TRUE always for MR (horizontal-pleiotropy variance is real, not noise; turning this off underestimates SE)
  • loss.function = 'huber' (default; outlier-resistant; suited to mild to moderate UHP)
  • loss.function = 'tukey' (more aggressive; downweights extreme outliers more; choose when many obvious outliers suspected)
  • loss.function = 'l2' (non-robust; equivalent to weighted least squares; do not use when UHP suspected)

Tukey is preferable when leave-one-out reveals 2+ SNPs single-handedly shifting the IVW estimate by > 1 SE.

MR-Clust for Mechanism Heterogeneity

Goal: When a single causal estimate is misleading because instruments operate through multiple causal mechanisms (e.g. LDL on CHD via multiple lipoprotein subfractions), identify clusters of instruments with similar per-SNP Wald ratios.

library(mrclust)
ratio_hat <- dat$beta.outcome / dat$beta.exposure
ratio_se <- abs(dat$se.outcome / dat$beta.exposure)
res_mc <- mr_clust_em(theta=ratio_hat, theta_se=ratio_se,
                     bx=dat$beta.exposure, by=dat$beta.outcome,
                     bxse=dat$se.exposure, byse=dat$se.outcome,
                     obs_names=dat$SNP)
per_cluster <- res_mc$results$best

Clusters with cluster_class = 'null' are pleiotropy-only instruments. Per-cluster IVW estimates may differ substantially; biological annotation of the SNPs in each cluster (pathway, target gene) is the interpretation step.

LHC-MR Workflow

Goal: Jointly estimate forward causal effect, reverse causal effect, and the heritable-confounder contribution from genome-wide sumstats (not just significant SNPs).

library(lhcMR)
merged <- merge_sumstats(list(df_x, df_y), c('X', 'Y'), LD.filepath='ldsc/LDscores.txt', rho.filepath='ldsc/LDrho.txt')
sp_list <- calculate_SP(merged, trait.names=c('X', 'Y'), run_ldsc=TRUE, run_MR=TRUE, hm3='ldsc/w_hm3.snplist', ld='ldsc/eur_w_ld_chr/', nStep=2, SP_single=3, SP_pair=50)
res_lhc <- lhc_mr(sp_list, trait.names=c('X', 'Y'), paral_method='lapply', nBlock=200, nCores=4)

LHC-MR is computationally heavy (hours on full sumstats) but among the most rigorous CHP-aware estimators when both GWAS are well-powered. Output includes axx, ayy, hxy (confounder effect on each trait), and bidirectional alpha_xy, alpha_yx.

Choosing CAUSE vs LHC-MR (Darrous 2021):

ConditionPreferred method
>= 100 genome-wide significant SNPs after pruningCAUSE (Bayesian; CHP-explicit; mature posterior diagnostics)
Polygenic exposure with few significant lociLHC-MR (uses genome-wide signal, not just significant SNPs)
Severe sample overlap between exposure and outcome GWASLHC-MR (jointly models overlap); CAUSE's rho correction is exposed to misspecification at high overlap
Bidirectionality of central interestLHC-MR (jointly estimates alpha_xy and alpha_yx); CAUSE only models forward
Limited compute / quick turnaroundCAUSE (minutes to hours); LHC-MR may be > 24h on full sumstats

When both apply, report both with the agreement / disagreement explicit in the discussion.

Bidirectional MR Procedure

Shortened here. Read the whole file on GitHub.

Signals

GitHub stars
404
Forks
48
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
bio-causal-genomics-pleiotropy-detection-pku-yuangroup
Source
github.com/pku-yuangroup/openai4s