This page provides a comparison of polygenic scoring methods. The results on this page will be periodically updated as new polygenic scoring methods are developed. The methodology used is consistent with our previous published study here.
In summary, we compare a range of polygenic scoring methods, using publicly available GWAS summary statistics as the discovery datasets, and the UK Biobank (UKB) and the Twins Early Development Study (TEDS). We use a reference-standardised approach to calculate the polygenic scores, whereby the analysis restricted to a common set of typically well imputed genetic variants and an external reference dataset is used to estimate linkage disequilbrium (LD) and minor allele frequency (MAF). More information can be found in our original study.
For simplicity here, we have omitted certain sensitivity analyses, including:
Updates since the original study include:
The outcomes we use in each target sample are listed below:
For each target outcome, the largest independent phenotype-matched GWAS was selected for calculating polygenic scores. More information can be found in the table below.
Show GWAS for UK Biobank phenotypes
Target Phenotype | Code | GWAS Phenotype | Year | PMID | Ncase | Ncontrol | N | h2-obs (SE) | h2-liab (SE) | Intercept | Lambda |
---|---|---|---|---|---|---|---|---|---|---|---|
Major Depression | DEPR06 | major depressive disorder | 2018 | 29700475 | 116404 | 314990 | 431394 | 0.0551 (0.0023) | 0.085 (0.004) | 1.0169 (0.0088) | 1.3894 |
Intelligence | COLL01 | college completion | 2013 | 23722424 | NA | NA | 95427 | 0.1048 (0.0075) | NA | 1.0214 (0.0086) | 1.1940 |
BMI | BODY04 | BMI | 2015 | 25673413 | NA | NA | 322154 | 0.1297 (0.0056) | NA | 0.6729 (0.0076) | 1.0772 |
Height | HEIG03 | height | 2014 | 25282103 | NA | NA | 253288 | 0.312 (0.0141) | NA | 1.3254 (0.0185) | 2.0007 |
T2D | DIAB05 | diabetes type 2 | 2017 | 28566273 | 26676 | 132532 | 159208 | 0.0781 (0.0053) | 0.124 (0.008) | 0.9984 (0.0083) | 1.1459 |
CAD | COAD01 | coronary artery disease | 2015 | 26343387 | 60801 | 123504 | 184305 | 0.0661 (0.0045) | 0.057 (0.004) | 0.8875 (0.0074) | 1.0466 |
Crohn’s Disease | CROH01 | crohn disease | 2015 | 26192919 | 5956 | 14927 | 20883 | 0.4751 (0.0538) | 0.542 (0.059) | 1.0316 (0.0092) | 1.1396 |
MultiScler | SCLE03 | multiple sclerosis | 2011 | 21833088 | 9772 | 17376 | 27148 | 0.0493 (0.0262) | 0.021 (0.012) | 1.0599 (0.0085) | 1.0375 |
RheuArth | RHEU02 | rheumatoid arthritis | 2014 | 24390342 | 14361 | 43923 | 58284 | 0.1406 (0.0176) | 0.102 (0.013) | 0.9511 (0.0076) | 1.0466 |
Breast Cancer | BRCA01 | breast cancer | 2017 | 29059683 | 122977 | 105974 | 228951 | 0.1326 (0.0108) | 0.157 (0.013) | 1.1001 (0.0125) | 1.3581 |
Prostate Cancer | PRCA01 | prostate cancer | 2017 | 29892016 | 79148 | 61106 | 140254 | 0.1635 (0.0238) | 0.198 (0.029) | 1.0804 (0.0153) | 1.2201 |
Show GWAS for TEDS phenotypes
Target Phenotype | Code | GWAS Phenotype | Year | PMID | Ncase | Ncontrol | N | h2-obs (SE) | h2-liab (SE) | Intercept | Lambda |
---|---|---|---|---|---|---|---|---|---|---|---|
Height | HEIG03 | height | 2014 | 25282103 | NA | NA | 253288 | 0.312 (0.0141) | NA | 1.3254 (0.0185) | 2.0007 |
BMI | BODY11 | BMI | 2018 | 30124842 | NA | NA | 681275 | 0.1908 (0.0053) | NA | 1.1864 (0.0206) | 2.7872 |
GCSE | EDUC03 | years educational attainment | 2018 | 30038396 | NA | NA | 766345 | 0.1066 (0.0026) | NA | 1.0301 (0.0137) | 2.0940 |
ADHD symptoms | ADHD04 | ADHD | 2017 | 30478444 | 20183 | 35191 | 55374 | 0.3635 (0.0227) | 0.426 (0.026) | 1.0295 (0.0096) | 1.2431 |
Polygenic scores were derived using the following methods:
Polygenic scores were derived using a reference standardised pipeline. Two references were used for all methods, the European subset of the 1KG reference (described here), and an independant subset of 10K European individuals from UK Biobank (described here). In brief, all scores were derived using HapMap3 SNPs only, modelling LD based on these references. Any HapMap3 missing in the target sample are imputed using the reference estimated allele frequency.
pT + clump
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J pt_clump
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/pt_clump/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/pt_clump/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/pt_clump/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir -p ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J pt_clump
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/pt_clump/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/pt_clump/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/pt_clump/sbatch.sh
lassosum
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.lassosum_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 15G
#SBATCH -n 5
#SBATCH -J lassosum
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_lassosum/Scaled_polygenic_scorer_lassosum.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/lassosum/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/lassosum/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--pheno_name ${gwas} \
--n_cores 5 \
--plink ${plink1_9} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/lassosum/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.lassosum_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 15G
#SBATCH -n 5
#SBATCH -J lassosum
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_lassosum/Scaled_polygenic_scorer_lassosum.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/lassosum/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/lassosum/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--pheno_name ${gwas} \
--n_cores 5 \
--plink ${plink1_9} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/lassosum/sbatch.sh
PRScs
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.PRScs_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J PRScs
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_PRScs/Scaled_polygenic_scorer_PRScs.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/PRScs/sbatch.sh
SBLUP
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.SBLUP_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J SBLUP
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBLUP/Scaled_polygenic_scorer_SBLUP.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/SBLUP/${gwas}/GWAS_sumstats_SBLUP.sblup.cojo \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/SBLUP/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/SBLUP/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.SBLUP_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J SBLUP
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBLUP/Scaled_polygenic_scorer_SBLUP.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBLUP/${gwas}/GWAS_sumstats_SBLUP.sblup.cojo \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBLUP/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBLUP/sbatch.sh
SBayesR
########
# 1KG ref
########
####
# GCTB v2.03 forced robust parameterisation
####
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/todo_GCTB_203_robust.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/${gwas_i}_GCTB_203_robust/UKBB.subset.w_hm3.${gwas_i}.SBayesR_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/todo_GCTB_203_robust.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/sbatch_GCTB_203_robust.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J SBayesR
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/todo_GCTB_203_robust.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/todo_GCTB_203_robust.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBayesR/Scaled_polygenic_scorer_SBayesR.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/GWAS_sumstats_SBayesR.GW.snpRes \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/${gwas}_GCTB_203_robust/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/todo_GCTB_203_robust.txt | cut -d' ' -f1)%5 ${UKBB_output}/PRS_for_comparison/1KG_ref/SBayesR/sbatch_GCTB_203_robust.sh
########################
# Calculate polygenic scores using UKBB reference
########################
####
# GCTB v2.03 robust parameterisation
####
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/todo_GCTB_203_robust.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/${gwas_i}_GCTB_203_robust/UKBB.subset.w_hm3.${gwas_i}.SBayesR_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/todo_GCTB_203_robust.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/sbatch_GCTB_203_robust.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J SBayesR
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/todo_GCTB_203_robust.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/todo_GCTB_203_robust.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBayesR/Scaled_polygenic_scorer_SBayesR.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/GWAS_sumstats_SBayesR.GW.snpRes \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/${gwas}_GCTB_203_robust/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/todo_GCTB_203_robust.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/SBayesR/sbatch_GCTB_203_robust.sh
LDPred
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.LDPred_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J LDPred
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred/Scaled_polygenic_scorer_LDPred.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.LDPred_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J LDPred
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred/Scaled_polygenic_scorer_LDPred.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred/sbatch.sh
LDPred2
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.LDPred_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -n 6
#SBATCH --nodes 1
#SBATCH -J LDPred2
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred2/Scaled_polygenic_scorer_LDPred2.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred2/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred2/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--n_cores 6 \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/todo.txt | cut -d' ' -f1)%5 ${UKBB_output}/PRS_for_comparison/1KG_ref/LDPred2/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.LDPred_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -n 6
#SBATCH -J LDPred2
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred2/Scaled_polygenic_scorer_LDPred2.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred2/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred2/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--n_cores 6 \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDPred2/sbatch.sh
DBSLMM
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.DBSLMM_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J DBSLMM
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_DBSLMM/Scaled_polygenic_scorer_DBSLMM.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/DBSLMM/${gwas}/1KGPhase3.w_hm3.${gwas}.dbslmm.GW.txt \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/DBSLMM/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/1KG_ref/DBSLMM/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.DBSLMM_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J DBSLMM
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_DBSLMM/Scaled_polygenic_scorer_DBSLMM.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/DBSLMM/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.dbslmm.GW.txt \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/DBSLMM/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/todo.txt | cut -d' ' -f1)%3 ${UKBB_output}/PRS_for_comparison/UKBB_ref/DBSLMM/sbatch.sh
LDAK
########
# 1KG ref
########
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -n 5
#SBATCH -J LDAK
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer_plink2.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDAK/${gwas}/1KGPhase3.w_hm3.${gwas}.score.gz \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDAK/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink2 ${plink2} \
--pheno_name ${gwas} \
--n_cores 5 \
--output ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/todo.txt | cut -d' ' -f1)%5 ${UKBB_output}/PRS_for_comparison/1KG_ref/LDAK/sbatch.sh
######
# UKBB ref
######
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
# Create directory
mkdir ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK
# Create file listing GWAS that haven't been processed.
> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/todo.txt
for i in $(seq 1 11);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
if [ ! -f ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/${gwas_i}/UKBB.subset.w_hm3.${gwas_i}.LDAK_profiles ]; then
echo ${gwas_i} ${pheno_i} >> ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/todo.txt
fi
done
# Create shell script to run using sbatch
cat > ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
#SBATCH -J LDAK
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/todo.txt)
pheno=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/todo.txt)
echo $gwas
echo $pheno
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer_plink2.R \
--target_plink_chr ${UKBB_output}/Genotype/Harmonised/UKBB.w_hm3.QCd.AllSNP.chr \
--target_keep ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno}.txt \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDAK/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.score.gz \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDAK/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink2 ${plink2} \
--pheno_name ${gwas} \
--output ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/${gwas}/UKBB.subset.w_hm3.${gwas}
EOF
sbatch --array 1-$(wc -l ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/todo.txt | cut -d' ' -f1)%5 ${UKBB_output}/PRS_for_comparison/UKBB_ref/LDAK/sbatch.sh
pT + clump
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Calculate polygenic scores based on 1KG reference.
n=0
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J pTclump /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/pt_clump/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/pt_clump/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/pt_clump/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
# Calculate polygenic scores based on UKBB reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J pTclump /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/pt_clump/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/pt_clump/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/pt_clump/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
lassosum
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Calculate scores using the 1KG reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J lassosum /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_lassosum/Scaled_polygenic_scorer_lassosum.R \
--target_plink_chr /users/k1806347/brc_scratch/Data/TEDS/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep /users/k1806347/brc_scratch/Data/TEDS/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/lassosum/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/lassosum/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--pheno_name ${gwas} \
--plink ${plink1_9} \
--n_cores 1 \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/lassosum/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
# Calculate scores using the UKBB reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J lassosum /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_lassosum/Scaled_polygenic_scorer_lassosum.R \
--target_plink_chr /users/k1806347/brc_scratch/Data/TEDS/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep /users/k1806347/brc_scratch/Data/TEDS/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/lassosum/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/lassosum/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--pheno_name ${gwas} \
--plink ${plink1_9} \
--n_cores 1 \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/lassosum/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
PRScs
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Calculate scores using My 1KG reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J PRScs /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_PRScs/Scaled_polygenic_scorer_PRScs.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}_My1KGRef/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}_My1KGRef/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/PRScs/${gwas}_My1KGRef/TEDS.w_hm3.${gwas}.EUR
done
# Calculate scores using the PRScs 1KG reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J PRScs /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_PRScs/Scaled_polygenic_scorer_PRScs.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/PRScs/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/PRScs/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
SBLUP
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J SBLUP /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBLUP/Scaled_polygenic_scorer_SBLUP.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/SBLUP/${gwas}/GWAS_sumstats_SBLUP.sblup.cojo \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/SBLUP/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/SBLUP/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J SBLUP /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBLUP/Scaled_polygenic_scorer_SBLUP.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBLUP/${gwas}/GWAS_sumstats_SBLUP.sblup.cojo \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBLUP/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/SBLUP/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
SBayesR
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
##########################
# Calculate polygenic scores using 1KG reference
##########################
# GCTB v2.03 forced robust
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J SBayesR /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBayesR/Scaled_polygenic_scorer_SBayesR.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/GWAS_sumstats_SBayesR.GW.snpRes \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/SBayesR/${gwas}_GCTB_203_robust/TEDS.w_hm3.${gwas}.EUR
done
##########################
# Calculate polygenic scores using UKBB reference
##########################
# GCTB v2.03 forced robust
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J SBayesR /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_SBayesR/Scaled_polygenic_scorer_SBayesR.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/GWAS_sumstats_SBayesR.GW.snpRes \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/SBayesR/${gwas}_GCTB_203_robust/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/SBayesR/${gwas}_GCTB_203_robust/TEDS.w_hm3.${gwas}.EUR
done
LDPred
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Calculate scores using the 1KG reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J LDPred /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred/Scaled_polygenic_scorer_LDPred.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/LDPred/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
# Calculate scores using the UKBB reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J LDPred /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred/Scaled_polygenic_scorer_LDPred.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/LDPred/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
LDPred2
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Calculate scores using the 1KG reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J LDPred2 /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred2/Scaled_polygenic_scorer_LDPred2.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred2/${gwas}/1KGPhase3.w_hm3.${gwas} \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDPred2/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/LDPred2/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
# Calculate scores using the UKBB reference
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 10G -p brc,shared -J LDPred2 /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_LDPred2/Scaled_polygenic_scorer_LDPred2.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred2/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas} \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDPred2/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/LDPred2/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
DBSLMM
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
###
# 1KG ref
###
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J DBSLMM /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_DBSLMM/Scaled_polygenic_scorer_DBSLMM.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/DBSLMM/${gwas}/1KGPhase3.w_hm3.${gwas}.dbslmm.GW.txt \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/DBSLMM/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/DBSLMM/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
###
# UKB ref
###
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J DBSLMM /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer_DBSLMM/Scaled_polygenic_scorer_DBSLMM.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/DBSLMM/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.dbslmm.GW.txt \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/DBSLMM/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink ${plink1_9} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/DBSLMM/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
LDAK
# Set required variables
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
###
# 1KG ref
###
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J LDAK /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer_plink2.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${Geno_1KG_dir}/Score_files_for_polygenic/LDAK/${gwas}/1KGPhase3.w_hm3.${gwas}.score.gz \
--ref_scale ${Geno_1KG_dir}/Score_files_for_polygenic/LDAK/${gwas}/1KGPhase3.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${Geno_1KG_dir}/freq_files/EUR/1KGPhase3.w_hm3.EUR.chr \
--plink2 ${plink2} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/1KG_ref/LDAK/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
###
# UKB ref
###
for gwas in $(echo HEIG03 EDUC03 ADHD04 BODY11);do
sbatch -n 1 --mem 5G -p brc,shared -J LDAK /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Scaled_polygenic_scorer/Scaled_polygenic_scorer_plink2.R \
--target_plink_chr ${TEDS_output_dir}/Genotype/Harmonised/TEDS.w_hm3.QCd.AllSNP.chr \
--target_keep ${TEDS_output_dir}/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--ref_score ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDAK/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.score.gz \
--ref_scale ${UKBB_output}/UKBB_ref/Score_files_for_polygenic/LDAK/${gwas}/UKBB.noPheno.EUR.10K.w_hm3.${gwas}.EUR.scale \
--ref_freq_chr ${UKBB_output}/UKBB_ref/genotype/UKBB.noPheno.EUR.10K.chr \
--plink2 ${plink2} \
--pheno_name ${gwas} \
--output ${TEDS_output_dir}/prs_comparison/UKBB_ref/LDAK/${gwas}/TEDS.w_hm3.${gwas}.EUR
done
Models containing a single predictor were derived using generalised linear model (GLM). Models containing multiple predictors were derived using elastic-net regularisation to reduce the likelihood of overfitting and account for multicollinearity when modelling highly correlated predictors. 10-fold cross validation was performed using 80% of individuals to identify optimal parameters, with subsequent test-set validation in the remaining 20% of individuals to estimate the predictive utility among individuals not included in the parameter selection process.
Model building and evaluation was performed using an Rscript called Model_builder_V2.R (more information here).
Compare all methods
# Create a file listing the predictors files
source('/users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config')
pheno<-c('Depression','Intelligence','BMI','Height','T2D','CAD','IBD','MultiScler','RheuArth','Breast_Cancer','Prostate_Cancer')
gwas<-c('DEPR06','COLL01','BODY04','HEIG03','DIAB05','COAD01','CROH01','SCLE03','RHEU02','BRCA01','PRCA01')
for(i in 1:length(pheno)){
for(ref in c('1KG','UKBB')){
pred_file<-NULL
# pT+clump (sparse)
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/pt_clump/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.profiles'),
group='pT+clump'))
# lassosum
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/lassosum/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.lassosum_profiles'),
group='lassosum'))
if(ref == '1KG'){
# PRScs
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/PRScs/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.PRScs_profiles'),
group='PRScs'))
}
# SBLUP
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/SBLUP/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.SBLUP_profiles'),
group='SBLUP'))
# SBayesR
# Note use Robust implementation
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/SBayesR/',gwas[i],'_GCTB_203_robust/UKBB.subset.w_hm3.',gwas[i],'.SBayesR_profiles'),
group='SBayesR'))
# LDPred
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/LDPred/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.LDPred_profiles'),
group='LDPred'))
# DBSLMM
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/DBSLMM/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.DBSLMM_profiles'),
group='DBSLMM'))
# LDPred2
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/LDPred2/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.LDPred_profiles'),
group='LDPred2'))
# LDAK
pred_file<-rbind(pred_file,data.frame( predictors=paste0(UKBB_output,'/PRS_for_comparison/',ref,'_ref/LDAK/',gwas[i],'/UKBB.subset.w_hm3.',gwas[i],'.profiles'),
group='LDAK'))
# Write out list of predictors with groups
if(ref == '1KG'){
write.table(pred_file, paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/UKBB.w_hm3.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups'), row.names=F, col.names=T, quote=F)
} else {
write.table(pred_file, paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/UKBB.w_hm3.UKBB_ref.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups'), row.names=F, col.names=T, quote=F)
}
}
}
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config
# Run Model_builder_V2.R
pheno=$(echo Depression Intelligence BMI Height T2D CAD IBD MultiScler RheuArth Breast_Cancer Prostate_Cancer)
gwas=$(echo DEPR06 COLL01 BODY04 HEIG03 DIAB05 COAD01 CROH01 SCLE03 RHEU02 BRCA01 PRCA01)
prev=$(echo 0.15 NA NA NA 0.05 0.03 0.013 0.00164 0.005 0.125 0.125)
# 1KG reference
for i in $(seq 1 11);do
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
prev_i=$(echo ${prev} | cut -f ${i} -d ' ')
sbatch --mem 30G -n 3 -p brc,shared /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Model_builder/Model_builder_V2.R \
--pheno ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno_i}.txt \
--keep /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/ukb18177_glanville_post_qc_id_list.UpdateIDs.fam \
--out /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/${pheno_i}/Association_withPRSs/UKBB.w_hm3.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK \
--n_core 3 \
--compare_predictors T \
--assoc T \
--outcome_pop_prev ${prev_i} \
--predictors /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/${pheno_i}/Association_withPRSs/UKBB.w_hm3.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups
done
# UKBB reference
for i in $(seq 1 11);do
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
prev_i=$(echo ${prev} | cut -f ${i} -d ' ')
sbatch --mem 30G -n 3 -p brc,shared /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Model_builder/Model_builder_V2.R \
--pheno ${UKBB_output}/Phenotype/PRS_comp_subset/UKBB.${pheno_i}.txt \
--keep /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/ukb18177_glanville_post_qc_id_list.UpdateIDs.fam \
--out /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/${pheno_i}/Association_withPRSs/UKBB.w_hm3.UKBB_ref.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK \
--n_core 3 \
--compare_predictors T \
--assoc T \
--outcome_pop_prev ${prev_i} \
--predictors /users/k1806347/brc_scratch/Analyses/PRS_comparison/UKBB_outcomes_for_prediction/${pheno_i}/Association_withPRSs/UKBB.w_hm3.UKBB_ref.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups
done
Compare all methods
# Create a file listing the predictors files
source('/users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config')
pheno<-c('Height21','BMI21','GCSE','ADHD')
gwas<-c('HEIG03','BODY11','EDUC03','ADHD04')
Processing<-c('','_P4')
Processing_name<-c('Original','P<0.4')
for(i in 1:length(pheno)){
for(ref in c('1KG','UKBB')){
if(ref == '1KG'){
dat_path<-paste0(TEDS_output_dir,'/prs_comparison/1KG_ref/')
} else {
dat_path<-paste0(TEDS_output_dir,'/prs_comparison/UKBB_ref/')
}
pred_file<-NULL
# pT+clump (sparse)
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'pt_clump/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.profiles'),
group='pT+clump'))
# lassosum
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'lassosum/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.lassosum_profiles'),
group='lassosum'))
if(ref == '1KG'){
# PRScs
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'PRScs/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.PRScs_profiles'),
group='PRScs'))
}
# SBLUP
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'SBLUP/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.SBLUP_profiles'),
group='SBLUP'))
# SBayesR
# Use robust mode
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'SBayesR/',gwas[i],'_GCTB_203_robust/TEDS.w_hm3.',gwas[i],'.EUR.SBayesR_profiles'),
group='SBayesR'))
# LDPred
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'LDPred/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.LDPred_profiles'),
group='LDPred'))
# DBSLMM
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'DBSLMM/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.DBSLMM_profiles'),
group='DBSLMM'))
# LDPred2
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'LDPred2/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.LDPred_profiles'),
group='LDPred2'))
# LDAK
pred_file<-rbind(pred_file,data.frame( predictors=paste0(dat_path,'LDAK/',gwas[i],'/TEDS.w_hm3.',gwas[i],'.EUR.profiles'),
group='LDAK'))
# Write out list of predictors with groups
if(ref == '1KG'){
write.table(pred_file, paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/TEDS.w_hm3.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups'), row.names=F, col.names=T, quote=F)
} else {
write.table(pred_file, paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/TEDS.w_hm3.UKBB_ref.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups'), row.names=F, col.names=T, quote=F)
}
}
}
# Run Model_builder_V2.R
pheno=$(echo Height21 BMI21 GCSE ADHD)
gwas=$(echo HEIG03 BODY11 EDUC03 ADHD04)
prev=$(echo NA NA NA NA)
# 1KG ref
for i in $(seq 1 4);do
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
prev_i=$(echo ${prev} | cut -f ${i} -d ' ')
sbatch --mem 10G -n 2 -p brc,shared /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Model_builder/Model_builder_V2.R \
--pheno /users/k1806347/brc_scratch/Data/TEDS/Phenotypic/Derived_outcomes/TEDS_${pheno_i}.txt \
--keep /users/k1806347/brc_scratch/Data/TEDS/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--out /users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/${pheno_i}/Association_withPRSs/TEDS.w_hm3.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK \
--n_core 2 \
--compare_predictors T \
--assoc T \
--outcome_pop_prev ${prev_i} \
--predictors /users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/${pheno_i}/Association_withPRSs/TEDS.w_hm3.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups
done
# UKB ref
for i in $(seq 1 4);do
pheno_i=$(echo ${pheno} | cut -f ${i} -d ' ')
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
prev_i=$(echo ${prev} | cut -f ${i} -d ' ')
sbatch --mem 10G -n 2 -p brc,shared /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/Model_builder/Model_builder_V2.R \
--pheno /users/k1806347/brc_scratch/Data/TEDS/Phenotypic/Derived_outcomes/TEDS_${pheno_i}.txt \
--keep /users/k1806347/brc_scratch/Data/TEDS/Projected_PCs/Ancestry_idenitfier/TEDS.w_hm3.AllAncestry.EUR.keep \
--out /users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/${pheno_i}/Association_withPRSs/TEDS.w_hm3.UKBB_ref.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK \
--n_core 2 \
--compare_predictors T \
--assoc T \
--outcome_pop_prev ${prev_i} \
--predictors /users/k1806347/brc_scratch/Analyses/PRS_comparison/TEDS_outcomes_for_prediction/${pheno_i}/Association_withPRSs/TEDS.w_hm3.UKBB_ref.${gwas_i}.EUR-PRSs.AllMethodComp_inclLDAK.predictor_groups
done
Here we run each method analysing just chromosome 22.
Show benchmarking code
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator/polygenic_score_file_creator.R \
--ref_plink_chr ${Geno_1KG_dir}/1KGPhase3.w_hm3.chr \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--memory 3000 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator/polygenic_score_file_creator.R \
--ref_plink_chr ${Geno_1KG_dir}/1KGPhase3.w_hm3.chr \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--nested F \
--memory 3000 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_nonnested/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_dense/polygenic_score_file_creator_dense.R \
--ref_plink_chr ${Geno_1KG_dir}/1KGPhase3.w_hm3.chr \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--prsice_path ${prsice_path} \
--rscript ${rscript} \
--memory 3000 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/pt_clump_dense/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 5G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_lassosum/polygenic_score_file_creator_lassosum.R \
--ref_plink_gw ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--plink ${plink1_9} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/lassosum/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 5G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_PRScs/polygenic_score_file_creator_PRScs.R \
--ref_plink_chr ${Geno_1KG_dir}/1KGPhase3.w_hm3.chr \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--memory 5000 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list \
--PRScs_path /users/k1806347/brc_scratch/Software/PRScs.sh \
--PRScs_ref_path ${PRScs_dir}/ldblk_1kg_eur \
--n_cores 1 \
--test ${test} \
--phi_param 1e-6,1e-4,1e-2,1,auto
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/PRScs/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p test
#SBATCH --mem 5G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_SBLUP/polygenic_score_file_creator_SBLUP.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--gcta ${gcta} \
--munge_sumstats ${munge_sumstats} \
--ldsc ${ldsc} \
--ldsc_ref ${ldsc_ref} \
--hm3_snplist ${HapMap3_snplist_dir}/w_hm3.snplist \
--memory 50000 \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBLUP/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_SBayesR/polygenic_score_file_creator_SBayesR.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--gctb ${gctb} \
--ld_matrix_chr ${Geno_1KG_dir}/LD_matrix/EUR/1KGPhase3.w_hm3.EUR.chr \
--memory 50000 \
--n_cores 3 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}_3core_split \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/SBayesR/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/todo.txt
for gwas in $(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01);do
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test}.log ]; then
echo $gwas ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 5G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/todo.txt)
echo ${gwas}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_LDPred/polygenic_score_file_creator_LDPred.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--memory 20000 \
--n_cores 1 \
--ldpred ${ldpred} \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
binary=$(echo T F F F T T T T T F T F T T)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
binary_i=$(echo ${binary} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${binary_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 20G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt)
binary=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $3}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt)
echo ${gwas}
echo ${binary}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_LDPred2/polygenic_score_file_creator_LDPred2.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--ldpred2_ref_dir ${Geno_1KG_dir}/LD_matrix/LDPred2 \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--memory 5000 \
--n_cores 1 \
--binary ${binary} \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/todo.txt | cut -d' ' -f1)%5 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/sbatch.sh
opt$ref_plink<-'/users/k1806347/brc_scratch/Data/1KG/Phase3/1KGPhase3.w_hm3.GW'
opt$ref_keep<-'/users/k1806347/brc_scratch/Data/1KG/Phase3/keep_files/EUR_samples.keep'
opt$ldpred2_ref_dir<-'/users/k1806347/brc_scratch/Data/1KG/Phase3/LD_matrix/LDPred2'
opt$sumstats<-'/users/k1806347/brc_scratch/Data/GWAS_sumstats/prs_comparison/cleaned/DEPR06.cleaned.gz'
opt$plink<-'/users/k1806347/brc_scratch/Software/plink1.9.sh'
opt$memory<-5000
opt$n_cores<-1
opt$binary<-T
opt$output<-'/users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/LDPred2_compact/DEPR06/test_chr22/1KGPhase3.w_hm3.DEPR06.test_chr22'
opt$test<-'chr22'
opt$ref_pop_scale<-'/users/k1806347/brc_scratch/Data/1KG/Phase3/super_pop_keep.list'
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
pop_prev=$(echo 0.15 NA NA NA 0.05 0.03 0.013 0.00164 0.005 NA 0.05 NA 0.125 0.125)
samp_prev=$(echo 0.27 NA NA NA 0.298 0.5 0.069 0.023 0.246 NA 0.36 NA 0.564 0.537)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
pop_prev_i=$(echo ${pop_prev} | cut -f ${i} -d ' ')
sample_prev_i=$(echo ${samp_prev} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${pop_prev_i} ${sample_prev_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt)
pop_prev=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt)
sample_prev=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $3}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $4}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt)
echo ${gwas}
echo ${pop_prev}
echo ${sample_prev}
echo ${test}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/polygenic_score_file_creator_DBSLMM/polygenic_score_file_creator_DBSLMM.R \
--ref_plink_chr ${Geno_1KG_dir}/1KGPhase3.w_hm3.chr \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink ${plink1_9} \
--memory 5000 \
--ld_blocks /users/k1806347/brc_scratch/Data/LDetect/EUR \
--rscript /users/k1806347/brc_scratch/Software/Rscript.sh \
--dbslmm /users/k1806347/brc_scratch/Software/DBSLMM/software \
--munge_sumstats ${munge_sumstats} \
--ldsc ${ldsc} \
--ldsc_ref ${ldsc_ref} \
--hm3_snplist ${HapMap3_snplist_dir}/w_hm3.snplist \
--sample_prev ${sample_prev} \
--pop_prev ${pop_prev} \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/todo.txt | cut -d' ' -f1)%3 /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/DBSLMM/sbatch.sh
MegaPRS contains Lasso-SS (–model lasso), Lasso-SS-Sparse (–model lasso-sparse), Ridge-SS (–model ridge), Bolt-SS (–model bolt), BayesR-SS (–model bayesr) and BayesR-Shrink (–model bayesr-shrink). If you use –model mega
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/todo.txt)
echo ${gwas}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/ldak_mega_prs/ldak_mega_prs.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink1 ${plink1_9} \
--plink2 ${plink2} \
--ldak /users/k1806347/brc_scratch/Software/ldak5.1.linux \
--ldak_map /users/k1806347/brc_scratch/Data/LDAK/genetic_map_b37 \
--ldak_tag /users/k1806347/brc_scratch/Data/LDAK/bld/ \
--ldak_highld /users/k1806347/brc_scratch/Data/LDAK/highld.txt \
--memory 5000 \
--prs_model mega \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/todo.txt | cut -d' ' -f1) /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/MegaPRS/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
echo ${gwas}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/ldak_mega_prs/ldak_mega_prs.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink1 ${plink1_9} \
--plink2 ${plink2} \
--ldak /users/k1806347/brc_scratch/Software/ldak5.1.linux \
--ldak_map /users/k1806347/brc_scratch/Data/LDAK/genetic_map_b37 \
--ldak_tag /users/k1806347/brc_scratch/Data/LDAK/bld/ \
--ldak_highld /users/k1806347/brc_scratch/Data/LDAK/highld.txt \
--memory 5000 \
--prs_model lasso \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt | cut -d' ' -f1) /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/todo.txt)
echo ${gwas}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/ldak_mega_prs/ldak_mega_prs.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink1 ${plink1_9} \
--plink2 ${plink2} \
--ldak /users/k1806347/brc_scratch/Software/ldak5.1.linux \
--ldak_map /users/k1806347/brc_scratch/Data/LDAK/genetic_map_b37 \
--ldak_tag /users/k1806347/brc_scratch/Data/LDAK/bld/ \
--ldak_highld /users/k1806347/brc_scratch/Data/LDAK/highld.txt \
--memory 5000 \
--prs_model ridge \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/todo.txt | cut -d' ' -f1) /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Ridge-SS/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/todo.txt)
echo ${gwas}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/ldak_mega_prs/ldak_mega_prs.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink1 ${plink1_9} \
--plink2 ${plink2} \
--ldak /users/k1806347/brc_scratch/Software/ldak5.1.linux \
--ldak_map /users/k1806347/brc_scratch/Data/LDAK/genetic_map_b37 \
--ldak_tag /users/k1806347/brc_scratch/Data/LDAK/bld/ \
--ldak_highld /users/k1806347/brc_scratch/Data/LDAK/highld.txt \
--memory 5000 \
--prs_model bolt \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/todo.txt | cut -d' ' -f1) /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Bolt-SS/sbatch.sh
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(echo DEPR06 COLL01 HEIG03 BODY04 DIAB05 COAD01 CROH01 SCLE03 RHEU02 EDUC03 ADHD04 BODY11 PRCA01 BRCA01)
# Create directory
mkdir /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS
# Create file listing GWAS that haven't been processed.
> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/todo.txt
for i in $(seq 1 14);do
gwas_i=$(echo ${gwas} | cut -f ${i} -d ' ')
for test in $(echo chr22);do
if [ ! -f /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/${gwas_i}/test_${test}/1KGPhase3.w_hm3.${gwas_i}.test_${test}.log ]; then
echo ${gwas_i} ${test} >> /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/todo.txt
fi
done
done
# Create shell script to run using sbatch
cat > /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/sbatch.sh << 'EOF'
#!/bin/sh
#SBATCH -p shared,brc
#SBATCH --mem 10G
. /users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Pipeline_prep.config
gwas=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $1}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Lasso-SS/todo.txt)
test=$(awk -v var="$SLURM_ARRAY_TASK_ID" 'NR == var {print $2}' /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/todo.txt)
echo ${gwas}
/users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Software/MyGit/GenoPred/Scripts/ldak_mega_prs/ldak_mega_prs.R \
--ref_plink ${Geno_1KG_dir}/1KGPhase3.w_hm3.GW \
--ref_keep ${Geno_1KG_dir}/keep_files/EUR_samples.keep \
--sumstats ${gwas_rep_qcd}/${gwas}.cleaned.gz \
--plink1 ${plink1_9} \
--plink2 ${plink2} \
--ldak /users/k1806347/brc_scratch/Software/ldak5.1.linux \
--ldak_map /users/k1806347/brc_scratch/Data/LDAK/genetic_map_b37 \
--ldak_tag /users/k1806347/brc_scratch/Data/LDAK/bld/ \
--ldak_highld /users/k1806347/brc_scratch/Data/LDAK/highld.txt \
--memory 5000 \
--prs_model bayesr \
--n_cores 1 \
--output /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/${gwas}/test_${test}/1KGPhase3.w_hm3.${gwas}.test_${test} \
--test ${test} \
--ref_pop_scale ${Geno_1KG_dir}/super_pop_keep.list
EOF
sbatch --array 1-$(wc -l /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/todo.txt | cut -d' ' -f1) /users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/BayesR-SS/sbatch.sh
Show plotting code
method<-c('pt_clump','lassosum','PRScs','SBLUP','SBayesR','LDPred','LDPred2','LDPred2_compact','DBSLMM','MegaPRS','Lasso-SS','Ridge-SS','Bolt-SS','BayesR-SS')
gwas<-c('DEPR06','COLL01','HEIG03','BODY04','DIAB05','COAD01','CROH01','SCLE03','RHEU02','EDUC03','ADHD04','BODY11','PRCA01','BRCA01')
test<-c('chr22')
res<-NULL
res_mean<-NULL
for(method_i in method){
for(test_i in test){
res_tmp<-NULL
for(gwas_i in gwas){
tmp<-read.table(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/',method_i,'/',gwas_i,'/test_',test_i,'/1KGPhase3.w_hm3.',gwas_i,'.test_',test_i,'.log'), sep='&')$V1
tmp<-tmp[grepl('Test duration was', tmp)]
tmp<-gsub('Test duration was ','',tmp)
tmp_time<-as.numeric(gsub(' .*','',tmp))
tmp_unit<-gsub('.* ','',gsub(' $','',tmp))
if(tmp_unit == 'mins'){
tmp_time<-tmp_time*60
}
if(tmp_unit == 'hours'){
tmp_time<-tmp_time*60*60
}
res_tmp<-rbind(res_tmp, data.frame(Method=method_i,
Test=test_i,
GWAS=gwas_i,
Time=tmp_time))
}
res_mean<-rbind(res_mean, data.frame(Method=method_i,
Test=test_i,
Time_mean=mean(res_tmp$Time),
Time_sd=sd(res_tmp$Time)))
res<-rbind(res, res_tmp)
}
}
res$Method<-as.character(res$Method)
res$Method<-gsub('LDPred','LDpred', res$Method)
res$Method[res$Method == 'pt_clump']<-'pT+clump'
res$Method<-factor(res$Method, levels=unique(res$Method))
res$Test<-as.factor(res$Test)
library(ggplot2)
library(cowplot)
all<-ggplot(res, aes(x=Method, y=Time/60)) +
geom_boxplot() +
facet_grid(.~Test) +
theme_half_open() +
labs(y="Time (Minutes)") +
background_grid() +
theme(axis.text.x = element_text(angle = 45, hjust=1)) +
panel_border()
small<-ggplot(res[!(res$Method %in% c('PRScs','LDPred2')),], aes(x=Method, y=Time/60)) +
geom_boxplot() +
facet_grid(.~Test) +
theme_half_open() +
labs(y="Time (Minutes)") +
background_grid() +
theme(axis.text.x = element_text(angle = 45, hjust=1)) +
panel_border()
png('/users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Result_withLDAK.png', unit='px', width=2500, height=3500, res=300)
plot_grid(all, small, labels = 'AUTO', ncol=1)
dev.off()
png('/users/k1806347/brc_scratch/Analyses/PRS_comparison/Benchmark/Result_withLDAK_2.png', unit='px', width=1500, height=1000, res=300)
ggplot(res[!(res$Method %in% c('Lasso-SS','Ridge-SS','Bolt-SS','BayesR-SS')),], aes(x=Method, y=Time/60)) +
geom_boxplot() +
facet_grid(.~Test) +
theme_half_open() +
labs(y="Time (Minutes)") +
background_grid() +
theme(axis.text.x = element_text(angle = 45, hjust=1)) +
panel_border()
dev.off()
Summarise and plot the results
Files<-c('UKBB','UKBB.UKBB_ref','TEDS','TEDS.UKBB_ref')
Samples<-c('UKBB','UKBB','TEDS','TEDS')
Files_descrip<-c('UKB target with 1KG ref','UKB target with UKB ref','TEDS target with 1KG ref', 'TEDS target with UKB ref')
source('/users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config')
meta_res_eval<-NULL
meta_res_comp<-NULL
meta_res_eval_plots_cross<-list()
meta_res_eval_plots_indep<-list()
meta_res_eval_diff_plots_cross<-list()
meta_res_eval_diff_plots_indep<-list()
meta_res_eval_diff_matrix_cross<-list()
meta_res_eval_diff_matrix_indep<-list()
res_LDAK<-list()
for(file in 1:length(Files)){
if(Samples[file] == 'UKBB'){
pheno<-c('Depression','Intelligence','Height','BMI','T2D','CAD','IBD', 'MultiScler','RheuArth','Prostate_Cancer','Breast_Cancer')
gwas<-c('DEPR06','COLL01','HEIG03','BODY04','DIAB05','COAD01','CROH01','SCLE03','RHEU02','PRCA01','BRCA01')
gwas_prev=c(0.28,NA,NA,NA,0.168,0.33,0.285,0.36,0.246,0.564,0.537)
} else {
pheno<-c('Height21', 'BMI21', 'GCSE', 'ADHD')
gwas<-c('HEIG03', 'BODY11', 'EDUC03', 'ADHD04')
gwas_prev=c(NA,NA,NA,0.364)
}
##################
# Organise, make tables and figures for per phenotype results
##################
res_eval<-NULL
res_comp<-NULL
res_eval_plots_cross<-list()
res_eval_plots_indep<-list()
res_eval_diff_plots_cross<-list()
res_eval_diff_plots_indep<-list()
res_eval_diff_matrix_cross<-list()
res_eval_diff_matrix_indep<-list()
for(i in 1:length(pheno)){
if(grepl('UKBB_ref',Files[file])){
res_eval_i<-read.table(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.UKBB_ref.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.pred_eval.txt'), header=T, stringsAsFactors=F)
res_comp_i<-read.table(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.UKBB_ref.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.pred_comp.txt'), header=T, stringsAsFactors=F)
} else {
res_eval_i<-read.table(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.pred_eval.txt'), header=T, stringsAsFactors=F)
res_comp_i<-read.table(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.',gwas[i],'.EUR-PRSs.AllMethodComp_inclLDAK.pred_comp.txt'), header=T, stringsAsFactors=F)
}
# Check LDAK performance across parameters and pseudovalidation accuracy
if(!grepl('UKBB_ref',Files[file])){
res_eval_i_LDAK<-res_eval_i[grepl('LDAK.Pred',res_eval_i$Model),]
res_eval_i_LDAK$LDAK_model<-gsub('_group','',gsub('.*ldak.Model','',res_eval_i_LDAK$Model))
samp_prev<-res_eval_i_LDAK$IndepVal_Ncas[1]/res_eval_i_LDAK$IndepVal_N[1]
res_eval_i_LDAK<-res_eval_i_LDAK[,c('LDAK_model','IndepVal_R')]
names(res_eval_i_LDAK)<-c('LDAK_model','obs_R')
ldak_param<-read.table(paste0('/users/k1806347/brc_scratch/Data/1KG/Phase3/Score_files_for_polygenic/LDAK/',gwas[i],'/1KGPhase3.w_hm3.',gwas[i],'.model_param.txt'), header=T,stringsAsFactors = F)
ldak_assoc<-merge(res_eval_i_LDAK, ldak_param, by.x='LDAK_model', by.y='Model')
ldak_assoc<-ldak_assoc[,c('LDAK_model','Type','Her','Lasso_lambda','Lasso_s','Bolt_p','Bolt_f2','BayesR_p1','BayesR_p2','BayesR_p3','BayesR_p4','obs_R')]
ldak_assoc<-ldak_assoc[order(as.numeric(ldak_assoc$LDAK_model)),]
ldak_pseudo<-read.table(paste0('/users/k1806347/brc_scratch/Data/1KG/Phase3/Score_files_for_polygenic/LDAK/',gwas[i],'/1KGPhase3.w_hm3.',gwas[i],'.pseudoval.txt'), header=F,stringsAsFactors = F)
names(ldak_pseudo)<-c('LDAK_model','pseudo_R')
ldak_pseudo$LDAK_model<-gsub('.*_','',ldak_pseudo$LDAK_model)
if(length(samp_prev) != 0){
gwas_prev_i<-gwas_prev[i]
r2_d<-function(d,p){
n_case<-p
n_con<-1-p
a<-(n_case+n_con)^2/(n_case*n_con)
r=d/sqrt(a+d^2)
r2<-r^2
r2
}
d_r2<-function(r2,p){
r<-sqrt(r2)
n_case<-p
n_con<-1-p
a<-(n_case+n_con)^2/(n_case*n_con)
d<-sqrt(a)*r/sqrt(1-r^2)
d
}
ldak_pseudo$pseudo_R<-sqrt(r2_d(d=d_r2(r2=ldak_pseudo$pseudo_R^2, p=gwas_prev_i), p=samp_prev))
}
ldak_assoc<-merge(ldak_assoc, ldak_pseudo, by='LDAK_model')
ldak_assoc<-ldak_assoc[order(ldak_assoc$LDAK_model),]
library(ggplot2)
library(cowplot)
png(paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.',gwas[i],'.EUR-PRSs.LDAK.param_res.png'), units = 'px', res=300, width=2000, height=2000)
print(ggplot(ldak_assoc, aes(x=obs_R, y=pseudo_R, colour=Type)) +
geom_point() +
ylim(c(min(c(ldak_assoc$obs_R, ldak_assoc$pseudo_R)),max(c(ldak_assoc$obs_R, ldak_assoc$pseudo_R)))) +
xlim(c(min(c(ldak_assoc$obs_R, ldak_assoc$pseudo_R)),max(c(ldak_assoc$obs_R, ldak_assoc$pseudo_R)))) +
theme_half_open() +
background_grid())
dev.off()
write.csv(ldak_assoc, paste0('/users/k1806347/brc_scratch/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/',pheno[i],'/Association_withPRSs/',Samples[file],'.w_hm3.',gwas[i],'.EUR-PRSs.LDAK.param_res.csv'), row.names = F, quote = F)
ldak_assoc_top<-ldak_assoc[ldak_assoc$pseudo_R == max(ldak_assoc$pseudo_R),]
res_LDAK<-rbind(res_LDAK, data.frame(sample=Samples[file],
gwas=gwas[i],
ldak_assoc_top))
}
# Idenitfy model names for 10FCVal, multi-PRS and pseudoval
selected_models<-NULL
##
# pT+clump (sparse)
##
# Identify best pT in 10FCVal
res_eval_i_per_pT<-res_eval_i[grepl('pT.clump.PredFile', res_eval_i$Model),]
selected_models<-rbind(selected_models,data.frame(Test='pT+clump.10FCVal', Label=
res_eval_i_per_pT[res_eval_i_per_pT$CrossVal_R == max(res_eval_i_per_pT$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='pT+clump.MultiPRS', Label='pT.clump'))
##
# lassosum
##
# Identify best pT in 10FCVal
res_eval_i_per_lassosum<-res_eval_i[grepl('lassosum.PredFile', res_eval_i$Model),]
selected_models<-rbind(selected_models,data.frame(Test='lassosum.10FCVal', Label=
res_eval_i_per_lassosum[res_eval_i_per_lassosum$CrossVal_R == max(res_eval_i_per_lassosum$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='lassosum.MultiPRS', Label='lassosum'))
# Identify pseudoVal
if(grepl('UKBB_ref',Files[file])){
lassosum_val<-read.table(paste0('/users/k1806347/brc_scratch/Data/UKBB/UKBB_ref/Score_files_for_polygenic/lassosum/',gwas[i],'/UKBB.noPheno.EUR.10K.w_hm3.',gwas[i],'.log'), sep='&')
} else {
lassosum_val<-read.table(paste0('/users/k1806347/brc_scratch/Data/1KG/Phase3/Score_files_for_polygenic/lassosum/',gwas[i],'/1KGPhase3.w_hm3.',gwas[i],'.log'), sep='&')
}
lassosum_val_s<-as.numeric(gsub('s = ','',lassosum_val$V1[grepl('s = ',lassosum_val$V1)]))
lassosum_val_lambda<-as.numeric(gsub('lambda =','',lassosum_val$V1[grepl('lambda =',lassosum_val$V1)]))
lassosum_val_param<-paste0('s',lassosum_val_s,'.lambda',lassosum_val_lambda)
lassosum_val_param<-substr(lassosum_val_param, 1, nchar(lassosum_val_param)-1)
selected_models<-rbind(selected_models,data.frame(Test='lassosum.PseudoVal', Label=res_eval_i[grepl(lassosum_val_param, res_eval_i$Model),]$Model[1]))
##
# PRScs
##
# Identify best pT in 10FCVal
res_eval_i_per_PRScs<-res_eval_i[grepl('PRScs.PredFile', res_eval_i$Model),]
res_eval_i_per_PRScs<-res_eval_i_per_PRScs[!grepl('phiauto', res_eval_i_per_PRScs$Model),]
selected_models<-rbind(selected_models,data.frame(Test='PRScs.10FCVal', Label=res_eval_i_per_PRScs[res_eval_i_per_PRScs$CrossVal_R == max(res_eval_i_per_PRScs$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='PRScs.MultiPRS', Label='PRScs'))
# Identify pseudoval
res_eval_i_per_PRScs<-res_eval_i[grepl('PRScs.PredFile', res_eval_i$Model),]
res_eval_i_per_PRScs<-res_eval_i_per_PRScs[grepl('phiauto', res_eval_i_per_PRScs$Model),]
selected_models<-rbind(selected_models,data.frame(Test='PRScs.PseudoVal', Label=res_eval_i_per_PRScs[res_eval_i_per_PRScs$CrossVal_R == max(res_eval_i_per_PRScs$CrossVal_R),]$Model[1]))
##
# SBLUP
##
# Identify PseudoVal
selected_models<-rbind(selected_models,data.frame(Test='SBLUP.Inf', Label='SBLUP'))
##
# SBayesR
##
# Identify PseudoVal
selected_models<-rbind(selected_models,data.frame(Test='SBayesR.PseudoVal', Label='SBayesR'))
##
# LDPred1
##
# Identify best pT in 10FCVal
res_eval_i_per_LDPred<-res_eval_i[grepl('LDPred.PredFile', res_eval_i$Model),]
res_eval_i_per_LDPred<-res_eval_i_per_LDPred[!grepl('.LDpred.inf', res_eval_i_per_LDPred$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDpred1.10FCVal', Label=res_eval_i_per_LDPred[res_eval_i_per_LDPred$CrossVal_R == max(res_eval_i_per_LDPred$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='LDpred1.MultiPRS', Label='LDPred'))
# Identify pseudoval
res_eval_i_per_LDPred<-res_eval_i[grepl('LDPred.PredFile', res_eval_i$Model),]
res_eval_i_per_LDPred<-res_eval_i_per_LDPred[grepl('.LDpred.inf', res_eval_i_per_LDPred$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDpred1.Inf', Label=res_eval_i_per_LDPred[res_eval_i_per_LDPred$CrossVal_R == max(res_eval_i_per_LDPred$CrossVal_R),]$Model[1]))
##
# LDPred2
##
# Identify best pT in 10FCVal
res_eval_i_per_LDPred2<-res_eval_i[grepl('LDPred2.PredFile', res_eval_i$Model),]
res_eval_i_per_LDPred2<-res_eval_i_per_LDPred2[!grepl('beta.inf|beta.auto', res_eval_i_per_LDPred2$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDpred2.10FCVal', Label=res_eval_i_per_LDPred2[res_eval_i_per_LDPred2$CrossVal_R == max(res_eval_i_per_LDPred2$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='LDpred2.MultiPRS', Label='LDPred2'))
# Identify pseudoval
res_eval_i_per_LDPred2<-res_eval_i[grepl('LDPred2.PredFile', res_eval_i$Model),]
res_eval_i_per_LDPred2<-res_eval_i_per_LDPred2[grepl('beta.inf', res_eval_i_per_LDPred2$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDpred2.Inf', Label=res_eval_i_per_LDPred2$Model))
res_eval_i_per_LDPred2<-res_eval_i[grepl('LDPred2.PredFile', res_eval_i$Model),]
res_eval_i_per_LDPred2<-res_eval_i_per_LDPred2[grepl('beta.auto', res_eval_i_per_LDPred2$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDpred2.PseudoVal', Label=res_eval_i_per_LDPred2$Model))
##
# DBSLMM
##
# Identify PseudoVal
selected_models<-rbind(selected_models,data.frame(Test='DBSLMM.PseudoVal', Label='DBSLMM'))
##
# LDAK
##
# Identify best pT in 10FCVal
res_eval_i_per_LDAK<-res_eval_i[grepl('LDAK.PredFile', res_eval_i$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDAK.10FCVal', Label=res_eval_i_per_LDAK[res_eval_i_per_LDAK$CrossVal_R == max(res_eval_i_per_LDAK$CrossVal_R),]$Model[1]))
# Identify multi pT
selected_models<-rbind(selected_models,data.frame(Test='LDAK.MultiPRS', Label='LDAK'))
# Identify pseudoval
if(grepl('UKBB_ref',Files[file])){
LDAK_val<-readLines(paste0('/users/k1806347/brc_scratch/Data/UKBB/UKBB_ref/Score_files_for_polygenic/LDAK/',gwas[i],'/UKBB.noPheno.EUR.10K.w_hm3.',gwas[i],'.log'))
} else {
LDAK_val<-readLines(paste0('/users/k1806347/brc_scratch/Data/1KG/Phase3/Score_files_for_polygenic/LDAK/',gwas[i],'/1KGPhase3.w_hm3.',gwas[i],'.log'))
}
LDAK_val<-LDAK_val[grepl('is identified as the best', LDAK_val)]
LDAK_val<-gsub(' .*','',gsub('Model ','',LDAK_val))
if(nchar(LDAK_val) > 3){
LDAK_val<-substr(LDAK_val, 1, 3)
}
res_eval_i_per_LDAK<-res_eval_i[grepl('LDAK.PredFile', res_eval_i$Model),]
res_eval_i_per_LDAK<-res_eval_i_per_LDAK[grepl(paste0('Model',LDAK_val,'_'), res_eval_i_per_LDAK$Model),]
selected_models<-rbind(selected_models,data.frame(Test='LDAK.PseudoVal', Label=res_eval_i_per_LDAK$Model))
##
# All methods
##
selected_models<-rbind(selected_models,data.frame(Test='All.MultiPRS', Label='All'))
###
# Subset selected models and format
###
# Eval
selected_models$Label_2<-paste0(gsub('_group','',selected_models$Label),'_group')
res_eval_i_select<-res_eval_i[(res_eval_i$Model %in% selected_models$Label_2),]
res_eval_i_select<-merge(res_eval_i_select, selected_models[c('Test','Label_2')], by.x='Model',by.y='Label_2')
res_eval_i_select$Phenotype<-pheno[i]
if(sum(names(res_eval_i_select) == 'CrossVal_OR') == 0){
res_eval_i_select$CrossVal_OR<-NA
res_eval_i_select$CrossVal_LowCI<-NA
res_eval_i_select$CrossVal_HighCI<-NA
res_eval_i_select$Cross_LiabR2<-NA
res_eval_i_select$Cross_AUC<-NA
res_eval_i_select$CrossVal_Ncas<-NA
res_eval_i_select$CrossVal_Ncon<-NA
res_eval_i_select$IndepVal_OR<-NA
res_eval_i_select$IndepVal_LowCI<-NA
res_eval_i_select$IndepVal_HighCI<-NA
res_eval_i_select$Indep_LiabR2<-NA
res_eval_i_select$Indep_AUC<-NA
res_eval_i_select$IndepVal_Ncas<-NA
res_eval_i_select$IndepVal_Ncon<-NA
}
res_eval_i_select<-res_eval_i_select[c('Phenotype','Test',"CrossVal_R","CrossVal_R_SE",'CrossVal_OR','CrossVal_LowCI','CrossVal_HighCI','Cross_LiabR2','Cross_AUC','CrossVal_pval','CrossVal_N','CrossVal_Ncas','CrossVal_Ncon',"IndepVal_R","IndepVal_R_SE",'IndepVal_OR','IndepVal_LowCI','IndepVal_HighCI','Indep_LiabR2','Indep_AUC','IndepVal_pval','IndepVal_N','IndepVal_Ncas','IndepVal_Ncon')]
res_eval_i_select$Test<-gsub('LDAK','MegaPRS', res_eval_i_select$Test)
res_eval<-rbind(res_eval,res_eval_i_select)
# Comp
selected_models$Label_3<-gsub('_group','',selected_models$Label)
res_comp_i_select<-res_comp_i[(res_comp_i$Model_1 %in% selected_models$Label_3) & (res_comp_i$Model_2 %in% selected_models$Label_3),]
res_comp_i_select<-merge(res_comp_i_select, selected_models[c('Test','Label_3')], by.x='Model_1',by.y='Label_3')
names(res_comp_i_select)[names(res_comp_i_select) == 'Test']<-'Model_1_Test'
res_comp_i_select<-merge(res_comp_i_select, selected_models[c('Test','Label_3')], by.x='Model_2',by.y='Label_3')
names(res_comp_i_select)[names(res_comp_i_select) == 'Test']<-'Model_2_Test'
res_comp_i_select$Label<-NULL
res_comp_i_select$Phenotype<-pheno[i]
res_comp_i_select<-res_comp_i_select[c('Phenotype','Model_1_Test','Model_2_Test','Model_1_Cross_R','Model_2_Cross_R','Cross_R_diff','Cross_R_diff_pval','Model_1_Indep_R','Model_2_Indep_R','Indep_R_diff','Indep_R_diff_pval')]
res_comp_i_select$Model_1_Test<-gsub('LDAK','MegaPRS', res_comp_i_select$Model_1_Test)
res_comp_i_select$Model_2_Test<-gsub('LDAK','MegaPRS', res_comp_i_select$Model_2_Test)
res_comp<-rbind(res_comp,res_comp_i_select)
###
# Create plot showing performance of each method
###
library(ggplot2)
library(cowplot)
res_eval_i_select$Method<-gsub('\\..*','',res_eval_i_select$Test)
res_eval_i_select$Model<-gsub('.*\\.','',res_eval_i_select$Test)
res_eval_i_select$Method<-factor(res_eval_i_select$Method, levels=c('pT+clump','lassosum','PRScs','SBLUP','SBayesR','LDpred1','LDpred2','DBSLMM','MegaPRS','All'))
res_eval_i_select$Model<-factor(res_eval_i_select$Model, levels=c('10FCVal','MultiPRS','PseudoVal','Inf'))
res_eval_plots_cross[[pheno[i]]] <- ggplot( res_eval_i_select, aes(x=Method, y=CrossVal_R, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=CrossVal_R-CrossVal_R_SE, ymax=CrossVal_R+CrossVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=pheno[i]) +
coord_cartesian(ylim=c(min(res_eval_i_select$CrossVal_R[res_eval_i_select$Phenotype==pheno[i]])-0.02, max(res_eval_i_select$CrossVal_R[res_eval_i_select$Phenotype==pheno[i]])+0.025), clip="on") +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
background_grid(major = 'y', minor = 'y') +
theme(legend.position="top", legend.title = element_blank(), legend.box="vertical", legend.margin=margin()) +
guides(fill=guide_legend(nrow=2))
res_eval_plots_indep[[pheno[i]]] <- ggplot( res_eval_i_select, aes(x=Method, y=IndepVal_R, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=IndepVal_R-IndepVal_R_SE, ymax=IndepVal_R+IndepVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=pheno[i]) +
coord_cartesian(ylim=c(min(res_eval_i_select$IndepVal_R[res_eval_i_select$Phenotype==pheno[i]])-0.02, max(res_eval_i_select$IndepVal_R[res_eval_i_select$Phenotype==pheno[i]])+0.025), clip="on") +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
background_grid(major = 'y', minor = 'y') +
theme(legend.position="top", legend.title = element_blank(), legend.box="vertical", legend.margin=margin()) +
guides(fill=guide_legend(nrow=2))
###
# Create plot showing performance of each method compared to pT+clump
###
res_eval_i_select$CrossVal_R_diff<-res_eval_i_select$CrossVal_R-res_eval_i_select$CrossVal_R[res_eval_i_select$Test == "pT+clump.10FCVal"]
res_eval_diff_plots_cross[[pheno[i]]] <- ggplot( res_eval_i_select, aes(x=Method, y=CrossVal_R_diff, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=CrossVal_R_diff-CrossVal_R_SE, ymax=CrossVal_R_diff+CrossVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=pheno[i]) +
coord_cartesian(ylim=c(min(res_eval_i_select$CrossVal_R_diff[res_eval_i_select$Phenotype==pheno[i]])-0.02, max(res_eval_i_select$CrossVal_R_diff[res_eval_i_select$Phenotype==pheno[i]])+0.025), clip="on") +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
background_grid(major = 'y', minor = 'y') +
theme(legend.position="top", legend.title = element_blank(), legend.box="vertical", legend.margin=margin()) +
guides(fill=guide_legend(nrow=2))
res_eval_i_select$IndepVal_R_diff<-res_eval_i_select$IndepVal_R-res_eval_i_select$IndepVal_R[res_eval_i_select$Test == "pT+clump.10FCVal"]
res_eval_diff_plots_indep[[pheno[i]]] <- ggplot( res_eval_i_select, aes(x=Method, y=IndepVal_R_diff, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=IndepVal_R_diff-IndepVal_R_SE, ymax=IndepVal_R_diff+IndepVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=pheno[i]) +
coord_cartesian(ylim=c(min(res_eval_i_select$IndepVal_R_diff[res_eval_i_select$Phenotype==pheno[i]])-0.02, max(res_eval_i_select$IndepVal_R_diff[res_eval_i_select$Phenotype==pheno[i]])+0.025), clip="on") +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
background_grid(major = 'y', minor = 'y') +
theme(legend.position="top", legend.title = element_blank(), legend.box="vertical", legend.margin=margin()) +
guides(fill=guide_legend(nrow=2))
###
# Create plot showing matrix of differences with significance
###
library(reshape2)
res_comp_i_select$Cross_R_diff[res_comp_i_select$Model_1_Test == res_comp_i_select$Model_2_Test]<-NA
res_comp_i_select$Indep_R_diff[res_comp_i_select$Model_1_Test == res_comp_i_select$Model_2_Test]<-NA
res_comp_i_select$Cross_R_diff_catagory<-'NA'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff < -0.002]<-'-0.025 - -0.002'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff < -0.025]<-'-0.08 - -0.025'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff < -0.08]<-'< -0.08'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff > -0.002 & res_comp_i_select$Cross_R_diff < 0.002]<-'-0.002 - 0.002'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff > 0.002]<-'0.002 - 0.025'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff > 0.025]<-'0.025 - 0.08'
res_comp_i_select$Cross_R_diff_catagory[res_comp_i_select$Cross_R_diff > 0.08]<-'> 0.08'
res_comp_i_select$Cross_R_diff_catagory<-factor(res_comp_i_select$Cross_R_diff_catagory, level=rev(c('< -0.08','-0.08 - -0.025','-0.025 - -0.002','-0.002 - 0.002','0.002 - 0.025','0.025 - 0.08','> 0.08')))
res_comp_i_select$Indep_R_diff_catagory<-'NA'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff < -0.002]<-'-0.025 - -0.002'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff < -0.025]<-'-0.08 - -0.025'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff < -0.08]<-'< -0.08'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff > -0.002 & res_comp_i_select$Indep_R_diff < 0.002]<-'-0.002 - 0.002'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff > 0.002]<-'0.002 - 0.025'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff > 0.025]<-'0.025 - 0.08'
res_comp_i_select$Indep_R_diff_catagory[res_comp_i_select$Indep_R_diff > 0.08]<-'> 0.08'
res_comp_i_select$Indep_R_diff_catagory<-factor(res_comp_i_select$Indep_R_diff_catagory, level=rev(c('< -0.08','-0.08 - -0.025','-0.025 - -0.002','-0.002 - 0.002','0.002 - 0.025','0.025 - 0.08','> 0.08')))
res_comp_i_select$cross_star<-' '
res_comp_i_select$cross_star[res_comp_i_select$Cross_R_diff_pval < 0.05]<-'*'
res_comp_i_select$cross_star[res_comp_i_select$Cross_R_diff_pval < 1e-3]<-'**'
res_comp_i_select$cross_star[res_comp_i_select$Cross_R_diff_pval < 1e-6]<-'***'
res_comp_i_select$indep_star<-' '
res_comp_i_select$indep_star[res_comp_i_select$Indep_R_diff_pval < 0.05]<-'*'
res_comp_i_select$indep_star[res_comp_i_select$Indep_R_diff_pval < 1e-3]<-'**'
res_comp_i_select$indep_star[res_comp_i_select$Indep_R_diff_pval < 1e-6]<-'***'
library(RColorBrewer)
res_eval_diff_matrix_cross[[pheno[i]]]<-ggplot(data = res_comp_i_select, aes(Model_2_Test, Model_1_Test, fill=Cross_R_diff_catagory))+
geom_tile(color = "white")+
labs(y='Test', x='Comparison', title=pheno[i], fill='R difference') +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, vjust = 1,
size = 8, hjust = 1))+
coord_fixed() +
geom_text(data=res_comp_i_select, aes(Model_2_Test, Model_1_Test, label = cross_star), color = "black", size = 4, angle = 0, vjust=0.8) +
scale_fill_brewer(breaks = levels(res_comp_i_select$Indep_R_diff_catagory), palette = "RdBu", drop=F, na.value='grey')
res_eval_diff_matrix_indep[[pheno[i]]]<-ggplot(data = res_comp_i_select, aes(Model_2_Test, Model_1_Test, fill=Indep_R_diff_catagory))+
geom_tile(color = "white")+
labs(y='Test', x='Comparison', title=pheno[i], fill='R difference') +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, vjust = 1,
size = 8, hjust = 1))+
coord_fixed() +
geom_text(data=res_comp_i_select, aes(Model_2_Test, Model_1_Test, label = indep_star), color = "black", size = 4, angle = 0, vjust=0.8) +
scale_fill_brewer(breaks = levels(res_comp_i_select$Indep_R_diff_catagory), palette = "RdBu", drop=F, na.value='grey')
}
write.csv(res_eval, paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_withLDAK.csv'), row.names=F, quote=F)
write.csv(res_comp, paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_diff_withLDAK.csv'), row.names=F, quote=F)
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_CrossVal_',Files[file],'_withLDAK.png'), units='px', res=300, width=2450, height=1000*ceiling(length(res_eval_plots_cross)/2))
print(plot_grid(plotlist=res_eval_plots_cross, ncol = 2))
dev.off()
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_IndepVal_',Files[file],'_withLDAK.png'), units='px', res=300, width=2450, height=1000*ceiling(length(res_eval_plots_cross)/2))
print(plot_grid(plotlist=res_eval_plots_indep, ncol = 2))
dev.off()
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_pTDiff_CrossVal_',Files[file],'_withLDAK.png'), units='px', res=300, width=2450, height=1000*ceiling(length(res_eval_plots_cross)/2))
print(plot_grid(plotlist=res_eval_diff_plots_cross, ncol = 2))
dev.off()
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_pTDiff_IndepVal_',Files[file],'_withLDAK.png'), units='px', res=300, width=2450, height=1000*ceiling(length(res_eval_plots_cross)/2))
print(plot_grid(plotlist=res_eval_diff_plots_indep, ncol = 2))
dev.off()
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_diff_CrossVal_withLDAK.png'), units='px', res=300, width=2450, height=1750*length(res_eval_diff_matrix_cross))
print(plot_grid(plotlist=res_eval_diff_matrix_cross, ncol = 1))
dev.off()
png(paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_diff_IndepVal_withLDAK.png'), units='px', res=300, width=2450, height=1750*length(res_eval_diff_matrix_cross))
print(plot_grid(plotlist=res_eval_diff_matrix_indep, ncol = 1))
dev.off()
###################
# Average results across phenotypes, creates tables and figures
###################
res_eval$Method<-gsub('\\..*','',res_eval$Test)
res_eval$Model<-gsub('.*\\.','',res_eval$Test)
res_eval$Phenotype<-factor(res_eval$Phenotype, level=unique(res_eval$Phenotype))
res_eval$Method<-factor(res_eval$Method, level=c("pT+clump",'lassosum','PRScs','SBLUP','SBayesR','LDpred1','LDpred2','DBSLMM','MegaPRS','All'))
res_eval$Model<-factor(res_eval$Model, level=c('10FCVal','MultiPRS','PseudoVal','Inf'))
res_eval<-res_eval[order(res_eval$Phenotype, res_eval$Method, res_eval$Model),]
library(data.table)
source('/users/k1806347/brc_scratch/Software/MyGit/GenoPred/config_used/Target_scoring.config')
if(Samples[file] == 'UKBB'){
for(pheno_i in 1:length(pheno)){
if(pheno_i==1){
pheno_i_dat<-fread(paste0(UKBB_output,'/Phenotype/PRS_comp_subset/UKBB.',pheno[pheno_i],'.txt'))
names(pheno_i_dat)[3]<-pheno[pheno_i]
pheno_dat<-pheno_i_dat
} else {
pheno_i_dat<-fread(paste0(UKBB_output,'/Phenotype/PRS_comp_subset/UKBB.',pheno[pheno_i],'.txt'))
names(pheno_i_dat)[3]<-pheno[pheno_i]
pheno_dat<-merge(pheno_dat, pheno_i_dat, by=c('FID','IID'), all=T)
}
}
} else {
for(pheno_i in 1:length(pheno)){
if(pheno_i==1){
pheno_i_dat<-fread(paste0('/users/k1806347/brc_scratch/Data/TEDS/Phenotypic/Derived_outcomes/TEDS_',pheno[pheno_i],'.txt'))
names(pheno_i_dat)[3]<-pheno[pheno_i]
pheno_dat<-pheno_i_dat
} else {
pheno_i_dat<-fread(paste0('/users/k1806347/brc_scratch/Data/TEDS/Phenotypic/Derived_outcomes/TEDS_',pheno[pheno_i],'.txt'))
names(pheno_i_dat)[3]<-pheno[pheno_i]
pheno_dat<-merge(pheno_dat, pheno_i_dat, by=c('FID','IID'), all=T)
}
}
}
# Calculate corelation between all phenotypes
cors<-abs(cor(as.matrix(pheno_dat[,-1:-2]), use='p'))
cors<-cors[unique(res_eval$Phenotype,),unique(res_eval$Phenotype,)]
cors[is.na(cors)]<-0
# Run aggregate function
library(MAd)
meta_res_eval<-NULL
for(i in unique(res_eval$Test)){
res_eval_i<-res_eval[res_eval$Test == i,]
res_eval_i$Sample<-'Target'
cors_i<-cors[(dimnames(cors)[[1]] %in% res_eval_i$Phenotype),(dimnames(cors)[[1]] %in% res_eval_i$Phenotype)]
CrossVal_agg_res_eval_i<-agg(id=Sample, es=CrossVal_R, var=CrossVal_R_SE^2, cor=cors_i, method="BHHR", mod=NULL, data=res_eval_i)
IndepVal_agg_res_eval_i<-agg(id=Sample, es=IndepVal_R, var=IndepVal_R_SE^2, cor=cors_i, method="BHHR", mod=NULL, data=res_eval_i)
meta_res_eval<-rbind(meta_res_eval, data.frame( Test=i,
CrossVal_R=CrossVal_agg_res_eval_i$es[1],
CrossVal_R_SE=sqrt(CrossVal_agg_res_eval_i$var[1]),
IndepVal_R=IndepVal_agg_res_eval_i$es[1],
IndepVal_R_SE=sqrt(IndepVal_agg_res_eval_i$var[1])))
}
# Calculate difference between methods and p-value using aggregate
# Truncate difference p-values to stop 0 values
res_comp$Cross_R_diff_pval[res_comp$Cross_R_diff_pval == 0]<-1e-320
res_comp$Indep_R_diff_pval[res_comp$Indep_R_diff_pval == 0]<-1e-320
meta_res_diff<-NULL
for(i in unique(res_eval$Test)){
for(k in unique(res_eval$Test)){
meta_res_eval_i<-meta_res_eval[meta_res_eval$Test == i,]
meta_res_eval_k<-meta_res_eval[meta_res_eval$Test == k,]
res_comp_i_k<-res_comp[res_comp$Model_1_Test == i & res_comp$Model_2_Test == k,]
# Calculate diff SE based on p-value
for(j in 1:dim(res_comp_i_k)[1]){
if(res_comp_i_k$Cross_R_diff_pval[j] == 1){
res_comp_i_k$Cross_R_diff_pval[j]<-1-0.001
}
if(res_comp_i_k$Indep_R_diff_pval[j] == 1){
res_comp_i_k$Indep_R_diff_pval[j]<-1-0.001
}
}
res_comp_i_k$Cross_R_diff_z<-qnorm(res_comp_i_k$Cross_R_diff_pval/2)
res_comp_i_k$Cross_R_diff_SE<-res_comp_i_k$Cross_R_diff/res_comp_i_k$Cross_R_diff_z
res_comp_i_k$Indep_R_diff_z<-qnorm(res_comp_i_k$Indep_R_diff_pval/2)
res_comp_i_k$Indep_R_diff_SE<-res_comp_i_k$Indep_R_diff/res_comp_i_k$Indep_R_diff_z
res_comp_i_k$Sample<-'A'
cors_i<-cors[(dimnames(cors)[[1]] %in% res_comp_i_k$Phenotype),(dimnames(cors)[[1]] %in% res_comp_i_k$Phenotype)]
CrossVal_agg_res_comp_i_k<-agg(id=Sample, es=Cross_R_diff, var=Cross_R_diff_SE^2, cor=cors_i, method="BHHR", mod=NULL, data=res_comp_i_k)
IndepVal_agg_res_eval_i<-agg(id=Sample, es=Indep_R_diff, var=Indep_R_diff_SE^2, cor=cors_i, method="BHHR", mod=NULL, data=res_comp_i_k)
meta_res_diff<-rbind(meta_res_diff, data.frame(Test_ref=i,
Test_targ=k,
CrossVal_R_diff=CrossVal_agg_res_comp_i_k$es[1],
CrossVal_R_diff_SE=sqrt(CrossVal_agg_res_comp_i_k$var[1]),
IndepVal_R_diff=IndepVal_agg_res_eval_i$es[1],
IndepVal_R_diff_SE=sqrt(IndepVal_agg_res_eval_i$var[1])))
}
}
meta_res_diff$CrossVal_R_diff_Z<-meta_res_diff$CrossVal_R_diff/meta_res_diff$CrossVal_R_diff_SE
meta_res_diff$CrossVal_R_diff_P<-2*pnorm(-abs(meta_res_diff$CrossVal_R_diff_Z))
meta_res_diff$IndepVal_R_diff_Z<-meta_res_diff$IndepVal_R_diff/meta_res_diff$IndepVal_R_diff_SE
meta_res_diff$IndepVal_R_diff_P<-2*pnorm(-abs(meta_res_diff$IndepVal_R_diff_Z))
meta_res_diff<-meta_res_diff[,c("Test_ref","Test_targ","CrossVal_R_diff","CrossVal_R_diff_Z","CrossVal_R_diff_P","IndepVal_R_diff","IndepVal_R_diff_Z","IndepVal_R_diff_P")]
meta_res_diff$CrossVal_R_diff_Z[meta_res_diff$CrossVal_R_diff == 0]<-0
meta_res_diff$CrossVal_R_diff_P[meta_res_diff$CrossVal_R_diff == 0]<-1
meta_res_diff$IndepVal_R_diff_Z[meta_res_diff$IndepVal_R_diff == 0]<-0
meta_res_diff$IndepVal_R_diff_P[meta_res_diff$IndepVal_R_diff == 0]<-1
# Calculate percentage improvement
meta_res_diff$CrossVal_R_diff_perc<-NA
for(i in unique(meta_res_diff$Test_ref)){
meta_res_diff$CrossVal_R_diff_perc[meta_res_diff$Test_ref == i]<-meta_res_diff$CrossVal_R_diff[meta_res_diff$Test_ref == i]/meta_res_eval$CrossVal_R[meta_res_eval$Test == i]*100
}
meta_res_diff$IndepVal_R_diff_perc<-NA
for(i in unique(meta_res_diff$Test_ref)){
meta_res_diff$IndepVal_R_diff_perc[meta_res_diff$Test_ref == i]<-meta_res_diff$IndepVal_R_diff[meta_res_diff$Test_ref == i]/meta_res_eval$IndepVal_R[meta_res_eval$Test == i]*100
}
write.csv(meta_res_eval, paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_meta_withLDAK.csv'), row.names=F, quote=F)
meta_res_diff<-meta_res_diff[,c("Test_ref","Test_targ","CrossVal_R_diff",'CrossVal_R_diff_perc',"CrossVal_R_diff_Z","CrossVal_R_diff_P","IndepVal_R_diff",'IndepVal_R_diff_perc',"IndepVal_R_diff_Z","IndepVal_R_diff_P")]
write.csv(meta_res_diff, paste0('/scratch/users/k1806347/Analyses/PRS_comparison/',Samples[file],'_outcomes_for_prediction/PRS_method_comp_',Files[file],'_diff_meta_withLDAK.csv'), row.names=F, quote=F)
###
# Create plot showing performance of each method
###
# To avoid unequal groups, insert NA for missing Model/Method pairs
meta_res_eval$Method<-gsub('\\..*','',meta_res_eval$Test)
meta_res_eval$Model<-gsub('.*\\.','',meta_res_eval$Test)
meta_res_eval$Method<-factor(meta_res_eval$Method, levels=c("pT+clump",'lassosum','PRScs','SBLUP','SBayesR','LDpred1','LDpred2','DBSLMM','MegaPRS','All'))
meta_res_eval$Model<-factor(meta_res_eval$Model, levels=c('10FCVal','MultiPRS','PseudoVal','Inf'))
for(i in unique(meta_res_eval$Method)){
for(k in unique(meta_res_eval$Model)){
if(dim(meta_res_eval[meta_res_eval$Method == i & meta_res_eval$Model == k,])[1] > 0){
next
} else {
dud<-data.frame(Test=NA,
CrossVal_R=NA,
CrossVal_R_SE=NA,
IndepVal_R=NA,
IndepVal_R_SE=NA,
Method=i,
Model=k)
meta_res_eval<-rbind(meta_res_eval,dud)
}
}
}
res_eval<-res_eval[,c('Phenotype','Test','CrossVal_R','IndepVal_R','Method','Model')]
for(i in unique(res_eval$Method)){
for(k in unique(res_eval$Model)){
if(dim(res_eval[res_eval$Method == i & res_eval$Model == k,])[1] > 0){
next
} else {
dud<-data.frame(Phenotype=NA,
Test=paste0(i,'.',k),
CrossVal_R=NA,
IndepVal_R=NA,
Method=i,
Model=k)
res_eval<-rbind(res_eval,dud)
}
}
}
library(ggplot2)
library(cowplot)
meta_res_eval_plots_cross[[Files[file]]] <- ggplot( meta_res_eval, aes(x=Method, y=CrossVal_R, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=CrossVal_R-CrossVal_R_SE, ymax=CrossVal_R+CrossVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=Files_descrip[file]) +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
geom_vline(xintercept = 1.5, linetype="dotted") +
geom_vline(xintercept = 2.5, linetype="dotted") +
geom_vline(xintercept = 3.5, linetype="dotted") +
geom_vline(xintercept = 4.5, linetype="dotted") +
geom_vline(xintercept = 5.5, linetype="dotted") +
geom_vline(xintercept = 6.5, linetype="dotted") +
geom_vline(xintercept = 7.5, linetype="dotted") +
geom_vline(xintercept = 8.5, linetype="dotted") +
geom_vline(xintercept = 9.5, linetype="dotted") +
background_grid(major = 'y', minor = 'y')
meta_res_eval_plots_indep[[Files[file]]] <- ggplot( meta_res_eval, aes(x=Method, y=IndepVal_R, fill=Model)) +
geom_bar(stat="identity", position=position_dodge(preserve = "single"), width = 0.7) +
geom_errorbar(aes(ymin=IndepVal_R-IndepVal_R_SE, ymax=IndepVal_R+IndepVal_R_SE), width=.2, position=position_dodge(width = 0.7, preserve = "single")) +
labs(y="Correlation (SE)", x='', title=Files_descrip[file]) +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
geom_vline(xintercept = 1.5, linetype="dotted") +
geom_vline(xintercept = 2.5, linetype="dotted") +
geom_vline(xintercept = 3.5, linetype="dotted") +
geom_vline(xintercept = 4.5, linetype="dotted") +
geom_vline(xintercept = 5.5, linetype="dotted") +
geom_vline(xintercept = 6.5, linetype="dotted") +
geom_vline(xintercept = 7.5, linetype="dotted") +
geom_vline(xintercept = 8.5, linetype="dotted") +
geom_vline(xintercept = 9.5, linetype="dotted") +
background_grid(major = 'y', minor = 'y')
if(Samples[file] == 'UKBB'){
meta_res_eval_plots_cross[[Files[file]]]<-meta_res_eval_plots_cross[[Files[file]]] + coord_cartesian(ylim=c(0,0.25), clip="on")
meta_res_eval_plots_indep[[Files[file]]]<-meta_res_eval_plots_indep[[Files[file]]] + coord_cartesian(ylim=c(0,0.25), clip="on")
} else {
meta_res_eval_plots_cross[[Files[file]]]<-meta_res_eval_plots_cross[[Files[file]]] + coord_cartesian(ylim=c(0,0.375), clip="on")
meta_res_eval_plots_indep[[Files[file]]]<-meta_res_eval_plots_indep[[Files[file]]] + coord_cartesian(ylim=c(0,0.375), clip="on")
}
###
# Create plot showing performance of each method compared to pT+clump
###
# Calculate differences at the average and phenotype specific level
meta_res_eval$CrossVal_R_diff<-meta_res_eval$CrossVal_R-meta_res_eval$CrossVal_R[which(meta_res_eval$Test == "pT+clump.10FCVal")]
meta_res_eval$IndepVal_R_diff<-meta_res_eval$IndepVal_R-meta_res_eval$IndepVal_R[which(meta_res_eval$Test == "pT+clump.10FCVal")]
res_eval$CrossVal_R_diff<-NA
res_eval$IndepVal_R_diff<-NA
for(i in pheno){
res_eval$CrossVal_R_diff[which(res_eval$Phenotype == i)]<-res_eval$CrossVal_R[which(res_eval$Phenotype == i)]-res_eval$CrossVal_R[which(res_eval$Test == "pT+clump.10FCVal" & res_eval$Phenotype == i)]
res_eval$IndepVal_R_diff[which(res_eval$Phenotype == i)]<-res_eval$IndepVal_R[which(res_eval$Phenotype == i)]-res_eval$IndepVal_R[which(res_eval$Test == "pT+clump.10FCVal" & res_eval$Phenotype == i)]
}
meta_res_eval_diff_plots_cross[[Files[file]]] <- ggplot( meta_res_eval, aes(x=Method, y=CrossVal_R_diff, fill=Model)) +
geom_point(data=res_eval, mapping=aes(x=Method, y=CrossVal_R_diff, colour=Model), position=position_jitterdodge(jitter.width = 0.4, dodge.width = 0.7), alpha=0.3) +
geom_errorbar(aes(ymin=CrossVal_R_diff-CrossVal_R_SE, ymax=CrossVal_R_diff+CrossVal_R_SE), width=0.9, position=position_dodge(width = 0.7)) +
geom_point(stat="identity", position=position_dodge(0.7), size=2, shape=23, colour='black') +
labs(y="Difference in\nCorrelations (SE)", x='', title=Files_descrip[file]) +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
geom_vline(xintercept = 1.5, linetype="dotted") +
geom_vline(xintercept = 2.5, linetype="dotted") +
geom_vline(xintercept = 3.5, linetype="dotted") +
geom_vline(xintercept = 4.5, linetype="dotted") +
geom_vline(xintercept = 5.5, linetype="dotted") +
geom_vline(xintercept = 6.5, linetype="dotted") +
geom_vline(xintercept = 7.5, linetype="dotted") +
geom_vline(xintercept = 8.5, linetype="dotted") +
geom_vline(xintercept = 9.5, linetype="dotted") +
background_grid(major = 'y', minor = 'y') +
ylim(c(-0.08,0.12))
meta_res_eval_diff_plots_indep[[Files[file]]] <- ggplot(meta_res_eval, aes(x=Method, y=IndepVal_R_diff, fill=Model)) +
geom_point(data=res_eval, mapping=aes(x=Method, y=IndepVal_R_diff, colour=Model), position=position_jitterdodge(jitter.width = 0.4, dodge.width = 1), alpha=0.3) +
geom_errorbar(aes(ymin=IndepVal_R_diff-IndepVal_R_SE, ymax=IndepVal_R_diff+IndepVal_R_SE), width=0.9, position=position_dodge(width = 1)) +
geom_point(stat="identity", position=position_dodge(1), size=2, shape=23, colour='black') +
labs(y="Difference in\nCorrelations (SE)", x='', title=Files_descrip[file]) +
theme_half_open() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
geom_vline(xintercept = 1.5, linetype="dotted") +
geom_vline(xintercept = 2.5, linetype="dotted") +
geom_vline(xintercept = 3.5, linetype="dotted") +
geom_vline(xintercept = 4.5, linetype="dotted") +
geom_vline(xintercept = 5.5, linetype="dotted") +
geom_vline(xintercept = 6.5, linetype="dotted") +
geom_vline(xintercept = 7.5, linetype="dotted") +
geom_vline(xintercept = 8.5, linetype="dotted") +
geom_vline(xintercept = 9.5, linetype="dotted") +
background_grid(major = 'y', minor = 'y') +
ylim(c(-0.08,0.12))
###
# Create plot showing matrix of differences with significance
###
library(reshape2)
meta_res_diff$CrossVal_R_diff[meta_res_diff$Test_ref == meta_res_diff$Test_targ]<-NA
meta_res_diff$IndepVal_R_diff[meta_res_diff$Test_ref == meta_res_diff$Test_targ]<-NA
meta_res_diff$Cross_R_diff_catagory<-'NA'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff < -0.002]<-'-0.025 - -0.002'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff < -0.025]<-'-0.08 - -0.025'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff < -0.08]<-'< -0.08'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff > -0.002 & meta_res_diff$CrossVal_R_diff < 0.002]<-'-0.002 - 0.002'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff > 0.002]<-'0.002 - 0.025'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff > 0.025]<-'0.025 - 0.08'
meta_res_diff$Cross_R_diff_catagory[meta_res_diff$CrossVal_R_diff > 0.08]<-'> 0.08'
meta_res_diff$Cross_R_diff_catagory<-factor(meta_res_diff$Cross_R_diff_catagory, level=rev(c('< -0.08','-0.08 - -0.025','-0.025 - -0.002','-0.002 - 0.002','0.002 - 0.025','0.025 - 0.08','> 0.08')))
meta_res_diff$Indep_R_diff_catagory<-'NA'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff < -0.002]<-'-0.025 - -0.002'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff < -0.025]<-'-0.08 - -0.025'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff < -0.08]<-'< -0.08'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff > -0.002 & meta_res_diff$IndepVal_R_diff < 0.002]<-'-0.002 - 0.002'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff > 0.002]<-'0.002 - 0.025'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff > 0.025]<-'0.025 - 0.08'
meta_res_diff$Indep_R_diff_catagory[meta_res_diff$IndepVal_R_diff > 0.08]<-'> 0.08'
meta_res_diff$Indep_R_diff_catagory<-factor(meta_res_diff$Indep_R_diff_catagory, level=rev(c('< -0.08','-0.08 - -0.025','-0.025 - -0.002','-0.002 - 0.002','0.002 - 0.025','0.025 - 0.08','> 0.08')))
meta_res_diff$cross_star<-' '
meta_res_diff$cross_star[meta_res_diff$CrossVal_R_diff_P < 0.05]<-'*'
meta_res_diff$cross_star[meta_res_diff$CrossVal_R_diff_P < 1e-3]<-'**'
meta_res_diff$cross_star[meta_res_diff$CrossVal_R_diff_P < 1e-6]<-'***'
meta_res_diff$indep_star<-' '
meta_res_diff$indep_star[meta_res_diff$IndepVal_R_diff_P < 0.05]<-'*'
meta_res_diff$indep_star[meta_res_diff$IndepVal_R_diff_P < 1e-3]<-'**'
meta_res_diff$indep_star[meta_res_diff$IndepVal_R_diff_P < 1e-6]<-'***'
library(RColorBrewer)
meta_res_eval_diff_matrix_cross[[Files[file]]]<-ggplot(data = meta_res_diff, aes(Test_targ, Test_ref, fill=Cross_R_diff_catagory))+
geom_tile(color = "white")+
labs(y='Test', x='Comparison', title=Files_descrip[file], fill='R difference') +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, vjust = 1,
size = 8, hjust = 1)) +
coord_fixed() +
geom_text(data=meta_res_diff, aes(Test_ref, Test_targ, label = cross_star), color = "black", size = 4, angle = 0, vjust=0.8) +
scale_fill_brewer(breaks = levels(meta_res_diff$Cross_R_diff_catagory), palette = "RdBu", drop=F, na.value='grey')
meta_res_eval_diff_matrix_indep[[Files[file]]]<-ggplot(data = meta_res_diff, aes(Test_targ, Test_ref, fill=Indep_R_diff_catagory))+
geom_tile(color = "white")+
labs(y='Test', x='Comparison', title=Files_descrip[file], fill='R difference') +
theme_minimal()+
theme(axis.text.x = element_text(angle = 45, vjust = 1,
size = 8, hjust = 1))+
coord_fixed() +
geom_text(data=meta_res_diff, aes(Test_targ, Test_ref, label = indep_star), color = "black", size = 4, angle = 0, vjust=0.8) +
scale_fill_brewer(breaks = levels(meta_res_diff$Indep_R_diff_catagory), palette = "RdBu", drop=F, na.value='grey')
}
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_CrossVal_meta_withLDAK.png', units='px', res=300, width=3400, height=2000)
plot_grid(plotlist=meta_res_eval_plots_cross, ncol = 2, nrow = 2)
dev.off()
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_IndepVal_meta_withLDAK.png', units='px', res=300, width=3400, height=2000)
plot_grid(plotlist=meta_res_eval_plots_indep, ncol = 2, nrow = 2)
dev.off()
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_pTDiff_CrossVal_meta_withLDAK.png', units='px', res=300, width=3400, height=2000)
plot_grid(plotlist=meta_res_eval_diff_plots_cross, ncol = 2, nrow = 2)
dev.off()
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_pTDiff_IndepVal_meta_withLDAK.png', units='px', res=300, width=3400, height=2000)
plot_grid(plotlist=meta_res_eval_diff_plots_indep, ncol = 2, nrow = 2)
dev.off()
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_diff_CrossVal_meta_withLDAK.png', units='px', res=300, width=6000, height=4000)
plot_grid(plotlist=meta_res_eval_diff_matrix_cross, ncol = 2, nrow = 2)
dev.off()
png('/scratch/users/k1806347/Analyses/PRS_comparison/PRS_method_comp_diff_IndepVal_meta_withLDAK.png', units='px', res=300, width=6000, height=4000)
plot_grid(plotlist=meta_res_eval_diff_matrix_indep, ncol = 2, nrow = 2)
dev.off()
# Plot LDAK pseudoval results
res_LDAK_plot<-res_LDAK[,c('sample','gwas','obs_R','pseudo_R')]
res_LDAK_plot<-melt(res_LDAK_plot)
library(ggplot2)
png('/scratch/users/k1806347/Analyses/PRS_comparison/LDAK_pseudo_comp.png', units='px', res=300, width=3000, height=2000)
ggplot(res_LDAK_plot, aes(x=paste0(sample,'_',gwas), y=value, fill=variable)) +
geom_bar(position="dodge",stat = "identity") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1))
dev.off()
Show results
Show UKBB results table
Phenotype | Method | Model | IndepVal_R | IndepVal_R_SE | IndepVal_OR | IndepVal_LowCI | IndepVal_HighCI | Indep_LiabR2 | Indep_AUC | IndepVal_pval |
---|---|---|---|---|---|---|---|---|---|---|
Depression | All | MultiPRS | 0.149 | 0.010 | 1.357 | 1.303 | 1.413 | 0.027 | 0.584 | 6.36e-51 |
Depression | DBSLMM | PseudoVal | 0.140 | 0.010 | 1.331 | 1.278 | 1.385 | 0.024 | 0.578 | 4.73e-45 |
Depression | lassosum | MultiPRS | 0.144 | 0.010 | 1.341 | 1.288 | 1.396 | 0.025 | 0.580 | 2.86e-47 |
Depression | lassosum | PseudoVal | 0.093 | 0.010 | 1.206 | 1.159 | 1.255 | 0.010 | 0.552 | 1.47e-20 |
Depression | lassosum | 10FCVal | 0.144 | 0.010 | 1.342 | 1.288 | 1.397 | 0.025 | 0.580 | 1.84e-47 |
Depression | MegaPRS | MultiPRS | 0.149 | 0.010 | 1.355 | 1.301 | 1.411 | 0.027 | 0.583 | 1.81e-50 |
Depression | MegaPRS | PseudoVal | 0.146 | 0.010 | 1.346 | 1.293 | 1.401 | 0.025 | 0.582 | 1.90e-48 |
Depression | MegaPRS | 10FCVal | 0.148 | 0.010 | 1.352 | 1.298 | 1.407 | 0.026 | 0.582 | 9.27e-50 |
Depression | LDpred1 | MultiPRS | 0.139 | 0.010 | 1.328 | 1.276 | 1.383 | 0.023 | 0.578 | 1.63e-44 |
Depression | LDpred1 | Inf | 0.138 | 0.010 | 1.325 | 1.273 | 1.380 | 0.023 | 0.577 | 7.40e-44 |
Depression | LDpred1 | 10FCVal | 0.140 | 0.010 | 1.331 | 1.279 | 1.386 | 0.024 | 0.579 | 3.41e-45 |
Depression | LDpred2 | MultiPRS | 0.145 | 0.010 | 1.345 | 1.292 | 1.400 | 0.025 | 0.582 | 2.94e-48 |
Depression | LDpred2 | 10FCVal | 0.144 | 0.010 | 1.341 | 1.288 | 1.397 | 0.025 | 0.581 | 2.01e-47 |
Depression | LDpred2 | PseudoVal | 0.139 | 0.010 | 1.326 | 1.274 | 1.381 | 0.023 | 0.578 | 4.73e-44 |
Depression | LDpred2 | Inf | 0.139 | 0.010 | 1.326 | 1.274 | 1.381 | 0.023 | 0.577 | 4.98e-44 |
Depression | PRScs | MultiPRS | 0.141 | 0.010 | 1.334 | 1.282 | 1.389 | 0.024 | 0.579 | 8.04e-46 |
Depression | PRScs | 10FCVal | 0.139 | 0.010 | 1.329 | 1.276 | 1.383 | 0.023 | 0.578 | 1.27e-44 |
Depression | PRScs | PseudoVal | 0.139 | 0.010 | 1.326 | 1.274 | 1.381 | 0.023 | 0.579 | 4.89e-44 |
Depression | pT+clump | MultiPRS | 0.127 | 0.010 | 1.295 | 1.244 | 1.348 | 0.019 | 0.570 | 2.00e-37 |
Depression | pT+clump | 10FCVal | 0.118 | 0.010 | 1.269 | 1.220 | 1.321 | 0.017 | 0.564 | 3.61e-32 |
Depression | SBayesR | PseudoVal | 0.108 | 0.010 | 1.245 | 1.196 | 1.296 | 0.014 | 0.562 | 1.88e-27 |
Depression | SBLUP | Inf | 0.139 | 0.010 | 1.329 | 1.276 | 1.383 | 0.023 | 0.578 | 1.26e-44 |
Intelligence | All | MultiPRS | 0.098 | 0.010 | NA | NA | NA | NA | NA | 1.08e-22 |
Intelligence | DBSLMM | PseudoVal | 0.079 | 0.010 | NA | NA | NA | NA | NA | 1.71e-15 |
Intelligence | lassosum | MultiPRS | 0.097 | 0.010 | NA | NA | NA | NA | NA | 2.78e-22 |
Intelligence | lassosum | PseudoVal | 0.059 | 0.010 | NA | NA | NA | NA | NA | 4.55e-09 |
Intelligence | lassosum | 10FCVal | 0.093 | 0.010 | NA | NA | NA | NA | NA | 9.43e-21 |
Intelligence | MegaPRS | MultiPRS | 0.096 | 0.010 | NA | NA | NA | NA | NA | 9.92e-22 |
Intelligence | MegaPRS | 10FCVal | 0.095 | 0.010 | NA | NA | NA | NA | NA | 1.46e-21 |
Intelligence | MegaPRS | PseudoVal | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.10e-20 |
Intelligence | LDpred1 | MultiPRS | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.05e-20 |
Intelligence | LDpred1 | Inf | 0.092 | 0.010 | NA | NA | NA | NA | NA | 4.68e-20 |
Intelligence | LDpred1 | 10FCVal | 0.092 | 0.010 | NA | NA | NA | NA | NA | 2.58e-20 |
Intelligence | LDpred2 | MultiPRS | 0.094 | 0.010 | NA | NA | NA | NA | NA | 4.14e-21 |
Intelligence | LDpred2 | 10FCVal | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.08e-20 |
Intelligence | LDpred2 | PseudoVal | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.74e-20 |
Intelligence | LDpred2 | Inf | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.34e-20 |
Intelligence | PRScs | MultiPRS | 0.093 | 0.010 | NA | NA | NA | NA | NA | 1.15e-20 |
Intelligence | PRScs | 10FCVal | 0.089 | 0.010 | NA | NA | NA | NA | NA | 3.13e-19 |
Intelligence | PRScs | PseudoVal | 0.092 | 0.010 | NA | NA | NA | NA | NA | 2.13e-20 |
Intelligence | pT+clump | MultiPRS | 0.080 | 0.010 | NA | NA | NA | NA | NA | 1.24e-15 |
Intelligence | pT+clump | 10FCVal | 0.074 | 0.010 | NA | NA | NA | NA | NA | 1.32e-13 |
Intelligence | SBayesR | PseudoVal | 0.065 | 0.010 | NA | NA | NA | NA | NA | 9.77e-11 |
Intelligence | SBLUP | Inf | 0.092 | 0.010 | NA | NA | NA | NA | NA | 1.97e-20 |
Height | All | MultiPRS | 0.365 | 0.009 | NA | NA | NA | NA | NA | 2.24e-312 |
Height | DBSLMM | PseudoVal | 0.327 | 0.009 | NA | NA | NA | NA | NA | 1.77e-248 |
Height | lassosum | MultiPRS | 0.348 | 0.009 | NA | NA | NA | NA | NA | 2.57e-283 |
Height | lassosum | 10FCVal | 0.346 | 0.009 | NA | NA | NA | NA | NA | 1.43e-278 |
Height | lassosum | PseudoVal | 0.281 | 0.010 | NA | NA | NA | NA | NA | 7.11e-181 |
Height | MegaPRS | MultiPRS | 0.352 | 0.009 | NA | NA | NA | NA | NA | 1.15e-289 |
Height | MegaPRS | PseudoVal | 0.321 | 0.009 | NA | NA | NA | NA | NA | 3.57e-238 |
Height | MegaPRS | 10FCVal | 0.335 | 0.009 | NA | NA | NA | NA | NA | 2.09e-260 |
Height | LDpred1 | MultiPRS | 0.307 | 0.010 | NA | NA | NA | NA | NA | 6.68e-217 |
Height | LDpred1 | Inf | 0.303 | 0.010 | NA | NA | NA | NA | NA | 4.27e-212 |
Height | LDpred1 | 10FCVal | 0.301 | 0.010 | NA | NA | NA | NA | NA | 1.31e-208 |
Height | LDpred2 | MultiPRS | 0.354 | 0.009 | NA | NA | NA | NA | NA | 1.57e-292 |
Height | LDpred2 | 10FCVal | 0.346 | 0.009 | NA | NA | NA | NA | NA | 3.74e-279 |
Height | LDpred2 | PseudoVal | 0.304 | 0.010 | NA | NA | NA | NA | NA | 1.33e-212 |
Height | LDpred2 | Inf | 0.305 | 0.010 | NA | NA | NA | NA | NA | 1.41e-213 |
Height | PRScs | MultiPRS | 0.345 | 0.009 | NA | NA | NA | NA | NA | 5.62e-278 |
Height | PRScs | 10FCVal | 0.344 | 0.009 | NA | NA | NA | NA | NA | 1.44e-275 |
Height | PRScs | PseudoVal | 0.344 | 0.009 | NA | NA | NA | NA | NA | 1.97e-275 |
Height | pT+clump | MultiPRS | 0.313 | 0.009 | NA | NA | NA | NA | NA | 8.24e-226 |
Height | pT+clump | 10FCVal | 0.299 | 0.010 | NA | NA | NA | NA | NA | 1.94e-205 |
Height | SBayesR | PseudoVal | 0.343 | 0.009 | NA | NA | NA | NA | NA | 9.80e-275 |
Height | SBLUP | Inf | 0.294 | 0.010 | NA | NA | NA | NA | NA | 5.63e-198 |
BMI | All | MultiPRS | 0.311 | 0.010 | NA | NA | NA | NA | NA | 1.26e-223 |
BMI | DBSLMM | PseudoVal | 0.283 | 0.010 | NA | NA | NA | NA | NA | 2.16e-183 |
BMI | lassosum | MultiPRS | 0.305 | 0.010 | NA | NA | NA | NA | NA | 4.25e-214 |
BMI | lassosum | PseudoVal | 0.225 | 0.010 | NA | NA | NA | NA | NA | 8.76e-115 |
BMI | lassosum | 10FCVal | 0.298 | 0.010 | NA | NA | NA | NA | NA | 3.85e-204 |
BMI | MegaPRS | MultiPRS | 0.301 | 0.010 | NA | NA | NA | NA | NA | 6.44e-209 |
BMI | MegaPRS | 10FCVal | 0.298 | 0.010 | NA | NA | NA | NA | NA | 1.04e-203 |
BMI | MegaPRS | PseudoVal | 0.263 | 0.010 | NA | NA | NA | NA | NA | 2.09e-157 |
BMI | LDpred1 | MultiPRS | 0.281 | 0.010 | NA | NA | NA | NA | NA | 1.41e-180 |
BMI | LDpred1 | Inf | 0.264 | 0.010 | NA | NA | NA | NA | NA | 9.50e-159 |
BMI | LDpred1 | 10FCVal | 0.271 | 0.010 | NA | NA | NA | NA | NA | 4.25e-168 |
BMI | LDpred2 | MultiPRS | 0.299 | 0.010 | NA | NA | NA | NA | NA | 1.20e-205 |
BMI | LDpred2 | 10FCVal | 0.296 | 0.010 | NA | NA | NA | NA | NA | 6.63e-201 |
BMI | LDpred2 | PseudoVal | 0.261 | 0.010 | NA | NA | NA | NA | NA | 1.56e-155 |
BMI | LDpred2 | Inf | 0.284 | 0.010 | NA | NA | NA | NA | NA | 4.47e-185 |
BMI | PRScs | MultiPRS | 0.296 | 0.010 | NA | NA | NA | NA | NA | 7.33e-201 |
BMI | PRScs | 10FCVal | 0.282 | 0.010 | NA | NA | NA | NA | NA | 1.62e-181 |
BMI | PRScs | PseudoVal | 0.282 | 0.010 | NA | NA | NA | NA | NA | 6.73e-182 |
BMI | pT+clump | MultiPRS | 0.274 | 0.010 | NA | NA | NA | NA | NA | 2.95e-171 |
BMI | pT+clump | 10FCVal | 0.244 | 0.010 | NA | NA | NA | NA | NA | 2.59e-135 |
BMI | SBayesR | PseudoVal | 0.224 | 0.010 | NA | NA | NA | NA | NA | 1.09e-113 |
BMI | SBLUP | Inf | 0.286 | 0.010 | NA | NA | NA | NA | NA | 5.09e-187 |
T2D | All | MultiPRS | 0.248 | 0.010 | 1.721 | 1.646 | 1.799 | 0.064 | 0.652 | 8.13e-140 |
T2D | DBSLMM | PseudoVal | 0.226 | 0.010 | 1.638 | 1.568 | 1.712 | 0.053 | 0.640 | 1.81e-116 |
T2D | lassosum | MultiPRS | 0.240 | 0.010 | 1.691 | 1.618 | 1.768 | 0.060 | 0.648 | 2.09e-131 |
T2D | lassosum | PseudoVal | 0.214 | 0.010 | 1.593 | 1.525 | 1.664 | 0.047 | 0.631 | 2.66e-104 |
T2D | lassosum | 10FCVal | 0.216 | 0.010 | 1.601 | 1.532 | 1.673 | 0.048 | 0.632 | 1.11e-105 |
T2D | MegaPRS | MultiPRS | 0.245 | 0.010 | 1.713 | 1.638 | 1.791 | 0.062 | 0.650 | 2.61e-136 |
T2D | MegaPRS | PseudoVal | 0.240 | 0.010 | 1.690 | 1.617 | 1.767 | 0.060 | 0.647 | 5.67e-131 |
T2D | MegaPRS | 10FCVal | 0.244 | 0.010 | 1.705 | 1.631 | 1.783 | 0.062 | 0.649 | 2.53e-135 |
T2D | LDpred1 | MultiPRS | 0.231 | 0.010 | 1.656 | 1.584 | 1.730 | 0.055 | 0.642 | 3.12e-121 |
T2D | LDpred1 | Inf | 0.184 | 0.010 | 1.493 | 1.430 | 1.559 | 0.035 | 0.615 | 3.26e-77 |
T2D | LDpred1 | 10FCVal | 0.230 | 0.010 | 1.653 | 1.582 | 1.727 | 0.055 | 0.642 | 2.09e-120 |
T2D | LDpred2 | MultiPRS | 0.240 | 0.010 | 1.689 | 1.616 | 1.765 | 0.060 | 0.647 | 5.19e-131 |
T2D | LDpred2 | 10FCVal | 0.238 | 0.010 | 1.680 | 1.608 | 1.756 | 0.059 | 0.646 | 1.30e-128 |
T2D | LDpred2 | PseudoVal | 0.190 | 0.010 | 1.510 | 1.446 | 1.577 | 0.037 | 0.618 | 1.13e-81 |
T2D | LDpred2 | Inf | 0.185 | 0.010 | 1.495 | 1.432 | 1.561 | 0.035 | 0.615 | 6.76e-78 |
T2D | PRScs | MultiPRS | 0.237 | 0.010 | 1.679 | 1.606 | 1.755 | 0.058 | 0.645 | 6.75e-128 |
T2D | PRScs | 10FCVal | 0.227 | 0.010 | 1.641 | 1.571 | 1.715 | 0.053 | 0.639 | 2.41e-117 |
T2D | PRScs | PseudoVal | 0.226 | 0.010 | 1.636 | 1.566 | 1.710 | 0.053 | 0.639 | 5.73e-116 |
T2D | pT+clump | MultiPRS | 0.215 | 0.010 | 1.598 | 1.529 | 1.670 | 0.048 | 0.633 | 6.05e-105 |
T2D | pT+clump | 10FCVal | 0.173 | 0.010 | 1.455 | 1.393 | 1.519 | 0.030 | 0.607 | 8.66e-68 |
T2D | SBayesR | PseudoVal | 0.227 | 0.010 | 1.641 | 1.570 | 1.714 | 0.053 | 0.640 | 1.97e-117 |
T2D | SBLUP | Inf | 0.184 | 0.010 | 1.492 | 1.429 | 1.558 | 0.035 | 0.614 | 4.04e-77 |
CAD | All | MultiPRS | 0.197 | 0.010 | 1.505 | 1.444 | 1.569 | 0.029 | 0.611 | 4.42e-88 |
CAD | DBSLMM | PseudoVal | 0.164 | 0.010 | 1.401 | 1.345 | 1.459 | 0.020 | 0.593 | 1.68e-61 |
CAD | lassosum | MultiPRS | 0.186 | 0.010 | 1.467 | 1.408 | 1.529 | 0.026 | 0.604 | 3.66e-78 |
CAD | lassosum | PseudoVal | 0.160 | 0.010 | 1.388 | 1.332 | 1.445 | 0.019 | 0.588 | 3.04e-58 |
CAD | lassosum | 10FCVal | 0.171 | 0.010 | 1.423 | 1.366 | 1.482 | 0.022 | 0.596 | 8.84e-67 |
CAD | MegaPRS | MultiPRS | 0.189 | 0.010 | 1.477 | 1.418 | 1.540 | 0.027 | 0.606 | 9.67e-81 |
CAD | MegaPRS | PseudoVal | 0.184 | 0.010 | 1.462 | 1.403 | 1.523 | 0.025 | 0.603 | 9.24e-77 |
CAD | MegaPRS | 10FCVal | 0.182 | 0.010 | 1.457 | 1.399 | 1.518 | 0.025 | 0.603 | 1.33e-75 |
CAD | LDpred1 | MultiPRS | 0.174 | 0.010 | 1.431 | 1.374 | 1.491 | 0.023 | 0.598 | 6.37e-69 |
CAD | LDpred1 | Inf | 0.147 | 0.010 | 1.351 | 1.297 | 1.406 | 0.016 | 0.584 | 1.57e-49 |
CAD | LDpred1 | 10FCVal | 0.172 | 0.010 | 1.425 | 1.368 | 1.484 | 0.022 | 0.597 | 2.22e-67 |
CAD | LDpred2 | MultiPRS | 0.186 | 0.010 | 1.468 | 1.409 | 1.530 | 0.026 | 0.604 | 2.44e-78 |
CAD | LDpred2 | 10FCVal | 0.184 | 0.010 | 1.462 | 1.403 | 1.523 | 0.025 | 0.604 | 8.81e-77 |
CAD | LDpred2 | PseudoVal | 0.111 | 0.010 | 1.252 | 1.203 | 1.303 | 0.009 | 0.561 | 7.84e-29 |
CAD | LDpred2 | Inf | 0.157 | 0.010 | 1.380 | 1.326 | 1.438 | 0.018 | 0.590 | 1.69e-56 |
CAD | PRScs | MultiPRS | 0.186 | 0.010 | 1.468 | 1.409 | 1.530 | 0.026 | 0.605 | 2.10e-78 |
CAD | PRScs | 10FCVal | 0.182 | 0.010 | 1.456 | 1.397 | 1.517 | 0.025 | 0.603 | 3.72e-75 |
CAD | PRScs | PseudoVal | 0.182 | 0.010 | 1.455 | 1.396 | 1.516 | 0.025 | 0.603 | 6.18e-75 |
CAD | pT+clump | MultiPRS | 0.166 | 0.010 | 1.407 | 1.351 | 1.466 | 0.021 | 0.593 | 6.59e-63 |
CAD | pT+clump | 10FCVal | 0.134 | 0.010 | 1.314 | 1.262 | 1.368 | 0.013 | 0.575 | 2.61e-41 |
CAD | SBayesR | PseudoVal | 0.160 | 0.010 | 1.387 | 1.332 | 1.444 | 0.019 | 0.589 | 4.38e-58 |
CAD | SBLUP | Inf | 0.157 | 0.010 | 1.379 | 1.325 | 1.437 | 0.018 | 0.590 | 2.87e-56 |
IBD | All | MultiPRS | 0.158 | 0.010 | 1.605 | 1.508 | 1.708 | 0.058 | 0.660 | 7.26e-57 |
IBD | DBSLMM | PseudoVal | 0.135 | 0.010 | 1.530 | 1.435 | 1.631 | 0.042 | 0.637 | 5.85e-42 |
IBD | lassosum | MultiPRS | 0.146 | 0.010 | 1.564 | 1.468 | 1.666 | 0.049 | 0.648 | 1.83e-48 |
IBD | lassosum | PseudoVal | 0.137 | 0.010 | 1.529 | 1.435 | 1.629 | 0.043 | 0.640 | 8.34e-43 |
IBD | lassosum | 10FCVal | 0.136 | 0.010 | 1.525 | 1.431 | 1.626 | 0.043 | 0.639 | 3.32e-42 |
IBD | MegaPRS | MultiPRS | 0.153 | 0.010 | 1.581 | 1.485 | 1.682 | 0.054 | 0.655 | 3.95e-53 |
IBD | MegaPRS | 10FCVal | 0.150 | 0.010 | 1.568 | 1.474 | 1.668 | 0.053 | 0.654 | 1.12e-51 |
IBD | MegaPRS | PseudoVal | 0.150 | 0.010 | 1.568 | 1.474 | 1.668 | 0.053 | 0.654 | 1.12e-51 |
IBD | LDpred1 | MultiPRS | 0.137 | 0.010 | 1.547 | 1.450 | 1.650 | 0.044 | 0.635 | 3.55e-43 |
IBD | LDpred1 | Inf | 0.104 | 0.010 | 1.425 | 1.332 | 1.525 | 0.025 | 0.603 | 1.30e-25 |
IBD | LDpred1 | 10FCVal | 0.134 | 0.010 | 1.522 | 1.428 | 1.622 | 0.042 | 0.631 | 1.93e-41 |
IBD | LDpred2 | MultiPRS | 0.148 | 0.010 | 1.571 | 1.474 | 1.674 | 0.051 | 0.648 | 4.75e-50 |
IBD | LDpred2 | 10FCVal | 0.145 | 0.010 | 1.557 | 1.461 | 1.659 | 0.049 | 0.647 | 2.49e-48 |
IBD | LDpred2 | PseudoVal | 0.103 | 0.010 | 1.422 | 1.328 | 1.522 | 0.024 | 0.605 | 5.74e-25 |
IBD | LDpred2 | Inf | 0.099 | 0.010 | 1.407 | 1.314 | 1.507 | 0.023 | 0.600 | 3.50e-23 |
IBD | PRScs | MultiPRS | 0.137 | 0.010 | 1.536 | 1.441 | 1.637 | 0.044 | 0.638 | 2.18e-43 |
IBD | PRScs | 10FCVal | 0.133 | 0.010 | 1.518 | 1.424 | 1.619 | 0.041 | 0.631 | 1.31e-40 |
IBD | PRScs | PseudoVal | 0.128 | 0.010 | 1.496 | 1.403 | 1.595 | 0.038 | 0.629 | 1.16e-37 |
IBD | pT+clump | MultiPRS | 0.137 | 0.010 | 1.548 | 1.451 | 1.651 | 0.044 | 0.635 | 3.80e-43 |
IBD | pT+clump | 10FCVal | 0.112 | 0.010 | 1.452 | 1.359 | 1.551 | 0.029 | 0.608 | 2.24e-29 |
IBD | SBayesR | PseudoVal | 0.130 | 0.010 | 1.499 | 1.407 | 1.597 | 0.039 | 0.637 | 6.55e-39 |
IBD | SBLUP | Inf | 0.102 | 0.010 | 1.416 | 1.323 | 1.517 | 0.024 | 0.600 | 2.44e-24 |
MultiScler | All | MultiPRS | 0.123 | 0.010 | 1.488 | 1.384 | 1.600 | 0.062 | 0.705 | 4.95e-35 |
MultiScler | DBSLMM | PseudoVal | 0.085 | 0.010 | 1.396 | 1.288 | 1.513 | 0.029 | 0.634 | 2.18e-17 |
MultiScler | lassosum | MultiPRS | 0.124 | 0.010 | 1.528 | 1.417 | 1.648 | 0.063 | 0.694 | 1.05e-35 |
MultiScler | lassosum | PseudoVal | 0.106 | 0.010 | 1.455 | 1.348 | 1.571 | 0.046 | 0.675 | 3.07e-26 |
MultiScler | lassosum | 10FCVal | 0.102 | 0.010 | 1.476 | 1.363 | 1.598 | 0.042 | 0.668 | 1.40e-24 |
MultiScler | MegaPRS | MultiPRS | 0.118 | 0.010 | 1.491 | 1.383 | 1.607 | 0.057 | 0.702 | 1.82e-32 |
MultiScler | MegaPRS | PseudoVal | 0.110 | 0.010 | 1.481 | 1.371 | 1.600 | 0.049 | 0.683 | 2.27e-28 |
MultiScler | MegaPRS | 10FCVal | 0.117 | 0.010 | 1.493 | 1.384 | 1.611 | 0.056 | 0.700 | 4.70e-32 |
MultiScler | LDpred1 | MultiPRS | 0.096 | 0.010 | 1.458 | 1.344 | 1.582 | 0.038 | 0.658 | 5.88e-22 |
MultiScler | LDpred1 | Inf | 0.081 | 0.010 | 1.440 | 1.315 | 1.578 | 0.026 | 0.630 | 6.95e-16 |
MultiScler | LDpred1 | 10FCVal | 0.095 | 0.010 | 1.426 | 1.318 | 1.544 | 0.037 | 0.659 | 1.98e-21 |
MultiScler | LDpred2 | MultiPRS | 0.117 | 0.010 | 1.503 | 1.394 | 1.621 | 0.056 | 0.686 | 8.03e-32 |
MultiScler | LDpred2 | 10FCVal | 0.101 | 0.010 | 1.453 | 1.343 | 1.571 | 0.042 | 0.670 | 4.30e-24 |
MultiScler | LDpred2 | PseudoVal | 0.088 | 0.010 | 1.456 | 1.335 | 1.588 | 0.032 | 0.645 | 1.09e-18 |
MultiScler | LDpred2 | Inf | 0.078 | 0.010 | 1.426 | 1.302 | 1.562 | 0.025 | 0.634 | 4.54e-15 |
MultiScler | PRScs | MultiPRS | 0.108 | 0.010 | 1.462 | 1.357 | 1.576 | 0.048 | 0.675 | 2.43e-27 |
MultiScler | PRScs | 10FCVal | 0.104 | 0.010 | 1.461 | 1.349 | 1.582 | 0.044 | 0.659 | 2.58e-25 |
MultiScler | PRScs | PseudoVal | 0.101 | 0.010 | 1.420 | 1.317 | 1.532 | 0.042 | 0.666 | 3.38e-24 |
MultiScler | pT+clump | MultiPRS | 0.116 | 0.010 | 1.513 | 1.400 | 1.635 | 0.055 | 0.677 | 4.31e-31 |
MultiScler | pT+clump | 10FCVal | 0.092 | 0.010 | 1.455 | 1.338 | 1.583 | 0.034 | 0.629 | 4.66e-20 |
MultiScler | SBayesR | PseudoVal | 0.084 | 0.010 | 1.440 | 1.317 | 1.575 | 0.028 | 0.643 | 4.95e-17 |
MultiScler | SBLUP | Inf | 0.079 | 0.010 | 1.427 | 1.304 | 1.562 | 0.025 | 0.635 | 2.90e-15 |
RheuArth | All | MultiPRS | 0.178 | 0.010 | 1.598 | 1.509 | 1.692 | 0.061 | 0.658 | 7.23e-72 |
RheuArth | DBSLMM | PseudoVal | 0.111 | 0.010 | 1.415 | 1.329 | 1.507 | 0.023 | 0.600 | 1.07e-28 |
RheuArth | lassosum | MultiPRS | 0.150 | 0.010 | 1.522 | 1.435 | 1.614 | 0.043 | 0.639 | 1.33e-51 |
RheuArth | lassosum | PseudoVal | 0.089 | 0.010 | 1.346 | 1.259 | 1.438 | 0.015 | 0.589 | 3.37e-19 |
RheuArth | lassosum | 10FCVal | 0.130 | 0.010 | 1.449 | 1.366 | 1.538 | 0.032 | 0.621 | 6.96e-39 |
RheuArth | MegaPRS | MultiPRS | 0.144 | 0.010 | 1.520 | 1.431 | 1.615 | 0.039 | 0.634 | 2.09e-47 |
RheuArth | MegaPRS | 10FCVal | 0.143 | 0.010 | 1.509 | 1.421 | 1.603 | 0.039 | 0.631 | 6.58e-47 |
RheuArth | MegaPRS | PseudoVal | 0.124 | 0.010 | 1.446 | 1.361 | 1.536 | 0.029 | 0.620 | 1.10e-35 |
RheuArth | LDpred1 | MultiPRS | 0.119 | 0.010 | 1.442 | 1.355 | 1.535 | 0.027 | 0.616 | 6.60e-33 |
RheuArth | LDpred1 | Inf | 0.111 | 0.010 | 1.415 | 1.328 | 1.507 | 0.023 | 0.611 | 7.94e-29 |
RheuArth | LDpred1 | 10FCVal | 0.112 | 0.010 | 1.419 | 1.332 | 1.511 | 0.024 | 0.607 | 4.10e-29 |
RheuArth | LDpred2 | MultiPRS | 0.127 | 0.010 | 1.486 | 1.394 | 1.583 | 0.031 | 0.619 | 1.85e-37 |
RheuArth | LDpred2 | 10FCVal | 0.128 | 0.010 | 1.490 | 1.399 | 1.588 | 0.031 | 0.618 | 5.07e-38 |
RheuArth | LDpred2 | PseudoVal | 0.077 | 0.010 | 1.309 | 1.221 | 1.403 | 0.011 | 0.581 | 1.66e-14 |
RheuArth | LDpred2 | Inf | 0.072 | 0.010 | 1.293 | 1.206 | 1.388 | 0.010 | 0.577 | 5.05e-13 |
RheuArth | PRScs | MultiPRS | 0.133 | 0.010 | 1.466 | 1.381 | 1.556 | 0.034 | 0.623 | 8.57e-41 |
RheuArth | PRScs | 10FCVal | 0.128 | 0.010 | 1.445 | 1.362 | 1.533 | 0.031 | 0.617 | 1.01e-37 |
RheuArth | PRScs | PseudoVal | 0.129 | 0.010 | 1.446 | 1.363 | 1.534 | 0.032 | 0.617 | 2.12e-38 |
RheuArth | pT+clump | MultiPRS | 0.124 | 0.010 | 1.466 | 1.377 | 1.562 | 0.029 | 0.623 | 1.28e-35 |
RheuArth | pT+clump | 10FCVal | 0.103 | 0.010 | 1.394 | 1.307 | 1.487 | 0.020 | 0.611 | 3.60e-25 |
RheuArth | SBayesR | PseudoVal | 0.119 | 0.010 | 1.461 | 1.370 | 1.558 | 0.027 | 0.619 | 6.12e-33 |
RheuArth | SBLUP | Inf | 0.097 | 0.010 | 1.380 | 1.291 | 1.475 | 0.018 | 0.597 | 3.43e-22 |
Prostate_Cancer | All | MultiPRS | 0.184 | 0.010 | 1.664 | 1.566 | 1.767 | 0.173 | 0.709 | 6.12e-77 |
Prostate_Cancer | DBSLMM | PseudoVal | 0.166 | 0.010 | 1.597 | 1.503 | 1.697 | 0.141 | 0.693 | 1.91e-62 |
Prostate_Cancer | lassosum | MultiPRS | 0.181 | 0.010 | 1.652 | 1.555 | 1.754 | 0.168 | 0.702 | 1.27e-74 |
Prostate_Cancer | lassosum | PseudoVal | 0.164 | 0.010 | 1.602 | 1.507 | 1.703 | 0.138 | 0.690 | 5.06e-61 |
Prostate_Cancer | lassosum | 10FCVal | 0.177 | 0.010 | 1.637 | 1.541 | 1.738 | 0.161 | 0.700 | 2.14e-71 |
Prostate_Cancer | MegaPRS | MultiPRS | 0.180 | 0.010 | 1.677 | 1.576 | 1.784 | 0.166 | 0.704 | 7.51e-74 |
Prostate_Cancer | MegaPRS | PseudoVal | 0.175 | 0.010 | 1.616 | 1.522 | 1.716 | 0.156 | 0.700 | 2.03e-69 |
Prostate_Cancer | MegaPRS | 10FCVal | 0.185 | 0.010 | 1.642 | 1.548 | 1.743 | 0.174 | 0.704 | 1.94e-77 |
Prostate_Cancer | LDpred1 | MultiPRS | 0.149 | 0.010 | 1.561 | 1.466 | 1.661 | 0.115 | 0.675 | 5.36e-51 |
Prostate_Cancer | LDpred1 | Inf | 0.133 | 0.010 | 1.525 | 1.429 | 1.627 | 0.092 | 0.655 | 1.04e-40 |
Prostate_Cancer | LDpred1 | 10FCVal | 0.152 | 0.010 | 1.555 | 1.462 | 1.653 | 0.119 | 0.675 | 9.66e-53 |
Prostate_Cancer | LDpred2 | MultiPRS | 0.175 | 0.010 | 1.653 | 1.555 | 1.757 | 0.156 | 0.703 | 2.23e-69 |
Prostate_Cancer | LDpred2 | 10FCVal | 0.173 | 0.010 | 1.616 | 1.523 | 1.715 | 0.154 | 0.703 | 3.31e-68 |
Prostate_Cancer | LDpred2 | PseudoVal | 0.133 | 0.010 | 1.528 | 1.432 | 1.631 | 0.091 | 0.657 | 1.24e-40 |
Prostate_Cancer | LDpred2 | Inf | 0.129 | 0.010 | 1.519 | 1.422 | 1.622 | 0.086 | 0.654 | 2.02e-38 |
Prostate_Cancer | PRScs | MultiPRS | 0.173 | 0.010 | 1.628 | 1.532 | 1.729 | 0.153 | 0.696 | 6.20e-68 |
Prostate_Cancer | PRScs | 10FCVal | 0.176 | 0.010 | 1.634 | 1.540 | 1.735 | 0.159 | 0.698 | 9.29e-71 |
Prostate_Cancer | PRScs | PseudoVal | 0.172 | 0.010 | 1.615 | 1.522 | 1.715 | 0.151 | 0.696 | 4.01e-67 |
Prostate_Cancer | pT+clump | MultiPRS | 0.175 | 0.010 | 1.640 | 1.542 | 1.744 | 0.156 | 0.691 | 2.85e-69 |
Prostate_Cancer | pT+clump | 10FCVal | 0.166 | 0.010 | 1.631 | 1.531 | 1.737 | 0.142 | 0.674 | 8.05e-63 |
Prostate_Cancer | SBayesR | PseudoVal | 0.171 | 0.010 | 1.599 | 1.507 | 1.697 | 0.150 | 0.697 | 1.83e-66 |
Prostate_Cancer | SBLUP | Inf | 0.128 | 0.010 | 1.514 | 1.418 | 1.617 | 0.085 | 0.653 | 7.05e-38 |
Breast_Cancer | All | MultiPRS | 0.218 | 0.010 | 1.667 | 1.589 | 1.750 | 0.093 | 0.656 | 5.85e-108 |
Breast_Cancer | DBSLMM | PseudoVal | 0.211 | 0.010 | 1.643 | 1.565 | 1.724 | 0.087 | 0.649 | 8.92e-101 |
Breast_Cancer | lassosum | MultiPRS | 0.212 | 0.010 | 1.646 | 1.568 | 1.727 | 0.088 | 0.653 | 6.68e-102 |
Breast_Cancer | lassosum | PseudoVal | 0.199 | 0.010 | 1.602 | 1.526 | 1.681 | 0.078 | 0.644 | 5.02e-90 |
Breast_Cancer | lassosum | 10FCVal | 0.199 | 0.010 | 1.601 | 1.525 | 1.680 | 0.077 | 0.644 | 7.52e-90 |
Breast_Cancer | MegaPRS | MultiPRS | 0.211 | 0.010 | 1.639 | 1.562 | 1.720 | 0.087 | 0.653 | 1.07e-100 |
Breast_Cancer | MegaPRS | PseudoVal | 0.212 | 0.010 | 1.647 | 1.569 | 1.728 | 0.088 | 0.651 | 8.54e-102 |
Breast_Cancer | MegaPRS | 10FCVal | 0.213 | 0.010 | 1.650 | 1.573 | 1.732 | 0.089 | 0.653 | 7.45e-103 |
Breast_Cancer | LDpred1 | MultiPRS | 0.195 | 0.010 | 1.585 | 1.510 | 1.663 | 0.074 | 0.641 | 7.42e-86 |
Breast_Cancer | LDpred1 | Inf | 0.162 | 0.010 | 1.481 | 1.410 | 1.554 | 0.051 | 0.616 | 1.25e-59 |
Breast_Cancer | LDpred1 | 10FCVal | 0.186 | 0.010 | 1.559 | 1.485 | 1.636 | 0.068 | 0.634 | 1.68e-78 |
Breast_Cancer | LDpred2 | MultiPRS | 0.211 | 0.010 | 1.639 | 1.562 | 1.720 | 0.087 | 0.651 | 1.16e-100 |
Breast_Cancer | LDpred2 | 10FCVal | 0.211 | 0.010 | 1.642 | 1.565 | 1.724 | 0.087 | 0.650 | 4.71e-101 |
Breast_Cancer | LDpred2 | PseudoVal | 0.161 | 0.010 | 1.477 | 1.407 | 1.551 | 0.050 | 0.616 | 7.88e-59 |
Breast_Cancer | LDpred2 | Inf | 0.160 | 0.010 | 1.475 | 1.405 | 1.549 | 0.050 | 0.615 | 2.07e-58 |
Breast_Cancer | PRScs | MultiPRS | 0.210 | 0.010 | 1.641 | 1.564 | 1.723 | 0.087 | 0.651 | 1.59e-100 |
Breast_Cancer | PRScs | 10FCVal | 0.207 | 0.010 | 1.629 | 1.552 | 1.709 | 0.084 | 0.648 | 2.37e-97 |
Breast_Cancer | PRScs | PseudoVal | 0.208 | 0.010 | 1.630 | 1.553 | 1.710 | 0.084 | 0.649 | 7.26e-98 |
Breast_Cancer | pT+clump | MultiPRS | 0.188 | 0.010 | 1.564 | 1.490 | 1.641 | 0.069 | 0.636 | 6.73e-80 |
Breast_Cancer | pT+clump | 10FCVal | 0.167 | 0.010 | 1.498 | 1.427 | 1.573 | 0.054 | 0.624 | 1.69e-63 |
Breast_Cancer | SBayesR | PseudoVal | 0.205 | 0.010 | 1.619 | 1.543 | 1.699 | 0.082 | 0.648 | 2.51e-95 |
Breast_Cancer | SBLUP | Inf | 0.158 | 0.010 | 1.469 | 1.399 | 1.542 | 0.049 | 0.614 | 4.12e-57 |
Show results compared to pT+clump
Show difference results table
Phenotype | Model 1 Test | Model 2 Test | Model 1 IndepVal R | Model 2 IndepVal R | IndepVal R Diff | IndepVal R Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|---|
Depression | DBSLMM.PseudoVal | All.MultiPRS | 0.141 | 0.150 | -0.009 | 0.2149435 | 0.140 | 0.149 | -0.009 | 1.04e-02 |
Depression | SBayesR.PseudoVal | All.MultiPRS | 0.113 | 0.150 | -0.037 | 0.0000001 | 0.108 | 0.149 | -0.041 | 3.20e-09 |
Depression | lassosum.PseudoVal | All.MultiPRS | 0.081 | 0.150 | -0.068 | 0.0000000 | 0.093 | 0.149 | -0.057 | 8.48e-09 |
Depression | LDpred2.10FCVal | All.MultiPRS | 0.146 | 0.150 | -0.004 | 0.5556301 | 0.144 | 0.149 | -0.005 | 3.68e-02 |
Depression | MegaPRS.MultiPRS | All.MultiPRS | 0.149 | 0.150 | 0.000 | 0.9698253 | 0.149 | 0.149 | -0.001 | 3.48e-01 |
Depression | PRScs.10FCVal | All.MultiPRS | 0.141 | 0.150 | -0.009 | 0.1930680 | 0.139 | 0.149 | -0.010 | 5.71e-03 |
Depression | LDpred2.Inf | All.MultiPRS | 0.143 | 0.150 | -0.007 | 0.3185545 | 0.139 | 0.149 | -0.011 | 4.72e-04 |
Depression | MegaPRS.10FCVal | All.MultiPRS | 0.149 | 0.150 | 0.000 | 0.9534560 | 0.148 | 0.149 | -0.002 | 1.09e-01 |
Depression | pT+clump.MultiPRS | All.MultiPRS | 0.126 | 0.150 | -0.024 | 0.0007008 | 0.127 | 0.149 | -0.022 | 6.90e-05 |
Depression | lassosum.10FCVal | All.MultiPRS | 0.143 | 0.150 | -0.007 | 0.3332468 | 0.144 | 0.149 | -0.005 | 8.86e-02 |
Depression | PRScs.MultiPRS | All.MultiPRS | 0.142 | 0.150 | -0.008 | 0.2764875 | 0.141 | 0.149 | -0.008 | 1.08e-02 |
Depression | LDpred1.Inf | All.MultiPRS | 0.143 | 0.150 | -0.006 | 0.3581560 | 0.138 | 0.149 | -0.011 | 4.34e-04 |
Depression | MegaPRS.PseudoVal | All.MultiPRS | 0.149 | 0.150 | -0.001 | 0.9354101 | 0.146 | 0.149 | -0.004 | 4.46e-03 |
Depression | PRScs.PseudoVal | All.MultiPRS | 0.139 | 0.150 | -0.011 | 0.1107916 | 0.139 | 0.149 | -0.011 | 2.40e-03 |
Depression | All.MultiPRS | All.MultiPRS | 0.150 | 0.150 | 0.000 | 1.0000000 | 0.149 | 0.149 | 0.000 | 1.00e+00 |
Depression | LDpred2.MultiPRS | All.MultiPRS | 0.145 | 0.150 | -0.004 | 0.5269286 | 0.145 | 0.149 | -0.004 | 1.01e-01 |
Depression | LDpred1.MultiPRS | All.MultiPRS | 0.143 | 0.150 | -0.006 | 0.3527230 | 0.139 | 0.149 | -0.010 | 8.96e-04 |
Depression | pT+clump.10FCVal | All.MultiPRS | 0.120 | 0.150 | -0.030 | 0.0000200 | 0.118 | 0.149 | -0.032 | 7.78e-07 |
Depression | lassosum.MultiPRS | All.MultiPRS | 0.144 | 0.150 | -0.006 | 0.3751578 | 0.144 | 0.149 | -0.006 | 5.26e-02 |
Depression | LDpred2.PseudoVal | All.MultiPRS | 0.143 | 0.150 | -0.007 | 0.3414106 | 0.139 | 0.149 | -0.011 | 3.21e-04 |
Depression | LDpred1.10FCVal | All.MultiPRS | 0.143 | 0.150 | -0.007 | 0.3367139 | 0.140 | 0.149 | -0.009 | 1.96e-03 |
Depression | SBLUP.Inf | All.MultiPRS | 0.143 | 0.150 | -0.007 | 0.2976569 | 0.139 | 0.149 | -0.010 | 1.36e-03 |
Depression | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.139 | 0.141 | -0.002 | 0.1471435 | 0.139 | 0.140 | -0.002 | 6.40e-01 |
Depression | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.113 | 0.141 | -0.028 | 0.0000000 | 0.108 | 0.140 | -0.032 | 1.06e-05 |
Depression | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.145 | 0.141 | 0.004 | 0.5430897 | 0.145 | 0.140 | 0.005 | 8.27e-02 |
Depression | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.142 | 0.141 | 0.001 | 0.8768996 | 0.141 | 0.140 | 0.001 | 6.67e-01 |
Depression | LDpred1.Inf | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.1282831 | 0.138 | 0.140 | -0.002 | 5.17e-01 |
Depression | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.126 | 0.141 | -0.015 | 0.0319042 | 0.127 | 0.140 | -0.013 | 2.22e-02 |
Depression | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.146 | 0.141 | 0.005 | 0.0030031 | 0.144 | 0.140 | 0.004 | 2.32e-01 |
Depression | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.081 | 0.141 | -0.060 | 0.0000000 | 0.093 | 0.140 | -0.047 | 7.68e-07 |
Depression | LDpred2.Inf | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.2514569 | 0.139 | 0.140 | -0.002 | 5.81e-01 |
Depression | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.149 | 0.141 | 0.008 | 0.0000425 | 0.146 | 0.140 | 0.005 | 1.83e-01 |
Depression | All.MultiPRS | DBSLMM.PseudoVal | 0.150 | 0.141 | 0.009 | 0.2149435 | 0.149 | 0.140 | 0.009 | 1.04e-02 |
Depression | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.144 | 0.141 | 0.002 | 0.7222399 | 0.144 | 0.140 | 0.004 | 3.13e-01 |
Depression | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.1780904 | 0.139 | 0.140 | -0.002 | 5.93e-01 |
Depression | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.7559391 | 0.139 | 0.140 | -0.001 | 7.63e-01 |
Depression | SBLUP.Inf | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.001 | 0.3056690 | 0.139 | 0.140 | -0.001 | 8.02e-01 |
Depression | lassosum.10FCVal | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.2826822 | 0.144 | 0.140 | 0.004 | 2.96e-01 |
Depression | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | PRScs.10FCVal | DBSLMM.PseudoVal | 0.141 | 0.141 | 0.000 | 0.8086344 | 0.139 | 0.140 | -0.001 | 8.48e-01 |
Depression | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.143 | 0.141 | 0.002 | 0.1617243 | 0.140 | 0.140 | 0.000 | 9.35e-01 |
Depression | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.120 | 0.141 | -0.021 | 0.0000000 | 0.118 | 0.140 | -0.022 | 3.52e-04 |
Depression | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.149 | 0.141 | 0.008 | 0.2296012 | 0.149 | 0.140 | 0.008 | 2.47e-02 |
Depression | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.149 | 0.141 | 0.008 | 0.0000080 | 0.148 | 0.140 | 0.007 | 4.96e-02 |
Depression | LDpred2.MultiPRS | lassosum.MultiPRS | 0.145 | 0.144 | 0.002 | 0.8001052 | 0.145 | 0.144 | 0.002 | 5.81e-01 |
Depression | LDpred2.PseudoVal | lassosum.MultiPRS | 0.143 | 0.144 | 0.000 | 0.9469543 | 0.139 | 0.144 | -0.005 | 1.05e-01 |
Depression | PRScs.MultiPRS | lassosum.MultiPRS | 0.142 | 0.144 | -0.001 | 0.2882465 | 0.141 | 0.144 | -0.002 | 3.95e-01 |
Depression | LDpred2.Inf | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.9106252 | 0.139 | 0.144 | -0.005 | 1.13e-01 |
Depression | PRScs.PseudoVal | lassosum.MultiPRS | 0.139 | 0.144 | -0.005 | 0.4775015 | 0.139 | 0.144 | -0.005 | 1.11e-01 |
Depression | pT+clump.MultiPRS | lassosum.MultiPRS | 0.126 | 0.144 | -0.017 | 0.0121025 | 0.127 | 0.144 | -0.016 | 2.44e-03 |
Depression | PRScs.10FCVal | lassosum.MultiPRS | 0.141 | 0.144 | -0.003 | 0.6769963 | 0.139 | 0.144 | -0.004 | 2.01e-01 |
Depression | LDpred2.10FCVal | lassosum.MultiPRS | 0.146 | 0.144 | 0.002 | 0.7672129 | 0.144 | 0.144 | 0.000 | 9.28e-01 |
Depression | pT+clump.10FCVal | lassosum.MultiPRS | 0.120 | 0.144 | -0.024 | 0.0007511 | 0.118 | 0.144 | -0.026 | 3.61e-05 |
Depression | SBayesR.PseudoVal | lassosum.MultiPRS | 0.113 | 0.144 | -0.031 | 0.0000087 | 0.108 | 0.144 | -0.035 | 5.84e-07 |
Depression | lassosum.10FCVal | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.9353142 | 0.144 | 0.144 | 0.000 | 7.05e-01 |
Depression | All.MultiPRS | lassosum.MultiPRS | 0.150 | 0.144 | 0.006 | 0.3751578 | 0.149 | 0.144 | 0.006 | 5.26e-02 |
Depression | SBLUP.Inf | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.8755041 | 0.139 | 0.144 | -0.004 | 1.72e-01 |
Depression | LDpred1.MultiPRS | lassosum.MultiPRS | 0.143 | 0.144 | 0.000 | 0.9639600 | 0.139 | 0.144 | -0.004 | 1.40e-01 |
Depression | MegaPRS.10FCVal | lassosum.MultiPRS | 0.149 | 0.144 | 0.006 | 0.4088393 | 0.148 | 0.144 | 0.004 | 2.23e-01 |
Depression | lassosum.MultiPRS | lassosum.MultiPRS | 0.144 | 0.144 | 0.000 | 1.0000000 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
Depression | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.141 | 0.144 | -0.002 | 0.7222399 | 0.140 | 0.144 | -0.004 | 3.13e-01 |
Depression | LDpred1.10FCVal | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.9401619 | 0.140 | 0.144 | -0.003 | 2.41e-01 |
Depression | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.149 | 0.144 | 0.006 | 0.4216722 | 0.146 | 0.144 | 0.002 | 5.93e-01 |
Depression | LDpred1.Inf | lassosum.MultiPRS | 0.143 | 0.144 | 0.000 | 0.9728930 | 0.138 | 0.144 | -0.005 | 8.90e-02 |
Depression | lassosum.PseudoVal | lassosum.MultiPRS | 0.081 | 0.144 | -0.062 | 0.0000000 | 0.093 | 0.144 | -0.051 | 3.05e-07 |
Depression | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.149 | 0.144 | 0.006 | 0.3981376 | 0.149 | 0.144 | 0.005 | 1.14e-01 |
Depression | MegaPRS.10FCVal | lassosum.PseudoVal | 0.149 | 0.081 | 0.068 | 0.0000000 | 0.148 | 0.093 | 0.055 | 1.43e-07 |
Depression | PRScs.MultiPRS | lassosum.PseudoVal | 0.142 | 0.081 | 0.061 | 0.0000000 | 0.141 | 0.093 | 0.049 | 3.36e-07 |
Depression | LDpred1.Inf | lassosum.PseudoVal | 0.143 | 0.081 | 0.062 | 0.0000000 | 0.138 | 0.093 | 0.045 | 2.38e-05 |
Depression | pT+clump.MultiPRS | lassosum.PseudoVal | 0.126 | 0.081 | 0.045 | 0.0000000 | 0.127 | 0.093 | 0.035 | 9.54e-04 |
Depression | All.MultiPRS | lassosum.PseudoVal | 0.150 | 0.081 | 0.068 | 0.0000000 | 0.149 | 0.093 | 0.057 | 8.48e-09 |
Depression | LDpred2.MultiPRS | lassosum.PseudoVal | 0.145 | 0.081 | 0.064 | 0.0000000 | 0.145 | 0.093 | 0.052 | 3.21e-08 |
Depression | SBayesR.PseudoVal | lassosum.PseudoVal | 0.113 | 0.081 | 0.031 | 0.0000000 | 0.108 | 0.093 | 0.015 | 1.27e-01 |
Depression | lassosum.MultiPRS | lassosum.PseudoVal | 0.144 | 0.081 | 0.062 | 0.0000000 | 0.144 | 0.093 | 0.051 | 3.05e-07 |
Depression | LDpred2.PseudoVal | lassosum.PseudoVal | 0.143 | 0.081 | 0.062 | 0.0000000 | 0.139 | 0.093 | 0.046 | 1.92e-05 |
Depression | LDpred1.10FCVal | lassosum.PseudoVal | 0.143 | 0.081 | 0.062 | 0.0000000 | 0.140 | 0.093 | 0.048 | 4.83e-06 |
Depression | SBLUP.Inf | lassosum.PseudoVal | 0.143 | 0.081 | 0.061 | 0.0000000 | 0.139 | 0.093 | 0.047 | 1.63e-05 |
Depression | lassosum.10FCVal | lassosum.PseudoVal | 0.143 | 0.081 | 0.062 | 0.0000000 | 0.144 | 0.093 | 0.051 | 3.75e-07 |
Depression | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.141 | 0.081 | 0.060 | 0.0000000 | 0.140 | 0.093 | 0.047 | 7.68e-07 |
Depression | LDpred2.10FCVal | lassosum.PseudoVal | 0.146 | 0.081 | 0.064 | 0.0000000 | 0.144 | 0.093 | 0.051 | 1.38e-07 |
Depression | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.149 | 0.081 | 0.068 | 0.0000000 | 0.146 | 0.093 | 0.053 | 3.40e-07 |
Depression | PRScs.PseudoVal | lassosum.PseudoVal | 0.139 | 0.081 | 0.057 | 0.0000000 | 0.139 | 0.093 | 0.046 | 6.28e-07 |
Depression | lassosum.PseudoVal | lassosum.PseudoVal | 0.081 | 0.081 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Depression | LDpred2.Inf | lassosum.PseudoVal | 0.143 | 0.081 | 0.061 | 0.0000000 | 0.139 | 0.093 | 0.046 | 2.66e-05 |
Depression | LDpred1.MultiPRS | lassosum.PseudoVal | 0.143 | 0.081 | 0.062 | 0.0000000 | 0.139 | 0.093 | 0.047 | 1.06e-05 |
Depression | pT+clump.10FCVal | lassosum.PseudoVal | 0.120 | 0.081 | 0.039 | 0.0000000 | 0.118 | 0.093 | 0.025 | 3.46e-02 |
Depression | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.149 | 0.081 | 0.068 | 0.0000000 | 0.149 | 0.093 | 0.056 | 2.70e-08 |
Depression | PRScs.10FCVal | lassosum.PseudoVal | 0.141 | 0.081 | 0.059 | 0.0000000 | 0.139 | 0.093 | 0.047 | 3.11e-07 |
Depression | MegaPRS.MultiPRS | lassosum.10FCVal | 0.149 | 0.143 | 0.006 | 0.3531893 | 0.149 | 0.144 | 0.005 | 1.66e-01 |
Depression | PRScs.10FCVal | lassosum.10FCVal | 0.141 | 0.143 | -0.002 | 0.1844118 | 0.139 | 0.144 | -0.004 | 2.05e-01 |
Depression | lassosum.MultiPRS | lassosum.10FCVal | 0.144 | 0.143 | 0.001 | 0.9353142 | 0.144 | 0.144 | 0.000 | 7.05e-01 |
Depression | LDpred2.PseudoVal | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.9535660 | 0.139 | 0.144 | -0.005 | 1.27e-01 |
Depression | MegaPRS.10FCVal | lassosum.10FCVal | 0.149 | 0.143 | 0.006 | 0.0000815 | 0.148 | 0.144 | 0.004 | 2.77e-01 |
Depression | pT+clump.MultiPRS | lassosum.10FCVal | 0.126 | 0.143 | -0.017 | 0.0153977 | 0.127 | 0.144 | -0.017 | 1.67e-03 |
Depression | lassosum.10FCVal | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
Depression | PRScs.MultiPRS | lassosum.10FCVal | 0.142 | 0.143 | -0.001 | 0.9050654 | 0.141 | 0.144 | -0.003 | 3.68e-01 |
Depression | LDpred1.Inf | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.8477465 | 0.138 | 0.144 | -0.006 | 9.80e-02 |
Depression | SBayesR.PseudoVal | lassosum.10FCVal | 0.113 | 0.143 | -0.030 | 0.0000000 | 0.108 | 0.144 | -0.036 | 6.11e-07 |
Depression | PRScs.PseudoVal | lassosum.10FCVal | 0.139 | 0.143 | -0.004 | 0.0100419 | 0.139 | 0.144 | -0.005 | 1.16e-01 |
Depression | All.MultiPRS | lassosum.10FCVal | 0.150 | 0.143 | 0.007 | 0.3332468 | 0.149 | 0.144 | 0.005 | 8.86e-02 |
Depression | LDpred2.MultiPRS | lassosum.10FCVal | 0.145 | 0.143 | 0.002 | 0.7377225 | 0.145 | 0.144 | 0.001 | 6.89e-01 |
Depression | LDpred1.MultiPRS | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.9713323 | 0.139 | 0.144 | -0.005 | 1.43e-01 |
Depression | pT+clump.10FCVal | lassosum.10FCVal | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.118 | 0.144 | -0.026 | 2.00e-05 |
Depression | DBSLMM.PseudoVal | lassosum.10FCVal | 0.141 | 0.143 | -0.002 | 0.2826822 | 0.140 | 0.144 | -0.004 | 2.96e-01 |
Depression | LDpred1.10FCVal | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.9770276 | 0.140 | 0.144 | -0.004 | 2.29e-01 |
Depression | SBLUP.Inf | lassosum.10FCVal | 0.143 | 0.143 | -0.001 | 0.7472157 | 0.139 | 0.144 | -0.004 | 1.76e-01 |
Depression | lassosum.PseudoVal | lassosum.10FCVal | 0.081 | 0.143 | -0.062 | 0.0000000 | 0.093 | 0.144 | -0.051 | 3.75e-07 |
Depression | LDpred2.10FCVal | lassosum.10FCVal | 0.146 | 0.143 | 0.003 | 0.0656051 | 0.144 | 0.144 | 0.000 | 9.83e-01 |
Depression | MegaPRS.PseudoVal | lassosum.10FCVal | 0.149 | 0.143 | 0.006 | 0.0008186 | 0.146 | 0.144 | 0.002 | 6.82e-01 |
Depression | LDpred2.Inf | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.9001987 | 0.139 | 0.144 | -0.005 | 1.19e-01 |
Depression | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.113 | 0.149 | -0.037 | 0.0000001 | 0.108 | 0.149 | -0.040 | 1.04e-08 |
Depression | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.126 | 0.149 | -0.023 | 0.0008642 | 0.127 | 0.149 | -0.021 | 1.47e-04 |
Depression | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.146 | 0.149 | -0.004 | 0.5815783 | 0.144 | 0.149 | -0.005 | 1.18e-01 |
Depression | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.149 | 0.149 | 0.000 | 0.9654817 | 0.146 | 0.149 | -0.003 | 1.95e-03 |
Depression | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.139 | 0.149 | -0.011 | 0.1195222 | 0.139 | 0.149 | -0.010 | 8.67e-03 |
Depression | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.142 | 0.149 | -0.007 | 0.2963370 | 0.141 | 0.149 | -0.007 | 3.40e-02 |
Depression | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.145 | 0.149 | -0.004 | 0.0051196 | 0.145 | 0.149 | -0.003 | 2.50e-01 |
Depression | LDpred2.Inf | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.007 | 0.3376702 | 0.139 | 0.149 | -0.010 | 1.78e-03 |
Depression | SBLUP.Inf | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.007 | 0.3157922 | 0.139 | 0.149 | -0.009 | 4.00e-03 |
Depression | All.MultiPRS | MegaPRS.MultiPRS | 0.150 | 0.149 | 0.000 | 0.9698253 | 0.149 | 0.149 | 0.001 | 3.48e-01 |
Depression | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.006 | 0.3610644 | 0.139 | 0.149 | -0.010 | 1.24e-03 |
Depression | PRScs.10FCVal | MegaPRS.MultiPRS | 0.141 | 0.149 | -0.009 | 0.2064243 | 0.139 | 0.149 | -0.009 | 1.76e-02 |
Depression | LDpred1.Inf | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.006 | 0.3785196 | 0.138 | 0.149 | -0.010 | 1.44e-03 |
Depression | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.120 | 0.149 | -0.029 | 0.0000255 | 0.118 | 0.149 | -0.031 | 1.34e-06 |
Depression | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.141 | 0.149 | -0.008 | 0.2296012 | 0.140 | 0.149 | -0.008 | 2.47e-02 |
Depression | lassosum.10FCVal | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.006 | 0.3531893 | 0.144 | 0.149 | -0.005 | 1.66e-01 |
Depression | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.081 | 0.149 | -0.068 | 0.0000000 | 0.093 | 0.149 | -0.056 | 2.70e-08 |
Depression | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.149 | 0.149 | 0.000 | 0.9835868 | 0.148 | 0.149 | -0.001 | 1.89e-01 |
Depression | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.006 | 0.3730219 | 0.139 | 0.149 | -0.009 | 3.37e-03 |
Depression | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.144 | 0.149 | -0.006 | 0.3981376 | 0.144 | 0.149 | -0.005 | 1.14e-01 |
Depression | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.149 | 0.149 | 0.000 | 1.0000000 | 0.149 | 0.149 | 0.000 | 1.00e+00 |
Depression | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.143 | 0.149 | -0.006 | 0.3566185 | 0.140 | 0.149 | -0.008 | 7.67e-03 |
Depression | LDpred2.Inf | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.0001053 | 0.139 | 0.146 | -0.007 | 3.45e-02 |
Depression | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.146 | 0.149 | -0.004 | 0.0361263 | 0.144 | 0.146 | -0.002 | 6.39e-01 |
Depression | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.139 | 0.149 | -0.011 | 0.0000003 | 0.139 | 0.146 | -0.007 | 9.56e-02 |
Depression | All.MultiPRS | MegaPRS.PseudoVal | 0.150 | 0.149 | 0.001 | 0.9354101 | 0.149 | 0.146 | 0.004 | 4.46e-03 |
Depression | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.145 | 0.149 | -0.004 | 0.5824031 | 0.145 | 0.146 | 0.000 | 9.29e-01 |
Depression | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.113 | 0.149 | -0.037 | 0.0000000 | 0.108 | 0.146 | -0.037 | 2.56e-07 |
Depression | PRScs.10FCVal | MegaPRS.PseudoVal | 0.141 | 0.149 | -0.008 | 0.0000477 | 0.139 | 0.146 | -0.006 | 1.48e-01 |
Depression | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.120 | 0.149 | -0.029 | 0.0000000 | 0.118 | 0.146 | -0.028 | 3.01e-05 |
Depression | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.142 | 0.149 | -0.007 | 0.3155213 | 0.141 | 0.146 | -0.004 | 2.79e-01 |
Depression | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.149 | 0.149 | 0.000 | 0.9654817 | 0.149 | 0.146 | 0.003 | 1.95e-03 |
Depression | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.126 | 0.149 | -0.023 | 0.0009545 | 0.127 | 0.146 | -0.018 | 2.59e-03 |
Depression | SBLUP.Inf | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.007 | 0.0000334 | 0.139 | 0.146 | -0.006 | 6.51e-02 |
Depression | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.081 | 0.149 | -0.068 | 0.0000000 | 0.093 | 0.146 | -0.053 | 3.40e-07 |
Depression | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.0000874 | 0.139 | 0.146 | -0.007 | 2.49e-02 |
Depression | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.149 | 0.149 | 0.000 | 1.0000000 | 0.146 | 0.146 | 0.000 | 1.00e+00 |
Depression | LDpred1.Inf | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.0004081 | 0.138 | 0.146 | -0.007 | 2.92e-02 |
Depression | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.3949478 | 0.139 | 0.146 | -0.006 | 6.52e-02 |
Depression | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.141 | 0.149 | -0.008 | 0.0000425 | 0.140 | 0.146 | -0.005 | 1.83e-01 |
Depression | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.144 | 0.149 | -0.006 | 0.4216722 | 0.144 | 0.146 | -0.002 | 5.93e-01 |
Depression | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.149 | 0.149 | 0.000 | 0.8219966 | 0.148 | 0.146 | 0.002 | 1.59e-01 |
Depression | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.0002328 | 0.140 | 0.146 | -0.005 | 1.28e-01 |
Depression | lassosum.10FCVal | MegaPRS.PseudoVal | 0.143 | 0.149 | -0.006 | 0.0008186 | 0.144 | 0.146 | -0.002 | 6.82e-01 |
Depression | PRScs.10FCVal | MegaPRS.10FCVal | 0.141 | 0.149 | -0.009 | 0.0000208 | 0.139 | 0.148 | -0.008 | 4.75e-02 |
Depression | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.126 | 0.149 | -0.023 | 0.0008764 | 0.127 | 0.148 | -0.020 | 2.21e-04 |
Depression | LDpred2.10FCVal | MegaPRS.10FCVal | 0.146 | 0.149 | -0.004 | 0.0169250 | 0.144 | 0.148 | -0.004 | 2.47e-01 |
Depression | PRScs.MultiPRS | MegaPRS.10FCVal | 0.142 | 0.149 | -0.007 | 0.3048922 | 0.141 | 0.148 | -0.006 | 7.72e-02 |
Depression | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.145 | 0.149 | -0.004 | 0.5670312 | 0.145 | 0.148 | -0.002 | 4.60e-01 |
Depression | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.113 | 0.149 | -0.037 | 0.0000000 | 0.108 | 0.148 | -0.039 | 4.31e-08 |
Depression | pT+clump.10FCVal | MegaPRS.10FCVal | 0.120 | 0.149 | -0.029 | 0.0000000 | 0.118 | 0.148 | -0.030 | 1.10e-06 |
Depression | LDpred2.Inf | MegaPRS.10FCVal | 0.143 | 0.149 | -0.007 | 0.0000239 | 0.139 | 0.148 | -0.009 | 3.75e-03 |
Depression | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.0000678 | 0.139 | 0.148 | -0.009 | 4.26e-03 |
Depression | All.MultiPRS | MegaPRS.10FCVal | 0.150 | 0.149 | 0.000 | 0.9534560 | 0.149 | 0.148 | 0.002 | 1.09e-01 |
Depression | SBLUP.Inf | MegaPRS.10FCVal | 0.143 | 0.149 | -0.007 | 0.0000050 | 0.139 | 0.148 | -0.008 | 7.92e-03 |
Depression | PRScs.PseudoVal | MegaPRS.10FCVal | 0.139 | 0.149 | -0.011 | 0.0000001 | 0.139 | 0.148 | -0.009 | 2.55e-02 |
Depression | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.141 | 0.149 | -0.008 | 0.0000080 | 0.140 | 0.148 | -0.007 | 4.96e-02 |
Depression | lassosum.MultiPRS | MegaPRS.10FCVal | 0.144 | 0.149 | -0.006 | 0.4088393 | 0.144 | 0.148 | -0.004 | 2.23e-01 |
Depression | LDpred1.Inf | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.0001354 | 0.138 | 0.148 | -0.009 | 3.27e-03 |
Depression | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.149 | 0.149 | 0.000 | 0.9835868 | 0.149 | 0.148 | 0.001 | 1.89e-01 |
Depression | lassosum.PseudoVal | MegaPRS.10FCVal | 0.081 | 0.149 | -0.068 | 0.0000000 | 0.093 | 0.148 | -0.055 | 1.43e-07 |
Depression | lassosum.10FCVal | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.0000815 | 0.144 | 0.148 | -0.004 | 2.77e-01 |
Depression | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.149 | 0.149 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
Depression | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.149 | 0.149 | 0.000 | 0.8219966 | 0.146 | 0.148 | -0.002 | 1.59e-01 |
Depression | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.3825127 | 0.139 | 0.148 | -0.008 | 7.47e-03 |
Depression | LDpred1.10FCVal | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.0000221 | 0.140 | 0.148 | -0.007 | 1.67e-02 |
Depression | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.145 | 0.143 | 0.002 | 0.7654780 | 0.145 | 0.139 | 0.006 | 1.41e-02 |
Depression | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9830095 | 0.139 | 0.139 | -0.001 | 6.94e-01 |
Depression | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.113 | 0.143 | -0.031 | 0.0000113 | 0.108 | 0.139 | -0.031 | 1.63e-05 |
Depression | LDpred1.Inf | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9909828 | 0.138 | 0.139 | -0.001 | 3.78e-01 |
Depression | PRScs.PseudoVal | LDpred1.MultiPRS | 0.139 | 0.143 | -0.005 | 0.5052236 | 0.139 | 0.139 | -0.001 | 8.22e-01 |
Depression | PRScs.MultiPRS | LDpred1.MultiPRS | 0.142 | 0.143 | -0.001 | 0.8769976 | 0.141 | 0.139 | 0.002 | 4.39e-01 |
Depression | LDpred2.Inf | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9465015 | 0.139 | 0.139 | -0.001 | 6.79e-01 |
Depression | LDpred2.10FCVal | LDpred1.MultiPRS | 0.146 | 0.143 | 0.002 | 0.7325346 | 0.144 | 0.139 | 0.005 | 6.22e-02 |
Depression | pT+clump.10FCVal | LDpred1.MultiPRS | 0.120 | 0.143 | -0.023 | 0.0008765 | 0.118 | 0.139 | -0.022 | 3.17e-04 |
Depression | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.149 | 0.143 | 0.006 | 0.3949478 | 0.146 | 0.139 | 0.006 | 6.52e-02 |
Depression | PRScs.10FCVal | LDpred1.MultiPRS | 0.141 | 0.143 | -0.003 | 0.7096184 | 0.139 | 0.139 | 0.000 | 9.60e-01 |
Depression | All.MultiPRS | LDpred1.MultiPRS | 0.150 | 0.143 | 0.006 | 0.3527230 | 0.149 | 0.139 | 0.010 | 8.96e-04 |
Depression | SBLUP.Inf | LDpred1.MultiPRS | 0.143 | 0.143 | -0.001 | 0.9111335 | 0.139 | 0.139 | 0.000 | 9.04e-01 |
Depression | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | lassosum.10FCVal | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9713323 | 0.144 | 0.139 | 0.005 | 1.43e-01 |
Depression | lassosum.MultiPRS | LDpred1.MultiPRS | 0.144 | 0.143 | 0.000 | 0.9639600 | 0.144 | 0.139 | 0.004 | 1.40e-01 |
Depression | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.141 | 0.143 | -0.002 | 0.7559391 | 0.140 | 0.139 | 0.001 | 7.63e-01 |
Depression | LDpred1.10FCVal | LDpred1.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9761579 | 0.140 | 0.139 | 0.001 | 2.93e-01 |
Depression | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.126 | 0.143 | -0.017 | 0.0145981 | 0.127 | 0.139 | -0.012 | 2.81e-02 |
Depression | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.149 | 0.143 | 0.006 | 0.3825127 | 0.148 | 0.139 | 0.008 | 7.47e-03 |
Depression | lassosum.PseudoVal | LDpred1.MultiPRS | 0.081 | 0.143 | -0.062 | 0.0000000 | 0.093 | 0.139 | -0.047 | 1.06e-05 |
Depression | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.149 | 0.143 | 0.006 | 0.3730219 | 0.149 | 0.139 | 0.009 | 3.37e-03 |
Depression | MegaPRS.MultiPRS | LDpred1.Inf | 0.149 | 0.143 | 0.006 | 0.3785196 | 0.149 | 0.138 | 0.010 | 1.44e-03 |
Depression | PRScs.10FCVal | LDpred1.Inf | 0.141 | 0.143 | -0.003 | 0.1535267 | 0.139 | 0.138 | 0.001 | 7.41e-01 |
Depression | LDpred2.MultiPRS | LDpred1.Inf | 0.145 | 0.143 | 0.002 | 0.7737494 | 0.145 | 0.138 | 0.007 | 7.33e-03 |
Depression | LDpred1.MultiPRS | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 0.9909828 | 0.139 | 0.138 | 0.001 | 3.78e-01 |
Depression | pT+clump.10FCVal | LDpred1.Inf | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.118 | 0.138 | -0.021 | 6.63e-04 |
Depression | All.MultiPRS | LDpred1.Inf | 0.150 | 0.143 | 0.006 | 0.3581560 | 0.149 | 0.138 | 0.011 | 4.34e-04 |
Depression | LDpred2.PseudoVal | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 0.7842986 | 0.139 | 0.138 | 0.000 | 8.51e-01 |
Depression | MegaPRS.10FCVal | LDpred1.Inf | 0.149 | 0.143 | 0.006 | 0.0001354 | 0.148 | 0.138 | 0.009 | 3.27e-03 |
Depression | pT+clump.MultiPRS | LDpred1.Inf | 0.126 | 0.143 | -0.017 | 0.0136472 | 0.127 | 0.138 | -0.011 | 5.12e-02 |
Depression | lassosum.MultiPRS | LDpred1.Inf | 0.144 | 0.143 | 0.000 | 0.9728930 | 0.144 | 0.138 | 0.005 | 8.90e-02 |
Depression | DBSLMM.PseudoVal | LDpred1.Inf | 0.141 | 0.143 | -0.002 | 0.1282831 | 0.140 | 0.138 | 0.002 | 5.17e-01 |
Depression | LDpred2.10FCVal | LDpred1.Inf | 0.146 | 0.143 | 0.002 | 0.0869319 | 0.144 | 0.138 | 0.006 | 3.66e-02 |
Depression | MegaPRS.PseudoVal | LDpred1.Inf | 0.149 | 0.143 | 0.006 | 0.0004081 | 0.146 | 0.138 | 0.007 | 2.92e-02 |
Depression | PRScs.PseudoVal | LDpred1.Inf | 0.139 | 0.143 | -0.005 | 0.0090516 | 0.139 | 0.138 | 0.000 | 9.37e-01 |
Depression | lassosum.PseudoVal | LDpred1.Inf | 0.081 | 0.143 | -0.062 | 0.0000000 | 0.093 | 0.138 | -0.045 | 2.38e-05 |
Depression | LDpred2.Inf | LDpred1.Inf | 0.143 | 0.143 | -0.001 | 0.5227935 | 0.139 | 0.138 | 0.000 | 8.72e-01 |
Depression | PRScs.MultiPRS | LDpred1.Inf | 0.142 | 0.143 | -0.001 | 0.8678224 | 0.141 | 0.138 | 0.003 | 2.89e-01 |
Depression | LDpred1.10FCVal | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 0.7057303 | 0.140 | 0.138 | 0.002 | 1.61e-01 |
Depression | SBLUP.Inf | LDpred1.Inf | 0.143 | 0.143 | -0.001 | 0.2278527 | 0.139 | 0.138 | 0.001 | 3.88e-01 |
Depression | lassosum.10FCVal | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 0.8477465 | 0.144 | 0.138 | 0.006 | 9.80e-02 |
Depression | LDpred1.Inf | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.138 | 0.138 | 0.000 | 1.00e+00 |
Depression | SBayesR.PseudoVal | LDpred1.Inf | 0.113 | 0.143 | -0.031 | 0.0000000 | 0.108 | 0.138 | -0.030 | 3.90e-05 |
Depression | LDpred2.Inf | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 0.7886043 | 0.139 | 0.140 | -0.002 | 3.44e-01 |
Depression | PRScs.10FCVal | LDpred1.10FCVal | 0.141 | 0.143 | -0.002 | 0.1562502 | 0.139 | 0.140 | -0.001 | 7.84e-01 |
Depression | lassosum.MultiPRS | LDpred1.10FCVal | 0.144 | 0.143 | 0.001 | 0.9401619 | 0.144 | 0.140 | 0.003 | 2.41e-01 |
Depression | LDpred2.MultiPRS | LDpred1.10FCVal | 0.145 | 0.143 | 0.002 | 0.7424781 | 0.145 | 0.140 | 0.005 | 3.02e-02 |
Depression | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.149 | 0.143 | 0.006 | 0.3566185 | 0.149 | 0.140 | 0.008 | 7.67e-03 |
Depression | SBayesR.PseudoVal | LDpred1.10FCVal | 0.113 | 0.143 | -0.030 | 0.0000000 | 0.108 | 0.140 | -0.032 | 6.28e-06 |
Depression | PRScs.PseudoVal | LDpred1.10FCVal | 0.139 | 0.143 | -0.004 | 0.0058243 | 0.139 | 0.140 | -0.002 | 5.68e-01 |
Depression | All.MultiPRS | LDpred1.10FCVal | 0.150 | 0.143 | 0.007 | 0.3367139 | 0.149 | 0.140 | 0.009 | 1.96e-03 |
Depression | LDpred2.PseudoVal | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 0.9518075 | 0.139 | 0.140 | -0.002 | 3.64e-01 |
Depression | LDpred1.MultiPRS | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 0.9761579 | 0.139 | 0.140 | -0.001 | 2.93e-01 |
Depression | pT+clump.10FCVal | LDpred1.10FCVal | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.118 | 0.140 | -0.023 | 1.47e-04 |
Depression | SBLUP.Inf | LDpred1.10FCVal | 0.143 | 0.143 | -0.001 | 0.4781509 | 0.139 | 0.140 | -0.001 | 5.80e-01 |
Depression | PRScs.MultiPRS | LDpred1.10FCVal | 0.142 | 0.143 | -0.001 | 0.9002594 | 0.141 | 0.140 | 0.001 | 6.91e-01 |
Depression | MegaPRS.10FCVal | LDpred1.10FCVal | 0.149 | 0.143 | 0.006 | 0.0000221 | 0.148 | 0.140 | 0.007 | 1.67e-02 |
Depression | pT+clump.MultiPRS | LDpred1.10FCVal | 0.126 | 0.143 | -0.017 | 0.0152729 | 0.127 | 0.140 | -0.013 | 1.43e-02 |
Depression | LDpred1.Inf | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 0.7057303 | 0.138 | 0.140 | -0.002 | 1.61e-01 |
Depression | lassosum.PseudoVal | LDpred1.10FCVal | 0.081 | 0.143 | -0.062 | 0.0000000 | 0.093 | 0.140 | -0.048 | 4.83e-06 |
Depression | LDpred2.10FCVal | LDpred1.10FCVal | 0.146 | 0.143 | 0.003 | 0.0197080 | 0.144 | 0.140 | 0.004 | 1.14e-01 |
Depression | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.149 | 0.143 | 0.006 | 0.0002328 | 0.146 | 0.140 | 0.005 | 1.28e-01 |
Depression | LDpred1.10FCVal | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.141 | 0.143 | -0.002 | 0.1617243 | 0.140 | 0.140 | 0.000 | 9.35e-01 |
Depression | lassosum.10FCVal | LDpred1.10FCVal | 0.143 | 0.143 | 0.000 | 0.9770276 | 0.144 | 0.140 | 0.004 | 2.29e-01 |
Depression | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.141 | 0.145 | -0.004 | 0.5430897 | 0.140 | 0.145 | -0.005 | 8.27e-02 |
Depression | LDpred2.10FCVal | LDpred2.MultiPRS | 0.146 | 0.145 | 0.000 | 0.9663773 | 0.144 | 0.145 | -0.001 | 1.66e-01 |
Depression | PRScs.PseudoVal | LDpred2.MultiPRS | 0.139 | 0.145 | -0.007 | 0.3354101 | 0.139 | 0.145 | -0.007 | 1.84e-02 |
Depression | All.MultiPRS | LDpred2.MultiPRS | 0.150 | 0.145 | 0.004 | 0.5269286 | 0.149 | 0.145 | 0.004 | 1.01e-01 |
Depression | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.145 | 0.145 | 0.000 | 1.0000000 | 0.145 | 0.145 | 0.000 | 1.00e+00 |
Depression | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.149 | 0.145 | 0.004 | 0.5824031 | 0.146 | 0.145 | 0.000 | 9.29e-01 |
Depression | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.149 | 0.145 | 0.004 | 0.5670312 | 0.148 | 0.145 | 0.002 | 4.60e-01 |
Depression | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.126 | 0.145 | -0.019 | 0.0060760 | 0.127 | 0.145 | -0.018 | 1.15e-03 |
Depression | lassosum.10FCVal | LDpred2.MultiPRS | 0.143 | 0.145 | -0.002 | 0.7377225 | 0.144 | 0.145 | -0.001 | 6.89e-01 |
Depression | PRScs.MultiPRS | LDpred2.MultiPRS | 0.142 | 0.145 | -0.003 | 0.6505976 | 0.141 | 0.145 | -0.004 | 1.09e-01 |
Depression | LDpred1.Inf | LDpred2.MultiPRS | 0.143 | 0.145 | -0.002 | 0.7737494 | 0.138 | 0.145 | -0.007 | 7.33e-03 |
Depression | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.113 | 0.145 | -0.033 | 0.0000026 | 0.108 | 0.145 | -0.037 | 5.17e-08 |
Depression | pT+clump.10FCVal | LDpred2.MultiPRS | 0.120 | 0.145 | -0.025 | 0.0002998 | 0.118 | 0.145 | -0.028 | 2.08e-05 |
Depression | lassosum.PseudoVal | LDpred2.MultiPRS | 0.081 | 0.145 | -0.064 | 0.0000000 | 0.093 | 0.145 | -0.052 | 3.21e-08 |
Depression | LDpred2.Inf | LDpred2.MultiPRS | 0.143 | 0.145 | -0.003 | 0.7146884 | 0.139 | 0.145 | -0.007 | 1.84e-03 |
Depression | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.143 | 0.145 | -0.002 | 0.7654780 | 0.139 | 0.145 | -0.006 | 1.41e-02 |
Depression | SBLUP.Inf | LDpred2.MultiPRS | 0.143 | 0.145 | -0.003 | 0.6818618 | 0.139 | 0.145 | -0.006 | 1.95e-02 |
Depression | lassosum.MultiPRS | LDpred2.MultiPRS | 0.144 | 0.145 | -0.002 | 0.8001052 | 0.144 | 0.145 | -0.002 | 5.81e-01 |
Depression | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.143 | 0.145 | -0.002 | 0.7489583 | 0.139 | 0.145 | -0.007 | 1.12e-03 |
Depression | LDpred1.10FCVal | LDpred2.MultiPRS | 0.143 | 0.145 | -0.002 | 0.7424781 | 0.140 | 0.145 | -0.005 | 3.02e-02 |
Depression | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.149 | 0.145 | 0.004 | 0.0051196 | 0.149 | 0.145 | 0.003 | 2.50e-01 |
Depression | PRScs.10FCVal | LDpred2.MultiPRS | 0.141 | 0.145 | -0.005 | 0.5028242 | 0.139 | 0.145 | -0.006 | 4.69e-02 |
Depression | LDpred2.MultiPRS | LDpred2.10FCVal | 0.145 | 0.146 | 0.000 | 0.9663773 | 0.145 | 0.144 | 0.001 | 1.66e-01 |
Depression | LDpred2.Inf | LDpred2.10FCVal | 0.143 | 0.146 | -0.003 | 0.0104266 | 0.139 | 0.144 | -0.005 | 1.72e-02 |
Depression | PRScs.10FCVal | LDpred2.10FCVal | 0.141 | 0.146 | -0.005 | 0.0007375 | 0.139 | 0.144 | -0.004 | 1.30e-01 |
Depression | SBayesR.PseudoVal | LDpred2.10FCVal | 0.113 | 0.146 | -0.033 | 0.0000000 | 0.108 | 0.144 | -0.036 | 1.34e-07 |
Depression | lassosum.PseudoVal | LDpred2.10FCVal | 0.081 | 0.146 | -0.064 | 0.0000000 | 0.093 | 0.144 | -0.051 | 1.38e-07 |
Depression | LDpred2.10FCVal | LDpred2.10FCVal | 0.146 | 0.146 | 0.000 | 1.0000000 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
Depression | PRScs.PseudoVal | LDpred2.10FCVal | 0.139 | 0.146 | -0.007 | 0.0000007 | 0.139 | 0.144 | -0.005 | 6.03e-02 |
Depression | LDpred1.MultiPRS | LDpred2.10FCVal | 0.143 | 0.146 | -0.002 | 0.7325346 | 0.139 | 0.144 | -0.005 | 6.22e-02 |
Depression | pT+clump.10FCVal | LDpred2.10FCVal | 0.120 | 0.146 | -0.026 | 0.0000000 | 0.118 | 0.144 | -0.026 | 4.47e-05 |
Depression | All.MultiPRS | LDpred2.10FCVal | 0.150 | 0.146 | 0.004 | 0.5556301 | 0.149 | 0.144 | 0.005 | 3.68e-02 |
Depression | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.149 | 0.146 | 0.004 | 0.5815783 | 0.149 | 0.144 | 0.005 | 1.18e-01 |
Depression | MegaPRS.10FCVal | LDpred2.10FCVal | 0.149 | 0.146 | 0.004 | 0.0169250 | 0.148 | 0.144 | 0.004 | 2.47e-01 |
Depression | pT+clump.MultiPRS | LDpred2.10FCVal | 0.126 | 0.146 | -0.019 | 0.0051594 | 0.127 | 0.144 | -0.017 | 2.32e-03 |
Depression | lassosum.MultiPRS | LDpred2.10FCVal | 0.144 | 0.146 | -0.002 | 0.7672129 | 0.144 | 0.144 | 0.000 | 9.28e-01 |
Depression | PRScs.MultiPRS | LDpred2.10FCVal | 0.142 | 0.146 | -0.003 | 0.6196987 | 0.141 | 0.144 | -0.003 | 2.94e-01 |
Depression | LDpred1.Inf | LDpred2.10FCVal | 0.143 | 0.146 | -0.002 | 0.0869319 | 0.138 | 0.144 | -0.006 | 3.66e-02 |
Depression | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.149 | 0.146 | 0.004 | 0.0361263 | 0.146 | 0.144 | 0.002 | 6.39e-01 |
Depression | SBLUP.Inf | LDpred2.10FCVal | 0.143 | 0.146 | -0.003 | 0.0122372 | 0.139 | 0.144 | -0.004 | 8.40e-02 |
Depression | lassosum.10FCVal | LDpred2.10FCVal | 0.143 | 0.146 | -0.003 | 0.0656051 | 0.144 | 0.144 | 0.000 | 9.83e-01 |
Depression | LDpred2.PseudoVal | LDpred2.10FCVal | 0.143 | 0.146 | -0.003 | 0.0202827 | 0.139 | 0.144 | -0.005 | 1.56e-02 |
Depression | LDpred1.10FCVal | LDpred2.10FCVal | 0.143 | 0.146 | -0.003 | 0.0197080 | 0.140 | 0.144 | -0.004 | 1.14e-01 |
Depression | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.141 | 0.146 | -0.005 | 0.0030031 | 0.140 | 0.144 | -0.004 | 2.32e-01 |
Depression | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.149 | 0.143 | 0.006 | 0.0000874 | 0.146 | 0.139 | 0.007 | 2.49e-02 |
Depression | PRScs.PseudoVal | LDpred2.PseudoVal | 0.139 | 0.143 | -0.004 | 0.0105725 | 0.139 | 0.139 | 0.000 | 9.95e-01 |
Depression | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.145 | 0.143 | 0.002 | 0.7489583 | 0.145 | 0.139 | 0.007 | 1.12e-03 |
Depression | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.149 | 0.143 | 0.006 | 0.3610644 | 0.149 | 0.139 | 0.010 | 1.24e-03 |
Depression | PRScs.10FCVal | LDpred2.PseudoVal | 0.141 | 0.143 | -0.002 | 0.1795329 | 0.139 | 0.139 | 0.001 | 8.00e-01 |
Depression | All.MultiPRS | LDpred2.PseudoVal | 0.150 | 0.143 | 0.007 | 0.3414106 | 0.149 | 0.139 | 0.011 | 3.21e-04 |
Depression | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.141 | 0.143 | -0.002 | 0.1780904 | 0.140 | 0.139 | 0.002 | 5.93e-01 |
Depression | LDpred2.10FCVal | LDpred2.PseudoVal | 0.146 | 0.143 | 0.003 | 0.0202827 | 0.144 | 0.139 | 0.005 | 1.56e-02 |
Depression | LDpred1.Inf | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 0.7842986 | 0.138 | 0.139 | 0.000 | 8.51e-01 |
Depression | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.113 | 0.143 | -0.030 | 0.0000000 | 0.108 | 0.139 | -0.030 | 2.61e-05 |
Depression | lassosum.PseudoVal | LDpred2.PseudoVal | 0.081 | 0.143 | -0.062 | 0.0000000 | 0.093 | 0.139 | -0.046 | 1.92e-05 |
Depression | LDpred2.Inf | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 0.4414732 | 0.139 | 0.139 | 0.000 | 9.66e-01 |
Depression | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 0.9830095 | 0.139 | 0.139 | 0.001 | 6.94e-01 |
Depression | pT+clump.10FCVal | LDpred2.PseudoVal | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.118 | 0.139 | -0.021 | 9.00e-04 |
Depression | lassosum.MultiPRS | LDpred2.PseudoVal | 0.144 | 0.143 | 0.000 | 0.9469543 | 0.144 | 0.139 | 0.005 | 1.05e-01 |
Depression | PRScs.MultiPRS | LDpred2.PseudoVal | 0.142 | 0.143 | -0.001 | 0.8934491 | 0.141 | 0.139 | 0.003 | 3.45e-01 |
Depression | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.149 | 0.143 | 0.006 | 0.0000678 | 0.148 | 0.139 | 0.009 | 4.26e-03 |
Depression | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.126 | 0.143 | -0.017 | 0.0149600 | 0.127 | 0.139 | -0.011 | 5.36e-02 |
Depression | lassosum.10FCVal | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 0.9535660 | 0.144 | 0.139 | 0.005 | 1.27e-01 |
Depression | LDpred1.10FCVal | LDpred2.PseudoVal | 0.143 | 0.143 | 0.000 | 0.9518075 | 0.140 | 0.139 | 0.002 | 3.64e-01 |
Depression | SBLUP.Inf | LDpred2.PseudoVal | 0.143 | 0.143 | -0.001 | 0.3315923 | 0.139 | 0.139 | 0.001 | 4.84e-01 |
Depression | PRScs.10FCVal | LDpred2.Inf | 0.141 | 0.143 | -0.002 | 0.2712830 | 0.139 | 0.139 | 0.001 | 8.04e-01 |
Depression | pT+clump.MultiPRS | LDpred2.Inf | 0.126 | 0.143 | -0.017 | 0.0169337 | 0.127 | 0.139 | -0.011 | 4.98e-02 |
Depression | LDpred2.Inf | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | lassosum.PseudoVal | LDpred2.Inf | 0.081 | 0.143 | -0.061 | 0.0000000 | 0.093 | 0.139 | -0.046 | 2.66e-05 |
Depression | LDpred2.MultiPRS | LDpred2.Inf | 0.145 | 0.143 | 0.003 | 0.7146884 | 0.145 | 0.139 | 0.007 | 1.84e-03 |
Depression | SBayesR.PseudoVal | LDpred2.Inf | 0.113 | 0.143 | -0.030 | 0.0000000 | 0.108 | 0.139 | -0.030 | 3.32e-05 |
Depression | pT+clump.10FCVal | LDpred2.Inf | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.118 | 0.139 | -0.021 | 6.17e-04 |
Depression | PRScs.PseudoVal | LDpred2.Inf | 0.139 | 0.143 | -0.004 | 0.0244181 | 0.139 | 0.139 | 0.000 | 9.97e-01 |
Depression | LDpred2.PseudoVal | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 0.4414732 | 0.139 | 0.139 | 0.000 | 9.66e-01 |
Depression | All.MultiPRS | LDpred2.Inf | 0.150 | 0.143 | 0.007 | 0.3185545 | 0.149 | 0.139 | 0.011 | 4.72e-04 |
Depression | SBLUP.Inf | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 0.6227073 | 0.139 | 0.139 | 0.001 | 4.52e-01 |
Depression | MegaPRS.MultiPRS | LDpred2.Inf | 0.149 | 0.143 | 0.007 | 0.3376702 | 0.149 | 0.139 | 0.010 | 1.78e-03 |
Depression | PRScs.MultiPRS | LDpred2.Inf | 0.142 | 0.143 | -0.001 | 0.9296954 | 0.141 | 0.139 | 0.003 | 3.50e-01 |
Depression | lassosum.MultiPRS | LDpred2.Inf | 0.144 | 0.143 | 0.001 | 0.9106252 | 0.144 | 0.139 | 0.005 | 1.13e-01 |
Depression | LDpred1.Inf | LDpred2.Inf | 0.143 | 0.143 | 0.001 | 0.5227935 | 0.138 | 0.139 | 0.000 | 8.72e-01 |
Depression | MegaPRS.10FCVal | LDpred2.Inf | 0.149 | 0.143 | 0.007 | 0.0000239 | 0.148 | 0.139 | 0.009 | 3.75e-03 |
Depression | MegaPRS.PseudoVal | LDpred2.Inf | 0.149 | 0.143 | 0.006 | 0.0001053 | 0.146 | 0.139 | 0.007 | 3.45e-02 |
Depression | lassosum.10FCVal | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 0.9001987 | 0.144 | 0.139 | 0.005 | 1.19e-01 |
Depression | LDpred2.10FCVal | LDpred2.Inf | 0.146 | 0.143 | 0.003 | 0.0104266 | 0.144 | 0.139 | 0.005 | 1.72e-02 |
Depression | DBSLMM.PseudoVal | LDpred2.Inf | 0.141 | 0.143 | -0.002 | 0.2514569 | 0.140 | 0.139 | 0.002 | 5.81e-01 |
Depression | LDpred1.MultiPRS | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 0.9465015 | 0.139 | 0.139 | 0.001 | 6.79e-01 |
Depression | LDpred1.10FCVal | LDpred2.Inf | 0.143 | 0.143 | 0.000 | 0.7886043 | 0.140 | 0.139 | 0.002 | 3.44e-01 |
Depression | PRScs.PseudoVal | PRScs.MultiPRS | 0.139 | 0.142 | -0.004 | 0.6102773 | 0.139 | 0.141 | -0.003 | 2.31e-01 |
Depression | LDpred2.MultiPRS | PRScs.MultiPRS | 0.145 | 0.142 | 0.003 | 0.6505976 | 0.145 | 0.141 | 0.004 | 1.09e-01 |
Depression | LDpred2.Inf | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9296954 | 0.139 | 0.141 | -0.003 | 3.50e-01 |
Depression | pT+clump.10FCVal | PRScs.MultiPRS | 0.120 | 0.142 | -0.022 | 0.0015242 | 0.118 | 0.141 | -0.024 | 1.65e-04 |
Depression | SBayesR.PseudoVal | PRScs.MultiPRS | 0.113 | 0.142 | -0.030 | 0.0000216 | 0.108 | 0.141 | -0.033 | 1.95e-06 |
Depression | LDpred2.PseudoVal | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.8934491 | 0.139 | 0.141 | -0.003 | 3.45e-01 |
Depression | LDpred2.10FCVal | PRScs.MultiPRS | 0.146 | 0.142 | 0.003 | 0.6196987 | 0.144 | 0.141 | 0.003 | 2.94e-01 |
Depression | PRScs.MultiPRS | PRScs.MultiPRS | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.141 | 0.141 | 0.000 | 1.00e+00 |
Depression | LDpred1.MultiPRS | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.8769976 | 0.139 | 0.141 | -0.002 | 4.39e-01 |
Depression | pT+clump.MultiPRS | PRScs.MultiPRS | 0.126 | 0.142 | -0.016 | 0.0209919 | 0.127 | 0.141 | -0.014 | 7.98e-03 |
Depression | All.MultiPRS | PRScs.MultiPRS | 0.150 | 0.142 | 0.008 | 0.2764875 | 0.149 | 0.141 | 0.008 | 1.08e-02 |
Depression | lassosum.PseudoVal | PRScs.MultiPRS | 0.081 | 0.142 | -0.061 | 0.0000000 | 0.093 | 0.141 | -0.049 | 3.36e-07 |
Depression | PRScs.10FCVal | PRScs.MultiPRS | 0.141 | 0.142 | -0.002 | 0.8288208 | 0.139 | 0.141 | -0.002 | 1.62e-01 |
Depression | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.149 | 0.142 | 0.007 | 0.3155213 | 0.146 | 0.141 | 0.004 | 2.79e-01 |
Depression | lassosum.MultiPRS | PRScs.MultiPRS | 0.144 | 0.142 | 0.001 | 0.2882465 | 0.144 | 0.141 | 0.002 | 3.95e-01 |
Depression | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.149 | 0.142 | 0.007 | 0.2963370 | 0.149 | 0.141 | 0.007 | 3.40e-02 |
Depression | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.141 | 0.142 | -0.001 | 0.8768996 | 0.140 | 0.141 | -0.001 | 6.67e-01 |
Depression | LDpred1.10FCVal | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9002594 | 0.140 | 0.141 | -0.001 | 6.91e-01 |
Depression | SBLUP.Inf | PRScs.MultiPRS | 0.143 | 0.142 | 0.000 | 0.9649851 | 0.139 | 0.141 | -0.002 | 5.00e-01 |
Depression | lassosum.10FCVal | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9050654 | 0.144 | 0.141 | 0.003 | 3.68e-01 |
Depression | LDpred1.Inf | PRScs.MultiPRS | 0.143 | 0.142 | 0.001 | 0.8678224 | 0.138 | 0.141 | -0.003 | 2.89e-01 |
Depression | MegaPRS.10FCVal | PRScs.MultiPRS | 0.149 | 0.142 | 0.007 | 0.3048922 | 0.148 | 0.141 | 0.006 | 7.72e-02 |
Depression | PRScs.10FCVal | PRScs.10FCVal | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | pT+clump.MultiPRS | PRScs.10FCVal | 0.126 | 0.141 | -0.015 | 0.0371023 | 0.127 | 0.139 | -0.012 | 3.68e-02 |
Depression | SBayesR.PseudoVal | PRScs.10FCVal | 0.113 | 0.141 | -0.028 | 0.0000000 | 0.108 | 0.139 | -0.031 | 8.48e-06 |
Depression | pT+clump.10FCVal | PRScs.10FCVal | 0.120 | 0.141 | -0.021 | 0.0000000 | 0.118 | 0.139 | -0.022 | 1.64e-03 |
Depression | LDpred2.MultiPRS | PRScs.10FCVal | 0.145 | 0.141 | 0.005 | 0.5028242 | 0.145 | 0.139 | 0.006 | 4.69e-02 |
Depression | LDpred2.10FCVal | PRScs.10FCVal | 0.146 | 0.141 | 0.005 | 0.0007375 | 0.144 | 0.139 | 0.004 | 1.30e-01 |
Depression | SBLUP.Inf | PRScs.10FCVal | 0.143 | 0.141 | 0.002 | 0.3228115 | 0.139 | 0.139 | 0.000 | 9.98e-01 |
Depression | PRScs.PseudoVal | PRScs.10FCVal | 0.139 | 0.141 | -0.002 | 0.1696753 | 0.139 | 0.139 | -0.001 | 7.49e-01 |
Depression | LDpred2.PseudoVal | PRScs.10FCVal | 0.143 | 0.141 | 0.002 | 0.1795329 | 0.139 | 0.139 | -0.001 | 8.00e-01 |
Depression | LDpred2.Inf | PRScs.10FCVal | 0.143 | 0.141 | 0.002 | 0.2712830 | 0.139 | 0.139 | -0.001 | 8.04e-01 |
Depression | LDpred1.Inf | PRScs.10FCVal | 0.143 | 0.141 | 0.003 | 0.1535267 | 0.138 | 0.139 | -0.001 | 7.41e-01 |
Depression | MegaPRS.MultiPRS | PRScs.10FCVal | 0.149 | 0.141 | 0.009 | 0.2064243 | 0.149 | 0.139 | 0.009 | 1.76e-02 |
Depression | PRScs.MultiPRS | PRScs.10FCVal | 0.142 | 0.141 | 0.002 | 0.8288208 | 0.141 | 0.139 | 0.002 | 1.62e-01 |
Depression | lassosum.MultiPRS | PRScs.10FCVal | 0.144 | 0.141 | 0.003 | 0.6769963 | 0.144 | 0.139 | 0.004 | 2.01e-01 |
Depression | DBSLMM.PseudoVal | PRScs.10FCVal | 0.141 | 0.141 | 0.000 | 0.8086344 | 0.140 | 0.139 | 0.001 | 8.48e-01 |
Depression | MegaPRS.10FCVal | PRScs.10FCVal | 0.149 | 0.141 | 0.009 | 0.0000208 | 0.148 | 0.139 | 0.008 | 4.75e-02 |
Depression | MegaPRS.PseudoVal | PRScs.10FCVal | 0.149 | 0.141 | 0.008 | 0.0000477 | 0.146 | 0.139 | 0.006 | 1.48e-01 |
Depression | lassosum.10FCVal | PRScs.10FCVal | 0.143 | 0.141 | 0.002 | 0.1844118 | 0.144 | 0.139 | 0.004 | 2.05e-01 |
Depression | All.MultiPRS | PRScs.10FCVal | 0.150 | 0.141 | 0.009 | 0.1930680 | 0.149 | 0.139 | 0.010 | 5.71e-03 |
Depression | lassosum.PseudoVal | PRScs.10FCVal | 0.081 | 0.141 | -0.059 | 0.0000000 | 0.093 | 0.139 | -0.047 | 3.11e-07 |
Depression | LDpred1.MultiPRS | PRScs.10FCVal | 0.143 | 0.141 | 0.003 | 0.7096184 | 0.139 | 0.139 | 0.000 | 9.60e-01 |
Depression | LDpred1.10FCVal | PRScs.10FCVal | 0.143 | 0.141 | 0.002 | 0.1562502 | 0.140 | 0.139 | 0.001 | 7.84e-01 |
Depression | LDpred2.MultiPRS | PRScs.PseudoVal | 0.145 | 0.139 | 0.007 | 0.3354101 | 0.145 | 0.139 | 0.007 | 1.84e-02 |
Depression | PRScs.10FCVal | PRScs.PseudoVal | 0.141 | 0.139 | 0.002 | 0.1696753 | 0.139 | 0.139 | 0.001 | 7.49e-01 |
Depression | pT+clump.10FCVal | PRScs.PseudoVal | 0.120 | 0.139 | -0.019 | 0.0000000 | 0.118 | 0.139 | -0.021 | 2.43e-03 |
Depression | LDpred2.PseudoVal | PRScs.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0105725 | 0.139 | 0.139 | 0.000 | 9.95e-01 |
Depression | LDpred2.Inf | PRScs.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0244181 | 0.139 | 0.139 | 0.000 | 9.97e-01 |
Depression | pT+clump.MultiPRS | PRScs.PseudoVal | 0.126 | 0.139 | -0.012 | 0.0730203 | 0.127 | 0.139 | -0.011 | 5.35e-02 |
Depression | PRScs.PseudoVal | PRScs.PseudoVal | 0.139 | 0.139 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | SBayesR.PseudoVal | PRScs.PseudoVal | 0.113 | 0.139 | -0.026 | 0.0000000 | 0.108 | 0.139 | -0.030 | 1.56e-05 |
Depression | lassosum.MultiPRS | PRScs.PseudoVal | 0.144 | 0.139 | 0.005 | 0.4775015 | 0.144 | 0.139 | 0.005 | 1.11e-01 |
Depression | LDpred2.10FCVal | PRScs.PseudoVal | 0.146 | 0.139 | 0.007 | 0.0000007 | 0.144 | 0.139 | 0.005 | 6.03e-02 |
Depression | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.149 | 0.139 | 0.011 | 0.1195222 | 0.149 | 0.139 | 0.010 | 8.67e-03 |
Depression | LDpred1.MultiPRS | PRScs.PseudoVal | 0.143 | 0.139 | 0.005 | 0.5052236 | 0.139 | 0.139 | 0.001 | 8.22e-01 |
Depression | SBLUP.Inf | PRScs.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0281842 | 0.139 | 0.139 | 0.001 | 7.91e-01 |
Depression | All.MultiPRS | PRScs.PseudoVal | 0.150 | 0.139 | 0.011 | 0.1107916 | 0.149 | 0.139 | 0.011 | 2.40e-03 |
Depression | MegaPRS.10FCVal | PRScs.PseudoVal | 0.149 | 0.139 | 0.011 | 0.0000001 | 0.148 | 0.139 | 0.009 | 2.55e-02 |
Depression | LDpred1.10FCVal | PRScs.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0058243 | 0.140 | 0.139 | 0.002 | 5.68e-01 |
Depression | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.149 | 0.139 | 0.011 | 0.0000003 | 0.146 | 0.139 | 0.007 | 9.56e-02 |
Depression | lassosum.10FCVal | PRScs.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0100419 | 0.144 | 0.139 | 0.005 | 1.16e-01 |
Depression | PRScs.MultiPRS | PRScs.PseudoVal | 0.142 | 0.139 | 0.004 | 0.6102773 | 0.141 | 0.139 | 0.003 | 2.31e-01 |
Depression | LDpred1.Inf | PRScs.PseudoVal | 0.143 | 0.139 | 0.005 | 0.0090516 | 0.138 | 0.139 | 0.000 | 9.37e-01 |
Depression | lassosum.PseudoVal | PRScs.PseudoVal | 0.081 | 0.139 | -0.057 | 0.0000000 | 0.093 | 0.139 | -0.046 | 6.28e-07 |
Depression | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.141 | 0.139 | 0.002 | 0.1471435 | 0.140 | 0.139 | 0.002 | 6.40e-01 |
Depression | All.MultiPRS | pT+clump.MultiPRS | 0.150 | 0.126 | 0.024 | 0.0007008 | 0.149 | 0.127 | 0.022 | 6.90e-05 |
Depression | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.145 | 0.126 | 0.019 | 0.0060760 | 0.145 | 0.127 | 0.018 | 1.15e-03 |
Depression | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0145981 | 0.139 | 0.127 | 0.012 | 2.81e-02 |
Depression | pT+clump.10FCVal | pT+clump.MultiPRS | 0.120 | 0.126 | -0.006 | 0.3840521 | 0.118 | 0.127 | -0.010 | 3.27e-04 |
Depression | lassosum.MultiPRS | pT+clump.MultiPRS | 0.144 | 0.126 | 0.017 | 0.0121025 | 0.144 | 0.127 | 0.016 | 2.44e-03 |
Depression | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0149600 | 0.139 | 0.127 | 0.011 | 5.36e-02 |
Depression | LDpred1.10FCVal | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0152729 | 0.140 | 0.127 | 0.013 | 1.43e-02 |
Depression | SBLUP.Inf | pT+clump.MultiPRS | 0.143 | 0.126 | 0.016 | 0.0190556 | 0.139 | 0.127 | 0.012 | 2.72e-02 |
Depression | lassosum.10FCVal | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0153977 | 0.144 | 0.127 | 0.017 | 1.67e-03 |
Depression | PRScs.MultiPRS | pT+clump.MultiPRS | 0.142 | 0.126 | 0.016 | 0.0209919 | 0.141 | 0.127 | 0.014 | 7.98e-03 |
Depression | LDpred2.10FCVal | pT+clump.MultiPRS | 0.146 | 0.126 | 0.019 | 0.0051594 | 0.144 | 0.127 | 0.017 | 2.32e-03 |
Depression | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.149 | 0.126 | 0.023 | 0.0009545 | 0.146 | 0.127 | 0.018 | 2.59e-03 |
Depression | PRScs.PseudoVal | pT+clump.MultiPRS | 0.139 | 0.126 | 0.012 | 0.0730203 | 0.139 | 0.127 | 0.011 | 5.35e-02 |
Depression | lassosum.PseudoVal | pT+clump.MultiPRS | 0.081 | 0.126 | -0.045 | 0.0000000 | 0.093 | 0.127 | -0.035 | 9.54e-04 |
Depression | LDpred2.Inf | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0169337 | 0.139 | 0.127 | 0.011 | 4.98e-02 |
Depression | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.149 | 0.126 | 0.023 | 0.0008764 | 0.148 | 0.127 | 0.020 | 2.21e-04 |
Depression | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.149 | 0.126 | 0.023 | 0.0008642 | 0.149 | 0.127 | 0.021 | 1.47e-04 |
Depression | PRScs.10FCVal | pT+clump.MultiPRS | 0.141 | 0.126 | 0.015 | 0.0371023 | 0.139 | 0.127 | 0.012 | 3.68e-02 |
Depression | LDpred1.Inf | pT+clump.MultiPRS | 0.143 | 0.126 | 0.017 | 0.0136472 | 0.138 | 0.127 | 0.011 | 5.12e-02 |
Depression | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.126 | 0.126 | 0.000 | 1.0000000 | 0.127 | 0.127 | 0.000 | 1.00e+00 |
Depression | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.141 | 0.126 | 0.015 | 0.0319042 | 0.140 | 0.127 | 0.013 | 2.22e-02 |
Depression | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.113 | 0.126 | -0.014 | 0.0529005 | 0.108 | 0.127 | -0.019 | 1.76e-02 |
Depression | LDpred2.MultiPRS | pT+clump.10FCVal | 0.145 | 0.120 | 0.025 | 0.0002998 | 0.145 | 0.118 | 0.028 | 2.08e-05 |
Depression | LDpred2.PseudoVal | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.139 | 0.118 | 0.021 | 9.00e-04 |
Depression | pT+clump.MultiPRS | pT+clump.10FCVal | 0.126 | 0.120 | 0.006 | 0.3840521 | 0.127 | 0.118 | 0.010 | 3.27e-04 |
Depression | SBLUP.Inf | pT+clump.10FCVal | 0.143 | 0.120 | 0.022 | 0.0000000 | 0.139 | 0.118 | 0.022 | 2.20e-04 |
Depression | PRScs.PseudoVal | pT+clump.10FCVal | 0.139 | 0.120 | 0.019 | 0.0000000 | 0.139 | 0.118 | 0.021 | 2.43e-03 |
Depression | PRScs.MultiPRS | pT+clump.10FCVal | 0.142 | 0.120 | 0.022 | 0.0015242 | 0.141 | 0.118 | 0.024 | 1.65e-04 |
Depression | LDpred2.Inf | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.139 | 0.118 | 0.021 | 6.17e-04 |
Depression | SBayesR.PseudoVal | pT+clump.10FCVal | 0.113 | 0.120 | -0.007 | 0.0907114 | 0.108 | 0.118 | -0.009 | 2.85e-01 |
Depression | pT+clump.10FCVal | pT+clump.10FCVal | 0.120 | 0.120 | 0.000 | 1.0000000 | 0.118 | 0.118 | 0.000 | 1.00e+00 |
Depression | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.149 | 0.120 | 0.029 | 0.0000000 | 0.146 | 0.118 | 0.028 | 3.01e-05 |
Depression | PRScs.10FCVal | pT+clump.10FCVal | 0.141 | 0.120 | 0.021 | 0.0000000 | 0.139 | 0.118 | 0.022 | 1.64e-03 |
Depression | LDpred2.10FCVal | pT+clump.10FCVal | 0.146 | 0.120 | 0.026 | 0.0000000 | 0.144 | 0.118 | 0.026 | 4.47e-05 |
Depression | MegaPRS.10FCVal | pT+clump.10FCVal | 0.149 | 0.120 | 0.029 | 0.0000000 | 0.148 | 0.118 | 0.030 | 1.10e-06 |
Depression | LDpred1.MultiPRS | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0008765 | 0.139 | 0.118 | 0.022 | 3.17e-04 |
Depression | lassosum.10FCVal | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.144 | 0.118 | 0.026 | 2.00e-05 |
Depression | All.MultiPRS | pT+clump.10FCVal | 0.150 | 0.120 | 0.030 | 0.0000200 | 0.149 | 0.118 | 0.032 | 7.78e-07 |
Depression | LDpred1.Inf | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.138 | 0.118 | 0.021 | 6.63e-04 |
Depression | LDpred1.10FCVal | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.140 | 0.118 | 0.023 | 1.47e-04 |
Depression | lassosum.MultiPRS | pT+clump.10FCVal | 0.144 | 0.120 | 0.024 | 0.0007511 | 0.144 | 0.118 | 0.026 | 3.61e-05 |
Depression | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.141 | 0.120 | 0.021 | 0.0000000 | 0.140 | 0.118 | 0.022 | 3.52e-04 |
Depression | lassosum.PseudoVal | pT+clump.10FCVal | 0.081 | 0.120 | -0.039 | 0.0000000 | 0.093 | 0.118 | -0.025 | 3.46e-02 |
Depression | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.149 | 0.120 | 0.029 | 0.0000255 | 0.149 | 0.118 | 0.031 | 1.34e-06 |
Depression | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.113 | 0.113 | 0.000 | 1.0000000 | 0.108 | 0.108 | 0.000 | 1.00e+00 |
Depression | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.145 | 0.113 | 0.033 | 0.0000026 | 0.145 | 0.108 | 0.037 | 5.17e-08 |
Depression | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.143 | 0.113 | 0.031 | 0.0000113 | 0.139 | 0.108 | 0.031 | 1.63e-05 |
Depression | PRScs.PseudoVal | SBayesR.PseudoVal | 0.139 | 0.113 | 0.026 | 0.0000000 | 0.139 | 0.108 | 0.030 | 1.56e-05 |
Depression | All.MultiPRS | SBayesR.PseudoVal | 0.150 | 0.113 | 0.037 | 0.0000001 | 0.149 | 0.108 | 0.041 | 3.20e-09 |
Depression | PRScs.MultiPRS | SBayesR.PseudoVal | 0.142 | 0.113 | 0.030 | 0.0000216 | 0.141 | 0.108 | 0.033 | 1.95e-06 |
Depression | LDpred2.10FCVal | SBayesR.PseudoVal | 0.146 | 0.113 | 0.033 | 0.0000000 | 0.144 | 0.108 | 0.036 | 1.34e-07 |
Depression | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.149 | 0.113 | 0.037 | 0.0000000 | 0.146 | 0.108 | 0.037 | 2.56e-07 |
Depression | pT+clump.10FCVal | SBayesR.PseudoVal | 0.120 | 0.113 | 0.007 | 0.0907114 | 0.118 | 0.108 | 0.009 | 2.85e-01 |
Depression | lassosum.PseudoVal | SBayesR.PseudoVal | 0.081 | 0.113 | -0.031 | 0.0000000 | 0.093 | 0.108 | -0.015 | 1.27e-01 |
Depression | LDpred2.Inf | SBayesR.PseudoVal | 0.143 | 0.113 | 0.030 | 0.0000000 | 0.139 | 0.108 | 0.030 | 3.32e-05 |
Depression | PRScs.10FCVal | SBayesR.PseudoVal | 0.141 | 0.113 | 0.028 | 0.0000000 | 0.139 | 0.108 | 0.031 | 8.48e-06 |
Depression | SBLUP.Inf | SBayesR.PseudoVal | 0.143 | 0.113 | 0.030 | 0.0000000 | 0.139 | 0.108 | 0.031 | 1.70e-05 |
Depression | lassosum.MultiPRS | SBayesR.PseudoVal | 0.144 | 0.113 | 0.031 | 0.0000087 | 0.144 | 0.108 | 0.035 | 5.84e-07 |
Depression | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.143 | 0.113 | 0.030 | 0.0000000 | 0.139 | 0.108 | 0.030 | 2.61e-05 |
Depression | lassosum.10FCVal | SBayesR.PseudoVal | 0.143 | 0.113 | 0.030 | 0.0000000 | 0.144 | 0.108 | 0.036 | 6.11e-07 |
Depression | LDpred1.Inf | SBayesR.PseudoVal | 0.143 | 0.113 | 0.031 | 0.0000000 | 0.138 | 0.108 | 0.030 | 3.90e-05 |
Depression | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.126 | 0.113 | 0.014 | 0.0529005 | 0.127 | 0.108 | 0.019 | 1.76e-02 |
Depression | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.141 | 0.113 | 0.028 | 0.0000000 | 0.140 | 0.108 | 0.032 | 1.06e-05 |
Depression | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.149 | 0.113 | 0.037 | 0.0000001 | 0.149 | 0.108 | 0.040 | 1.04e-08 |
Depression | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.149 | 0.113 | 0.037 | 0.0000000 | 0.148 | 0.108 | 0.039 | 4.31e-08 |
Depression | LDpred1.10FCVal | SBayesR.PseudoVal | 0.143 | 0.113 | 0.030 | 0.0000000 | 0.140 | 0.108 | 0.032 | 6.28e-06 |
Depression | All.MultiPRS | SBLUP.Inf | 0.150 | 0.143 | 0.007 | 0.2976569 | 0.149 | 0.139 | 0.010 | 1.36e-03 |
Depression | LDpred2.MultiPRS | SBLUP.Inf | 0.145 | 0.143 | 0.003 | 0.6818618 | 0.145 | 0.139 | 0.006 | 1.95e-02 |
Depression | PRScs.PseudoVal | SBLUP.Inf | 0.139 | 0.143 | -0.004 | 0.0281842 | 0.139 | 0.139 | -0.001 | 7.91e-01 |
Depression | lassosum.PseudoVal | SBLUP.Inf | 0.081 | 0.143 | -0.061 | 0.0000000 | 0.093 | 0.139 | -0.047 | 1.63e-05 |
Depression | LDpred2.Inf | SBLUP.Inf | 0.143 | 0.143 | 0.000 | 0.6227073 | 0.139 | 0.139 | -0.001 | 4.52e-01 |
Depression | MegaPRS.PseudoVal | SBLUP.Inf | 0.149 | 0.143 | 0.007 | 0.0000334 | 0.146 | 0.139 | 0.006 | 6.51e-02 |
Depression | pT+clump.10FCVal | SBLUP.Inf | 0.120 | 0.143 | -0.022 | 0.0000000 | 0.118 | 0.139 | -0.022 | 2.20e-04 |
Depression | lassosum.MultiPRS | SBLUP.Inf | 0.144 | 0.143 | 0.001 | 0.8755041 | 0.144 | 0.139 | 0.004 | 1.72e-01 |
Depression | LDpred2.PseudoVal | SBLUP.Inf | 0.143 | 0.143 | 0.001 | 0.3315923 | 0.139 | 0.139 | -0.001 | 4.84e-01 |
Depression | LDpred1.MultiPRS | SBLUP.Inf | 0.143 | 0.143 | 0.001 | 0.9111335 | 0.139 | 0.139 | 0.000 | 9.04e-01 |
Depression | MegaPRS.10FCVal | SBLUP.Inf | 0.149 | 0.143 | 0.007 | 0.0000050 | 0.148 | 0.139 | 0.008 | 7.92e-03 |
Depression | pT+clump.MultiPRS | SBLUP.Inf | 0.126 | 0.143 | -0.016 | 0.0190556 | 0.127 | 0.139 | -0.012 | 2.72e-02 |
Depression | DBSLMM.PseudoVal | SBLUP.Inf | 0.141 | 0.143 | -0.001 | 0.3056690 | 0.140 | 0.139 | 0.001 | 8.02e-01 |
Depression | LDpred2.10FCVal | SBLUP.Inf | 0.146 | 0.143 | 0.003 | 0.0122372 | 0.144 | 0.139 | 0.004 | 8.40e-02 |
Depression | LDpred1.Inf | SBLUP.Inf | 0.143 | 0.143 | 0.001 | 0.2278527 | 0.138 | 0.139 | -0.001 | 3.88e-01 |
Depression | SBayesR.PseudoVal | SBLUP.Inf | 0.113 | 0.143 | -0.030 | 0.0000000 | 0.108 | 0.139 | -0.031 | 1.70e-05 |
Depression | SBLUP.Inf | SBLUP.Inf | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | MegaPRS.MultiPRS | SBLUP.Inf | 0.149 | 0.143 | 0.007 | 0.3157922 | 0.149 | 0.139 | 0.009 | 4.00e-03 |
Depression | PRScs.10FCVal | SBLUP.Inf | 0.141 | 0.143 | -0.002 | 0.3228115 | 0.139 | 0.139 | 0.000 | 9.98e-01 |
Depression | LDpred1.10FCVal | SBLUP.Inf | 0.143 | 0.143 | 0.001 | 0.4781509 | 0.140 | 0.139 | 0.001 | 5.80e-01 |
Depression | lassosum.10FCVal | SBLUP.Inf | 0.143 | 0.143 | 0.001 | 0.7472157 | 0.144 | 0.139 | 0.004 | 1.76e-01 |
Depression | PRScs.MultiPRS | SBLUP.Inf | 0.142 | 0.143 | 0.000 | 0.9649851 | 0.141 | 0.139 | 0.002 | 5.00e-01 |
Intelligence | DBSLMM.PseudoVal | All.MultiPRS | 0.089 | 0.104 | -0.016 | 0.0262371 | 0.079 | 0.098 | -0.018 | 1.26e-04 |
Intelligence | SBayesR.PseudoVal | All.MultiPRS | 0.072 | 0.104 | -0.032 | 0.0000062 | 0.065 | 0.098 | -0.033 | 5.00e-05 |
Intelligence | lassosum.PseudoVal | All.MultiPRS | 0.064 | 0.104 | -0.040 | 0.0000000 | 0.059 | 0.098 | -0.039 | 2.95e-06 |
Intelligence | LDpred2.10FCVal | All.MultiPRS | 0.103 | 0.104 | -0.001 | 0.8539538 | 0.093 | 0.098 | -0.005 | 2.22e-02 |
Intelligence | MegaPRS.MultiPRS | All.MultiPRS | 0.103 | 0.104 | -0.001 | 0.9052761 | 0.096 | 0.098 | -0.002 | 1.45e-01 |
Intelligence | PRScs.10FCVal | All.MultiPRS | 0.099 | 0.104 | -0.005 | 0.4985420 | 0.089 | 0.098 | -0.008 | 1.41e-02 |
Intelligence | LDpred2.Inf | All.MultiPRS | 0.101 | 0.104 | -0.004 | 0.6021246 | 0.093 | 0.098 | -0.005 | 7.39e-02 |
Intelligence | MegaPRS.PseudoVal | All.MultiPRS | 0.103 | 0.104 | -0.001 | 0.8521907 | 0.093 | 0.098 | -0.005 | 1.48e-02 |
Intelligence | pT+clump.MultiPRS | All.MultiPRS | 0.086 | 0.104 | -0.018 | 0.0115628 | 0.080 | 0.098 | -0.018 | 1.97e-03 |
Intelligence | lassosum.10FCVal | All.MultiPRS | 0.099 | 0.104 | -0.005 | 0.4527245 | 0.093 | 0.098 | -0.005 | 1.69e-01 |
Intelligence | PRScs.MultiPRS | All.MultiPRS | 0.100 | 0.104 | -0.004 | 0.5795894 | 0.093 | 0.098 | -0.005 | 8.41e-02 |
Intelligence | LDpred1.Inf | All.MultiPRS | 0.100 | 0.104 | -0.004 | 0.5307357 | 0.092 | 0.098 | -0.006 | 3.85e-02 |
Intelligence | MegaPRS.10FCVal | All.MultiPRS | 0.103 | 0.104 | -0.001 | 0.9103906 | 0.095 | 0.098 | -0.003 | 1.45e-01 |
Intelligence | PRScs.PseudoVal | All.MultiPRS | 0.099 | 0.104 | -0.006 | 0.4158817 | 0.092 | 0.098 | -0.005 | 1.01e-01 |
Intelligence | All.MultiPRS | All.MultiPRS | 0.104 | 0.104 | 0.000 | 1.0000000 | 0.098 | 0.098 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.MultiPRS | All.MultiPRS | 0.103 | 0.104 | -0.002 | 0.8061968 | 0.094 | 0.098 | -0.004 | 9.62e-02 |
Intelligence | LDpred1.MultiPRS | All.MultiPRS | 0.101 | 0.104 | -0.003 | 0.6725237 | 0.093 | 0.098 | -0.005 | 8.14e-02 |
Intelligence | pT+clump.10FCVal | All.MultiPRS | 0.084 | 0.104 | -0.020 | 0.0037969 | 0.074 | 0.098 | -0.024 | 2.52e-04 |
Intelligence | lassosum.MultiPRS | All.MultiPRS | 0.102 | 0.104 | -0.002 | 0.7646694 | 0.097 | 0.098 | -0.001 | 6.49e-01 |
Intelligence | LDpred2.PseudoVal | All.MultiPRS | 0.100 | 0.104 | -0.004 | 0.5817891 | 0.093 | 0.098 | -0.005 | 5.39e-02 |
Intelligence | LDpred1.10FCVal | All.MultiPRS | 0.102 | 0.104 | -0.002 | 0.7364952 | 0.092 | 0.098 | -0.006 | 2.83e-02 |
Intelligence | SBLUP.Inf | All.MultiPRS | 0.100 | 0.104 | -0.004 | 0.5834973 | 0.092 | 0.098 | -0.005 | 5.63e-02 |
Intelligence | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.099 | 0.089 | 0.010 | 0.0001361 | 0.092 | 0.079 | 0.013 | 1.24e-02 |
Intelligence | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.072 | 0.089 | -0.016 | 0.0002037 | 0.065 | 0.079 | -0.015 | 9.17e-02 |
Intelligence | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.103 | 0.089 | 0.014 | 0.0480888 | 0.094 | 0.079 | 0.015 | 1.08e-03 |
Intelligence | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.100 | 0.089 | 0.012 | 0.0948437 | 0.093 | 0.079 | 0.014 | 4.48e-03 |
Intelligence | LDpred1.Inf | DBSLMM.PseudoVal | 0.100 | 0.089 | 0.011 | 0.0000174 | 0.092 | 0.079 | 0.012 | 1.96e-02 |
Intelligence | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.086 | 0.089 | -0.002 | 0.7625962 | 0.080 | 0.079 | 0.000 | 9.54e-01 |
Intelligence | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.103 | 0.089 | 0.014 | 0.0000000 | 0.093 | 0.079 | 0.014 | 3.02e-03 |
Intelligence | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.064 | 0.089 | -0.025 | 0.0000001 | 0.059 | 0.079 | -0.021 | 2.21e-02 |
Intelligence | LDpred2.Inf | DBSLMM.PseudoVal | 0.101 | 0.089 | 0.012 | 0.0000018 | 0.093 | 0.079 | 0.013 | 7.09e-03 |
Intelligence | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.103 | 0.089 | 0.015 | 0.0000000 | 0.095 | 0.079 | 0.016 | 3.39e-03 |
Intelligence | All.MultiPRS | DBSLMM.PseudoVal | 0.104 | 0.089 | 0.016 | 0.0262371 | 0.098 | 0.079 | 0.018 | 1.26e-04 |
Intelligence | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.102 | 0.089 | 0.014 | 0.0546581 | 0.097 | 0.079 | 0.017 | 4.05e-04 |
Intelligence | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.089 | 0.012 | 0.0000022 | 0.093 | 0.079 | 0.013 | 7.90e-03 |
Intelligence | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.101 | 0.089 | 0.013 | 0.0718077 | 0.093 | 0.079 | 0.014 | 6.95e-03 |
Intelligence | SBLUP.Inf | DBSLMM.PseudoVal | 0.100 | 0.089 | 0.012 | 0.0000022 | 0.092 | 0.079 | 0.013 | 8.58e-03 |
Intelligence | lassosum.10FCVal | DBSLMM.PseudoVal | 0.099 | 0.089 | 0.010 | 0.0002997 | 0.093 | 0.079 | 0.014 | 1.49e-02 |
Intelligence | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.089 | 0.089 | 0.000 | 1.0000000 | 0.079 | 0.079 | 0.000 | 1.00e+00 |
Intelligence | PRScs.10FCVal | DBSLMM.PseudoVal | 0.099 | 0.089 | 0.011 | 0.0000301 | 0.089 | 0.079 | 0.010 | 5.47e-02 |
Intelligence | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.102 | 0.089 | 0.013 | 0.0000001 | 0.092 | 0.079 | 0.013 | 1.10e-02 |
Intelligence | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.084 | 0.089 | -0.005 | 0.2179892 | 0.074 | 0.079 | -0.006 | 4.62e-01 |
Intelligence | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.103 | 0.089 | 0.015 | 0.0357208 | 0.096 | 0.079 | 0.016 | 2.24e-03 |
Intelligence | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.103 | 0.089 | 0.014 | 0.0000000 | 0.093 | 0.079 | 0.014 | 8.77e-03 |
Intelligence | LDpred2.MultiPRS | lassosum.MultiPRS | 0.103 | 0.102 | 0.000 | 0.7645849 | 0.094 | 0.097 | -0.003 | 2.60e-01 |
Intelligence | LDpred2.PseudoVal | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.8020635 | 0.093 | 0.097 | -0.004 | 1.72e-01 |
Intelligence | PRScs.MultiPRS | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.2113293 | 0.093 | 0.097 | -0.004 | 1.71e-01 |
Intelligence | LDpred2.Inf | lassosum.MultiPRS | 0.101 | 0.102 | -0.002 | 0.8247532 | 0.093 | 0.097 | -0.004 | 2.08e-01 |
Intelligence | PRScs.PseudoVal | lassosum.MultiPRS | 0.099 | 0.102 | -0.004 | 0.6080280 | 0.092 | 0.097 | -0.004 | 1.92e-01 |
Intelligence | pT+clump.MultiPRS | lassosum.MultiPRS | 0.086 | 0.102 | -0.016 | 0.0256747 | 0.080 | 0.097 | -0.017 | 4.08e-03 |
Intelligence | PRScs.10FCVal | lassosum.MultiPRS | 0.099 | 0.102 | -0.003 | 0.7070240 | 0.089 | 0.097 | -0.007 | 3.31e-02 |
Intelligence | LDpred2.10FCVal | lassosum.MultiPRS | 0.103 | 0.102 | 0.001 | 0.9086588 | 0.093 | 0.097 | -0.004 | 1.08e-01 |
Intelligence | pT+clump.10FCVal | lassosum.MultiPRS | 0.084 | 0.102 | -0.018 | 0.0095765 | 0.074 | 0.097 | -0.023 | 5.90e-04 |
Intelligence | SBayesR.PseudoVal | lassosum.MultiPRS | 0.072 | 0.102 | -0.030 | 0.0000260 | 0.065 | 0.097 | -0.032 | 1.03e-04 |
Intelligence | lassosum.10FCVal | lassosum.MultiPRS | 0.099 | 0.102 | -0.003 | 0.6521995 | 0.093 | 0.097 | -0.004 | 2.04e-01 |
Intelligence | All.MultiPRS | lassosum.MultiPRS | 0.104 | 0.102 | 0.002 | 0.7646694 | 0.098 | 0.097 | 0.001 | 6.49e-01 |
Intelligence | SBLUP.Inf | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.8037983 | 0.092 | 0.097 | -0.004 | 1.66e-01 |
Intelligence | LDpred1.MultiPRS | lassosum.MultiPRS | 0.101 | 0.102 | -0.001 | 0.9029447 | 0.093 | 0.097 | -0.004 | 2.38e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.103 | 0.102 | 0.001 | 0.9107200 | 0.093 | 0.097 | -0.004 | 2.61e-01 |
Intelligence | lassosum.MultiPRS | lassosum.MultiPRS | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.097 | 0.097 | 0.000 | 1.00e+00 |
Intelligence | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.089 | 0.102 | -0.014 | 0.0546581 | 0.079 | 0.097 | -0.017 | 4.05e-04 |
Intelligence | LDpred1.10FCVal | lassosum.MultiPRS | 0.102 | 0.102 | 0.000 | 0.9703808 | 0.092 | 0.097 | -0.005 | 1.22e-01 |
Intelligence | MegaPRS.10FCVal | lassosum.MultiPRS | 0.103 | 0.102 | 0.001 | 0.8527289 | 0.095 | 0.097 | -0.002 | 6.06e-01 |
Intelligence | LDpred1.Inf | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.7440509 | 0.092 | 0.097 | -0.005 | 1.32e-01 |
Intelligence | lassosum.PseudoVal | lassosum.MultiPRS | 0.064 | 0.102 | -0.038 | 0.0000001 | 0.059 | 0.097 | -0.038 | 4.70e-06 |
Intelligence | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.103 | 0.102 | 0.001 | 0.8571508 | 0.096 | 0.097 | -0.001 | 6.87e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.103 | 0.064 | 0.039 | 0.0000000 | 0.093 | 0.059 | 0.034 | 4.94e-05 |
Intelligence | PRScs.MultiPRS | lassosum.PseudoVal | 0.100 | 0.064 | 0.037 | 0.0000002 | 0.093 | 0.059 | 0.034 | 2.23e-05 |
Intelligence | LDpred1.Inf | lassosum.PseudoVal | 0.100 | 0.064 | 0.036 | 0.0000000 | 0.092 | 0.059 | 0.033 | 7.86e-04 |
Intelligence | pT+clump.MultiPRS | lassosum.PseudoVal | 0.086 | 0.064 | 0.023 | 0.0013231 | 0.080 | 0.059 | 0.021 | 1.36e-02 |
Intelligence | All.MultiPRS | lassosum.PseudoVal | 0.104 | 0.064 | 0.040 | 0.0000000 | 0.098 | 0.059 | 0.039 | 2.95e-06 |
Intelligence | LDpred2.MultiPRS | lassosum.PseudoVal | 0.103 | 0.064 | 0.039 | 0.0000000 | 0.094 | 0.059 | 0.036 | 2.02e-05 |
Intelligence | SBayesR.PseudoVal | lassosum.PseudoVal | 0.072 | 0.064 | 0.009 | 0.0799085 | 0.065 | 0.059 | 0.006 | 5.42e-01 |
Intelligence | lassosum.MultiPRS | lassosum.PseudoVal | 0.102 | 0.064 | 0.038 | 0.0000001 | 0.097 | 0.059 | 0.038 | 4.70e-06 |
Intelligence | LDpred2.PseudoVal | lassosum.PseudoVal | 0.100 | 0.064 | 0.037 | 0.0000000 | 0.093 | 0.059 | 0.034 | 4.57e-04 |
Intelligence | LDpred1.10FCVal | lassosum.PseudoVal | 0.102 | 0.064 | 0.038 | 0.0000000 | 0.092 | 0.059 | 0.034 | 9.94e-05 |
Intelligence | SBLUP.Inf | lassosum.PseudoVal | 0.100 | 0.064 | 0.037 | 0.0000000 | 0.092 | 0.059 | 0.034 | 5.20e-04 |
Intelligence | lassosum.10FCVal | lassosum.PseudoVal | 0.099 | 0.064 | 0.035 | 0.0000000 | 0.093 | 0.059 | 0.035 | 7.70e-05 |
Intelligence | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.089 | 0.064 | 0.025 | 0.0000001 | 0.079 | 0.059 | 0.021 | 2.21e-02 |
Intelligence | LDpred2.10FCVal | lassosum.PseudoVal | 0.103 | 0.064 | 0.039 | 0.0000000 | 0.093 | 0.059 | 0.034 | 2.88e-05 |
Intelligence | MegaPRS.10FCVal | lassosum.PseudoVal | 0.103 | 0.064 | 0.040 | 0.0000000 | 0.095 | 0.059 | 0.037 | 2.65e-05 |
Intelligence | PRScs.PseudoVal | lassosum.PseudoVal | 0.099 | 0.064 | 0.035 | 0.0000000 | 0.092 | 0.059 | 0.034 | 5.12e-05 |
Intelligence | lassosum.PseudoVal | lassosum.PseudoVal | 0.064 | 0.064 | 0.000 | 1.0000000 | 0.059 | 0.059 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.Inf | lassosum.PseudoVal | 0.101 | 0.064 | 0.037 | 0.0000000 | 0.093 | 0.059 | 0.034 | 4.46e-04 |
Intelligence | LDpred1.MultiPRS | lassosum.PseudoVal | 0.101 | 0.064 | 0.037 | 0.0000001 | 0.093 | 0.059 | 0.035 | 1.04e-04 |
Intelligence | pT+clump.10FCVal | lassosum.PseudoVal | 0.084 | 0.064 | 0.020 | 0.0001393 | 0.074 | 0.059 | 0.015 | 1.38e-01 |
Intelligence | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.103 | 0.064 | 0.040 | 0.0000000 | 0.096 | 0.059 | 0.037 | 2.41e-05 |
Intelligence | PRScs.10FCVal | lassosum.PseudoVal | 0.099 | 0.064 | 0.036 | 0.0000000 | 0.089 | 0.059 | 0.031 | 2.19e-04 |
Intelligence | MegaPRS.MultiPRS | lassosum.10FCVal | 0.103 | 0.099 | 0.004 | 0.5278900 | 0.096 | 0.093 | 0.002 | 5.13e-01 |
Intelligence | PRScs.10FCVal | lassosum.10FCVal | 0.099 | 0.099 | 0.001 | 0.7789184 | 0.089 | 0.093 | -0.004 | 3.10e-01 |
Intelligence | lassosum.MultiPRS | lassosum.10FCVal | 0.102 | 0.099 | 0.003 | 0.6521995 | 0.097 | 0.093 | 0.004 | 2.04e-01 |
Intelligence | LDpred2.PseudoVal | lassosum.10FCVal | 0.100 | 0.099 | 0.001 | 0.4698139 | 0.093 | 0.093 | -0.001 | 8.65e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.10FCVal | 0.103 | 0.099 | 0.004 | 0.0238562 | 0.093 | 0.093 | 0.000 | 9.63e-01 |
Intelligence | pT+clump.MultiPRS | lassosum.10FCVal | 0.086 | 0.099 | -0.012 | 0.0755128 | 0.080 | 0.093 | -0.013 | 1.31e-02 |
Intelligence | lassosum.10FCVal | lassosum.10FCVal | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | PRScs.MultiPRS | lassosum.10FCVal | 0.100 | 0.099 | 0.001 | 0.8432041 | 0.093 | 0.093 | 0.000 | 9.49e-01 |
Intelligence | LDpred1.Inf | lassosum.10FCVal | 0.100 | 0.099 | 0.001 | 0.6506942 | 0.092 | 0.093 | -0.002 | 6.54e-01 |
Intelligence | SBayesR.PseudoVal | lassosum.10FCVal | 0.072 | 0.099 | -0.026 | 0.0000000 | 0.065 | 0.093 | -0.029 | 6.09e-04 |
Intelligence | PRScs.PseudoVal | lassosum.10FCVal | 0.099 | 0.099 | 0.000 | 0.8119293 | 0.092 | 0.093 | -0.001 | 8.14e-01 |
Intelligence | All.MultiPRS | lassosum.10FCVal | 0.104 | 0.099 | 0.005 | 0.4527245 | 0.098 | 0.093 | 0.005 | 1.69e-01 |
Intelligence | LDpred2.MultiPRS | lassosum.10FCVal | 0.103 | 0.099 | 0.004 | 0.6137051 | 0.094 | 0.093 | 0.001 | 8.00e-01 |
Intelligence | LDpred1.MultiPRS | lassosum.10FCVal | 0.101 | 0.099 | 0.002 | 0.7410623 | 0.093 | 0.093 | 0.000 | 9.73e-01 |
Intelligence | pT+clump.10FCVal | lassosum.10FCVal | 0.084 | 0.099 | -0.015 | 0.0000004 | 0.074 | 0.093 | -0.019 | 9.65e-04 |
Intelligence | DBSLMM.PseudoVal | lassosum.10FCVal | 0.089 | 0.099 | -0.010 | 0.0002997 | 0.079 | 0.093 | -0.014 | 1.49e-02 |
Intelligence | LDpred1.10FCVal | lassosum.10FCVal | 0.102 | 0.099 | 0.003 | 0.0713881 | 0.092 | 0.093 | -0.001 | 7.39e-01 |
Intelligence | SBLUP.Inf | lassosum.10FCVal | 0.100 | 0.099 | 0.001 | 0.4256285 | 0.092 | 0.093 | -0.001 | 8.23e-01 |
Intelligence | lassosum.PseudoVal | lassosum.10FCVal | 0.064 | 0.099 | -0.035 | 0.0000000 | 0.059 | 0.093 | -0.035 | 7.70e-05 |
Intelligence | LDpred2.10FCVal | lassosum.10FCVal | 0.103 | 0.099 | 0.004 | 0.0171852 | 0.093 | 0.093 | 0.000 | 9.64e-01 |
Intelligence | MegaPRS.10FCVal | lassosum.10FCVal | 0.103 | 0.099 | 0.004 | 0.0068777 | 0.095 | 0.093 | 0.002 | 5.51e-01 |
Intelligence | LDpred2.Inf | lassosum.10FCVal | 0.101 | 0.099 | 0.002 | 0.3761616 | 0.093 | 0.093 | 0.000 | 9.17e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.072 | 0.103 | -0.031 | 0.0000123 | 0.065 | 0.096 | -0.031 | 2.00e-04 |
Intelligence | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.086 | 0.103 | -0.017 | 0.0158674 | 0.080 | 0.096 | -0.016 | 7.61e-03 |
Intelligence | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9481806 | 0.093 | 0.096 | -0.002 | 4.34e-01 |
Intelligence | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9950833 | 0.095 | 0.096 | 0.000 | 6.48e-01 |
Intelligence | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.099 | 0.103 | -0.005 | 0.4879046 | 0.092 | 0.096 | -0.003 | 4.18e-01 |
Intelligence | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.100 | 0.103 | -0.003 | 0.6649064 | 0.093 | 0.096 | -0.003 | 4.76e-01 |
Intelligence | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.103 | 0.103 | -0.001 | 0.8998737 | 0.094 | 0.096 | -0.001 | 6.51e-01 |
Intelligence | LDpred2.Inf | MegaPRS.MultiPRS | 0.101 | 0.103 | -0.003 | 0.6883114 | 0.093 | 0.096 | -0.003 | 4.19e-01 |
Intelligence | SBLUP.Inf | MegaPRS.MultiPRS | 0.100 | 0.103 | -0.003 | 0.6685759 | 0.092 | 0.096 | -0.003 | 3.53e-01 |
Intelligence | All.MultiPRS | MegaPRS.MultiPRS | 0.104 | 0.103 | 0.001 | 0.9052761 | 0.098 | 0.096 | 0.002 | 1.45e-01 |
Intelligence | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.103 | -0.003 | 0.6669786 | 0.093 | 0.096 | -0.003 | 3.77e-01 |
Intelligence | PRScs.10FCVal | MegaPRS.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5784551 | 0.089 | 0.096 | -0.006 | 1.31e-01 |
Intelligence | LDpred1.Inf | MegaPRS.MultiPRS | 0.100 | 0.103 | -0.004 | 0.6126625 | 0.092 | 0.096 | -0.004 | 2.65e-01 |
Intelligence | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.084 | 0.103 | -0.020 | 0.0056013 | 0.074 | 0.096 | -0.022 | 7.72e-04 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.089 | 0.103 | -0.015 | 0.0357208 | 0.079 | 0.096 | -0.016 | 2.24e-03 |
Intelligence | lassosum.10FCVal | MegaPRS.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5278900 | 0.093 | 0.096 | -0.002 | 5.13e-01 |
Intelligence | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.064 | 0.103 | -0.040 | 0.0000000 | 0.059 | 0.096 | -0.037 | 2.41e-05 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9462559 | 0.093 | 0.096 | -0.002 | 2.48e-02 |
Intelligence | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.101 | 0.103 | -0.002 | 0.7625489 | 0.093 | 0.096 | -0.002 | 4.81e-01 |
Intelligence | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.102 | 0.103 | -0.001 | 0.8571508 | 0.097 | 0.096 | 0.001 | 6.87e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.102 | 0.103 | -0.002 | 0.8282837 | 0.092 | 0.096 | -0.003 | 3.19e-01 |
Intelligence | LDpred2.Inf | MegaPRS.10FCVal | 0.101 | 0.103 | -0.003 | 0.0920763 | 0.093 | 0.095 | -0.002 | 4.96e-01 |
Intelligence | LDpred2.10FCVal | MegaPRS.10FCVal | 0.103 | 0.103 | -0.001 | 0.7546243 | 0.093 | 0.095 | -0.002 | 5.17e-01 |
Intelligence | PRScs.PseudoVal | MegaPRS.10FCVal | 0.099 | 0.103 | -0.005 | 0.0110187 | 0.092 | 0.095 | -0.003 | 4.71e-01 |
Intelligence | All.MultiPRS | MegaPRS.10FCVal | 0.104 | 0.103 | 0.001 | 0.9103906 | 0.098 | 0.095 | 0.003 | 1.45e-01 |
Intelligence | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.103 | 0.103 | -0.001 | 0.8952396 | 0.094 | 0.095 | -0.001 | 7.44e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.072 | 0.103 | -0.031 | 0.0000000 | 0.065 | 0.095 | -0.031 | 2.33e-04 |
Intelligence | PRScs.10FCVal | MegaPRS.10FCVal | 0.099 | 0.103 | -0.004 | 0.0441680 | 0.089 | 0.095 | -0.006 | 1.52e-01 |
Intelligence | pT+clump.10FCVal | MegaPRS.10FCVal | 0.084 | 0.103 | -0.020 | 0.0000000 | 0.074 | 0.095 | -0.021 | 6.00e-04 |
Intelligence | PRScs.MultiPRS | MegaPRS.10FCVal | 0.100 | 0.103 | -0.003 | 0.6609370 | 0.093 | 0.095 | -0.002 | 5.40e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.103 | 0.103 | 0.000 | 0.9950833 | 0.096 | 0.095 | 0.000 | 6.48e-01 |
Intelligence | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.086 | 0.103 | -0.017 | 0.0157555 | 0.080 | 0.095 | -0.015 | 6.91e-03 |
Intelligence | SBLUP.Inf | MegaPRS.10FCVal | 0.100 | 0.103 | -0.003 | 0.0705461 | 0.092 | 0.095 | -0.003 | 4.21e-01 |
Intelligence | lassosum.PseudoVal | MegaPRS.10FCVal | 0.064 | 0.103 | -0.040 | 0.0000000 | 0.059 | 0.095 | -0.037 | 2.65e-05 |
Intelligence | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.103 | -0.003 | 0.0811961 | 0.093 | 0.095 | -0.003 | 4.61e-01 |
Intelligence | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.095 | 0.095 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.Inf | MegaPRS.10FCVal | 0.100 | 0.103 | -0.004 | 0.0492533 | 0.092 | 0.095 | -0.004 | 3.19e-01 |
Intelligence | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.101 | 0.103 | -0.002 | 0.7581138 | 0.093 | 0.095 | -0.002 | 5.49e-01 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.089 | 0.103 | -0.015 | 0.0000000 | 0.079 | 0.095 | -0.016 | 3.39e-03 |
Intelligence | lassosum.MultiPRS | MegaPRS.10FCVal | 0.102 | 0.103 | -0.001 | 0.8527289 | 0.097 | 0.095 | 0.002 | 6.06e-01 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.103 | 0.103 | -0.001 | 0.2560507 | 0.093 | 0.095 | -0.002 | 1.93e-02 |
Intelligence | LDpred1.10FCVal | MegaPRS.10FCVal | 0.102 | 0.103 | -0.002 | 0.3488495 | 0.092 | 0.095 | -0.003 | 3.70e-01 |
Intelligence | lassosum.10FCVal | MegaPRS.10FCVal | 0.099 | 0.103 | -0.004 | 0.0068777 | 0.093 | 0.095 | -0.002 | 5.51e-01 |
Intelligence | PRScs.10FCVal | MegaPRS.PseudoVal | 0.099 | 0.103 | -0.003 | 0.0806580 | 0.089 | 0.093 | -0.004 | 3.65e-01 |
Intelligence | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.086 | 0.103 | -0.016 | 0.0192284 | 0.080 | 0.093 | -0.013 | 1.86e-02 |
Intelligence | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.103 | 0.103 | 0.000 | 0.9913487 | 0.093 | 0.093 | 0.000 | 9.97e-01 |
Intelligence | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.100 | 0.103 | -0.003 | 0.7149956 | 0.093 | 0.093 | 0.000 | 9.90e-01 |
Intelligence | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.103 | 0.103 | 0.000 | 0.9536313 | 0.094 | 0.093 | 0.001 | 7.53e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.072 | 0.103 | -0.030 | 0.0000000 | 0.065 | 0.093 | -0.028 | 5.14e-04 |
Intelligence | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.084 | 0.103 | -0.019 | 0.0000000 | 0.074 | 0.093 | -0.019 | 2.34e-03 |
Intelligence | LDpred2.Inf | MegaPRS.PseudoVal | 0.101 | 0.103 | -0.002 | 0.1918917 | 0.093 | 0.093 | 0.000 | 9.53e-01 |
Intelligence | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.103 | -0.003 | 0.1675481 | 0.093 | 0.093 | 0.000 | 8.95e-01 |
Intelligence | All.MultiPRS | MegaPRS.PseudoVal | 0.104 | 0.103 | 0.001 | 0.8521907 | 0.098 | 0.093 | 0.005 | 1.48e-02 |
Intelligence | SBLUP.Inf | MegaPRS.PseudoVal | 0.100 | 0.103 | -0.003 | 0.1561441 | 0.092 | 0.093 | -0.001 | 8.62e-01 |
Intelligence | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.099 | 0.103 | -0.004 | 0.0228657 | 0.092 | 0.093 | -0.001 | 8.57e-01 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.089 | 0.103 | -0.014 | 0.0000000 | 0.079 | 0.093 | -0.014 | 8.77e-03 |
Intelligence | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.102 | 0.103 | -0.001 | 0.9107200 | 0.097 | 0.093 | 0.004 | 2.61e-01 |
Intelligence | LDpred1.Inf | MegaPRS.PseudoVal | 0.100 | 0.103 | -0.003 | 0.1083162 | 0.092 | 0.093 | -0.002 | 6.86e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.103 | 0.103 | 0.000 | 0.9462559 | 0.096 | 0.093 | 0.002 | 2.48e-02 |
Intelligence | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.064 | 0.103 | -0.039 | 0.0000000 | 0.059 | 0.093 | -0.034 | 4.94e-05 |
Intelligence | lassosum.10FCVal | MegaPRS.PseudoVal | 0.099 | 0.103 | -0.004 | 0.0238562 | 0.093 | 0.093 | 0.000 | 9.63e-01 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.103 | 0.103 | 0.001 | 0.2560507 | 0.095 | 0.093 | 0.002 | 1.93e-02 |
Intelligence | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.101 | 0.103 | -0.002 | 0.8148853 | 0.093 | 0.093 | 0.000 | 9.89e-01 |
Intelligence | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.102 | 0.103 | -0.001 | 0.5382183 | 0.092 | 0.093 | -0.001 | 7.91e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.103 | 0.101 | 0.001 | 0.8599967 | 0.094 | 0.093 | 0.001 | 6.99e-01 |
Intelligence | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.101 | -0.001 | 0.8968165 | 0.093 | 0.093 | -0.001 | 8.30e-01 |
Intelligence | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.072 | 0.101 | -0.029 | 0.0000438 | 0.065 | 0.093 | -0.028 | 6.61e-04 |
Intelligence | LDpred1.Inf | LDpred1.MultiPRS | 0.100 | 0.101 | -0.001 | 0.8369294 | 0.092 | 0.093 | -0.002 | 3.78e-01 |
Intelligence | PRScs.PseudoVal | LDpred1.MultiPRS | 0.099 | 0.101 | -0.003 | 0.6946109 | 0.092 | 0.093 | -0.001 | 8.15e-01 |
Intelligence | PRScs.MultiPRS | LDpred1.MultiPRS | 0.100 | 0.101 | -0.001 | 0.8944680 | 0.093 | 0.093 | 0.000 | 9.73e-01 |
Intelligence | LDpred2.Inf | LDpred1.MultiPRS | 0.101 | 0.101 | -0.001 | 0.9199773 | 0.093 | 0.093 | 0.000 | 9.15e-01 |
Intelligence | LDpred2.10FCVal | LDpred1.MultiPRS | 0.103 | 0.101 | 0.002 | 0.8130981 | 0.093 | 0.093 | 0.000 | 9.88e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.MultiPRS | 0.084 | 0.101 | -0.017 | 0.0132832 | 0.074 | 0.093 | -0.019 | 2.30e-03 |
Intelligence | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.103 | 0.101 | 0.002 | 0.7581138 | 0.095 | 0.093 | 0.002 | 5.49e-01 |
Intelligence | PRScs.10FCVal | LDpred1.MultiPRS | 0.099 | 0.101 | -0.002 | 0.7984713 | 0.089 | 0.093 | -0.004 | 2.64e-01 |
Intelligence | All.MultiPRS | LDpred1.MultiPRS | 0.104 | 0.101 | 0.003 | 0.6725237 | 0.098 | 0.093 | 0.005 | 8.14e-02 |
Intelligence | SBLUP.Inf | LDpred1.MultiPRS | 0.100 | 0.101 | -0.001 | 0.8985678 | 0.092 | 0.093 | -0.001 | 7.78e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.101 | 0.101 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | lassosum.10FCVal | LDpred1.MultiPRS | 0.099 | 0.101 | -0.002 | 0.7410623 | 0.093 | 0.093 | 0.000 | 9.73e-01 |
Intelligence | lassosum.MultiPRS | LDpred1.MultiPRS | 0.102 | 0.101 | 0.001 | 0.9029447 | 0.097 | 0.093 | 0.004 | 2.38e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.089 | 0.101 | -0.013 | 0.0718077 | 0.079 | 0.093 | -0.014 | 6.95e-03 |
Intelligence | LDpred1.10FCVal | LDpred1.MultiPRS | 0.102 | 0.101 | 0.001 | 0.9328425 | 0.092 | 0.093 | -0.001 | 3.50e-01 |
Intelligence | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.086 | 0.101 | -0.015 | 0.0354604 | 0.080 | 0.093 | -0.013 | 2.26e-02 |
Intelligence | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.103 | 0.101 | 0.002 | 0.8148853 | 0.093 | 0.093 | 0.000 | 9.89e-01 |
Intelligence | lassosum.PseudoVal | LDpred1.MultiPRS | 0.064 | 0.101 | -0.037 | 0.0000001 | 0.059 | 0.093 | -0.035 | 1.04e-04 |
Intelligence | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.103 | 0.101 | 0.002 | 0.7625489 | 0.096 | 0.093 | 0.002 | 4.81e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred1.Inf | 0.103 | 0.100 | 0.004 | 0.6126625 | 0.096 | 0.092 | 0.004 | 2.65e-01 |
Intelligence | PRScs.10FCVal | LDpred1.Inf | 0.099 | 0.100 | 0.000 | 0.8528998 | 0.089 | 0.092 | -0.002 | 5.80e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.Inf | 0.103 | 0.100 | 0.003 | 0.7035742 | 0.094 | 0.092 | 0.003 | 3.89e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.Inf | 0.101 | 0.100 | 0.001 | 0.8369294 | 0.093 | 0.092 | 0.002 | 3.78e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.Inf | 0.084 | 0.100 | -0.016 | 0.0000004 | 0.074 | 0.092 | -0.018 | 4.50e-03 |
Intelligence | All.MultiPRS | LDpred1.Inf | 0.104 | 0.100 | 0.004 | 0.5307357 | 0.098 | 0.092 | 0.006 | 3.85e-02 |
Intelligence | LDpred2.PseudoVal | LDpred1.Inf | 0.100 | 0.100 | 0.001 | 0.5802564 | 0.093 | 0.092 | 0.001 | 5.73e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred1.Inf | 0.103 | 0.100 | 0.003 | 0.1083162 | 0.093 | 0.092 | 0.002 | 6.86e-01 |
Intelligence | pT+clump.MultiPRS | LDpred1.Inf | 0.086 | 0.100 | -0.013 | 0.0574963 | 0.080 | 0.092 | -0.012 | 5.65e-02 |
Intelligence | lassosum.MultiPRS | LDpred1.Inf | 0.102 | 0.100 | 0.002 | 0.7440509 | 0.097 | 0.092 | 0.005 | 1.32e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred1.Inf | 0.089 | 0.100 | -0.011 | 0.0000174 | 0.079 | 0.092 | -0.012 | 1.96e-02 |
Intelligence | LDpred2.10FCVal | LDpred1.Inf | 0.103 | 0.100 | 0.003 | 0.0328750 | 0.093 | 0.092 | 0.002 | 5.88e-01 |
Intelligence | MegaPRS.10FCVal | LDpred1.Inf | 0.103 | 0.100 | 0.004 | 0.0492533 | 0.095 | 0.092 | 0.004 | 3.19e-01 |
Intelligence | PRScs.PseudoVal | LDpred1.Inf | 0.099 | 0.100 | -0.001 | 0.4725713 | 0.092 | 0.092 | 0.001 | 8.18e-01 |
Intelligence | lassosum.PseudoVal | LDpred1.Inf | 0.064 | 0.100 | -0.036 | 0.0000000 | 0.059 | 0.092 | -0.033 | 7.86e-04 |
Intelligence | LDpred2.Inf | LDpred1.Inf | 0.101 | 0.100 | 0.001 | 0.4156980 | 0.093 | 0.092 | 0.001 | 4.56e-01 |
Intelligence | PRScs.MultiPRS | LDpred1.Inf | 0.100 | 0.100 | 0.001 | 0.9414105 | 0.093 | 0.092 | 0.001 | 6.49e-01 |
Intelligence | LDpred1.10FCVal | LDpred1.Inf | 0.102 | 0.100 | 0.002 | 0.0438938 | 0.092 | 0.092 | 0.001 | 7.49e-01 |
Intelligence | SBLUP.Inf | LDpred1.Inf | 0.100 | 0.100 | 0.001 | 0.5309405 | 0.092 | 0.092 | 0.001 | 5.93e-01 |
Intelligence | lassosum.10FCVal | LDpred1.Inf | 0.099 | 0.100 | -0.001 | 0.6506942 | 0.093 | 0.092 | 0.002 | 6.54e-01 |
Intelligence | LDpred1.Inf | LDpred1.Inf | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
Intelligence | SBayesR.PseudoVal | LDpred1.Inf | 0.072 | 0.100 | -0.027 | 0.0000000 | 0.065 | 0.092 | -0.027 | 1.78e-03 |
Intelligence | LDpred2.Inf | LDpred1.10FCVal | 0.101 | 0.102 | -0.001 | 0.3172870 | 0.093 | 0.092 | 0.001 | 7.87e-01 |
Intelligence | PRScs.10FCVal | LDpred1.10FCVal | 0.099 | 0.102 | -0.002 | 0.1283595 | 0.089 | 0.092 | -0.003 | 3.87e-01 |
Intelligence | lassosum.MultiPRS | LDpred1.10FCVal | 0.102 | 0.102 | 0.000 | 0.9703808 | 0.097 | 0.092 | 0.005 | 1.22e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.10FCVal | 0.103 | 0.102 | 0.001 | 0.9273565 | 0.094 | 0.092 | 0.002 | 4.14e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.103 | 0.102 | 0.002 | 0.8282837 | 0.096 | 0.092 | 0.003 | 3.19e-01 |
Intelligence | SBayesR.PseudoVal | LDpred1.10FCVal | 0.072 | 0.102 | -0.029 | 0.0000000 | 0.065 | 0.092 | -0.028 | 8.80e-04 |
Intelligence | PRScs.PseudoVal | LDpred1.10FCVal | 0.099 | 0.102 | -0.003 | 0.0286134 | 0.092 | 0.092 | 0.000 | 9.47e-01 |
Intelligence | All.MultiPRS | LDpred1.10FCVal | 0.104 | 0.102 | 0.002 | 0.7364952 | 0.098 | 0.092 | 0.006 | 2.83e-02 |
Intelligence | LDpred2.PseudoVal | LDpred1.10FCVal | 0.100 | 0.102 | -0.002 | 0.2603565 | 0.093 | 0.092 | 0.000 | 8.74e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.10FCVal | 0.101 | 0.102 | -0.001 | 0.9328425 | 0.093 | 0.092 | 0.001 | 3.50e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.10FCVal | 0.084 | 0.102 | -0.018 | 0.0000000 | 0.074 | 0.092 | -0.018 | 3.88e-03 |
Intelligence | SBLUP.Inf | LDpred1.10FCVal | 0.100 | 0.102 | -0.001 | 0.2402238 | 0.092 | 0.092 | 0.000 | 9.10e-01 |
Intelligence | PRScs.MultiPRS | LDpred1.10FCVal | 0.100 | 0.102 | -0.002 | 0.8289486 | 0.093 | 0.092 | 0.001 | 7.35e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.103 | 0.102 | 0.001 | 0.5382183 | 0.093 | 0.092 | 0.001 | 7.91e-01 |
Intelligence | pT+clump.MultiPRS | LDpred1.10FCVal | 0.086 | 0.102 | -0.015 | 0.0285545 | 0.080 | 0.092 | -0.012 | 3.14e-02 |
Intelligence | LDpred1.Inf | LDpred1.10FCVal | 0.100 | 0.102 | -0.002 | 0.0438938 | 0.092 | 0.092 | -0.001 | 7.49e-01 |
Intelligence | lassosum.PseudoVal | LDpred1.10FCVal | 0.064 | 0.102 | -0.038 | 0.0000000 | 0.059 | 0.092 | -0.034 | 9.94e-05 |
Intelligence | LDpred2.10FCVal | LDpred1.10FCVal | 0.103 | 0.102 | 0.001 | 0.3129181 | 0.093 | 0.092 | 0.001 | 6.60e-01 |
Intelligence | MegaPRS.10FCVal | LDpred1.10FCVal | 0.103 | 0.102 | 0.002 | 0.3488495 | 0.095 | 0.092 | 0.003 | 3.70e-01 |
Intelligence | LDpred1.10FCVal | LDpred1.10FCVal | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
Intelligence | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.089 | 0.102 | -0.013 | 0.0000001 | 0.079 | 0.092 | -0.013 | 1.10e-02 |
Intelligence | lassosum.10FCVal | LDpred1.10FCVal | 0.099 | 0.102 | -0.003 | 0.0713881 | 0.093 | 0.092 | 0.001 | 7.39e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.089 | 0.103 | -0.014 | 0.0480888 | 0.079 | 0.094 | -0.015 | 1.08e-03 |
Intelligence | LDpred2.10FCVal | LDpred2.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9516270 | 0.093 | 0.094 | -0.001 | 4.31e-01 |
Intelligence | PRScs.PseudoVal | LDpred2.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5708461 | 0.092 | 0.094 | -0.002 | 5.69e-01 |
Intelligence | All.MultiPRS | LDpred2.MultiPRS | 0.104 | 0.103 | 0.002 | 0.8061968 | 0.098 | 0.094 | 0.004 | 9.62e-02 |
Intelligence | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.103 | 0.103 | 0.001 | 0.8952396 | 0.095 | 0.094 | 0.001 | 7.44e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9536313 | 0.093 | 0.094 | -0.001 | 7.53e-01 |
Intelligence | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.086 | 0.103 | -0.016 | 0.0223466 | 0.080 | 0.094 | -0.014 | 1.34e-02 |
Intelligence | lassosum.10FCVal | LDpred2.MultiPRS | 0.099 | 0.103 | -0.004 | 0.6137051 | 0.093 | 0.094 | -0.001 | 8.00e-01 |
Intelligence | PRScs.MultiPRS | LDpred2.MultiPRS | 0.100 | 0.103 | -0.002 | 0.0699196 | 0.093 | 0.094 | -0.001 | 6.47e-01 |
Intelligence | LDpred1.Inf | LDpred2.MultiPRS | 0.100 | 0.103 | -0.003 | 0.7035742 | 0.092 | 0.094 | -0.003 | 3.89e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.072 | 0.103 | -0.030 | 0.0000202 | 0.065 | 0.094 | -0.029 | 2.94e-04 |
Intelligence | pT+clump.10FCVal | LDpred2.MultiPRS | 0.084 | 0.103 | -0.019 | 0.0081581 | 0.074 | 0.094 | -0.020 | 2.14e-03 |
Intelligence | lassosum.PseudoVal | LDpred2.MultiPRS | 0.064 | 0.103 | -0.039 | 0.0000000 | 0.059 | 0.094 | -0.036 | 2.02e-05 |
Intelligence | LDpred2.Inf | LDpred2.MultiPRS | 0.101 | 0.103 | -0.002 | 0.7829400 | 0.093 | 0.094 | -0.001 | 6.09e-01 |
Intelligence | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.101 | 0.103 | -0.001 | 0.8599967 | 0.093 | 0.094 | -0.001 | 6.99e-01 |
Intelligence | SBLUP.Inf | LDpred2.MultiPRS | 0.100 | 0.103 | -0.002 | 0.7622793 | 0.092 | 0.094 | -0.002 | 5.15e-01 |
Intelligence | lassosum.MultiPRS | LDpred2.MultiPRS | 0.102 | 0.103 | 0.000 | 0.7645849 | 0.097 | 0.094 | 0.003 | 2.60e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.103 | -0.002 | 0.7605779 | 0.093 | 0.094 | -0.002 | 5.30e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.MultiPRS | 0.102 | 0.103 | -0.001 | 0.9273565 | 0.092 | 0.094 | -0.002 | 4.14e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.103 | 0.103 | 0.001 | 0.8998737 | 0.096 | 0.094 | 0.001 | 6.51e-01 |
Intelligence | PRScs.10FCVal | LDpred2.MultiPRS | 0.099 | 0.103 | -0.003 | 0.6672577 | 0.089 | 0.094 | -0.005 | 1.26e-01 |
Intelligence | LDpred2.MultiPRS | LDpred2.10FCVal | 0.103 | 0.103 | 0.000 | 0.9516270 | 0.094 | 0.093 | 0.001 | 4.31e-01 |
Intelligence | LDpred2.Inf | LDpred2.10FCVal | 0.101 | 0.103 | -0.002 | 0.0396114 | 0.093 | 0.093 | 0.000 | 9.22e-01 |
Intelligence | PRScs.10FCVal | LDpred2.10FCVal | 0.099 | 0.103 | -0.003 | 0.0153562 | 0.089 | 0.093 | -0.004 | 2.02e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.10FCVal | 0.072 | 0.103 | -0.030 | 0.0000000 | 0.065 | 0.093 | -0.028 | 4.22e-04 |
Intelligence | lassosum.PseudoVal | LDpred2.10FCVal | 0.064 | 0.103 | -0.039 | 0.0000000 | 0.059 | 0.093 | -0.034 | 2.88e-05 |
Intelligence | LDpred2.10FCVal | LDpred2.10FCVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | PRScs.PseudoVal | LDpred2.10FCVal | 0.099 | 0.103 | -0.004 | 0.0019424 | 0.092 | 0.093 | -0.001 | 8.02e-01 |
Intelligence | LDpred1.MultiPRS | LDpred2.10FCVal | 0.101 | 0.103 | -0.002 | 0.8130981 | 0.093 | 0.093 | 0.000 | 9.88e-01 |
Intelligence | pT+clump.10FCVal | LDpred2.10FCVal | 0.084 | 0.103 | -0.019 | 0.0000000 | 0.074 | 0.093 | -0.019 | 3.90e-03 |
Intelligence | All.MultiPRS | LDpred2.10FCVal | 0.104 | 0.103 | 0.001 | 0.8539538 | 0.098 | 0.093 | 0.005 | 2.22e-02 |
Intelligence | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.103 | 0.103 | 0.000 | 0.9481806 | 0.096 | 0.093 | 0.002 | 4.34e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.103 | 0.103 | 0.000 | 0.9913487 | 0.093 | 0.093 | 0.000 | 9.97e-01 |
Intelligence | pT+clump.MultiPRS | LDpred2.10FCVal | 0.086 | 0.103 | -0.016 | 0.0191290 | 0.080 | 0.093 | -0.013 | 2.37e-02 |
Intelligence | lassosum.MultiPRS | LDpred2.10FCVal | 0.102 | 0.103 | -0.001 | 0.9086588 | 0.097 | 0.093 | 0.004 | 1.08e-01 |
Intelligence | PRScs.MultiPRS | LDpred2.10FCVal | 0.100 | 0.103 | -0.003 | 0.7128591 | 0.093 | 0.093 | 0.000 | 9.78e-01 |
Intelligence | LDpred1.Inf | LDpred2.10FCVal | 0.100 | 0.103 | -0.003 | 0.0328750 | 0.092 | 0.093 | -0.002 | 5.88e-01 |
Intelligence | MegaPRS.10FCVal | LDpred2.10FCVal | 0.103 | 0.103 | 0.001 | 0.7546243 | 0.095 | 0.093 | 0.002 | 5.17e-01 |
Intelligence | SBLUP.Inf | LDpred2.10FCVal | 0.100 | 0.103 | -0.003 | 0.0337563 | 0.092 | 0.093 | -0.001 | 7.92e-01 |
Intelligence | lassosum.10FCVal | LDpred2.10FCVal | 0.099 | 0.103 | -0.004 | 0.0171852 | 0.093 | 0.093 | 0.000 | 9.64e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.10FCVal | 0.100 | 0.103 | -0.003 | 0.0199340 | 0.093 | 0.093 | -0.001 | 8.20e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.10FCVal | 0.102 | 0.103 | -0.001 | 0.3129181 | 0.092 | 0.093 | -0.001 | 6.60e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.089 | 0.103 | -0.014 | 0.0000000 | 0.079 | 0.093 | -0.014 | 3.02e-03 |
Intelligence | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.103 | 0.100 | 0.003 | 0.0811961 | 0.095 | 0.093 | 0.003 | 4.61e-01 |
Intelligence | PRScs.PseudoVal | LDpred2.PseudoVal | 0.099 | 0.100 | -0.002 | 0.2871964 | 0.092 | 0.093 | 0.000 | 9.51e-01 |
Intelligence | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.103 | 0.100 | 0.002 | 0.7605779 | 0.094 | 0.093 | 0.002 | 5.30e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.103 | 0.100 | 0.003 | 0.6669786 | 0.096 | 0.093 | 0.003 | 3.77e-01 |
Intelligence | PRScs.10FCVal | LDpred2.PseudoVal | 0.099 | 0.100 | -0.001 | 0.6136109 | 0.089 | 0.093 | -0.003 | 3.70e-01 |
Intelligence | All.MultiPRS | LDpred2.PseudoVal | 0.104 | 0.100 | 0.004 | 0.5817891 | 0.098 | 0.093 | 0.005 | 5.39e-02 |
Intelligence | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.089 | 0.100 | -0.012 | 0.0000022 | 0.079 | 0.093 | -0.013 | 7.90e-03 |
Intelligence | LDpred2.10FCVal | LDpred2.PseudoVal | 0.103 | 0.100 | 0.003 | 0.0199340 | 0.093 | 0.093 | 0.001 | 8.20e-01 |
Intelligence | LDpred1.Inf | LDpred2.PseudoVal | 0.100 | 0.100 | -0.001 | 0.5802564 | 0.092 | 0.093 | -0.001 | 5.73e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.072 | 0.100 | -0.028 | 0.0000000 | 0.065 | 0.093 | -0.028 | 1.01e-03 |
Intelligence | lassosum.PseudoVal | LDpred2.PseudoVal | 0.064 | 0.100 | -0.037 | 0.0000000 | 0.059 | 0.093 | -0.034 | 4.57e-04 |
Intelligence | LDpred2.Inf | LDpred2.PseudoVal | 0.101 | 0.100 | 0.000 | 0.5746656 | 0.093 | 0.093 | 0.000 | 7.00e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.101 | 0.100 | 0.001 | 0.8968165 | 0.093 | 0.093 | 0.001 | 8.30e-01 |
Intelligence | pT+clump.10FCVal | LDpred2.PseudoVal | 0.084 | 0.100 | -0.017 | 0.0000004 | 0.074 | 0.093 | -0.019 | 3.63e-03 |
Intelligence | lassosum.MultiPRS | LDpred2.PseudoVal | 0.102 | 0.100 | 0.002 | 0.8020635 | 0.097 | 0.093 | 0.004 | 1.72e-01 |
Intelligence | PRScs.MultiPRS | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 0.9980748 | 0.093 | 0.093 | 0.000 | 8.84e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.103 | 0.100 | 0.003 | 0.1675481 | 0.093 | 0.093 | 0.000 | 8.95e-01 |
Intelligence | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.086 | 0.100 | -0.014 | 0.0481673 | 0.080 | 0.093 | -0.013 | 4.22e-02 |
Intelligence | lassosum.10FCVal | LDpred2.PseudoVal | 0.099 | 0.100 | -0.001 | 0.4698139 | 0.093 | 0.093 | 0.001 | 8.65e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.PseudoVal | 0.102 | 0.100 | 0.002 | 0.2603565 | 0.092 | 0.093 | 0.000 | 8.74e-01 |
Intelligence | SBLUP.Inf | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 0.9736102 | 0.092 | 0.093 | 0.000 | 8.88e-01 |
Intelligence | PRScs.10FCVal | LDpred2.Inf | 0.099 | 0.101 | -0.001 | 0.5314930 | 0.089 | 0.093 | -0.003 | 3.27e-01 |
Intelligence | pT+clump.MultiPRS | LDpred2.Inf | 0.086 | 0.101 | -0.014 | 0.0448939 | 0.080 | 0.093 | -0.013 | 3.31e-02 |
Intelligence | LDpred2.Inf | LDpred2.Inf | 0.101 | 0.101 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | lassosum.PseudoVal | LDpred2.Inf | 0.064 | 0.101 | -0.037 | 0.0000000 | 0.059 | 0.093 | -0.034 | 4.46e-04 |
Intelligence | LDpred2.MultiPRS | LDpred2.Inf | 0.103 | 0.101 | 0.002 | 0.7829400 | 0.094 | 0.093 | 0.001 | 6.09e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.Inf | 0.072 | 0.101 | -0.028 | 0.0000000 | 0.065 | 0.093 | -0.028 | 8.83e-04 |
Intelligence | pT+clump.10FCVal | LDpred2.Inf | 0.084 | 0.101 | -0.017 | 0.0000001 | 0.074 | 0.093 | -0.019 | 2.20e-03 |
Intelligence | PRScs.PseudoVal | LDpred2.Inf | 0.099 | 0.101 | -0.002 | 0.2330212 | 0.092 | 0.093 | 0.000 | 8.87e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.Inf | 0.100 | 0.101 | 0.000 | 0.5746656 | 0.093 | 0.093 | 0.000 | 7.00e-01 |
Intelligence | All.MultiPRS | LDpred2.Inf | 0.104 | 0.101 | 0.004 | 0.6021246 | 0.098 | 0.093 | 0.005 | 7.39e-02 |
Intelligence | SBLUP.Inf | LDpred2.Inf | 0.100 | 0.101 | 0.000 | 0.6149355 | 0.092 | 0.093 | 0.000 | 5.80e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.Inf | 0.103 | 0.101 | 0.003 | 0.6883114 | 0.096 | 0.093 | 0.003 | 4.19e-01 |
Intelligence | PRScs.MultiPRS | LDpred2.Inf | 0.100 | 0.101 | 0.000 | 0.9747803 | 0.093 | 0.093 | 0.000 | 9.56e-01 |
Intelligence | lassosum.MultiPRS | LDpred2.Inf | 0.102 | 0.101 | 0.002 | 0.8247532 | 0.097 | 0.093 | 0.004 | 2.08e-01 |
Intelligence | LDpred1.Inf | LDpred2.Inf | 0.100 | 0.101 | -0.001 | 0.4156980 | 0.092 | 0.093 | -0.001 | 4.56e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred2.Inf | 0.103 | 0.101 | 0.002 | 0.1918917 | 0.093 | 0.093 | 0.000 | 9.53e-01 |
Intelligence | MegaPRS.10FCVal | LDpred2.Inf | 0.103 | 0.101 | 0.003 | 0.0920763 | 0.095 | 0.093 | 0.002 | 4.96e-01 |
Intelligence | lassosum.10FCVal | LDpred2.Inf | 0.099 | 0.101 | -0.002 | 0.3761616 | 0.093 | 0.093 | 0.000 | 9.17e-01 |
Intelligence | LDpred2.10FCVal | LDpred2.Inf | 0.103 | 0.101 | 0.002 | 0.0396114 | 0.093 | 0.093 | 0.000 | 9.22e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.Inf | 0.089 | 0.101 | -0.012 | 0.0000018 | 0.079 | 0.093 | -0.013 | 7.09e-03 |
Intelligence | LDpred1.MultiPRS | LDpred2.Inf | 0.101 | 0.101 | 0.001 | 0.9199773 | 0.093 | 0.093 | 0.000 | 9.15e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.Inf | 0.102 | 0.101 | 0.001 | 0.3172870 | 0.092 | 0.093 | -0.001 | 7.87e-01 |
Intelligence | PRScs.PseudoVal | PRScs.MultiPRS | 0.099 | 0.100 | -0.002 | 0.7947751 | 0.092 | 0.093 | -0.001 | 7.53e-01 |
Intelligence | LDpred2.MultiPRS | PRScs.MultiPRS | 0.103 | 0.100 | 0.002 | 0.0699196 | 0.094 | 0.093 | 0.001 | 6.47e-01 |
Intelligence | LDpred2.Inf | PRScs.MultiPRS | 0.101 | 0.100 | 0.000 | 0.9747803 | 0.093 | 0.093 | 0.000 | 9.56e-01 |
Intelligence | pT+clump.10FCVal | PRScs.MultiPRS | 0.084 | 0.100 | -0.016 | 0.0193529 | 0.074 | 0.093 | -0.019 | 2.92e-03 |
Intelligence | SBayesR.PseudoVal | PRScs.MultiPRS | 0.072 | 0.100 | -0.028 | 0.0000759 | 0.065 | 0.093 | -0.028 | 4.86e-04 |
Intelligence | LDpred2.PseudoVal | PRScs.MultiPRS | 0.100 | 0.100 | 0.000 | 0.9980748 | 0.093 | 0.093 | 0.000 | 8.84e-01 |
Intelligence | LDpred2.10FCVal | PRScs.MultiPRS | 0.103 | 0.100 | 0.003 | 0.7128591 | 0.093 | 0.093 | 0.000 | 9.78e-01 |
Intelligence | PRScs.MultiPRS | PRScs.MultiPRS | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.093 | 0.093 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.MultiPRS | PRScs.MultiPRS | 0.101 | 0.100 | 0.001 | 0.8944680 | 0.093 | 0.093 | 0.000 | 9.73e-01 |
Intelligence | pT+clump.MultiPRS | PRScs.MultiPRS | 0.086 | 0.100 | -0.014 | 0.0481873 | 0.080 | 0.093 | -0.013 | 1.80e-02 |
Intelligence | All.MultiPRS | PRScs.MultiPRS | 0.104 | 0.100 | 0.004 | 0.5795894 | 0.098 | 0.093 | 0.005 | 8.41e-02 |
Intelligence | lassosum.PseudoVal | PRScs.MultiPRS | 0.064 | 0.100 | -0.037 | 0.0000002 | 0.059 | 0.093 | -0.034 | 2.23e-05 |
Intelligence | PRScs.10FCVal | PRScs.MultiPRS | 0.099 | 0.100 | -0.001 | 0.9022093 | 0.089 | 0.093 | -0.004 | 3.44e-02 |
Intelligence | MegaPRS.10FCVal | PRScs.MultiPRS | 0.103 | 0.100 | 0.003 | 0.6609370 | 0.095 | 0.093 | 0.002 | 5.40e-01 |
Intelligence | lassosum.MultiPRS | PRScs.MultiPRS | 0.102 | 0.100 | 0.002 | 0.2113293 | 0.097 | 0.093 | 0.004 | 1.71e-01 |
Intelligence | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.103 | 0.100 | 0.003 | 0.6649064 | 0.096 | 0.093 | 0.003 | 4.76e-01 |
Intelligence | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.089 | 0.100 | -0.012 | 0.0948437 | 0.079 | 0.093 | -0.014 | 4.48e-03 |
Intelligence | LDpred1.10FCVal | PRScs.MultiPRS | 0.102 | 0.100 | 0.002 | 0.8289486 | 0.092 | 0.093 | -0.001 | 7.35e-01 |
Intelligence | SBLUP.Inf | PRScs.MultiPRS | 0.100 | 0.100 | 0.000 | 0.9962872 | 0.092 | 0.093 | -0.001 | 8.46e-01 |
Intelligence | lassosum.10FCVal | PRScs.MultiPRS | 0.099 | 0.100 | -0.001 | 0.8432041 | 0.093 | 0.093 | 0.000 | 9.49e-01 |
Intelligence | LDpred1.Inf | PRScs.MultiPRS | 0.100 | 0.100 | -0.001 | 0.9414105 | 0.092 | 0.093 | -0.001 | 6.49e-01 |
Intelligence | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.103 | 0.100 | 0.003 | 0.7149956 | 0.093 | 0.093 | 0.000 | 9.90e-01 |
Intelligence | PRScs.10FCVal | PRScs.10FCVal | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.089 | 0.089 | 0.000 | 1.00e+00 |
Intelligence | pT+clump.MultiPRS | PRScs.10FCVal | 0.086 | 0.099 | -0.013 | 0.0640684 | 0.080 | 0.089 | -0.010 | 1.03e-01 |
Intelligence | SBayesR.PseudoVal | PRScs.10FCVal | 0.072 | 0.099 | -0.027 | 0.0000000 | 0.065 | 0.089 | -0.025 | 2.80e-03 |
Intelligence | pT+clump.10FCVal | PRScs.10FCVal | 0.084 | 0.099 | -0.016 | 0.0000037 | 0.074 | 0.089 | -0.016 | 1.93e-02 |
Intelligence | LDpred2.MultiPRS | PRScs.10FCVal | 0.103 | 0.099 | 0.003 | 0.6672577 | 0.094 | 0.089 | 0.005 | 1.26e-01 |
Intelligence | LDpred2.10FCVal | PRScs.10FCVal | 0.103 | 0.099 | 0.003 | 0.0153562 | 0.093 | 0.089 | 0.004 | 2.02e-01 |
Intelligence | SBLUP.Inf | PRScs.10FCVal | 0.100 | 0.099 | 0.001 | 0.6000761 | 0.092 | 0.089 | 0.003 | 3.81e-01 |
Intelligence | PRScs.PseudoVal | PRScs.10FCVal | 0.099 | 0.099 | -0.001 | 0.5812329 | 0.092 | 0.089 | 0.003 | 4.06e-01 |
Intelligence | LDpred2.PseudoVal | PRScs.10FCVal | 0.100 | 0.099 | 0.001 | 0.6136109 | 0.093 | 0.089 | 0.003 | 3.70e-01 |
Intelligence | LDpred2.Inf | PRScs.10FCVal | 0.101 | 0.099 | 0.001 | 0.5314930 | 0.093 | 0.089 | 0.003 | 3.27e-01 |
Intelligence | LDpred1.Inf | PRScs.10FCVal | 0.100 | 0.099 | 0.000 | 0.8528998 | 0.092 | 0.089 | 0.002 | 5.80e-01 |
Intelligence | MegaPRS.MultiPRS | PRScs.10FCVal | 0.103 | 0.099 | 0.004 | 0.5784551 | 0.096 | 0.089 | 0.006 | 1.31e-01 |
Intelligence | PRScs.MultiPRS | PRScs.10FCVal | 0.100 | 0.099 | 0.001 | 0.9022093 | 0.093 | 0.089 | 0.004 | 3.44e-02 |
Intelligence | lassosum.MultiPRS | PRScs.10FCVal | 0.102 | 0.099 | 0.003 | 0.7070240 | 0.097 | 0.089 | 0.007 | 3.31e-02 |
Intelligence | DBSLMM.PseudoVal | PRScs.10FCVal | 0.089 | 0.099 | -0.011 | 0.0000301 | 0.079 | 0.089 | -0.010 | 5.47e-02 |
Intelligence | MegaPRS.PseudoVal | PRScs.10FCVal | 0.103 | 0.099 | 0.003 | 0.0806580 | 0.093 | 0.089 | 0.004 | 3.65e-01 |
Intelligence | MegaPRS.10FCVal | PRScs.10FCVal | 0.103 | 0.099 | 0.004 | 0.0441680 | 0.095 | 0.089 | 0.006 | 1.52e-01 |
Intelligence | lassosum.10FCVal | PRScs.10FCVal | 0.099 | 0.099 | -0.001 | 0.7789184 | 0.093 | 0.089 | 0.004 | 3.10e-01 |
Intelligence | All.MultiPRS | PRScs.10FCVal | 0.104 | 0.099 | 0.005 | 0.4985420 | 0.098 | 0.089 | 0.008 | 1.41e-02 |
Intelligence | lassosum.PseudoVal | PRScs.10FCVal | 0.064 | 0.099 | -0.036 | 0.0000000 | 0.059 | 0.089 | -0.031 | 2.19e-04 |
Intelligence | LDpred1.MultiPRS | PRScs.10FCVal | 0.101 | 0.099 | 0.002 | 0.7984713 | 0.093 | 0.089 | 0.004 | 2.64e-01 |
Intelligence | LDpred1.10FCVal | PRScs.10FCVal | 0.102 | 0.099 | 0.002 | 0.1283595 | 0.092 | 0.089 | 0.003 | 3.87e-01 |
Intelligence | LDpred2.MultiPRS | PRScs.PseudoVal | 0.103 | 0.099 | 0.004 | 0.5708461 | 0.094 | 0.092 | 0.002 | 5.69e-01 |
Intelligence | PRScs.10FCVal | PRScs.PseudoVal | 0.099 | 0.099 | 0.001 | 0.5812329 | 0.089 | 0.092 | -0.003 | 4.06e-01 |
Intelligence | pT+clump.10FCVal | PRScs.PseudoVal | 0.084 | 0.099 | -0.015 | 0.0000137 | 0.074 | 0.092 | -0.018 | 5.46e-03 |
Intelligence | LDpred2.PseudoVal | PRScs.PseudoVal | 0.100 | 0.099 | 0.002 | 0.2871964 | 0.093 | 0.092 | 0.000 | 9.51e-01 |
Intelligence | LDpred2.Inf | PRScs.PseudoVal | 0.101 | 0.099 | 0.002 | 0.2330212 | 0.093 | 0.092 | 0.000 | 8.87e-01 |
Intelligence | pT+clump.MultiPRS | PRScs.PseudoVal | 0.086 | 0.099 | -0.012 | 0.0863930 | 0.080 | 0.092 | -0.012 | 3.40e-02 |
Intelligence | PRScs.PseudoVal | PRScs.PseudoVal | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
Intelligence | SBayesR.PseudoVal | PRScs.PseudoVal | 0.072 | 0.099 | -0.026 | 0.0000000 | 0.065 | 0.092 | -0.028 | 8.15e-04 |
Intelligence | lassosum.MultiPRS | PRScs.PseudoVal | 0.102 | 0.099 | 0.004 | 0.6080280 | 0.097 | 0.092 | 0.004 | 1.92e-01 |
Intelligence | LDpred2.10FCVal | PRScs.PseudoVal | 0.103 | 0.099 | 0.004 | 0.0019424 | 0.093 | 0.092 | 0.001 | 8.02e-01 |
Intelligence | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.103 | 0.099 | 0.005 | 0.4879046 | 0.096 | 0.092 | 0.003 | 4.18e-01 |
Intelligence | LDpred1.MultiPRS | PRScs.PseudoVal | 0.101 | 0.099 | 0.003 | 0.6946109 | 0.093 | 0.092 | 0.001 | 8.15e-01 |
Intelligence | SBLUP.Inf | PRScs.PseudoVal | 0.100 | 0.099 | 0.002 | 0.2726428 | 0.092 | 0.092 | 0.000 | 9.81e-01 |
Intelligence | All.MultiPRS | PRScs.PseudoVal | 0.104 | 0.099 | 0.006 | 0.4158817 | 0.098 | 0.092 | 0.005 | 1.01e-01 |
Intelligence | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.103 | 0.099 | 0.004 | 0.0228657 | 0.093 | 0.092 | 0.001 | 8.57e-01 |
Intelligence | LDpred1.10FCVal | PRScs.PseudoVal | 0.102 | 0.099 | 0.003 | 0.0286134 | 0.092 | 0.092 | 0.000 | 9.47e-01 |
Intelligence | MegaPRS.10FCVal | PRScs.PseudoVal | 0.103 | 0.099 | 0.005 | 0.0110187 | 0.095 | 0.092 | 0.003 | 4.71e-01 |
Intelligence | lassosum.10FCVal | PRScs.PseudoVal | 0.099 | 0.099 | 0.000 | 0.8119293 | 0.093 | 0.092 | 0.001 | 8.14e-01 |
Intelligence | PRScs.MultiPRS | PRScs.PseudoVal | 0.100 | 0.099 | 0.002 | 0.7947751 | 0.093 | 0.092 | 0.001 | 7.53e-01 |
Intelligence | LDpred1.Inf | PRScs.PseudoVal | 0.100 | 0.099 | 0.001 | 0.4725713 | 0.092 | 0.092 | -0.001 | 8.18e-01 |
Intelligence | lassosum.PseudoVal | PRScs.PseudoVal | 0.064 | 0.099 | -0.035 | 0.0000000 | 0.059 | 0.092 | -0.034 | 5.12e-05 |
Intelligence | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.089 | 0.099 | -0.010 | 0.0001361 | 0.079 | 0.092 | -0.013 | 1.24e-02 |
Intelligence | All.MultiPRS | pT+clump.MultiPRS | 0.104 | 0.086 | 0.018 | 0.0115628 | 0.098 | 0.080 | 0.018 | 1.97e-03 |
Intelligence | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.103 | 0.086 | 0.016 | 0.0223466 | 0.094 | 0.080 | 0.014 | 1.34e-02 |
Intelligence | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.101 | 0.086 | 0.015 | 0.0354604 | 0.093 | 0.080 | 0.013 | 2.26e-02 |
Intelligence | pT+clump.10FCVal | pT+clump.MultiPRS | 0.084 | 0.086 | -0.003 | 0.7091826 | 0.074 | 0.080 | -0.006 | 3.41e-02 |
Intelligence | lassosum.MultiPRS | pT+clump.MultiPRS | 0.102 | 0.086 | 0.016 | 0.0256747 | 0.097 | 0.080 | 0.017 | 4.08e-03 |
Intelligence | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.086 | 0.014 | 0.0481673 | 0.093 | 0.080 | 0.013 | 4.22e-02 |
Intelligence | LDpred1.10FCVal | pT+clump.MultiPRS | 0.102 | 0.086 | 0.015 | 0.0285545 | 0.092 | 0.080 | 0.012 | 3.14e-02 |
Intelligence | SBLUP.Inf | pT+clump.MultiPRS | 0.100 | 0.086 | 0.014 | 0.0478871 | 0.092 | 0.080 | 0.013 | 3.51e-02 |
Intelligence | lassosum.10FCVal | pT+clump.MultiPRS | 0.099 | 0.086 | 0.012 | 0.0755128 | 0.093 | 0.080 | 0.013 | 1.31e-02 |
Intelligence | PRScs.MultiPRS | pT+clump.MultiPRS | 0.100 | 0.086 | 0.014 | 0.0481873 | 0.093 | 0.080 | 0.013 | 1.80e-02 |
Intelligence | LDpred2.10FCVal | pT+clump.MultiPRS | 0.103 | 0.086 | 0.016 | 0.0191290 | 0.093 | 0.080 | 0.013 | 2.37e-02 |
Intelligence | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.103 | 0.086 | 0.017 | 0.0157555 | 0.095 | 0.080 | 0.015 | 6.91e-03 |
Intelligence | PRScs.PseudoVal | pT+clump.MultiPRS | 0.099 | 0.086 | 0.012 | 0.0863930 | 0.092 | 0.080 | 0.012 | 3.40e-02 |
Intelligence | lassosum.PseudoVal | pT+clump.MultiPRS | 0.064 | 0.086 | -0.023 | 0.0013231 | 0.059 | 0.080 | -0.021 | 1.36e-02 |
Intelligence | LDpred2.Inf | pT+clump.MultiPRS | 0.101 | 0.086 | 0.014 | 0.0448939 | 0.093 | 0.080 | 0.013 | 3.31e-02 |
Intelligence | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.103 | 0.086 | 0.016 | 0.0192284 | 0.093 | 0.080 | 0.013 | 1.86e-02 |
Intelligence | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.103 | 0.086 | 0.017 | 0.0158674 | 0.096 | 0.080 | 0.016 | 7.61e-03 |
Intelligence | PRScs.10FCVal | pT+clump.MultiPRS | 0.099 | 0.086 | 0.013 | 0.0640684 | 0.089 | 0.080 | 0.010 | 1.03e-01 |
Intelligence | LDpred1.Inf | pT+clump.MultiPRS | 0.100 | 0.086 | 0.013 | 0.0574963 | 0.092 | 0.080 | 0.012 | 5.65e-02 |
Intelligence | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.086 | 0.086 | 0.000 | 1.0000000 | 0.080 | 0.080 | 0.000 | 1.00e+00 |
Intelligence | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.089 | 0.086 | 0.002 | 0.7625962 | 0.079 | 0.080 | 0.000 | 9.54e-01 |
Intelligence | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.072 | 0.086 | -0.014 | 0.0471114 | 0.065 | 0.080 | -0.015 | 9.33e-02 |
Intelligence | LDpred2.MultiPRS | pT+clump.10FCVal | 0.103 | 0.084 | 0.019 | 0.0081581 | 0.094 | 0.074 | 0.020 | 2.14e-03 |
Intelligence | LDpred2.PseudoVal | pT+clump.10FCVal | 0.100 | 0.084 | 0.017 | 0.0000004 | 0.093 | 0.074 | 0.019 | 3.63e-03 |
Intelligence | pT+clump.MultiPRS | pT+clump.10FCVal | 0.086 | 0.084 | 0.003 | 0.7091826 | 0.080 | 0.074 | 0.006 | 3.41e-02 |
Intelligence | SBLUP.Inf | pT+clump.10FCVal | 0.100 | 0.084 | 0.017 | 0.0000001 | 0.092 | 0.074 | 0.018 | 2.16e-03 |
Intelligence | PRScs.PseudoVal | pT+clump.10FCVal | 0.099 | 0.084 | 0.015 | 0.0000137 | 0.092 | 0.074 | 0.018 | 5.46e-03 |
Intelligence | PRScs.MultiPRS | pT+clump.10FCVal | 0.100 | 0.084 | 0.016 | 0.0193529 | 0.093 | 0.074 | 0.019 | 2.92e-03 |
Intelligence | LDpred2.Inf | pT+clump.10FCVal | 0.101 | 0.084 | 0.017 | 0.0000001 | 0.093 | 0.074 | 0.019 | 2.20e-03 |
Intelligence | SBayesR.PseudoVal | pT+clump.10FCVal | 0.072 | 0.084 | -0.011 | 0.0191978 | 0.065 | 0.074 | -0.009 | 3.36e-01 |
Intelligence | pT+clump.10FCVal | pT+clump.10FCVal | 0.084 | 0.084 | 0.000 | 1.0000000 | 0.074 | 0.074 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.10FCVal | pT+clump.10FCVal | 0.103 | 0.084 | 0.020 | 0.0000000 | 0.095 | 0.074 | 0.021 | 6.00e-04 |
Intelligence | PRScs.10FCVal | pT+clump.10FCVal | 0.099 | 0.084 | 0.016 | 0.0000037 | 0.089 | 0.074 | 0.016 | 1.93e-02 |
Intelligence | LDpred2.10FCVal | pT+clump.10FCVal | 0.103 | 0.084 | 0.019 | 0.0000000 | 0.093 | 0.074 | 0.019 | 3.90e-03 |
Intelligence | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.103 | 0.084 | 0.019 | 0.0000000 | 0.093 | 0.074 | 0.019 | 2.34e-03 |
Intelligence | LDpred1.MultiPRS | pT+clump.10FCVal | 0.101 | 0.084 | 0.017 | 0.0132832 | 0.093 | 0.074 | 0.019 | 2.30e-03 |
Intelligence | lassosum.10FCVal | pT+clump.10FCVal | 0.099 | 0.084 | 0.015 | 0.0000004 | 0.093 | 0.074 | 0.019 | 9.65e-04 |
Intelligence | All.MultiPRS | pT+clump.10FCVal | 0.104 | 0.084 | 0.020 | 0.0037969 | 0.098 | 0.074 | 0.024 | 2.52e-04 |
Intelligence | LDpred1.Inf | pT+clump.10FCVal | 0.100 | 0.084 | 0.016 | 0.0000004 | 0.092 | 0.074 | 0.018 | 4.50e-03 |
Intelligence | LDpred1.10FCVal | pT+clump.10FCVal | 0.102 | 0.084 | 0.018 | 0.0000000 | 0.092 | 0.074 | 0.018 | 3.88e-03 |
Intelligence | lassosum.MultiPRS | pT+clump.10FCVal | 0.102 | 0.084 | 0.018 | 0.0095765 | 0.097 | 0.074 | 0.023 | 5.90e-04 |
Intelligence | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.089 | 0.084 | 0.005 | 0.2179892 | 0.079 | 0.074 | 0.006 | 4.62e-01 |
Intelligence | lassosum.PseudoVal | pT+clump.10FCVal | 0.064 | 0.084 | -0.020 | 0.0001393 | 0.059 | 0.074 | -0.015 | 1.38e-01 |
Intelligence | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.103 | 0.084 | 0.020 | 0.0056013 | 0.096 | 0.074 | 0.022 | 7.72e-04 |
Intelligence | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.072 | 0.072 | 0.000 | 1.0000000 | 0.065 | 0.065 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.103 | 0.072 | 0.030 | 0.0000202 | 0.094 | 0.065 | 0.029 | 2.94e-04 |
Intelligence | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.101 | 0.072 | 0.029 | 0.0000438 | 0.093 | 0.065 | 0.028 | 6.61e-04 |
Intelligence | PRScs.PseudoVal | SBayesR.PseudoVal | 0.099 | 0.072 | 0.026 | 0.0000000 | 0.092 | 0.065 | 0.028 | 8.15e-04 |
Intelligence | All.MultiPRS | SBayesR.PseudoVal | 0.104 | 0.072 | 0.032 | 0.0000062 | 0.098 | 0.065 | 0.033 | 5.00e-05 |
Intelligence | PRScs.MultiPRS | SBayesR.PseudoVal | 0.100 | 0.072 | 0.028 | 0.0000759 | 0.093 | 0.065 | 0.028 | 4.86e-04 |
Intelligence | LDpred2.10FCVal | SBayesR.PseudoVal | 0.103 | 0.072 | 0.030 | 0.0000000 | 0.093 | 0.065 | 0.028 | 4.22e-04 |
Intelligence | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.103 | 0.072 | 0.031 | 0.0000000 | 0.095 | 0.065 | 0.031 | 2.33e-04 |
Intelligence | pT+clump.10FCVal | SBayesR.PseudoVal | 0.084 | 0.072 | 0.011 | 0.0191978 | 0.074 | 0.065 | 0.009 | 3.36e-01 |
Intelligence | lassosum.PseudoVal | SBayesR.PseudoVal | 0.064 | 0.072 | -0.009 | 0.0799085 | 0.059 | 0.065 | -0.006 | 5.42e-01 |
Intelligence | LDpred2.Inf | SBayesR.PseudoVal | 0.101 | 0.072 | 0.028 | 0.0000000 | 0.093 | 0.065 | 0.028 | 8.83e-04 |
Intelligence | PRScs.10FCVal | SBayesR.PseudoVal | 0.099 | 0.072 | 0.027 | 0.0000000 | 0.089 | 0.065 | 0.025 | 2.80e-03 |
Intelligence | SBLUP.Inf | SBayesR.PseudoVal | 0.100 | 0.072 | 0.028 | 0.0000000 | 0.092 | 0.065 | 0.028 | 1.05e-03 |
Intelligence | lassosum.MultiPRS | SBayesR.PseudoVal | 0.102 | 0.072 | 0.030 | 0.0000260 | 0.097 | 0.065 | 0.032 | 1.03e-04 |
Intelligence | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.072 | 0.028 | 0.0000000 | 0.093 | 0.065 | 0.028 | 1.01e-03 |
Intelligence | lassosum.10FCVal | SBayesR.PseudoVal | 0.099 | 0.072 | 0.026 | 0.0000000 | 0.093 | 0.065 | 0.029 | 6.09e-04 |
Intelligence | LDpred1.Inf | SBayesR.PseudoVal | 0.100 | 0.072 | 0.027 | 0.0000000 | 0.092 | 0.065 | 0.027 | 1.78e-03 |
Intelligence | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.086 | 0.072 | 0.014 | 0.0471114 | 0.080 | 0.065 | 0.015 | 9.33e-02 |
Intelligence | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.089 | 0.072 | 0.016 | 0.0002037 | 0.079 | 0.065 | 0.015 | 9.17e-02 |
Intelligence | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.103 | 0.072 | 0.031 | 0.0000123 | 0.096 | 0.065 | 0.031 | 2.00e-04 |
Intelligence | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.103 | 0.072 | 0.030 | 0.0000000 | 0.093 | 0.065 | 0.028 | 5.14e-04 |
Intelligence | LDpred1.10FCVal | SBayesR.PseudoVal | 0.102 | 0.072 | 0.029 | 0.0000000 | 0.092 | 0.065 | 0.028 | 8.80e-04 |
Intelligence | All.MultiPRS | SBLUP.Inf | 0.104 | 0.100 | 0.004 | 0.5834973 | 0.098 | 0.092 | 0.005 | 5.63e-02 |
Intelligence | LDpred2.MultiPRS | SBLUP.Inf | 0.103 | 0.100 | 0.002 | 0.7622793 | 0.094 | 0.092 | 0.002 | 5.15e-01 |
Intelligence | PRScs.PseudoVal | SBLUP.Inf | 0.099 | 0.100 | -0.002 | 0.2726428 | 0.092 | 0.092 | 0.000 | 9.81e-01 |
Intelligence | lassosum.PseudoVal | SBLUP.Inf | 0.064 | 0.100 | -0.037 | 0.0000000 | 0.059 | 0.092 | -0.034 | 5.20e-04 |
Intelligence | LDpred2.Inf | SBLUP.Inf | 0.101 | 0.100 | 0.000 | 0.6149355 | 0.093 | 0.092 | 0.000 | 5.80e-01 |
Intelligence | MegaPRS.10FCVal | SBLUP.Inf | 0.103 | 0.100 | 0.003 | 0.0705461 | 0.095 | 0.092 | 0.003 | 4.21e-01 |
Intelligence | pT+clump.10FCVal | SBLUP.Inf | 0.084 | 0.100 | -0.017 | 0.0000001 | 0.074 | 0.092 | -0.018 | 2.16e-03 |
Intelligence | lassosum.MultiPRS | SBLUP.Inf | 0.102 | 0.100 | 0.002 | 0.8037983 | 0.097 | 0.092 | 0.004 | 1.66e-01 |
Intelligence | LDpred2.PseudoVal | SBLUP.Inf | 0.100 | 0.100 | 0.000 | 0.9736102 | 0.093 | 0.092 | 0.000 | 8.88e-01 |
Intelligence | LDpred1.MultiPRS | SBLUP.Inf | 0.101 | 0.100 | 0.001 | 0.8985678 | 0.093 | 0.092 | 0.001 | 7.78e-01 |
Intelligence | MegaPRS.PseudoVal | SBLUP.Inf | 0.103 | 0.100 | 0.003 | 0.1561441 | 0.093 | 0.092 | 0.001 | 8.62e-01 |
Intelligence | pT+clump.MultiPRS | SBLUP.Inf | 0.086 | 0.100 | -0.014 | 0.0478871 | 0.080 | 0.092 | -0.013 | 3.51e-02 |
Intelligence | DBSLMM.PseudoVal | SBLUP.Inf | 0.089 | 0.100 | -0.012 | 0.0000022 | 0.079 | 0.092 | -0.013 | 8.58e-03 |
Intelligence | LDpred2.10FCVal | SBLUP.Inf | 0.103 | 0.100 | 0.003 | 0.0337563 | 0.093 | 0.092 | 0.001 | 7.92e-01 |
Intelligence | LDpred1.Inf | SBLUP.Inf | 0.100 | 0.100 | -0.001 | 0.5309405 | 0.092 | 0.092 | -0.001 | 5.93e-01 |
Intelligence | SBayesR.PseudoVal | SBLUP.Inf | 0.072 | 0.100 | -0.028 | 0.0000000 | 0.065 | 0.092 | -0.028 | 1.05e-03 |
Intelligence | SBLUP.Inf | SBLUP.Inf | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.MultiPRS | SBLUP.Inf | 0.103 | 0.100 | 0.003 | 0.6685759 | 0.096 | 0.092 | 0.003 | 3.53e-01 |
Intelligence | PRScs.10FCVal | SBLUP.Inf | 0.099 | 0.100 | -0.001 | 0.6000761 | 0.089 | 0.092 | -0.003 | 3.81e-01 |
Intelligence | LDpred1.10FCVal | SBLUP.Inf | 0.102 | 0.100 | 0.001 | 0.2402238 | 0.092 | 0.092 | 0.000 | 9.10e-01 |
Intelligence | lassosum.10FCVal | SBLUP.Inf | 0.099 | 0.100 | -0.001 | 0.4256285 | 0.093 | 0.092 | 0.001 | 8.23e-01 |
Intelligence | PRScs.MultiPRS | SBLUP.Inf | 0.100 | 0.100 | 0.000 | 0.9962872 | 0.093 | 0.092 | 0.001 | 8.46e-01 |
Height | DBSLMM.PseudoVal | All.MultiPRS | 0.332 | 0.361 | -0.029 | 0.0000036 | 0.327 | 0.365 | -0.037 | 2.71e-22 |
Height | SBayesR.PseudoVal | All.MultiPRS | 0.344 | 0.361 | -0.017 | 0.0056261 | 0.343 | 0.365 | -0.021 | 2.56e-12 |
Height | lassosum.10FCVal | All.MultiPRS | 0.347 | 0.361 | -0.014 | 0.0268036 | 0.346 | 0.365 | -0.019 | 2.29e-12 |
Height | LDpred2.10FCVal | All.MultiPRS | 0.343 | 0.361 | -0.018 | 0.0028095 | 0.346 | 0.365 | -0.019 | 1.49e-09 |
Height | MegaPRS.MultiPRS | All.MultiPRS | 0.352 | 0.361 | -0.009 | 0.0000000 | 0.352 | 0.365 | -0.013 | 1.96e-08 |
Height | PRScs.10FCVal | All.MultiPRS | 0.345 | 0.361 | -0.016 | 0.0099339 | 0.344 | 0.365 | -0.021 | 4.46e-13 |
Height | LDpred2.Inf | All.MultiPRS | 0.305 | 0.361 | -0.056 | 0.0000000 | 0.305 | 0.365 | -0.060 | 1.70e-29 |
Height | MegaPRS.10FCVal | All.MultiPRS | 0.338 | 0.361 | -0.023 | 0.0001961 | 0.335 | 0.365 | -0.030 | 1.01e-17 |
Height | pT+clump.MultiPRS | All.MultiPRS | 0.320 | 0.361 | -0.041 | 0.0000000 | 0.313 | 0.365 | -0.052 | 9.14e-30 |
Height | lassosum.PseudoVal | All.MultiPRS | 0.285 | 0.361 | -0.076 | 0.0000000 | 0.281 | 0.365 | -0.084 | 4.10e-42 |
Height | PRScs.MultiPRS | All.MultiPRS | 0.347 | 0.361 | -0.014 | 0.0000000 | 0.345 | 0.365 | -0.019 | 1.38e-12 |
Height | LDpred1.Inf | All.MultiPRS | 0.299 | 0.361 | -0.062 | 0.0000000 | 0.303 | 0.365 | -0.061 | 2.93e-28 |
Height | MegaPRS.PseudoVal | All.MultiPRS | 0.324 | 0.361 | -0.036 | 0.0000000 | 0.321 | 0.365 | -0.044 | 2.10e-24 |
Height | PRScs.PseudoVal | All.MultiPRS | 0.346 | 0.361 | -0.015 | 0.0156934 | 0.344 | 0.365 | -0.021 | 3.60e-13 |
Height | All.MultiPRS | All.MultiPRS | 0.361 | 0.361 | 0.000 | 1.0000000 | 0.365 | 0.365 | 0.000 | 1.00e+00 |
Height | LDpred2.MultiPRS | All.MultiPRS | 0.350 | 0.361 | -0.011 | 0.0769564 | 0.354 | 0.365 | -0.011 | 8.69e-06 |
Height | LDpred1.MultiPRS | All.MultiPRS | 0.303 | 0.361 | -0.058 | 0.0000000 | 0.307 | 0.365 | -0.058 | 3.47e-27 |
Height | pT+clump.10FCVal | All.MultiPRS | 0.304 | 0.361 | -0.057 | 0.0000000 | 0.299 | 0.365 | -0.066 | 9.53e-35 |
Height | lassosum.MultiPRS | All.MultiPRS | 0.350 | 0.361 | -0.011 | 0.0954342 | 0.348 | 0.365 | -0.016 | 1.27e-11 |
Height | LDpred2.PseudoVal | All.MultiPRS | 0.304 | 0.361 | -0.057 | 0.0000000 | 0.304 | 0.365 | -0.061 | 1.03e-29 |
Height | LDpred1.10FCVal | All.MultiPRS | 0.300 | 0.361 | -0.061 | 0.0000000 | 0.301 | 0.365 | -0.064 | 1.96e-30 |
Height | SBLUP.Inf | All.MultiPRS | 0.293 | 0.361 | -0.068 | 0.0000000 | 0.294 | 0.365 | -0.071 | 5.93e-35 |
Height | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.346 | 0.332 | 0.014 | 0.0000000 | 0.344 | 0.327 | 0.016 | 3.34e-08 |
Height | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.344 | 0.332 | 0.012 | 0.0000024 | 0.343 | 0.327 | 0.016 | 1.18e-03 |
Height | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.350 | 0.332 | 0.017 | 0.0073410 | 0.354 | 0.327 | 0.026 | 2.99e-12 |
Height | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.347 | 0.332 | 0.015 | 0.0164450 | 0.345 | 0.327 | 0.018 | 1.40e-08 |
Height | LDpred1.Inf | DBSLMM.PseudoVal | 0.299 | 0.332 | -0.034 | 0.0000000 | 0.303 | 0.327 | -0.024 | 4.78e-10 |
Height | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.320 | 0.332 | -0.013 | 0.0489816 | 0.313 | 0.327 | -0.015 | 2.75e-03 |
Height | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.343 | 0.332 | 0.010 | 0.0000000 | 0.346 | 0.327 | 0.019 | 2.03e-08 |
Height | lassosum.10FCVal | DBSLMM.PseudoVal | 0.347 | 0.332 | 0.015 | 0.0000000 | 0.346 | 0.327 | 0.018 | 4.86e-06 |
Height | LDpred2.Inf | DBSLMM.PseudoVal | 0.305 | 0.332 | -0.028 | 0.0000000 | 0.305 | 0.327 | -0.023 | 5.07e-09 |
Height | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.324 | 0.332 | -0.008 | 0.0053630 | 0.321 | 0.327 | -0.007 | 2.53e-01 |
Height | All.MultiPRS | DBSLMM.PseudoVal | 0.361 | 0.332 | 0.029 | 0.0000036 | 0.365 | 0.327 | 0.037 | 2.71e-22 |
Height | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.350 | 0.332 | 0.018 | 0.0051782 | 0.348 | 0.327 | 0.021 | 4.97e-09 |
Height | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.304 | 0.332 | -0.028 | 0.0000000 | 0.304 | 0.327 | -0.024 | 2.29e-09 |
Height | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.303 | 0.332 | -0.030 | 0.0000059 | 0.307 | 0.327 | -0.021 | 2.55e-08 |
Height | SBLUP.Inf | DBSLMM.PseudoVal | 0.293 | 0.332 | -0.039 | 0.0000000 | 0.294 | 0.327 | -0.034 | 1.65e-18 |
Height | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.285 | 0.332 | -0.048 | 0.0000000 | 0.281 | 0.327 | -0.046 | 1.21e-09 |
Height | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.332 | 0.332 | 0.000 | 1.0000000 | 0.327 | 0.327 | 0.000 | 1.00e+00 |
Height | PRScs.10FCVal | DBSLMM.PseudoVal | 0.345 | 0.332 | 0.013 | 0.0000000 | 0.344 | 0.327 | 0.016 | 2.79e-06 |
Height | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.300 | 0.332 | -0.033 | 0.0000000 | 0.301 | 0.327 | -0.026 | 1.81e-10 |
Height | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.304 | 0.332 | -0.028 | 0.0000000 | 0.299 | 0.327 | -0.029 | 9.51e-06 |
Height | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.352 | 0.332 | 0.020 | 0.0012435 | 0.352 | 0.327 | 0.025 | 2.67e-10 |
Height | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.338 | 0.332 | 0.006 | 0.0043460 | 0.335 | 0.327 | 0.007 | 6.78e-02 |
Height | LDpred2.MultiPRS | lassosum.MultiPRS | 0.350 | 0.350 | -0.001 | 0.9089134 | 0.354 | 0.348 | 0.005 | 6.88e-02 |
Height | LDpred2.PseudoVal | lassosum.MultiPRS | 0.304 | 0.350 | -0.046 | 0.0000000 | 0.304 | 0.348 | -0.045 | 1.49e-16 |
Height | PRScs.MultiPRS | lassosum.MultiPRS | 0.347 | 0.350 | -0.003 | 0.6200393 | 0.345 | 0.348 | -0.003 | 1.57e-01 |
Height | LDpred2.Inf | lassosum.MultiPRS | 0.305 | 0.350 | -0.046 | 0.0000000 | 0.305 | 0.348 | -0.044 | 2.03e-16 |
Height | PRScs.PseudoVal | lassosum.MultiPRS | 0.346 | 0.350 | -0.004 | 0.5091585 | 0.344 | 0.348 | -0.005 | 5.46e-02 |
Height | pT+clump.MultiPRS | lassosum.MultiPRS | 0.320 | 0.350 | -0.031 | 0.0000019 | 0.313 | 0.348 | -0.036 | 6.06e-16 |
Height | PRScs.10FCVal | lassosum.MultiPRS | 0.345 | 0.350 | -0.005 | 0.4132332 | 0.344 | 0.348 | -0.005 | 5.36e-02 |
Height | LDpred2.10FCVal | lassosum.MultiPRS | 0.343 | 0.350 | -0.008 | 0.2270626 | 0.346 | 0.348 | -0.002 | 4.76e-01 |
Height | pT+clump.10FCVal | lassosum.MultiPRS | 0.304 | 0.350 | -0.046 | 0.0000000 | 0.299 | 0.348 | -0.050 | 8.33e-20 |
Height | SBayesR.PseudoVal | lassosum.MultiPRS | 0.344 | 0.350 | -0.006 | 0.3173601 | 0.343 | 0.348 | -0.005 | 1.60e-01 |
Height | lassosum.PseudoVal | lassosum.MultiPRS | 0.285 | 0.350 | -0.066 | 0.0000000 | 0.281 | 0.348 | -0.067 | 4.70e-31 |
Height | All.MultiPRS | lassosum.MultiPRS | 0.361 | 0.350 | 0.011 | 0.0954342 | 0.365 | 0.348 | 0.016 | 1.27e-11 |
Height | SBLUP.Inf | lassosum.MultiPRS | 0.293 | 0.350 | -0.057 | 0.0000000 | 0.294 | 0.348 | -0.055 | 2.87e-23 |
Height | LDpred1.MultiPRS | lassosum.MultiPRS | 0.303 | 0.350 | -0.047 | 0.0000000 | 0.307 | 0.348 | -0.042 | 7.22e-16 |
Height | MegaPRS.10FCVal | lassosum.MultiPRS | 0.338 | 0.350 | -0.012 | 0.0547903 | 0.335 | 0.348 | -0.014 | 8.06e-04 |
Height | lassosum.MultiPRS | lassosum.MultiPRS | 0.350 | 0.350 | 0.000 | 1.0000000 | 0.348 | 0.348 | 0.000 | 1.00e+00 |
Height | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.332 | 0.350 | -0.018 | 0.0051782 | 0.327 | 0.348 | -0.021 | 4.97e-09 |
Height | LDpred1.10FCVal | lassosum.MultiPRS | 0.300 | 0.350 | -0.051 | 0.0000000 | 0.301 | 0.348 | -0.047 | 1.35e-18 |
Height | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.324 | 0.350 | -0.026 | 0.0000534 | 0.321 | 0.348 | -0.028 | 6.60e-09 |
Height | LDpred1.Inf | lassosum.MultiPRS | 0.299 | 0.350 | -0.052 | 0.0000000 | 0.303 | 0.348 | -0.045 | 5.14e-17 |
Height | lassosum.10FCVal | lassosum.MultiPRS | 0.347 | 0.350 | -0.003 | 0.6398235 | 0.346 | 0.348 | -0.003 | 5.59e-02 |
Height | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.352 | 0.350 | 0.002 | 0.7566459 | 0.352 | 0.348 | 0.004 | 2.32e-01 |
Height | MegaPRS.10FCVal | lassosum.10FCVal | 0.338 | 0.347 | -0.009 | 0.0000056 | 0.335 | 0.346 | -0.011 | 9.05e-03 |
Height | PRScs.MultiPRS | lassosum.10FCVal | 0.347 | 0.347 | 0.000 | 0.9778168 | 0.345 | 0.346 | 0.000 | 8.93e-01 |
Height | LDpred1.Inf | lassosum.10FCVal | 0.299 | 0.347 | -0.049 | 0.0000000 | 0.303 | 0.346 | -0.042 | 4.21e-14 |
Height | pT+clump.MultiPRS | lassosum.10FCVal | 0.320 | 0.347 | -0.028 | 0.0000179 | 0.313 | 0.346 | -0.033 | 2.93e-13 |
Height | All.MultiPRS | lassosum.10FCVal | 0.361 | 0.347 | 0.014 | 0.0268036 | 0.365 | 0.346 | 0.019 | 2.29e-12 |
Height | LDpred2.MultiPRS | lassosum.10FCVal | 0.350 | 0.347 | 0.002 | 0.7247839 | 0.354 | 0.346 | 0.008 | 8.36e-03 |
Height | SBayesR.PseudoVal | lassosum.10FCVal | 0.344 | 0.347 | -0.003 | 0.0862397 | 0.343 | 0.346 | -0.002 | 5.64e-01 |
Height | lassosum.MultiPRS | lassosum.10FCVal | 0.350 | 0.347 | 0.003 | 0.6398235 | 0.348 | 0.346 | 0.003 | 5.59e-02 |
Height | LDpred2.PseudoVal | lassosum.10FCVal | 0.304 | 0.347 | -0.043 | 0.0000000 | 0.304 | 0.346 | -0.042 | 1.17e-13 |
Height | LDpred1.10FCVal | lassosum.10FCVal | 0.300 | 0.347 | -0.048 | 0.0000000 | 0.301 | 0.346 | -0.045 | 1.12e-15 |
Height | SBLUP.Inf | lassosum.10FCVal | 0.293 | 0.347 | -0.054 | 0.0000000 | 0.294 | 0.346 | -0.052 | 1.12e-19 |
Height | lassosum.PseudoVal | lassosum.10FCVal | 0.285 | 0.347 | -0.063 | 0.0000000 | 0.281 | 0.346 | -0.065 | 1.96e-27 |
Height | DBSLMM.PseudoVal | lassosum.10FCVal | 0.332 | 0.347 | -0.015 | 0.0000000 | 0.327 | 0.346 | -0.018 | 4.86e-06 |
Height | LDpred2.10FCVal | lassosum.10FCVal | 0.343 | 0.347 | -0.005 | 0.0069141 | 0.346 | 0.346 | 0.000 | 9.23e-01 |
Height | MegaPRS.PseudoVal | lassosum.10FCVal | 0.324 | 0.347 | -0.023 | 0.0000000 | 0.321 | 0.346 | -0.025 | 2.44e-07 |
Height | PRScs.PseudoVal | lassosum.10FCVal | 0.346 | 0.347 | -0.001 | 0.3687932 | 0.344 | 0.346 | -0.002 | 5.02e-01 |
Height | lassosum.10FCVal | lassosum.10FCVal | 0.347 | 0.347 | 0.000 | 1.0000000 | 0.346 | 0.346 | 0.000 | 1.00e+00 |
Height | LDpred2.Inf | lassosum.10FCVal | 0.305 | 0.347 | -0.043 | 0.0000000 | 0.305 | 0.346 | -0.041 | 1.71e-13 |
Height | LDpred1.MultiPRS | lassosum.10FCVal | 0.303 | 0.347 | -0.044 | 0.0000000 | 0.307 | 0.346 | -0.039 | 4.45e-13 |
Height | pT+clump.10FCVal | lassosum.10FCVal | 0.304 | 0.347 | -0.043 | 0.0000000 | 0.299 | 0.346 | -0.047 | 1.39e-16 |
Height | MegaPRS.MultiPRS | lassosum.10FCVal | 0.352 | 0.347 | 0.005 | 0.4195998 | 0.352 | 0.346 | 0.006 | 4.90e-02 |
Height | PRScs.10FCVal | lassosum.10FCVal | 0.345 | 0.347 | -0.002 | 0.1043286 | 0.344 | 0.346 | -0.002 | 5.20e-01 |
Height | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.352 | 0.285 | 0.068 | 0.0000000 | 0.352 | 0.281 | 0.071 | 1.05e-26 |
Height | PRScs.10FCVal | lassosum.PseudoVal | 0.345 | 0.285 | 0.061 | 0.0000000 | 0.344 | 0.281 | 0.063 | 1.20e-29 |
Height | lassosum.MultiPRS | lassosum.PseudoVal | 0.350 | 0.285 | 0.066 | 0.0000000 | 0.348 | 0.281 | 0.067 | 4.70e-31 |
Height | LDpred2.PseudoVal | lassosum.PseudoVal | 0.304 | 0.285 | 0.020 | 0.0000189 | 0.304 | 0.281 | 0.023 | 1.32e-02 |
Height | MegaPRS.10FCVal | lassosum.PseudoVal | 0.338 | 0.285 | 0.054 | 0.0000000 | 0.335 | 0.281 | 0.054 | 2.42e-12 |
Height | pT+clump.MultiPRS | lassosum.PseudoVal | 0.320 | 0.285 | 0.035 | 0.0000001 | 0.313 | 0.281 | 0.032 | 6.86e-06 |
Height | lassosum.PseudoVal | lassosum.PseudoVal | 0.285 | 0.285 | 0.000 | 1.0000000 | 0.281 | 0.281 | 0.000 | 1.00e+00 |
Height | PRScs.MultiPRS | lassosum.PseudoVal | 0.347 | 0.285 | 0.063 | 0.0000000 | 0.345 | 0.281 | 0.064 | 1.13e-28 |
Height | LDpred1.Inf | lassosum.PseudoVal | 0.299 | 0.285 | 0.014 | 0.0021429 | 0.303 | 0.281 | 0.022 | 1.49e-02 |
Height | SBayesR.PseudoVal | lassosum.PseudoVal | 0.344 | 0.285 | 0.059 | 0.0000000 | 0.343 | 0.281 | 0.062 | 7.00e-31 |
Height | PRScs.PseudoVal | lassosum.PseudoVal | 0.346 | 0.285 | 0.062 | 0.0000000 | 0.344 | 0.281 | 0.063 | 6.85e-24 |
Height | All.MultiPRS | lassosum.PseudoVal | 0.361 | 0.285 | 0.076 | 0.0000000 | 0.365 | 0.281 | 0.084 | 4.10e-42 |
Height | LDpred2.MultiPRS | lassosum.PseudoVal | 0.350 | 0.285 | 0.065 | 0.0000000 | 0.354 | 0.281 | 0.073 | 8.00e-31 |
Height | LDpred1.MultiPRS | lassosum.PseudoVal | 0.303 | 0.285 | 0.018 | 0.0053031 | 0.307 | 0.281 | 0.026 | 4.43e-03 |
Height | pT+clump.10FCVal | lassosum.PseudoVal | 0.304 | 0.285 | 0.020 | 0.0000000 | 0.299 | 0.281 | 0.018 | 1.14e-02 |
Height | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.332 | 0.285 | 0.048 | 0.0000000 | 0.327 | 0.281 | 0.046 | 1.21e-09 |
Height | LDpred1.10FCVal | lassosum.PseudoVal | 0.300 | 0.285 | 0.015 | 0.0007588 | 0.301 | 0.281 | 0.020 | 2.68e-02 |
Height | SBLUP.Inf | lassosum.PseudoVal | 0.293 | 0.285 | 0.009 | 0.0589786 | 0.294 | 0.281 | 0.013 | 1.85e-01 |
Height | lassosum.10FCVal | lassosum.PseudoVal | 0.347 | 0.285 | 0.063 | 0.0000000 | 0.346 | 0.281 | 0.065 | 1.96e-27 |
Height | LDpred2.10FCVal | lassosum.PseudoVal | 0.343 | 0.285 | 0.058 | 0.0000000 | 0.346 | 0.281 | 0.065 | 4.47e-19 |
Height | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.324 | 0.285 | 0.040 | 0.0000000 | 0.321 | 0.281 | 0.040 | 6.77e-08 |
Height | LDpred2.Inf | lassosum.PseudoVal | 0.305 | 0.285 | 0.020 | 0.0000082 | 0.305 | 0.281 | 0.023 | 1.02e-02 |
Height | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.344 | 0.352 | -0.008 | 0.1743575 | 0.343 | 0.352 | -0.009 | 2.63e-02 |
Height | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.320 | 0.352 | -0.033 | 0.0000004 | 0.313 | 0.352 | -0.039 | 7.89e-18 |
Height | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.343 | 0.352 | -0.010 | 0.1142935 | 0.346 | 0.352 | -0.006 | 7.21e-02 |
Height | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.324 | 0.352 | -0.028 | 0.0000065 | 0.321 | 0.352 | -0.031 | 5.53e-17 |
Height | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.346 | 0.352 | -0.006 | 0.3134230 | 0.344 | 0.352 | -0.008 | 7.18e-03 |
Height | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.347 | 0.352 | -0.005 | 0.0006713 | 0.345 | 0.352 | -0.007 | 2.59e-02 |
Height | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.350 | 0.352 | -0.003 | 0.6733026 | 0.354 | 0.352 | 0.002 | 5.95e-01 |
Height | LDpred2.Inf | MegaPRS.MultiPRS | 0.305 | 0.352 | -0.048 | 0.0000000 | 0.305 | 0.352 | -0.048 | 1.74e-20 |
Height | SBLUP.Inf | MegaPRS.MultiPRS | 0.293 | 0.352 | -0.059 | 0.0000000 | 0.294 | 0.352 | -0.058 | 5.03e-28 |
Height | All.MultiPRS | MegaPRS.MultiPRS | 0.361 | 0.352 | 0.009 | 0.0000000 | 0.365 | 0.352 | 0.013 | 1.96e-08 |
Height | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.304 | 0.352 | -0.048 | 0.0000000 | 0.304 | 0.352 | -0.048 | 1.68e-20 |
Height | PRScs.10FCVal | MegaPRS.MultiPRS | 0.345 | 0.352 | -0.007 | 0.2417476 | 0.344 | 0.352 | -0.008 | 1.16e-02 |
Height | LDpred1.Inf | MegaPRS.MultiPRS | 0.299 | 0.352 | -0.054 | 0.0000000 | 0.303 | 0.352 | -0.049 | 4.11e-21 |
Height | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.304 | 0.352 | -0.048 | 0.0000000 | 0.299 | 0.352 | -0.053 | 2.10e-20 |
Height | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.332 | 0.352 | -0.020 | 0.0012435 | 0.327 | 0.352 | -0.025 | 2.67e-10 |
Height | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.285 | 0.352 | -0.068 | 0.0000000 | 0.281 | 0.352 | -0.071 | 1.05e-26 |
Height | lassosum.10FCVal | MegaPRS.MultiPRS | 0.347 | 0.352 | -0.005 | 0.4195998 | 0.346 | 0.352 | -0.006 | 4.90e-02 |
Height | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.338 | 0.352 | -0.014 | 0.0202778 | 0.335 | 0.352 | -0.017 | 1.98e-10 |
Height | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.303 | 0.352 | -0.049 | 0.0000000 | 0.307 | 0.352 | -0.045 | 1.02e-19 |
Height | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.350 | 0.352 | -0.002 | 0.7566459 | 0.348 | 0.352 | -0.004 | 2.32e-01 |
Height | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.352 | 0.352 | 0.000 | 1.0000000 | 0.352 | 0.352 | 0.000 | 1.00e+00 |
Height | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.300 | 0.352 | -0.053 | 0.0000000 | 0.301 | 0.352 | -0.051 | 2.35e-22 |
Height | LDpred2.Inf | MegaPRS.PseudoVal | 0.305 | 0.324 | -0.020 | 0.0000000 | 0.305 | 0.321 | -0.016 | 1.98e-02 |
Height | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.343 | 0.324 | 0.018 | 0.0000000 | 0.346 | 0.321 | 0.025 | 2.60e-06 |
Height | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.346 | 0.324 | 0.022 | 0.0000000 | 0.344 | 0.321 | 0.023 | 8.80e-06 |
Height | All.MultiPRS | MegaPRS.PseudoVal | 0.361 | 0.324 | 0.036 | 0.0000000 | 0.365 | 0.321 | 0.044 | 2.10e-24 |
Height | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.350 | 0.324 | 0.025 | 0.0000913 | 0.354 | 0.321 | 0.033 | 3.72e-11 |
Height | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.344 | 0.324 | 0.020 | 0.0000000 | 0.343 | 0.321 | 0.023 | 6.53e-06 |
Height | PRScs.10FCVal | MegaPRS.PseudoVal | 0.345 | 0.324 | 0.021 | 0.0000000 | 0.344 | 0.321 | 0.023 | 7.26e-06 |
Height | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.304 | 0.324 | -0.020 | 0.0000000 | 0.299 | 0.321 | -0.022 | 3.13e-04 |
Height | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.347 | 0.324 | 0.023 | 0.0002479 | 0.345 | 0.321 | 0.024 | 1.47e-06 |
Height | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.352 | 0.324 | 0.028 | 0.0000065 | 0.352 | 0.321 | 0.031 | 5.53e-17 |
Height | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.320 | 0.324 | -0.005 | 0.4596763 | 0.313 | 0.321 | -0.008 | 1.52e-01 |
Height | SBLUP.Inf | MegaPRS.PseudoVal | 0.293 | 0.324 | -0.031 | 0.0000000 | 0.294 | 0.321 | -0.027 | 1.39e-04 |
Height | lassosum.10FCVal | MegaPRS.PseudoVal | 0.347 | 0.324 | 0.023 | 0.0000000 | 0.346 | 0.321 | 0.025 | 2.44e-07 |
Height | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.304 | 0.324 | -0.020 | 0.0000000 | 0.304 | 0.321 | -0.017 | 1.58e-02 |
Height | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.324 | 0.324 | 0.000 | 1.0000000 | 0.321 | 0.321 | 0.000 | 1.00e+00 |
Height | LDpred1.Inf | MegaPRS.PseudoVal | 0.299 | 0.324 | -0.026 | 0.0000000 | 0.303 | 0.321 | -0.017 | 1.32e-02 |
Height | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.303 | 0.324 | -0.022 | 0.0009998 | 0.307 | 0.321 | -0.014 | 3.94e-02 |
Height | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.332 | 0.324 | 0.008 | 0.0053630 | 0.327 | 0.321 | 0.007 | 2.53e-01 |
Height | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.350 | 0.324 | 0.026 | 0.0000534 | 0.348 | 0.321 | 0.028 | 6.60e-09 |
Height | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.338 | 0.324 | 0.014 | 0.0000000 | 0.335 | 0.321 | 0.014 | 1.54e-03 |
Height | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.300 | 0.324 | -0.025 | 0.0000000 | 0.301 | 0.321 | -0.020 | 4.57e-03 |
Height | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.285 | 0.324 | -0.040 | 0.0000000 | 0.281 | 0.321 | -0.040 | 6.77e-08 |
Height | PRScs.10FCVal | MegaPRS.10FCVal | 0.345 | 0.338 | 0.007 | 0.0007817 | 0.344 | 0.335 | 0.009 | 3.35e-02 |
Height | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.320 | 0.338 | -0.018 | 0.0044830 | 0.313 | 0.335 | -0.022 | 1.57e-05 |
Height | LDpred2.10FCVal | MegaPRS.10FCVal | 0.343 | 0.338 | 0.005 | 0.0162972 | 0.346 | 0.335 | 0.011 | 3.59e-03 |
Height | PRScs.MultiPRS | MegaPRS.10FCVal | 0.347 | 0.338 | 0.009 | 0.1383071 | 0.345 | 0.335 | 0.011 | 9.25e-03 |
Height | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.350 | 0.338 | 0.012 | 0.0712512 | 0.354 | 0.335 | 0.019 | 1.68e-06 |
Height | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.344 | 0.338 | 0.006 | 0.0135163 | 0.343 | 0.335 | 0.009 | 7.48e-02 |
Height | pT+clump.10FCVal | MegaPRS.10FCVal | 0.304 | 0.338 | -0.034 | 0.0000000 | 0.299 | 0.335 | -0.036 | 2.22e-08 |
Height | LDpred2.Inf | MegaPRS.10FCVal | 0.305 | 0.338 | -0.033 | 0.0000000 | 0.305 | 0.335 | -0.030 | 3.85e-09 |
Height | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.304 | 0.338 | -0.034 | 0.0000000 | 0.304 | 0.335 | -0.031 | 2.06e-09 |
Height | All.MultiPRS | MegaPRS.10FCVal | 0.361 | 0.338 | 0.023 | 0.0001961 | 0.365 | 0.335 | 0.030 | 1.01e-17 |
Height | SBLUP.Inf | MegaPRS.10FCVal | 0.293 | 0.338 | -0.045 | 0.0000000 | 0.294 | 0.335 | -0.041 | 7.79e-16 |
Height | PRScs.PseudoVal | MegaPRS.10FCVal | 0.346 | 0.338 | 0.008 | 0.0000302 | 0.344 | 0.335 | 0.009 | 2.25e-02 |
Height | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.332 | 0.338 | -0.006 | 0.0043460 | 0.327 | 0.335 | -0.007 | 6.78e-02 |
Height | lassosum.MultiPRS | MegaPRS.10FCVal | 0.350 | 0.338 | 0.012 | 0.0547903 | 0.348 | 0.335 | 0.014 | 8.06e-04 |
Height | LDpred1.Inf | MegaPRS.10FCVal | 0.299 | 0.338 | -0.039 | 0.0000000 | 0.303 | 0.335 | -0.031 | 5.35e-10 |
Height | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.352 | 0.338 | 0.014 | 0.0202778 | 0.352 | 0.335 | 0.017 | 1.98e-10 |
Height | lassosum.10FCVal | MegaPRS.10FCVal | 0.347 | 0.338 | 0.009 | 0.0000056 | 0.346 | 0.335 | 0.011 | 9.05e-03 |
Height | lassosum.PseudoVal | MegaPRS.10FCVal | 0.285 | 0.338 | -0.054 | 0.0000000 | 0.281 | 0.335 | -0.054 | 2.42e-12 |
Height | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.338 | 0.338 | 0.000 | 1.0000000 | 0.335 | 0.335 | 0.000 | 1.00e+00 |
Height | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.324 | 0.338 | -0.014 | 0.0000000 | 0.321 | 0.335 | -0.014 | 1.54e-03 |
Height | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.303 | 0.338 | -0.035 | 0.0000001 | 0.307 | 0.335 | -0.028 | 8.28e-09 |
Height | LDpred1.10FCVal | MegaPRS.10FCVal | 0.300 | 0.338 | -0.038 | 0.0000000 | 0.301 | 0.335 | -0.034 | 5.15e-11 |
Height | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.350 | 0.303 | 0.047 | 0.0000000 | 0.354 | 0.307 | 0.047 | 3.26e-22 |
Height | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.304 | 0.303 | 0.001 | 0.8625214 | 0.304 | 0.307 | -0.003 | 2.62e-01 |
Height | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.344 | 0.303 | 0.041 | 0.0000000 | 0.343 | 0.307 | 0.037 | 3.49e-08 |
Height | LDpred1.Inf | LDpred1.MultiPRS | 0.299 | 0.303 | -0.004 | 0.5143497 | 0.303 | 0.307 | -0.003 | 5.54e-02 |
Height | PRScs.PseudoVal | LDpred1.MultiPRS | 0.346 | 0.303 | 0.043 | 0.0000000 | 0.344 | 0.307 | 0.037 | 1.52e-17 |
Height | PRScs.MultiPRS | LDpred1.MultiPRS | 0.347 | 0.303 | 0.044 | 0.0000000 | 0.345 | 0.307 | 0.039 | 1.96e-16 |
Height | LDpred2.Inf | LDpred1.MultiPRS | 0.305 | 0.303 | 0.002 | 0.7785432 | 0.305 | 0.307 | -0.002 | 3.84e-01 |
Height | LDpred2.10FCVal | LDpred1.MultiPRS | 0.343 | 0.303 | 0.040 | 0.0000000 | 0.346 | 0.307 | 0.039 | 1.00e-25 |
Height | pT+clump.10FCVal | LDpred1.MultiPRS | 0.304 | 0.303 | 0.001 | 0.8331600 | 0.299 | 0.307 | -0.008 | 3.07e-01 |
Height | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.324 | 0.303 | 0.022 | 0.0009998 | 0.321 | 0.307 | 0.014 | 3.94e-02 |
Height | PRScs.10FCVal | LDpred1.MultiPRS | 0.345 | 0.303 | 0.042 | 0.0000000 | 0.344 | 0.307 | 0.037 | 2.87e-13 |
Height | All.MultiPRS | LDpred1.MultiPRS | 0.361 | 0.303 | 0.058 | 0.0000000 | 0.365 | 0.307 | 0.058 | 3.47e-27 |
Height | SBLUP.Inf | LDpred1.MultiPRS | 0.293 | 0.303 | -0.009 | 0.1492986 | 0.294 | 0.307 | -0.013 | 1.97e-09 |
Height | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.303 | 0.303 | 0.000 | 1.0000000 | 0.307 | 0.307 | 0.000 | 1.00e+00 |
Height | lassosum.PseudoVal | LDpred1.MultiPRS | 0.285 | 0.303 | -0.018 | 0.0053031 | 0.281 | 0.307 | -0.026 | 4.43e-03 |
Height | lassosum.MultiPRS | LDpred1.MultiPRS | 0.350 | 0.303 | 0.047 | 0.0000000 | 0.348 | 0.307 | 0.042 | 7.22e-16 |
Height | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.332 | 0.303 | 0.030 | 0.0000059 | 0.327 | 0.307 | 0.021 | 2.55e-08 |
Height | LDpred1.10FCVal | LDpred1.MultiPRS | 0.300 | 0.303 | -0.003 | 0.6238680 | 0.301 | 0.307 | -0.006 | 1.77e-04 |
Height | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.320 | 0.303 | 0.017 | 0.0105426 | 0.313 | 0.307 | 0.006 | 3.22e-01 |
Height | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.338 | 0.303 | 0.035 | 0.0000001 | 0.335 | 0.307 | 0.028 | 8.28e-09 |
Height | lassosum.10FCVal | LDpred1.MultiPRS | 0.347 | 0.303 | 0.044 | 0.0000000 | 0.346 | 0.307 | 0.039 | 4.45e-13 |
Height | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.352 | 0.303 | 0.049 | 0.0000000 | 0.352 | 0.307 | 0.045 | 1.02e-19 |
Height | MegaPRS.MultiPRS | LDpred1.Inf | 0.352 | 0.299 | 0.054 | 0.0000000 | 0.352 | 0.303 | 0.049 | 4.11e-21 |
Height | PRScs.10FCVal | LDpred1.Inf | 0.345 | 0.299 | 0.047 | 0.0000000 | 0.344 | 0.303 | 0.040 | 1.44e-14 |
Height | LDpred2.MultiPRS | LDpred1.Inf | 0.350 | 0.299 | 0.051 | 0.0000000 | 0.354 | 0.303 | 0.050 | 2.82e-23 |
Height | LDpred1.MultiPRS | LDpred1.Inf | 0.303 | 0.299 | 0.004 | 0.5143497 | 0.307 | 0.303 | 0.003 | 5.54e-02 |
Height | pT+clump.10FCVal | LDpred1.Inf | 0.304 | 0.299 | 0.006 | 0.1479645 | 0.299 | 0.303 | -0.005 | 5.56e-01 |
Height | All.MultiPRS | LDpred1.Inf | 0.361 | 0.299 | 0.062 | 0.0000000 | 0.365 | 0.303 | 0.061 | 2.93e-28 |
Height | LDpred2.PseudoVal | LDpred1.Inf | 0.304 | 0.299 | 0.005 | 0.0000027 | 0.304 | 0.303 | 0.000 | 8.80e-01 |
Height | MegaPRS.10FCVal | LDpred1.Inf | 0.338 | 0.299 | 0.039 | 0.0000000 | 0.335 | 0.303 | 0.031 | 5.35e-10 |
Height | pT+clump.MultiPRS | LDpred1.Inf | 0.320 | 0.299 | 0.021 | 0.0013011 | 0.313 | 0.303 | 0.009 | 1.30e-01 |
Height | lassosum.MultiPRS | LDpred1.Inf | 0.350 | 0.299 | 0.052 | 0.0000000 | 0.348 | 0.303 | 0.045 | 5.14e-17 |
Height | DBSLMM.PseudoVal | LDpred1.Inf | 0.332 | 0.299 | 0.034 | 0.0000000 | 0.327 | 0.303 | 0.024 | 4.78e-10 |
Height | LDpred2.10FCVal | LDpred1.Inf | 0.343 | 0.299 | 0.044 | 0.0000000 | 0.346 | 0.303 | 0.042 | 7.90e-28 |
Height | MegaPRS.PseudoVal | LDpred1.Inf | 0.324 | 0.299 | 0.026 | 0.0000000 | 0.321 | 0.303 | 0.017 | 1.32e-02 |
Height | PRScs.PseudoVal | LDpred1.Inf | 0.346 | 0.299 | 0.048 | 0.0000000 | 0.344 | 0.303 | 0.040 | 3.43e-19 |
Height | lassosum.10FCVal | LDpred1.Inf | 0.347 | 0.299 | 0.049 | 0.0000000 | 0.346 | 0.303 | 0.042 | 4.21e-14 |
Height | LDpred2.Inf | LDpred1.Inf | 0.305 | 0.299 | 0.006 | 0.0000001 | 0.305 | 0.303 | 0.001 | 6.51e-01 |
Height | PRScs.MultiPRS | LDpred1.Inf | 0.347 | 0.299 | 0.049 | 0.0000000 | 0.345 | 0.303 | 0.042 | 7.00e-18 |
Height | LDpred1.10FCVal | LDpred1.Inf | 0.300 | 0.299 | 0.001 | 0.4804218 | 0.301 | 0.303 | -0.002 | 4.29e-01 |
Height | SBLUP.Inf | LDpred1.Inf | 0.293 | 0.299 | -0.005 | 0.0000004 | 0.294 | 0.303 | -0.010 | 9.68e-07 |
Height | lassosum.PseudoVal | LDpred1.Inf | 0.285 | 0.299 | -0.014 | 0.0021429 | 0.281 | 0.303 | -0.022 | 1.49e-02 |
Height | LDpred1.Inf | LDpred1.Inf | 0.299 | 0.299 | 0.000 | 1.0000000 | 0.303 | 0.303 | 0.000 | 1.00e+00 |
Height | SBayesR.PseudoVal | LDpred1.Inf | 0.344 | 0.299 | 0.045 | 0.0000000 | 0.343 | 0.303 | 0.040 | 5.63e-09 |
Height | LDpred2.Inf | LDpred1.10FCVal | 0.305 | 0.300 | 0.005 | 0.0035109 | 0.305 | 0.301 | 0.003 | 3.26e-01 |
Height | PRScs.10FCVal | LDpred1.10FCVal | 0.345 | 0.300 | 0.045 | 0.0000000 | 0.344 | 0.301 | 0.043 | 8.49e-16 |
Height | lassosum.MultiPRS | LDpred1.10FCVal | 0.350 | 0.300 | 0.051 | 0.0000000 | 0.348 | 0.301 | 0.047 | 1.35e-18 |
Height | LDpred2.MultiPRS | LDpred1.10FCVal | 0.350 | 0.300 | 0.050 | 0.0000000 | 0.354 | 0.301 | 0.053 | 3.39e-25 |
Height | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.352 | 0.300 | 0.053 | 0.0000000 | 0.352 | 0.301 | 0.051 | 2.35e-22 |
Height | SBayesR.PseudoVal | LDpred1.10FCVal | 0.344 | 0.300 | 0.044 | 0.0000000 | 0.343 | 0.301 | 0.042 | 3.56e-10 |
Height | PRScs.PseudoVal | LDpred1.10FCVal | 0.346 | 0.300 | 0.046 | 0.0000000 | 0.344 | 0.301 | 0.043 | 5.03e-20 |
Height | All.MultiPRS | LDpred1.10FCVal | 0.361 | 0.300 | 0.061 | 0.0000000 | 0.365 | 0.301 | 0.064 | 1.96e-30 |
Height | LDpred2.PseudoVal | LDpred1.10FCVal | 0.304 | 0.300 | 0.004 | 0.0120628 | 0.304 | 0.301 | 0.003 | 4.30e-01 |
Height | LDpred1.MultiPRS | LDpred1.10FCVal | 0.303 | 0.300 | 0.003 | 0.6238680 | 0.307 | 0.301 | 0.006 | 1.77e-04 |
Height | pT+clump.10FCVal | LDpred1.10FCVal | 0.304 | 0.300 | 0.005 | 0.2422354 | 0.299 | 0.301 | -0.002 | 7.79e-01 |
Height | SBLUP.Inf | LDpred1.10FCVal | 0.293 | 0.300 | -0.006 | 0.0000458 | 0.294 | 0.301 | -0.007 | 1.51e-02 |
Height | PRScs.MultiPRS | LDpred1.10FCVal | 0.347 | 0.300 | 0.048 | 0.0000000 | 0.345 | 0.301 | 0.044 | 4.74e-19 |
Height | MegaPRS.10FCVal | LDpred1.10FCVal | 0.338 | 0.300 | 0.038 | 0.0000000 | 0.335 | 0.301 | 0.034 | 5.15e-11 |
Height | pT+clump.MultiPRS | LDpred1.10FCVal | 0.320 | 0.300 | 0.020 | 0.0022723 | 0.313 | 0.301 | 0.012 | 6.28e-02 |
Height | LDpred1.Inf | LDpred1.10FCVal | 0.299 | 0.300 | -0.001 | 0.4804218 | 0.303 | 0.301 | 0.002 | 4.29e-01 |
Height | lassosum.10FCVal | LDpred1.10FCVal | 0.347 | 0.300 | 0.048 | 0.0000000 | 0.346 | 0.301 | 0.045 | 1.12e-15 |
Height | LDpred2.10FCVal | LDpred1.10FCVal | 0.343 | 0.300 | 0.043 | 0.0000000 | 0.346 | 0.301 | 0.045 | 3.02e-27 |
Height | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.324 | 0.300 | 0.025 | 0.0000000 | 0.321 | 0.301 | 0.020 | 4.57e-03 |
Height | LDpred1.10FCVal | LDpred1.10FCVal | 0.300 | 0.300 | 0.000 | 1.0000000 | 0.301 | 0.301 | 0.000 | 1.00e+00 |
Height | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.332 | 0.300 | 0.033 | 0.0000000 | 0.327 | 0.301 | 0.026 | 1.81e-10 |
Height | lassosum.PseudoVal | LDpred1.10FCVal | 0.285 | 0.300 | -0.015 | 0.0007588 | 0.281 | 0.301 | -0.020 | 2.68e-02 |
Height | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.332 | 0.350 | -0.017 | 0.0073410 | 0.327 | 0.354 | -0.026 | 2.99e-12 |
Height | LDpred2.10FCVal | LDpred2.MultiPRS | 0.343 | 0.350 | -0.007 | 0.2743261 | 0.346 | 0.354 | -0.008 | 1.99e-05 |
Height | PRScs.PseudoVal | LDpred2.MultiPRS | 0.346 | 0.350 | -0.003 | 0.5861103 | 0.344 | 0.354 | -0.010 | 1.95e-04 |
Height | All.MultiPRS | LDpred2.MultiPRS | 0.361 | 0.350 | 0.011 | 0.0769564 | 0.365 | 0.354 | 0.011 | 8.69e-06 |
Height | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.350 | 0.350 | 0.000 | 1.0000000 | 0.354 | 0.354 | 0.000 | 1.00e+00 |
Height | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.324 | 0.350 | -0.025 | 0.0000913 | 0.321 | 0.354 | -0.033 | 3.72e-11 |
Height | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.338 | 0.350 | -0.012 | 0.0712512 | 0.335 | 0.354 | -0.019 | 1.68e-06 |
Height | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.320 | 0.350 | -0.030 | 0.0000033 | 0.313 | 0.354 | -0.041 | 2.79e-17 |
Height | lassosum.PseudoVal | LDpred2.MultiPRS | 0.285 | 0.350 | -0.065 | 0.0000000 | 0.281 | 0.354 | -0.073 | 8.00e-31 |
Height | PRScs.MultiPRS | LDpred2.MultiPRS | 0.347 | 0.350 | -0.002 | 0.7055654 | 0.345 | 0.354 | -0.008 | 1.11e-03 |
Height | LDpred1.Inf | LDpred2.MultiPRS | 0.299 | 0.350 | -0.051 | 0.0000000 | 0.303 | 0.354 | -0.050 | 2.82e-23 |
Height | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.344 | 0.350 | -0.006 | 0.3785673 | 0.343 | 0.354 | -0.010 | 5.78e-03 |
Height | pT+clump.10FCVal | LDpred2.MultiPRS | 0.304 | 0.350 | -0.045 | 0.0000000 | 0.299 | 0.354 | -0.055 | 5.22e-20 |
Height | lassosum.10FCVal | LDpred2.MultiPRS | 0.347 | 0.350 | -0.002 | 0.7247839 | 0.346 | 0.354 | -0.008 | 8.36e-03 |
Height | LDpred2.Inf | LDpred2.MultiPRS | 0.305 | 0.350 | -0.045 | 0.0000000 | 0.305 | 0.354 | -0.049 | 3.11e-25 |
Height | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.303 | 0.350 | -0.047 | 0.0000000 | 0.307 | 0.354 | -0.047 | 3.26e-22 |
Height | SBLUP.Inf | LDpred2.MultiPRS | 0.293 | 0.350 | -0.056 | 0.0000000 | 0.294 | 0.354 | -0.060 | 1.54e-30 |
Height | lassosum.MultiPRS | LDpred2.MultiPRS | 0.350 | 0.350 | 0.001 | 0.9089134 | 0.348 | 0.354 | -0.005 | 6.88e-02 |
Height | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.304 | 0.350 | -0.046 | 0.0000000 | 0.304 | 0.354 | -0.050 | 1.98e-25 |
Height | LDpred1.10FCVal | LDpred2.MultiPRS | 0.300 | 0.350 | -0.050 | 0.0000000 | 0.301 | 0.354 | -0.053 | 3.39e-25 |
Height | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.352 | 0.350 | 0.003 | 0.6733026 | 0.352 | 0.354 | -0.002 | 5.95e-01 |
Height | PRScs.10FCVal | LDpred2.MultiPRS | 0.345 | 0.350 | -0.004 | 0.4831898 | 0.344 | 0.354 | -0.010 | 4.16e-04 |
Height | LDpred2.MultiPRS | LDpred2.10FCVal | 0.350 | 0.343 | 0.007 | 0.2743261 | 0.354 | 0.346 | 0.008 | 1.99e-05 |
Height | LDpred2.Inf | LDpred2.10FCVal | 0.305 | 0.343 | -0.038 | 0.0000000 | 0.305 | 0.346 | -0.041 | 2.73e-35 |
Height | PRScs.10FCVal | LDpred2.10FCVal | 0.345 | 0.343 | 0.003 | 0.1338252 | 0.344 | 0.346 | -0.002 | 5.29e-01 |
Height | SBayesR.PseudoVal | LDpred2.10FCVal | 0.344 | 0.343 | 0.001 | 0.5637031 | 0.343 | 0.346 | -0.003 | 5.79e-01 |
Height | lassosum.10FCVal | LDpred2.10FCVal | 0.347 | 0.343 | 0.005 | 0.0069141 | 0.346 | 0.346 | 0.000 | 9.23e-01 |
Height | LDpred2.10FCVal | LDpred2.10FCVal | 0.343 | 0.343 | 0.000 | 1.0000000 | 0.346 | 0.346 | 0.000 | 1.00e+00 |
Height | PRScs.PseudoVal | LDpred2.10FCVal | 0.346 | 0.343 | 0.004 | 0.0140896 | 0.344 | 0.346 | -0.002 | 4.43e-01 |
Height | LDpred1.MultiPRS | LDpred2.10FCVal | 0.303 | 0.343 | -0.040 | 0.0000000 | 0.307 | 0.346 | -0.039 | 1.00e-25 |
Height | pT+clump.10FCVal | LDpred2.10FCVal | 0.304 | 0.343 | -0.038 | 0.0000000 | 0.299 | 0.346 | -0.047 | 2.55e-13 |
Height | All.MultiPRS | LDpred2.10FCVal | 0.361 | 0.343 | 0.018 | 0.0028095 | 0.365 | 0.346 | 0.019 | 1.49e-09 |
Height | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.352 | 0.343 | 0.010 | 0.1142935 | 0.352 | 0.346 | 0.006 | 7.21e-02 |
Height | MegaPRS.10FCVal | LDpred2.10FCVal | 0.338 | 0.343 | -0.005 | 0.0162972 | 0.335 | 0.346 | -0.011 | 3.59e-03 |
Height | pT+clump.MultiPRS | LDpred2.10FCVal | 0.320 | 0.343 | -0.023 | 0.0003750 | 0.313 | 0.346 | -0.033 | 2.63e-11 |
Height | lassosum.MultiPRS | LDpred2.10FCVal | 0.350 | 0.343 | 0.008 | 0.2270626 | 0.348 | 0.346 | 0.002 | 4.76e-01 |
Height | PRScs.MultiPRS | LDpred2.10FCVal | 0.347 | 0.343 | 0.005 | 0.4565387 | 0.345 | 0.346 | -0.001 | 8.19e-01 |
Height | LDpred1.Inf | LDpred2.10FCVal | 0.299 | 0.343 | -0.044 | 0.0000000 | 0.303 | 0.346 | -0.042 | 7.90e-28 |
Height | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.324 | 0.343 | -0.018 | 0.0000000 | 0.321 | 0.346 | -0.025 | 2.60e-06 |
Height | SBLUP.Inf | LDpred2.10FCVal | 0.293 | 0.343 | -0.049 | 0.0000000 | 0.294 | 0.346 | -0.052 | 1.95e-38 |
Height | lassosum.PseudoVal | LDpred2.10FCVal | 0.285 | 0.343 | -0.058 | 0.0000000 | 0.281 | 0.346 | -0.065 | 4.47e-19 |
Height | LDpred2.PseudoVal | LDpred2.10FCVal | 0.304 | 0.343 | -0.039 | 0.0000000 | 0.304 | 0.346 | -0.042 | 3.55e-36 |
Height | LDpred1.10FCVal | LDpred2.10FCVal | 0.300 | 0.343 | -0.043 | 0.0000000 | 0.301 | 0.346 | -0.045 | 3.02e-27 |
Height | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.332 | 0.343 | -0.010 | 0.0000000 | 0.327 | 0.346 | -0.019 | 2.03e-08 |
Height | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.324 | 0.304 | 0.020 | 0.0000000 | 0.321 | 0.304 | 0.017 | 1.58e-02 |
Height | PRScs.PseudoVal | LDpred2.PseudoVal | 0.346 | 0.304 | 0.042 | 0.0000000 | 0.344 | 0.304 | 0.040 | 1.93e-18 |
Height | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.350 | 0.304 | 0.046 | 0.0000000 | 0.354 | 0.304 | 0.050 | 1.98e-25 |
Height | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.352 | 0.304 | 0.048 | 0.0000000 | 0.352 | 0.304 | 0.048 | 1.68e-20 |
Height | PRScs.10FCVal | LDpred2.PseudoVal | 0.345 | 0.304 | 0.041 | 0.0000000 | 0.344 | 0.304 | 0.040 | 2.85e-14 |
Height | All.MultiPRS | LDpred2.PseudoVal | 0.361 | 0.304 | 0.057 | 0.0000000 | 0.365 | 0.304 | 0.061 | 1.03e-29 |
Height | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.332 | 0.304 | 0.028 | 0.0000000 | 0.327 | 0.304 | 0.024 | 2.29e-09 |
Height | LDpred2.10FCVal | LDpred2.PseudoVal | 0.343 | 0.304 | 0.039 | 0.0000000 | 0.346 | 0.304 | 0.042 | 3.55e-36 |
Height | LDpred1.Inf | LDpred2.PseudoVal | 0.299 | 0.304 | -0.005 | 0.0000027 | 0.303 | 0.304 | 0.000 | 8.80e-01 |
Height | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.344 | 0.304 | 0.040 | 0.0000000 | 0.343 | 0.304 | 0.040 | 7.25e-09 |
Height | lassosum.10FCVal | LDpred2.PseudoVal | 0.347 | 0.304 | 0.043 | 0.0000000 | 0.346 | 0.304 | 0.042 | 1.17e-13 |
Height | LDpred2.Inf | LDpred2.PseudoVal | 0.305 | 0.304 | 0.001 | 0.0000007 | 0.305 | 0.304 | 0.001 | 1.95e-02 |
Height | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.304 | 0.304 | 0.000 | 1.0000000 | 0.304 | 0.304 | 0.000 | 1.00e+00 |
Height | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.303 | 0.304 | -0.001 | 0.8625214 | 0.307 | 0.304 | 0.003 | 2.62e-01 |
Height | pT+clump.10FCVal | LDpred2.PseudoVal | 0.304 | 0.304 | 0.000 | 0.9504557 | 0.299 | 0.304 | -0.005 | 5.30e-01 |
Height | lassosum.MultiPRS | LDpred2.PseudoVal | 0.350 | 0.304 | 0.046 | 0.0000000 | 0.348 | 0.304 | 0.045 | 1.49e-16 |
Height | PRScs.MultiPRS | LDpred2.PseudoVal | 0.347 | 0.304 | 0.043 | 0.0000000 | 0.345 | 0.304 | 0.041 | 2.32e-17 |
Height | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.338 | 0.304 | 0.034 | 0.0000000 | 0.335 | 0.304 | 0.031 | 2.06e-09 |
Height | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.320 | 0.304 | 0.016 | 0.0167680 | 0.313 | 0.304 | 0.009 | 1.55e-01 |
Height | lassosum.PseudoVal | LDpred2.PseudoVal | 0.285 | 0.304 | -0.020 | 0.0000189 | 0.281 | 0.304 | -0.023 | 1.32e-02 |
Height | LDpred1.10FCVal | LDpred2.PseudoVal | 0.300 | 0.304 | -0.004 | 0.0120628 | 0.301 | 0.304 | -0.003 | 4.30e-01 |
Height | SBLUP.Inf | LDpred2.PseudoVal | 0.293 | 0.304 | -0.011 | 0.0000000 | 0.294 | 0.304 | -0.010 | 4.40e-06 |
Height | PRScs.10FCVal | LDpred2.Inf | 0.345 | 0.305 | 0.040 | 0.0000000 | 0.344 | 0.305 | 0.039 | 3.04e-14 |
Height | pT+clump.MultiPRS | LDpred2.Inf | 0.320 | 0.305 | 0.015 | 0.0223998 | 0.313 | 0.305 | 0.008 | 1.83e-01 |
Height | LDpred2.Inf | LDpred2.Inf | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.305 | 0.305 | 0.000 | 1.00e+00 |
Height | lassosum.10FCVal | LDpred2.Inf | 0.347 | 0.305 | 0.043 | 0.0000000 | 0.346 | 0.305 | 0.041 | 1.71e-13 |
Height | LDpred2.MultiPRS | LDpred2.Inf | 0.350 | 0.305 | 0.045 | 0.0000000 | 0.354 | 0.305 | 0.049 | 3.11e-25 |
Height | SBayesR.PseudoVal | LDpred2.Inf | 0.344 | 0.305 | 0.039 | 0.0000000 | 0.343 | 0.305 | 0.039 | 9.77e-09 |
Height | pT+clump.10FCVal | LDpred2.Inf | 0.304 | 0.305 | 0.000 | 0.9056452 | 0.299 | 0.305 | -0.006 | 4.72e-01 |
Height | PRScs.PseudoVal | LDpred2.Inf | 0.346 | 0.305 | 0.041 | 0.0000000 | 0.344 | 0.305 | 0.039 | 1.77e-18 |
Height | LDpred2.PseudoVal | LDpred2.Inf | 0.304 | 0.305 | -0.001 | 0.0000007 | 0.304 | 0.305 | -0.001 | 1.95e-02 |
Height | All.MultiPRS | LDpred2.Inf | 0.361 | 0.305 | 0.056 | 0.0000000 | 0.365 | 0.305 | 0.060 | 1.70e-29 |
Height | SBLUP.Inf | LDpred2.Inf | 0.293 | 0.305 | -0.011 | 0.0000000 | 0.294 | 0.305 | -0.011 | 9.43e-07 |
Height | MegaPRS.MultiPRS | LDpred2.Inf | 0.352 | 0.305 | 0.048 | 0.0000000 | 0.352 | 0.305 | 0.048 | 1.74e-20 |
Height | PRScs.MultiPRS | LDpred2.Inf | 0.347 | 0.305 | 0.042 | 0.0000000 | 0.345 | 0.305 | 0.041 | 2.21e-17 |
Height | lassosum.MultiPRS | LDpred2.Inf | 0.350 | 0.305 | 0.046 | 0.0000000 | 0.348 | 0.305 | 0.044 | 2.03e-16 |
Height | LDpred1.Inf | LDpred2.Inf | 0.299 | 0.305 | -0.006 | 0.0000001 | 0.303 | 0.305 | -0.001 | 6.51e-01 |
Height | MegaPRS.10FCVal | LDpred2.Inf | 0.338 | 0.305 | 0.033 | 0.0000000 | 0.335 | 0.305 | 0.030 | 3.85e-09 |
Height | MegaPRS.PseudoVal | LDpred2.Inf | 0.324 | 0.305 | 0.020 | 0.0000000 | 0.321 | 0.305 | 0.016 | 1.98e-02 |
Height | lassosum.PseudoVal | LDpred2.Inf | 0.285 | 0.305 | -0.020 | 0.0000082 | 0.281 | 0.305 | -0.023 | 1.02e-02 |
Height | LDpred2.10FCVal | LDpred2.Inf | 0.343 | 0.305 | 0.038 | 0.0000000 | 0.346 | 0.305 | 0.041 | 2.73e-35 |
Height | DBSLMM.PseudoVal | LDpred2.Inf | 0.332 | 0.305 | 0.028 | 0.0000000 | 0.327 | 0.305 | 0.023 | 5.07e-09 |
Height | LDpred1.MultiPRS | LDpred2.Inf | 0.303 | 0.305 | -0.002 | 0.7785432 | 0.307 | 0.305 | 0.002 | 3.84e-01 |
Height | LDpred1.10FCVal | LDpred2.Inf | 0.300 | 0.305 | -0.005 | 0.0035109 | 0.301 | 0.305 | -0.003 | 3.26e-01 |
Height | PRScs.PseudoVal | PRScs.MultiPRS | 0.346 | 0.347 | -0.001 | 0.8628069 | 0.344 | 0.345 | -0.001 | 5.64e-02 |
Height | LDpred2.MultiPRS | PRScs.MultiPRS | 0.350 | 0.347 | 0.002 | 0.7055654 | 0.354 | 0.345 | 0.008 | 1.11e-03 |
Height | LDpred2.Inf | PRScs.MultiPRS | 0.305 | 0.347 | -0.042 | 0.0000000 | 0.305 | 0.345 | -0.041 | 2.21e-17 |
Height | pT+clump.10FCVal | PRScs.MultiPRS | 0.304 | 0.347 | -0.043 | 0.0000000 | 0.299 | 0.345 | -0.046 | 1.53e-16 |
Height | SBayesR.PseudoVal | PRScs.MultiPRS | 0.344 | 0.347 | -0.003 | 0.6004794 | 0.343 | 0.345 | -0.002 | 5.97e-01 |
Height | LDpred2.PseudoVal | PRScs.MultiPRS | 0.304 | 0.347 | -0.043 | 0.0000000 | 0.304 | 0.345 | -0.041 | 2.32e-17 |
Height | LDpred2.10FCVal | PRScs.MultiPRS | 0.343 | 0.347 | -0.005 | 0.4565387 | 0.346 | 0.345 | 0.001 | 8.19e-01 |
Height | PRScs.MultiPRS | PRScs.MultiPRS | 0.347 | 0.347 | 0.000 | 1.0000000 | 0.345 | 0.345 | 0.000 | 1.00e+00 |
Height | LDpred1.MultiPRS | PRScs.MultiPRS | 0.303 | 0.347 | -0.044 | 0.0000000 | 0.307 | 0.345 | -0.039 | 1.96e-16 |
Height | pT+clump.MultiPRS | PRScs.MultiPRS | 0.320 | 0.347 | -0.028 | 0.0000202 | 0.313 | 0.345 | -0.033 | 1.39e-13 |
Height | All.MultiPRS | PRScs.MultiPRS | 0.361 | 0.347 | 0.014 | 0.0000000 | 0.365 | 0.345 | 0.019 | 1.38e-12 |
Height | lassosum.10FCVal | PRScs.MultiPRS | 0.347 | 0.347 | 0.000 | 0.9778168 | 0.346 | 0.345 | 0.000 | 8.93e-01 |
Height | PRScs.10FCVal | PRScs.MultiPRS | 0.345 | 0.347 | -0.002 | 0.7363862 | 0.344 | 0.345 | -0.001 | 1.70e-01 |
Height | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.324 | 0.347 | -0.023 | 0.0002479 | 0.321 | 0.345 | -0.024 | 1.47e-06 |
Height | lassosum.MultiPRS | PRScs.MultiPRS | 0.350 | 0.347 | 0.003 | 0.6200393 | 0.348 | 0.345 | 0.003 | 1.57e-01 |
Height | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.352 | 0.347 | 0.005 | 0.0006713 | 0.352 | 0.345 | 0.007 | 2.59e-02 |
Height | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.332 | 0.347 | -0.015 | 0.0164450 | 0.327 | 0.345 | -0.018 | 1.40e-08 |
Height | LDpred1.10FCVal | PRScs.MultiPRS | 0.300 | 0.347 | -0.048 | 0.0000000 | 0.301 | 0.345 | -0.044 | 4.74e-19 |
Height | SBLUP.Inf | PRScs.MultiPRS | 0.293 | 0.347 | -0.054 | 0.0000000 | 0.294 | 0.345 | -0.052 | 2.04e-24 |
Height | lassosum.PseudoVal | PRScs.MultiPRS | 0.285 | 0.347 | -0.063 | 0.0000000 | 0.281 | 0.345 | -0.064 | 1.13e-28 |
Height | LDpred1.Inf | PRScs.MultiPRS | 0.299 | 0.347 | -0.049 | 0.0000000 | 0.303 | 0.345 | -0.042 | 7.00e-18 |
Height | MegaPRS.10FCVal | PRScs.MultiPRS | 0.338 | 0.347 | -0.009 | 0.1383071 | 0.335 | 0.345 | -0.011 | 9.25e-03 |
Height | PRScs.10FCVal | PRScs.10FCVal | 0.345 | 0.345 | 0.000 | 1.0000000 | 0.344 | 0.344 | 0.000 | 1.00e+00 |
Height | pT+clump.MultiPRS | PRScs.10FCVal | 0.320 | 0.345 | -0.025 | 0.0000789 | 0.313 | 0.344 | -0.031 | 3.23e-12 |
Height | SBayesR.PseudoVal | PRScs.10FCVal | 0.344 | 0.345 | -0.001 | 0.5105667 | 0.343 | 0.344 | 0.000 | 8.89e-01 |
Height | pT+clump.10FCVal | PRScs.10FCVal | 0.304 | 0.345 | -0.041 | 0.0000000 | 0.299 | 0.344 | -0.045 | 5.99e-16 |
Height | LDpred2.MultiPRS | PRScs.10FCVal | 0.350 | 0.345 | 0.004 | 0.4831898 | 0.354 | 0.344 | 0.010 | 4.16e-04 |
Height | LDpred2.10FCVal | PRScs.10FCVal | 0.343 | 0.345 | -0.003 | 0.1338252 | 0.346 | 0.344 | 0.002 | 5.29e-01 |
Height | SBLUP.Inf | PRScs.10FCVal | 0.293 | 0.345 | -0.052 | 0.0000000 | 0.294 | 0.344 | -0.050 | 3.49e-20 |
Height | PRScs.PseudoVal | PRScs.10FCVal | 0.346 | 0.345 | 0.001 | 0.2565306 | 0.344 | 0.344 | 0.000 | 9.64e-01 |
Height | LDpred2.PseudoVal | PRScs.10FCVal | 0.304 | 0.345 | -0.041 | 0.0000000 | 0.304 | 0.344 | -0.040 | 2.85e-14 |
Height | LDpred2.Inf | PRScs.10FCVal | 0.305 | 0.345 | -0.040 | 0.0000000 | 0.305 | 0.344 | -0.039 | 3.04e-14 |
Height | LDpred1.Inf | PRScs.10FCVal | 0.299 | 0.345 | -0.047 | 0.0000000 | 0.303 | 0.344 | -0.040 | 1.44e-14 |
Height | MegaPRS.MultiPRS | PRScs.10FCVal | 0.352 | 0.345 | 0.007 | 0.2417476 | 0.352 | 0.344 | 0.008 | 1.16e-02 |
Height | PRScs.MultiPRS | PRScs.10FCVal | 0.347 | 0.345 | 0.002 | 0.7363862 | 0.345 | 0.344 | 0.001 | 1.70e-01 |
Height | lassosum.MultiPRS | PRScs.10FCVal | 0.350 | 0.345 | 0.005 | 0.4132332 | 0.348 | 0.344 | 0.005 | 5.36e-02 |
Height | DBSLMM.PseudoVal | PRScs.10FCVal | 0.332 | 0.345 | -0.013 | 0.0000000 | 0.327 | 0.344 | -0.016 | 2.79e-06 |
Height | MegaPRS.10FCVal | PRScs.10FCVal | 0.338 | 0.345 | -0.007 | 0.0007817 | 0.335 | 0.344 | -0.009 | 3.35e-02 |
Height | MegaPRS.PseudoVal | PRScs.10FCVal | 0.324 | 0.345 | -0.021 | 0.0000000 | 0.321 | 0.344 | -0.023 | 7.26e-06 |
Height | lassosum.PseudoVal | PRScs.10FCVal | 0.285 | 0.345 | -0.061 | 0.0000000 | 0.281 | 0.344 | -0.063 | 1.20e-29 |
Height | All.MultiPRS | PRScs.10FCVal | 0.361 | 0.345 | 0.016 | 0.0099339 | 0.365 | 0.344 | 0.021 | 4.46e-13 |
Height | lassosum.10FCVal | PRScs.10FCVal | 0.347 | 0.345 | 0.002 | 0.1043286 | 0.346 | 0.344 | 0.002 | 5.20e-01 |
Height | LDpred1.MultiPRS | PRScs.10FCVal | 0.303 | 0.345 | -0.042 | 0.0000000 | 0.307 | 0.344 | -0.037 | 2.87e-13 |
Height | LDpred1.10FCVal | PRScs.10FCVal | 0.300 | 0.345 | -0.045 | 0.0000000 | 0.301 | 0.344 | -0.043 | 8.49e-16 |
Height | LDpred2.MultiPRS | PRScs.PseudoVal | 0.350 | 0.346 | 0.003 | 0.5861103 | 0.354 | 0.344 | 0.010 | 1.95e-04 |
Height | PRScs.10FCVal | PRScs.PseudoVal | 0.345 | 0.346 | -0.001 | 0.2565306 | 0.344 | 0.344 | 0.000 | 9.64e-01 |
Height | pT+clump.10FCVal | PRScs.PseudoVal | 0.304 | 0.346 | -0.042 | 0.0000000 | 0.299 | 0.344 | -0.045 | 1.11e-14 |
Height | LDpred2.PseudoVal | PRScs.PseudoVal | 0.304 | 0.346 | -0.042 | 0.0000000 | 0.304 | 0.344 | -0.040 | 1.93e-18 |
Height | LDpred2.Inf | PRScs.PseudoVal | 0.305 | 0.346 | -0.041 | 0.0000000 | 0.305 | 0.344 | -0.039 | 1.77e-18 |
Height | pT+clump.MultiPRS | PRScs.PseudoVal | 0.320 | 0.346 | -0.026 | 0.0000407 | 0.313 | 0.344 | -0.031 | 4.76e-12 |
Height | PRScs.PseudoVal | PRScs.PseudoVal | 0.346 | 0.346 | 0.000 | 1.0000000 | 0.344 | 0.344 | 0.000 | 1.00e+00 |
Height | SBayesR.PseudoVal | PRScs.PseudoVal | 0.344 | 0.346 | -0.002 | 0.2706271 | 0.343 | 0.344 | 0.000 | 9.17e-01 |
Height | lassosum.MultiPRS | PRScs.PseudoVal | 0.350 | 0.346 | 0.004 | 0.5091585 | 0.348 | 0.344 | 0.005 | 5.46e-02 |
Height | LDpred2.10FCVal | PRScs.PseudoVal | 0.343 | 0.346 | -0.004 | 0.0140896 | 0.346 | 0.344 | 0.002 | 4.43e-01 |
Height | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.352 | 0.346 | 0.006 | 0.3134230 | 0.352 | 0.344 | 0.008 | 7.18e-03 |
Height | LDpred1.MultiPRS | PRScs.PseudoVal | 0.303 | 0.346 | -0.043 | 0.0000000 | 0.307 | 0.344 | -0.037 | 1.52e-17 |
Height | SBLUP.Inf | PRScs.PseudoVal | 0.293 | 0.346 | -0.053 | 0.0000000 | 0.294 | 0.344 | -0.050 | 1.69e-26 |
Height | All.MultiPRS | PRScs.PseudoVal | 0.361 | 0.346 | 0.015 | 0.0156934 | 0.365 | 0.344 | 0.021 | 3.60e-13 |
Height | MegaPRS.10FCVal | PRScs.PseudoVal | 0.338 | 0.346 | -0.008 | 0.0000302 | 0.335 | 0.344 | -0.009 | 2.25e-02 |
Height | LDpred1.10FCVal | PRScs.PseudoVal | 0.300 | 0.346 | -0.046 | 0.0000000 | 0.301 | 0.344 | -0.043 | 5.03e-20 |
Height | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.324 | 0.346 | -0.022 | 0.0000000 | 0.321 | 0.344 | -0.023 | 8.80e-06 |
Height | lassosum.PseudoVal | PRScs.PseudoVal | 0.285 | 0.346 | -0.062 | 0.0000000 | 0.281 | 0.344 | -0.063 | 6.85e-24 |
Height | PRScs.MultiPRS | PRScs.PseudoVal | 0.347 | 0.346 | 0.001 | 0.8628069 | 0.345 | 0.344 | 0.001 | 5.64e-02 |
Height | LDpred1.Inf | PRScs.PseudoVal | 0.299 | 0.346 | -0.048 | 0.0000000 | 0.303 | 0.344 | -0.040 | 3.43e-19 |
Height | lassosum.10FCVal | PRScs.PseudoVal | 0.347 | 0.346 | 0.001 | 0.3687932 | 0.346 | 0.344 | 0.002 | 5.02e-01 |
Height | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.332 | 0.346 | -0.014 | 0.0000000 | 0.327 | 0.344 | -0.016 | 3.34e-08 |
Height | All.MultiPRS | pT+clump.MultiPRS | 0.361 | 0.320 | 0.041 | 0.0000000 | 0.365 | 0.313 | 0.052 | 9.14e-30 |
Height | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.350 | 0.320 | 0.030 | 0.0000033 | 0.354 | 0.313 | 0.041 | 2.79e-17 |
Height | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.303 | 0.320 | -0.017 | 0.0105426 | 0.307 | 0.313 | -0.006 | 3.22e-01 |
Height | pT+clump.10FCVal | pT+clump.MultiPRS | 0.304 | 0.320 | -0.015 | 0.0190027 | 0.299 | 0.313 | -0.014 | 2.20e-06 |
Height | lassosum.MultiPRS | pT+clump.MultiPRS | 0.350 | 0.320 | 0.031 | 0.0000019 | 0.348 | 0.313 | 0.036 | 6.06e-16 |
Height | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.304 | 0.320 | -0.016 | 0.0167680 | 0.304 | 0.313 | -0.009 | 1.55e-01 |
Height | LDpred1.10FCVal | pT+clump.MultiPRS | 0.300 | 0.320 | -0.020 | 0.0022723 | 0.301 | 0.313 | -0.012 | 6.28e-02 |
Height | SBLUP.Inf | pT+clump.MultiPRS | 0.293 | 0.320 | -0.026 | 0.0000612 | 0.294 | 0.313 | -0.019 | 2.39e-03 |
Height | lassosum.PseudoVal | pT+clump.MultiPRS | 0.285 | 0.320 | -0.035 | 0.0000001 | 0.281 | 0.313 | -0.032 | 6.86e-06 |
Height | PRScs.MultiPRS | pT+clump.MultiPRS | 0.347 | 0.320 | 0.028 | 0.0000202 | 0.345 | 0.313 | 0.033 | 1.39e-13 |
Height | LDpred2.10FCVal | pT+clump.MultiPRS | 0.343 | 0.320 | 0.023 | 0.0003750 | 0.346 | 0.313 | 0.033 | 2.63e-11 |
Height | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.324 | 0.320 | 0.005 | 0.4596763 | 0.321 | 0.313 | 0.008 | 1.52e-01 |
Height | PRScs.PseudoVal | pT+clump.MultiPRS | 0.346 | 0.320 | 0.026 | 0.0000407 | 0.344 | 0.313 | 0.031 | 4.76e-12 |
Height | lassosum.10FCVal | pT+clump.MultiPRS | 0.347 | 0.320 | 0.028 | 0.0000179 | 0.346 | 0.313 | 0.033 | 2.93e-13 |
Height | LDpred2.Inf | pT+clump.MultiPRS | 0.305 | 0.320 | -0.015 | 0.0223998 | 0.305 | 0.313 | -0.008 | 1.83e-01 |
Height | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.338 | 0.320 | 0.018 | 0.0044830 | 0.335 | 0.313 | 0.022 | 1.57e-05 |
Height | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.352 | 0.320 | 0.033 | 0.0000004 | 0.352 | 0.313 | 0.039 | 7.89e-18 |
Height | PRScs.10FCVal | pT+clump.MultiPRS | 0.345 | 0.320 | 0.025 | 0.0000789 | 0.344 | 0.313 | 0.031 | 3.23e-12 |
Height | LDpred1.Inf | pT+clump.MultiPRS | 0.299 | 0.320 | -0.021 | 0.0013011 | 0.303 | 0.313 | -0.009 | 1.30e-01 |
Height | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.320 | 0.320 | 0.000 | 1.0000000 | 0.313 | 0.313 | 0.000 | 1.00e+00 |
Height | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.332 | 0.320 | 0.013 | 0.0489816 | 0.327 | 0.313 | 0.015 | 2.75e-03 |
Height | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.344 | 0.320 | 0.024 | 0.0001673 | 0.343 | 0.313 | 0.031 | 7.75e-10 |
Height | LDpred2.MultiPRS | pT+clump.10FCVal | 0.350 | 0.304 | 0.045 | 0.0000000 | 0.354 | 0.299 | 0.055 | 5.22e-20 |
Height | LDpred2.PseudoVal | pT+clump.10FCVal | 0.304 | 0.304 | 0.000 | 0.9504557 | 0.304 | 0.299 | 0.005 | 5.30e-01 |
Height | pT+clump.MultiPRS | pT+clump.10FCVal | 0.320 | 0.304 | 0.015 | 0.0190027 | 0.313 | 0.299 | 0.014 | 2.20e-06 |
Height | SBLUP.Inf | pT+clump.10FCVal | 0.293 | 0.304 | -0.011 | 0.0070410 | 0.294 | 0.299 | -0.005 | 5.12e-01 |
Height | PRScs.PseudoVal | pT+clump.10FCVal | 0.346 | 0.304 | 0.042 | 0.0000000 | 0.344 | 0.299 | 0.045 | 1.11e-14 |
Height | PRScs.MultiPRS | pT+clump.10FCVal | 0.347 | 0.304 | 0.043 | 0.0000000 | 0.345 | 0.299 | 0.046 | 1.53e-16 |
Height | LDpred2.Inf | pT+clump.10FCVal | 0.305 | 0.304 | 0.000 | 0.9056452 | 0.305 | 0.299 | 0.006 | 4.72e-01 |
Height | SBayesR.PseudoVal | pT+clump.10FCVal | 0.344 | 0.304 | 0.040 | 0.0000000 | 0.343 | 0.299 | 0.045 | 6.57e-16 |
Height | pT+clump.10FCVal | pT+clump.10FCVal | 0.304 | 0.304 | 0.000 | 1.0000000 | 0.299 | 0.299 | 0.000 | 1.00e+00 |
Height | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.324 | 0.304 | 0.020 | 0.0000000 | 0.321 | 0.299 | 0.022 | 3.13e-04 |
Height | PRScs.10FCVal | pT+clump.10FCVal | 0.345 | 0.304 | 0.041 | 0.0000000 | 0.344 | 0.299 | 0.045 | 5.99e-16 |
Height | LDpred2.10FCVal | pT+clump.10FCVal | 0.343 | 0.304 | 0.038 | 0.0000000 | 0.346 | 0.299 | 0.047 | 2.55e-13 |
Height | MegaPRS.10FCVal | pT+clump.10FCVal | 0.338 | 0.304 | 0.034 | 0.0000000 | 0.335 | 0.299 | 0.036 | 2.22e-08 |
Height | LDpred1.MultiPRS | pT+clump.10FCVal | 0.303 | 0.304 | -0.001 | 0.8331600 | 0.307 | 0.299 | 0.008 | 3.07e-01 |
Height | lassosum.PseudoVal | pT+clump.10FCVal | 0.285 | 0.304 | -0.020 | 0.0000000 | 0.281 | 0.299 | -0.018 | 1.14e-02 |
Height | All.MultiPRS | pT+clump.10FCVal | 0.361 | 0.304 | 0.057 | 0.0000000 | 0.365 | 0.299 | 0.066 | 9.53e-35 |
Height | LDpred1.Inf | pT+clump.10FCVal | 0.299 | 0.304 | -0.006 | 0.1479645 | 0.303 | 0.299 | 0.005 | 5.56e-01 |
Height | LDpred1.10FCVal | pT+clump.10FCVal | 0.300 | 0.304 | -0.005 | 0.2422354 | 0.301 | 0.299 | 0.002 | 7.79e-01 |
Height | lassosum.MultiPRS | pT+clump.10FCVal | 0.350 | 0.304 | 0.046 | 0.0000000 | 0.348 | 0.299 | 0.050 | 8.33e-20 |
Height | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.332 | 0.304 | 0.028 | 0.0000000 | 0.327 | 0.299 | 0.029 | 9.51e-06 |
Height | lassosum.10FCVal | pT+clump.10FCVal | 0.347 | 0.304 | 0.043 | 0.0000000 | 0.346 | 0.299 | 0.047 | 1.39e-16 |
Height | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.352 | 0.304 | 0.048 | 0.0000000 | 0.352 | 0.299 | 0.053 | 2.10e-20 |
Height | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.344 | 0.344 | 0.000 | 1.0000000 | 0.343 | 0.343 | 0.000 | 1.00e+00 |
Height | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.350 | 0.344 | 0.006 | 0.3785673 | 0.354 | 0.343 | 0.010 | 5.78e-03 |
Height | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.303 | 0.344 | -0.041 | 0.0000000 | 0.307 | 0.343 | -0.037 | 3.49e-08 |
Height | PRScs.PseudoVal | SBayesR.PseudoVal | 0.346 | 0.344 | 0.002 | 0.2706271 | 0.344 | 0.343 | 0.000 | 9.17e-01 |
Height | All.MultiPRS | SBayesR.PseudoVal | 0.361 | 0.344 | 0.017 | 0.0056261 | 0.365 | 0.343 | 0.021 | 2.56e-12 |
Height | PRScs.MultiPRS | SBayesR.PseudoVal | 0.347 | 0.344 | 0.003 | 0.6004794 | 0.345 | 0.343 | 0.002 | 5.97e-01 |
Height | LDpred2.10FCVal | SBayesR.PseudoVal | 0.343 | 0.344 | -0.001 | 0.5637031 | 0.346 | 0.343 | 0.003 | 5.79e-01 |
Height | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.324 | 0.344 | -0.020 | 0.0000000 | 0.321 | 0.343 | -0.023 | 6.53e-06 |
Height | pT+clump.10FCVal | SBayesR.PseudoVal | 0.304 | 0.344 | -0.040 | 0.0000000 | 0.299 | 0.343 | -0.045 | 6.57e-16 |
Height | lassosum.10FCVal | SBayesR.PseudoVal | 0.347 | 0.344 | 0.003 | 0.0862397 | 0.346 | 0.343 | 0.002 | 5.64e-01 |
Height | LDpred2.Inf | SBayesR.PseudoVal | 0.305 | 0.344 | -0.039 | 0.0000000 | 0.305 | 0.343 | -0.039 | 9.77e-09 |
Height | PRScs.10FCVal | SBayesR.PseudoVal | 0.345 | 0.344 | 0.001 | 0.5105667 | 0.344 | 0.343 | 0.000 | 8.89e-01 |
Height | SBLUP.Inf | SBayesR.PseudoVal | 0.293 | 0.344 | -0.051 | 0.0000000 | 0.294 | 0.343 | -0.050 | 1.32e-12 |
Height | lassosum.MultiPRS | SBayesR.PseudoVal | 0.350 | 0.344 | 0.006 | 0.3173601 | 0.348 | 0.343 | 0.005 | 1.60e-01 |
Height | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.304 | 0.344 | -0.040 | 0.0000000 | 0.304 | 0.343 | -0.040 | 7.25e-09 |
Height | lassosum.PseudoVal | SBayesR.PseudoVal | 0.285 | 0.344 | -0.059 | 0.0000000 | 0.281 | 0.343 | -0.062 | 7.00e-31 |
Height | LDpred1.Inf | SBayesR.PseudoVal | 0.299 | 0.344 | -0.045 | 0.0000000 | 0.303 | 0.343 | -0.040 | 5.63e-09 |
Height | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.320 | 0.344 | -0.024 | 0.0001673 | 0.313 | 0.343 | -0.031 | 7.75e-10 |
Height | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.332 | 0.344 | -0.012 | 0.0000024 | 0.327 | 0.343 | -0.016 | 1.18e-03 |
Height | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.352 | 0.344 | 0.008 | 0.1743575 | 0.352 | 0.343 | 0.009 | 2.63e-02 |
Height | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.338 | 0.344 | -0.006 | 0.0135163 | 0.335 | 0.343 | -0.009 | 7.48e-02 |
Height | LDpred1.10FCVal | SBayesR.PseudoVal | 0.300 | 0.344 | -0.044 | 0.0000000 | 0.301 | 0.343 | -0.042 | 3.56e-10 |
Height | All.MultiPRS | SBLUP.Inf | 0.361 | 0.293 | 0.068 | 0.0000000 | 0.365 | 0.294 | 0.071 | 5.93e-35 |
Height | LDpred2.MultiPRS | SBLUP.Inf | 0.350 | 0.293 | 0.056 | 0.0000000 | 0.354 | 0.294 | 0.060 | 1.54e-30 |
Height | PRScs.PseudoVal | SBLUP.Inf | 0.346 | 0.293 | 0.053 | 0.0000000 | 0.344 | 0.294 | 0.050 | 1.69e-26 |
Height | lassosum.10FCVal | SBLUP.Inf | 0.347 | 0.293 | 0.054 | 0.0000000 | 0.346 | 0.294 | 0.052 | 1.12e-19 |
Height | LDpred2.Inf | SBLUP.Inf | 0.305 | 0.293 | 0.011 | 0.0000000 | 0.305 | 0.294 | 0.011 | 9.43e-07 |
Height | MegaPRS.PseudoVal | SBLUP.Inf | 0.324 | 0.293 | 0.031 | 0.0000000 | 0.321 | 0.294 | 0.027 | 1.39e-04 |
Height | pT+clump.10FCVal | SBLUP.Inf | 0.304 | 0.293 | 0.011 | 0.0070410 | 0.299 | 0.294 | 0.005 | 5.12e-01 |
Height | lassosum.MultiPRS | SBLUP.Inf | 0.350 | 0.293 | 0.057 | 0.0000000 | 0.348 | 0.294 | 0.055 | 2.87e-23 |
Height | LDpred2.PseudoVal | SBLUP.Inf | 0.304 | 0.293 | 0.011 | 0.0000000 | 0.304 | 0.294 | 0.010 | 4.40e-06 |
Height | LDpred1.MultiPRS | SBLUP.Inf | 0.303 | 0.293 | 0.009 | 0.1492986 | 0.307 | 0.294 | 0.013 | 1.97e-09 |
Height | MegaPRS.10FCVal | SBLUP.Inf | 0.338 | 0.293 | 0.045 | 0.0000000 | 0.335 | 0.294 | 0.041 | 7.79e-16 |
Height | pT+clump.MultiPRS | SBLUP.Inf | 0.320 | 0.293 | 0.026 | 0.0000612 | 0.313 | 0.294 | 0.019 | 2.39e-03 |
Height | DBSLMM.PseudoVal | SBLUP.Inf | 0.332 | 0.293 | 0.039 | 0.0000000 | 0.327 | 0.294 | 0.034 | 1.65e-18 |
Height | LDpred2.10FCVal | SBLUP.Inf | 0.343 | 0.293 | 0.049 | 0.0000000 | 0.346 | 0.294 | 0.052 | 1.95e-38 |
Height | LDpred1.Inf | SBLUP.Inf | 0.299 | 0.293 | 0.005 | 0.0000004 | 0.303 | 0.294 | 0.010 | 9.68e-07 |
Height | SBayesR.PseudoVal | SBLUP.Inf | 0.344 | 0.293 | 0.051 | 0.0000000 | 0.343 | 0.294 | 0.050 | 1.32e-12 |
Height | SBLUP.Inf | SBLUP.Inf | 0.293 | 0.293 | 0.000 | 1.0000000 | 0.294 | 0.294 | 0.000 | 1.00e+00 |
Height | MegaPRS.MultiPRS | SBLUP.Inf | 0.352 | 0.293 | 0.059 | 0.0000000 | 0.352 | 0.294 | 0.058 | 5.03e-28 |
Height | PRScs.10FCVal | SBLUP.Inf | 0.345 | 0.293 | 0.052 | 0.0000000 | 0.344 | 0.294 | 0.050 | 3.49e-20 |
Height | LDpred1.10FCVal | SBLUP.Inf | 0.300 | 0.293 | 0.006 | 0.0000458 | 0.301 | 0.294 | 0.007 | 1.51e-02 |
Height | lassosum.PseudoVal | SBLUP.Inf | 0.285 | 0.293 | -0.009 | 0.0589786 | 0.281 | 0.294 | -0.013 | 1.85e-01 |
Height | PRScs.MultiPRS | SBLUP.Inf | 0.347 | 0.293 | 0.054 | 0.0000000 | 0.345 | 0.294 | 0.052 | 2.04e-24 |
BMI | DBSLMM.PseudoVal | All.MultiPRS | 0.285 | 0.310 | -0.026 | 0.0000940 | 0.283 | 0.311 | -0.028 | 2.26e-12 |
BMI | SBayesR.PseudoVal | All.MultiPRS | 0.211 | 0.310 | -0.099 | 0.0000000 | 0.224 | 0.311 | -0.088 | 5.36e-30 |
BMI | lassosum.PseudoVal | All.MultiPRS | 0.216 | 0.310 | -0.094 | 0.0000000 | 0.225 | 0.311 | -0.086 | 4.99e-30 |
BMI | LDpred2.10FCVal | All.MultiPRS | 0.301 | 0.310 | -0.009 | 0.1775377 | 0.296 | 0.311 | -0.016 | 1.78e-09 |
BMI | MegaPRS.MultiPRS | All.MultiPRS | 0.304 | 0.310 | -0.006 | 0.3404372 | 0.301 | 0.311 | -0.010 | 1.28e-05 |
BMI | PRScs.10FCVal | All.MultiPRS | 0.292 | 0.310 | -0.018 | 0.0051631 | 0.282 | 0.311 | -0.030 | 8.05e-18 |
BMI | LDpred2.Inf | All.MultiPRS | 0.291 | 0.310 | -0.019 | 0.0034889 | 0.284 | 0.311 | -0.027 | 1.31e-14 |
BMI | MegaPRS.PseudoVal | All.MultiPRS | 0.263 | 0.310 | -0.047 | 0.0000000 | 0.263 | 0.311 | -0.049 | 1.10e-19 |
BMI | pT+clump.MultiPRS | All.MultiPRS | 0.271 | 0.310 | -0.039 | 0.0000000 | 0.274 | 0.311 | -0.038 | 1.50e-14 |
BMI | lassosum.10FCVal | All.MultiPRS | 0.300 | 0.310 | -0.010 | 0.1300348 | 0.298 | 0.311 | -0.013 | 4.57e-07 |
BMI | PRScs.MultiPRS | All.MultiPRS | 0.301 | 0.310 | -0.009 | 0.1688502 | 0.296 | 0.311 | -0.016 | 7.82e-10 |
BMI | LDpred1.Inf | All.MultiPRS | 0.274 | 0.310 | -0.036 | 0.0000001 | 0.264 | 0.311 | -0.048 | 1.28e-23 |
BMI | MegaPRS.10FCVal | All.MultiPRS | 0.299 | 0.310 | -0.011 | 0.0971105 | 0.298 | 0.311 | -0.014 | 1.02e-06 |
BMI | PRScs.PseudoVal | All.MultiPRS | 0.282 | 0.310 | -0.028 | 0.0000215 | 0.282 | 0.311 | -0.030 | 4.51e-12 |
BMI | All.MultiPRS | All.MultiPRS | 0.310 | 0.310 | 0.000 | 1.0000000 | 0.311 | 0.311 | 0.000 | 1.00e+00 |
BMI | LDpred2.MultiPRS | All.MultiPRS | 0.302 | 0.310 | -0.008 | 0.0000000 | 0.299 | 0.311 | -0.012 | 1.06e-07 |
BMI | LDpred1.MultiPRS | All.MultiPRS | 0.289 | 0.310 | -0.022 | 0.0010291 | 0.281 | 0.311 | -0.031 | 1.20e-15 |
BMI | pT+clump.10FCVal | All.MultiPRS | 0.249 | 0.310 | -0.062 | 0.0000000 | 0.244 | 0.311 | -0.067 | 2.45e-28 |
BMI | lassosum.MultiPRS | All.MultiPRS | 0.305 | 0.310 | -0.006 | 0.3903935 | 0.305 | 0.311 | -0.006 | 1.49e-03 |
BMI | LDpred2.PseudoVal | All.MultiPRS | 0.256 | 0.310 | -0.054 | 0.0000000 | 0.261 | 0.311 | -0.050 | 5.21e-18 |
BMI | LDpred1.10FCVal | All.MultiPRS | 0.279 | 0.310 | -0.032 | 0.0000014 | 0.271 | 0.311 | -0.040 | 3.56e-19 |
BMI | SBLUP.Inf | All.MultiPRS | 0.293 | 0.310 | -0.018 | 0.0068159 | 0.286 | 0.311 | -0.026 | 5.67e-14 |
BMI | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.282 | 0.285 | -0.002 | 0.1906078 | 0.282 | 0.283 | -0.001 | 7.51e-01 |
BMI | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.211 | 0.285 | -0.073 | 0.0000000 | 0.224 | 0.283 | -0.059 | 7.93e-21 |
BMI | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.302 | 0.285 | 0.017 | 0.0080176 | 0.299 | 0.283 | 0.016 | 4.64e-05 |
BMI | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.301 | 0.285 | 0.017 | 0.0115723 | 0.296 | 0.283 | 0.013 | 5.21e-04 |
BMI | LDpred1.Inf | DBSLMM.PseudoVal | 0.274 | 0.285 | -0.010 | 0.0002096 | 0.264 | 0.283 | -0.019 | 7.09e-04 |
BMI | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.271 | 0.285 | -0.014 | 0.0416955 | 0.274 | 0.283 | -0.009 | 9.36e-02 |
BMI | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.301 | 0.285 | 0.017 | 0.0000000 | 0.296 | 0.283 | 0.013 | 1.31e-03 |
BMI | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.216 | 0.285 | -0.069 | 0.0000000 | 0.225 | 0.283 | -0.058 | 7.97e-19 |
BMI | LDpred2.Inf | DBSLMM.PseudoVal | 0.291 | 0.285 | 0.007 | 0.0094008 | 0.284 | 0.283 | 0.001 | 8.05e-01 |
BMI | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.299 | 0.285 | 0.015 | 0.0000000 | 0.298 | 0.283 | 0.015 | 3.27e-03 |
BMI | All.MultiPRS | DBSLMM.PseudoVal | 0.310 | 0.285 | 0.026 | 0.0000940 | 0.311 | 0.283 | 0.028 | 2.26e-12 |
BMI | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.305 | 0.285 | 0.020 | 0.0023761 | 0.305 | 0.283 | 0.022 | 9.20e-08 |
BMI | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.256 | 0.285 | -0.028 | 0.0000000 | 0.261 | 0.283 | -0.022 | 5.11e-05 |
BMI | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.289 | 0.285 | 0.004 | 0.5376144 | 0.281 | 0.283 | -0.002 | 6.32e-01 |
BMI | SBLUP.Inf | DBSLMM.PseudoVal | 0.293 | 0.285 | 0.008 | 0.0014438 | 0.286 | 0.283 | 0.003 | 5.94e-01 |
BMI | lassosum.10FCVal | DBSLMM.PseudoVal | 0.300 | 0.285 | 0.016 | 0.0000000 | 0.298 | 0.283 | 0.015 | 1.04e-03 |
BMI | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.285 | 0.285 | 0.000 | 1.0000000 | 0.283 | 0.283 | 0.000 | 1.00e+00 |
BMI | PRScs.10FCVal | DBSLMM.PseudoVal | 0.292 | 0.285 | 0.007 | 0.0024070 | 0.282 | 0.283 | -0.001 | 7.74e-01 |
BMI | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.279 | 0.285 | -0.006 | 0.0044635 | 0.271 | 0.283 | -0.012 | 6.86e-03 |
BMI | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.249 | 0.285 | -0.036 | 0.0000000 | 0.244 | 0.283 | -0.039 | 1.02e-07 |
BMI | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.304 | 0.285 | 0.019 | 0.0031799 | 0.301 | 0.283 | 0.018 | 4.79e-05 |
BMI | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.263 | 0.285 | -0.021 | 0.0000000 | 0.263 | 0.283 | -0.020 | 1.45e-05 |
BMI | LDpred2.MultiPRS | lassosum.MultiPRS | 0.302 | 0.305 | -0.003 | 0.6943269 | 0.299 | 0.305 | -0.006 | 2.85e-02 |
BMI | LDpred2.PseudoVal | lassosum.MultiPRS | 0.256 | 0.305 | -0.048 | 0.0000000 | 0.261 | 0.305 | -0.044 | 1.18e-13 |
BMI | PRScs.MultiPRS | lassosum.MultiPRS | 0.301 | 0.305 | -0.003 | 0.6043067 | 0.296 | 0.305 | -0.009 | 3.02e-04 |
BMI | LDpred2.Inf | lassosum.MultiPRS | 0.291 | 0.305 | -0.014 | 0.0398163 | 0.284 | 0.305 | -0.021 | 1.34e-08 |
BMI | PRScs.PseudoVal | lassosum.MultiPRS | 0.282 | 0.305 | -0.022 | 0.0007114 | 0.282 | 0.305 | -0.023 | 1.08e-07 |
BMI | pT+clump.MultiPRS | lassosum.MultiPRS | 0.271 | 0.305 | -0.034 | 0.0000004 | 0.274 | 0.305 | -0.031 | 4.02e-11 |
BMI | PRScs.10FCVal | lassosum.MultiPRS | 0.292 | 0.305 | -0.013 | 0.0532407 | 0.282 | 0.305 | -0.023 | 8.25e-12 |
BMI | LDpred2.10FCVal | lassosum.MultiPRS | 0.301 | 0.305 | -0.003 | 0.6269542 | 0.296 | 0.305 | -0.009 | 1.01e-03 |
BMI | pT+clump.10FCVal | lassosum.MultiPRS | 0.249 | 0.305 | -0.056 | 0.0000000 | 0.244 | 0.305 | -0.061 | 6.01e-25 |
BMI | SBayesR.PseudoVal | lassosum.MultiPRS | 0.211 | 0.305 | -0.093 | 0.0000000 | 0.224 | 0.305 | -0.081 | 1.44e-25 |
BMI | lassosum.10FCVal | lassosum.MultiPRS | 0.300 | 0.305 | -0.004 | 0.5139895 | 0.298 | 0.305 | -0.007 | 8.18e-05 |
BMI | All.MultiPRS | lassosum.MultiPRS | 0.310 | 0.305 | 0.006 | 0.3903935 | 0.311 | 0.305 | 0.006 | 1.49e-03 |
BMI | SBLUP.Inf | lassosum.MultiPRS | 0.293 | 0.305 | -0.012 | 0.0656279 | 0.286 | 0.305 | -0.019 | 2.91e-08 |
BMI | LDpred1.MultiPRS | lassosum.MultiPRS | 0.289 | 0.305 | -0.016 | 0.0156391 | 0.281 | 0.305 | -0.024 | 1.98e-09 |
BMI | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.263 | 0.305 | -0.041 | 0.0000000 | 0.263 | 0.305 | -0.042 | 7.57e-14 |
BMI | lassosum.MultiPRS | lassosum.MultiPRS | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.305 | 0.305 | 0.000 | 1.00e+00 |
BMI | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.285 | 0.305 | -0.020 | 0.0023761 | 0.283 | 0.305 | -0.022 | 9.20e-08 |
BMI | LDpred1.10FCVal | lassosum.MultiPRS | 0.279 | 0.305 | -0.026 | 0.0000775 | 0.271 | 0.305 | -0.034 | 4.14e-13 |
BMI | MegaPRS.10FCVal | lassosum.MultiPRS | 0.299 | 0.305 | -0.005 | 0.4257135 | 0.298 | 0.305 | -0.007 | 5.97e-02 |
BMI | LDpred1.Inf | lassosum.MultiPRS | 0.274 | 0.305 | -0.030 | 0.0000047 | 0.264 | 0.305 | -0.041 | 3.69e-17 |
BMI | lassosum.PseudoVal | lassosum.MultiPRS | 0.216 | 0.305 | -0.089 | 0.0000000 | 0.225 | 0.305 | -0.080 | 5.19e-27 |
BMI | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.304 | 0.305 | -0.001 | 0.9258013 | 0.301 | 0.305 | -0.004 | 2.93e-01 |
BMI | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.263 | 0.216 | 0.047 | 0.0000000 | 0.263 | 0.225 | 0.038 | 1.47e-12 |
BMI | PRScs.MultiPRS | lassosum.PseudoVal | 0.301 | 0.216 | 0.085 | 0.0000000 | 0.296 | 0.225 | 0.071 | 1.32e-20 |
BMI | LDpred1.Inf | lassosum.PseudoVal | 0.274 | 0.216 | 0.059 | 0.0000000 | 0.264 | 0.225 | 0.039 | 1.48e-05 |
BMI | pT+clump.MultiPRS | lassosum.PseudoVal | 0.271 | 0.216 | 0.055 | 0.0000000 | 0.274 | 0.225 | 0.049 | 3.37e-10 |
BMI | All.MultiPRS | lassosum.PseudoVal | 0.310 | 0.216 | 0.094 | 0.0000000 | 0.311 | 0.225 | 0.086 | 4.99e-30 |
BMI | LDpred2.MultiPRS | lassosum.PseudoVal | 0.302 | 0.216 | 0.086 | 0.0000000 | 0.299 | 0.225 | 0.074 | 2.02e-22 |
BMI | SBayesR.PseudoVal | lassosum.PseudoVal | 0.211 | 0.216 | -0.004 | 0.1095563 | 0.224 | 0.225 | -0.001 | 8.44e-01 |
BMI | lassosum.MultiPRS | lassosum.PseudoVal | 0.305 | 0.216 | 0.089 | 0.0000000 | 0.305 | 0.225 | 0.080 | 5.19e-27 |
BMI | LDpred2.PseudoVal | lassosum.PseudoVal | 0.256 | 0.216 | 0.041 | 0.0000000 | 0.261 | 0.225 | 0.036 | 4.15e-17 |
BMI | LDpred1.10FCVal | lassosum.PseudoVal | 0.279 | 0.216 | 0.063 | 0.0000000 | 0.271 | 0.225 | 0.046 | 9.26e-14 |
BMI | SBLUP.Inf | lassosum.PseudoVal | 0.293 | 0.216 | 0.077 | 0.0000000 | 0.286 | 0.225 | 0.061 | 1.28e-10 |
BMI | lassosum.10FCVal | lassosum.PseudoVal | 0.300 | 0.216 | 0.085 | 0.0000000 | 0.298 | 0.225 | 0.073 | 1.77e-19 |
BMI | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.285 | 0.216 | 0.069 | 0.0000000 | 0.283 | 0.225 | 0.058 | 7.97e-19 |
BMI | LDpred2.10FCVal | lassosum.PseudoVal | 0.301 | 0.216 | 0.086 | 0.0000000 | 0.296 | 0.225 | 0.071 | 1.69e-19 |
BMI | MegaPRS.10FCVal | lassosum.PseudoVal | 0.299 | 0.216 | 0.084 | 0.0000000 | 0.298 | 0.225 | 0.073 | 8.85e-18 |
BMI | PRScs.PseudoVal | lassosum.PseudoVal | 0.282 | 0.216 | 0.067 | 0.0000000 | 0.282 | 0.225 | 0.057 | 3.33e-25 |
BMI | lassosum.PseudoVal | lassosum.PseudoVal | 0.216 | 0.216 | 0.000 | 1.0000000 | 0.225 | 0.225 | 0.000 | 1.00e+00 |
BMI | LDpred2.Inf | lassosum.PseudoVal | 0.291 | 0.216 | 0.075 | 0.0000000 | 0.284 | 0.225 | 0.059 | 3.09e-10 |
BMI | LDpred1.MultiPRS | lassosum.PseudoVal | 0.289 | 0.216 | 0.073 | 0.0000000 | 0.281 | 0.225 | 0.056 | 3.22e-15 |
BMI | pT+clump.10FCVal | lassosum.PseudoVal | 0.249 | 0.216 | 0.033 | 0.0000000 | 0.244 | 0.225 | 0.019 | 5.37e-02 |
BMI | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.304 | 0.216 | 0.088 | 0.0000000 | 0.301 | 0.225 | 0.076 | 5.86e-22 |
BMI | PRScs.10FCVal | lassosum.PseudoVal | 0.292 | 0.216 | 0.076 | 0.0000000 | 0.282 | 0.225 | 0.057 | 3.90e-10 |
BMI | MegaPRS.MultiPRS | lassosum.10FCVal | 0.304 | 0.300 | 0.004 | 0.5760154 | 0.301 | 0.298 | 0.003 | 3.37e-01 |
BMI | PRScs.10FCVal | lassosum.10FCVal | 0.292 | 0.300 | -0.008 | 0.0000002 | 0.282 | 0.298 | -0.016 | 3.45e-07 |
BMI | lassosum.MultiPRS | lassosum.10FCVal | 0.305 | 0.300 | 0.004 | 0.5139895 | 0.305 | 0.298 | 0.007 | 8.18e-05 |
BMI | LDpred2.PseudoVal | lassosum.10FCVal | 0.256 | 0.300 | -0.044 | 0.0000000 | 0.261 | 0.298 | -0.037 | 2.53e-08 |
BMI | MegaPRS.PseudoVal | lassosum.10FCVal | 0.263 | 0.300 | -0.037 | 0.0000000 | 0.263 | 0.298 | -0.035 | 6.99e-09 |
BMI | pT+clump.MultiPRS | lassosum.10FCVal | 0.271 | 0.300 | -0.029 | 0.0000098 | 0.274 | 0.298 | -0.024 | 1.37e-06 |
BMI | lassosum.10FCVal | lassosum.10FCVal | 0.300 | 0.300 | 0.000 | 1.0000000 | 0.298 | 0.298 | 0.000 | 1.00e+00 |
BMI | PRScs.MultiPRS | lassosum.10FCVal | 0.301 | 0.300 | 0.001 | 0.8930216 | 0.296 | 0.298 | -0.002 | 3.71e-01 |
BMI | LDpred1.Inf | lassosum.10FCVal | 0.274 | 0.300 | -0.026 | 0.0000000 | 0.264 | 0.298 | -0.034 | 7.84e-15 |
BMI | SBayesR.PseudoVal | lassosum.10FCVal | 0.211 | 0.300 | -0.089 | 0.0000000 | 0.224 | 0.298 | -0.074 | 1.52e-18 |
BMI | PRScs.PseudoVal | lassosum.10FCVal | 0.282 | 0.300 | -0.018 | 0.0000000 | 0.282 | 0.298 | -0.016 | 4.95e-04 |
BMI | All.MultiPRS | lassosum.10FCVal | 0.310 | 0.300 | 0.010 | 0.1300348 | 0.311 | 0.298 | 0.013 | 4.57e-07 |
BMI | LDpred2.MultiPRS | lassosum.10FCVal | 0.302 | 0.300 | 0.002 | 0.7945875 | 0.299 | 0.298 | 0.001 | 7.13e-01 |
BMI | LDpred1.MultiPRS | lassosum.10FCVal | 0.289 | 0.300 | -0.012 | 0.0765653 | 0.281 | 0.298 | -0.017 | 3.04e-05 |
BMI | pT+clump.10FCVal | lassosum.10FCVal | 0.249 | 0.300 | -0.052 | 0.0000000 | 0.244 | 0.298 | -0.054 | 6.65e-20 |
BMI | DBSLMM.PseudoVal | lassosum.10FCVal | 0.285 | 0.300 | -0.016 | 0.0000000 | 0.283 | 0.298 | -0.015 | 1.04e-03 |
BMI | LDpred1.10FCVal | lassosum.10FCVal | 0.279 | 0.300 | -0.022 | 0.0000000 | 0.271 | 0.298 | -0.027 | 1.10e-08 |
BMI | SBLUP.Inf | lassosum.10FCVal | 0.293 | 0.300 | -0.008 | 0.0000001 | 0.286 | 0.298 | -0.012 | 3.01e-05 |
BMI | lassosum.PseudoVal | lassosum.10FCVal | 0.216 | 0.300 | -0.085 | 0.0000000 | 0.225 | 0.298 | -0.073 | 1.77e-19 |
BMI | LDpred2.10FCVal | lassosum.10FCVal | 0.301 | 0.300 | 0.001 | 0.4359844 | 0.296 | 0.298 | -0.002 | 4.24e-01 |
BMI | MegaPRS.10FCVal | lassosum.10FCVal | 0.299 | 0.300 | -0.001 | 0.5924061 | 0.298 | 0.298 | 0.000 | 9.32e-01 |
BMI | LDpred2.Inf | lassosum.10FCVal | 0.291 | 0.300 | -0.009 | 0.0000000 | 0.284 | 0.298 | -0.014 | 1.01e-05 |
BMI | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.211 | 0.304 | -0.093 | 0.0000000 | 0.224 | 0.301 | -0.078 | 2.32e-22 |
BMI | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.271 | 0.304 | -0.033 | 0.0000006 | 0.274 | 0.301 | -0.028 | 3.25e-06 |
BMI | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.301 | 0.304 | -0.003 | 0.6943626 | 0.296 | 0.301 | -0.006 | 8.87e-02 |
BMI | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.299 | 0.304 | -0.005 | 0.4813065 | 0.298 | 0.301 | -0.004 | 2.41e-02 |
BMI | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.282 | 0.304 | -0.022 | 0.0009843 | 0.282 | 0.301 | -0.020 | 3.38e-05 |
BMI | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.301 | 0.304 | -0.003 | 0.1109232 | 0.296 | 0.301 | -0.006 | 1.06e-01 |
BMI | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.302 | 0.304 | -0.002 | 0.7641069 | 0.299 | 0.301 | -0.002 | 4.85e-01 |
BMI | LDpred2.Inf | MegaPRS.MultiPRS | 0.291 | 0.304 | -0.013 | 0.0497140 | 0.284 | 0.301 | -0.017 | 3.69e-06 |
BMI | SBLUP.Inf | MegaPRS.MultiPRS | 0.293 | 0.304 | -0.012 | 0.0804469 | 0.286 | 0.301 | -0.016 | 2.31e-05 |
BMI | All.MultiPRS | MegaPRS.MultiPRS | 0.310 | 0.304 | 0.006 | 0.3404372 | 0.311 | 0.301 | 0.010 | 1.28e-05 |
BMI | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.256 | 0.304 | -0.048 | 0.0000000 | 0.261 | 0.301 | -0.040 | 2.04e-10 |
BMI | PRScs.10FCVal | MegaPRS.MultiPRS | 0.292 | 0.304 | -0.012 | 0.0660746 | 0.282 | 0.301 | -0.020 | 5.41e-06 |
BMI | LDpred1.Inf | MegaPRS.MultiPRS | 0.274 | 0.304 | -0.030 | 0.0000073 | 0.264 | 0.301 | -0.038 | 4.95e-15 |
BMI | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.249 | 0.304 | -0.055 | 0.0000000 | 0.244 | 0.301 | -0.057 | 1.91e-16 |
BMI | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.285 | 0.304 | -0.019 | 0.0031799 | 0.283 | 0.301 | -0.018 | 4.79e-05 |
BMI | lassosum.10FCVal | MegaPRS.MultiPRS | 0.300 | 0.304 | -0.004 | 0.5760154 | 0.298 | 0.301 | -0.003 | 3.37e-01 |
BMI | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.216 | 0.304 | -0.088 | 0.0000000 | 0.225 | 0.301 | -0.076 | 5.86e-22 |
BMI | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.263 | 0.304 | -0.041 | 0.0000000 | 0.263 | 0.301 | -0.039 | 6.31e-15 |
BMI | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.289 | 0.304 | -0.015 | 0.0000000 | 0.281 | 0.301 | -0.021 | 1.27e-06 |
BMI | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.305 | 0.304 | 0.001 | 0.9258013 | 0.305 | 0.301 | 0.004 | 2.93e-01 |
BMI | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.304 | 0.304 | 0.000 | 1.0000000 | 0.301 | 0.301 | 0.000 | 1.00e+00 |
BMI | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.279 | 0.304 | -0.025 | 0.0001136 | 0.271 | 0.301 | -0.030 | 1.73e-10 |
BMI | LDpred2.Inf | MegaPRS.10FCVal | 0.291 | 0.299 | -0.008 | 0.0000013 | 0.284 | 0.298 | -0.013 | 1.01e-04 |
BMI | LDpred2.10FCVal | MegaPRS.10FCVal | 0.301 | 0.299 | 0.002 | 0.2559441 | 0.296 | 0.298 | -0.002 | 5.87e-01 |
BMI | PRScs.PseudoVal | MegaPRS.10FCVal | 0.282 | 0.299 | -0.017 | 0.0000000 | 0.282 | 0.298 | -0.016 | 1.77e-03 |
BMI | All.MultiPRS | MegaPRS.10FCVal | 0.310 | 0.299 | 0.011 | 0.0971105 | 0.311 | 0.298 | 0.014 | 1.02e-06 |
BMI | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.302 | 0.299 | 0.003 | 0.6852188 | 0.299 | 0.298 | 0.001 | 7.11e-01 |
BMI | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.211 | 0.299 | -0.088 | 0.0000000 | 0.224 | 0.298 | -0.074 | 1.37e-17 |
BMI | PRScs.10FCVal | MegaPRS.10FCVal | 0.292 | 0.299 | -0.007 | 0.0009657 | 0.282 | 0.298 | -0.016 | 3.77e-04 |
BMI | pT+clump.10FCVal | MegaPRS.10FCVal | 0.249 | 0.299 | -0.051 | 0.0000000 | 0.244 | 0.298 | -0.054 | 4.41e-14 |
BMI | PRScs.MultiPRS | MegaPRS.10FCVal | 0.301 | 0.299 | 0.002 | 0.7799453 | 0.296 | 0.298 | -0.002 | 5.95e-01 |
BMI | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.304 | 0.299 | 0.005 | 0.4813065 | 0.301 | 0.298 | 0.004 | 2.41e-02 |
BMI | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.271 | 0.299 | -0.028 | 0.0000185 | 0.274 | 0.298 | -0.024 | 1.39e-04 |
BMI | SBLUP.Inf | MegaPRS.10FCVal | 0.293 | 0.299 | -0.007 | 0.0000876 | 0.286 | 0.298 | -0.012 | 6.56e-04 |
BMI | lassosum.PseudoVal | MegaPRS.10FCVal | 0.216 | 0.299 | -0.084 | 0.0000000 | 0.225 | 0.298 | -0.073 | 8.85e-18 |
BMI | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.256 | 0.299 | -0.043 | 0.0000000 | 0.261 | 0.298 | -0.037 | 1.88e-07 |
BMI | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.299 | 0.299 | 0.000 | 1.0000000 | 0.298 | 0.298 | 0.000 | 1.00e+00 |
BMI | LDpred1.Inf | MegaPRS.10FCVal | 0.274 | 0.299 | -0.025 | 0.0000000 | 0.264 | 0.298 | -0.034 | 4.34e-14 |
BMI | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.289 | 0.299 | -0.011 | 0.1037591 | 0.281 | 0.298 | -0.017 | 1.54e-04 |
BMI | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.285 | 0.299 | -0.015 | 0.0000000 | 0.283 | 0.298 | -0.015 | 3.27e-03 |
BMI | lassosum.MultiPRS | MegaPRS.10FCVal | 0.305 | 0.299 | 0.005 | 0.4257135 | 0.305 | 0.298 | 0.007 | 5.97e-02 |
BMI | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.263 | 0.299 | -0.036 | 0.0000000 | 0.263 | 0.298 | -0.035 | 9.92e-10 |
BMI | LDpred1.10FCVal | MegaPRS.10FCVal | 0.279 | 0.299 | -0.021 | 0.0000000 | 0.271 | 0.298 | -0.026 | 1.07e-07 |
BMI | lassosum.10FCVal | MegaPRS.10FCVal | 0.300 | 0.299 | 0.001 | 0.5924061 | 0.298 | 0.298 | 0.000 | 9.32e-01 |
BMI | PRScs.10FCVal | MegaPRS.PseudoVal | 0.292 | 0.263 | 0.029 | 0.0000000 | 0.282 | 0.263 | 0.019 | 8.24e-03 |
BMI | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.271 | 0.263 | 0.008 | 0.2414412 | 0.274 | 0.263 | 0.011 | 1.08e-01 |
BMI | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.301 | 0.263 | 0.038 | 0.0000000 | 0.296 | 0.263 | 0.033 | 5.74e-09 |
BMI | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.301 | 0.263 | 0.038 | 0.0000000 | 0.296 | 0.263 | 0.033 | 5.17e-09 |
BMI | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.302 | 0.263 | 0.039 | 0.0000000 | 0.299 | 0.263 | 0.036 | 2.75e-11 |
BMI | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.211 | 0.263 | -0.052 | 0.0000000 | 0.224 | 0.263 | -0.039 | 1.97e-11 |
BMI | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.249 | 0.263 | -0.015 | 0.0005876 | 0.244 | 0.263 | -0.019 | 2.92e-02 |
BMI | LDpred2.Inf | MegaPRS.PseudoVal | 0.291 | 0.263 | 0.028 | 0.0000000 | 0.284 | 0.263 | 0.022 | 2.06e-03 |
BMI | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.256 | 0.263 | -0.007 | 0.0027135 | 0.261 | 0.263 | -0.002 | 7.41e-01 |
BMI | All.MultiPRS | MegaPRS.PseudoVal | 0.310 | 0.263 | 0.047 | 0.0000000 | 0.311 | 0.263 | 0.049 | 1.10e-19 |
BMI | SBLUP.Inf | MegaPRS.PseudoVal | 0.293 | 0.263 | 0.029 | 0.0000000 | 0.286 | 0.263 | 0.023 | 1.14e-03 |
BMI | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.282 | 0.263 | 0.019 | 0.0000000 | 0.282 | 0.263 | 0.019 | 5.19e-06 |
BMI | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.285 | 0.263 | 0.021 | 0.0000000 | 0.283 | 0.263 | 0.020 | 1.45e-05 |
BMI | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.305 | 0.263 | 0.041 | 0.0000000 | 0.305 | 0.263 | 0.042 | 7.57e-14 |
BMI | LDpred1.Inf | MegaPRS.PseudoVal | 0.274 | 0.263 | 0.011 | 0.0010385 | 0.264 | 0.263 | 0.001 | 8.75e-01 |
BMI | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.304 | 0.263 | 0.041 | 0.0000000 | 0.301 | 0.263 | 0.039 | 6.31e-15 |
BMI | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.216 | 0.263 | -0.047 | 0.0000000 | 0.225 | 0.263 | -0.038 | 1.47e-12 |
BMI | lassosum.10FCVal | MegaPRS.PseudoVal | 0.300 | 0.263 | 0.037 | 0.0000000 | 0.298 | 0.263 | 0.035 | 6.99e-09 |
BMI | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.263 | 0.263 | 0.000 | 1.0000000 | 0.263 | 0.263 | 0.000 | 1.00e+00 |
BMI | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.299 | 0.263 | 0.036 | 0.0000000 | 0.298 | 0.263 | 0.035 | 9.92e-10 |
BMI | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.289 | 0.263 | 0.025 | 0.0001266 | 0.281 | 0.263 | 0.018 | 6.69e-04 |
BMI | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.279 | 0.263 | 0.015 | 0.0000000 | 0.271 | 0.263 | 0.009 | 7.64e-02 |
BMI | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.302 | 0.289 | 0.013 | 0.0422138 | 0.299 | 0.281 | 0.018 | 6.82e-07 |
BMI | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.256 | 0.289 | -0.032 | 0.0000012 | 0.261 | 0.281 | -0.020 | 3.79e-04 |
BMI | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.211 | 0.289 | -0.077 | 0.0000000 | 0.224 | 0.281 | -0.057 | 8.42e-15 |
BMI | LDpred1.Inf | LDpred1.MultiPRS | 0.274 | 0.289 | -0.014 | 0.0312040 | 0.264 | 0.281 | -0.017 | 1.39e-08 |
BMI | PRScs.PseudoVal | LDpred1.MultiPRS | 0.282 | 0.289 | -0.006 | 0.3357144 | 0.282 | 0.281 | 0.001 | 8.11e-01 |
BMI | PRScs.MultiPRS | LDpred1.MultiPRS | 0.301 | 0.289 | 0.013 | 0.0000000 | 0.296 | 0.281 | 0.015 | 8.41e-05 |
BMI | LDpred2.Inf | LDpred1.MultiPRS | 0.291 | 0.289 | 0.002 | 0.7133111 | 0.284 | 0.281 | 0.003 | 4.59e-01 |
BMI | LDpred2.10FCVal | LDpred1.MultiPRS | 0.301 | 0.289 | 0.013 | 0.0523314 | 0.296 | 0.281 | 0.015 | 1.03e-04 |
BMI | pT+clump.10FCVal | LDpred1.MultiPRS | 0.249 | 0.289 | -0.040 | 0.0000000 | 0.244 | 0.281 | -0.037 | 1.49e-07 |
BMI | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.299 | 0.289 | 0.011 | 0.1037591 | 0.298 | 0.281 | 0.017 | 1.54e-04 |
BMI | PRScs.10FCVal | LDpred1.MultiPRS | 0.292 | 0.289 | 0.003 | 0.6230622 | 0.282 | 0.281 | 0.001 | 8.88e-01 |
BMI | All.MultiPRS | LDpred1.MultiPRS | 0.310 | 0.289 | 0.022 | 0.0010291 | 0.311 | 0.281 | 0.031 | 1.20e-15 |
BMI | SBLUP.Inf | LDpred1.MultiPRS | 0.293 | 0.289 | 0.004 | 0.5606346 | 0.286 | 0.281 | 0.005 | 2.89e-01 |
BMI | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.289 | 0.289 | 0.000 | 1.0000000 | 0.281 | 0.281 | 0.000 | 1.00e+00 |
BMI | lassosum.10FCVal | LDpred1.MultiPRS | 0.300 | 0.289 | 0.012 | 0.0765653 | 0.298 | 0.281 | 0.017 | 3.04e-05 |
BMI | lassosum.MultiPRS | LDpred1.MultiPRS | 0.305 | 0.289 | 0.016 | 0.0156391 | 0.305 | 0.281 | 0.024 | 1.98e-09 |
BMI | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.285 | 0.289 | -0.004 | 0.5376144 | 0.283 | 0.281 | 0.002 | 6.32e-01 |
BMI | LDpred1.10FCVal | LDpred1.MultiPRS | 0.279 | 0.289 | -0.010 | 0.1267093 | 0.271 | 0.281 | -0.010 | 9.11e-05 |
BMI | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.271 | 0.289 | -0.018 | 0.0080316 | 0.274 | 0.281 | -0.007 | 2.00e-01 |
BMI | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.263 | 0.289 | -0.025 | 0.0001266 | 0.263 | 0.281 | -0.018 | 6.69e-04 |
BMI | lassosum.PseudoVal | LDpred1.MultiPRS | 0.216 | 0.289 | -0.073 | 0.0000000 | 0.225 | 0.281 | -0.056 | 3.22e-15 |
BMI | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.304 | 0.289 | 0.015 | 0.0000000 | 0.301 | 0.281 | 0.021 | 1.27e-06 |
BMI | MegaPRS.MultiPRS | LDpred1.Inf | 0.304 | 0.274 | 0.030 | 0.0000073 | 0.301 | 0.264 | 0.038 | 4.95e-15 |
BMI | PRScs.10FCVal | LDpred1.Inf | 0.292 | 0.274 | 0.018 | 0.0000000 | 0.282 | 0.264 | 0.018 | 3.37e-04 |
BMI | LDpred2.MultiPRS | LDpred1.Inf | 0.302 | 0.274 | 0.028 | 0.0000273 | 0.299 | 0.264 | 0.035 | 6.60e-15 |
BMI | LDpred1.MultiPRS | LDpred1.Inf | 0.289 | 0.274 | 0.014 | 0.0312040 | 0.281 | 0.264 | 0.017 | 1.39e-08 |
BMI | pT+clump.10FCVal | LDpred1.Inf | 0.249 | 0.274 | -0.026 | 0.0000000 | 0.244 | 0.264 | -0.020 | 5.30e-03 |
BMI | All.MultiPRS | LDpred1.Inf | 0.310 | 0.274 | 0.036 | 0.0000001 | 0.311 | 0.264 | 0.048 | 1.28e-23 |
BMI | LDpred2.PseudoVal | LDpred1.Inf | 0.256 | 0.274 | -0.018 | 0.0000015 | 0.261 | 0.264 | -0.003 | 7.32e-01 |
BMI | MegaPRS.PseudoVal | LDpred1.Inf | 0.263 | 0.274 | -0.011 | 0.0010385 | 0.263 | 0.264 | -0.001 | 8.75e-01 |
BMI | pT+clump.MultiPRS | LDpred1.Inf | 0.271 | 0.274 | -0.003 | 0.6168784 | 0.274 | 0.264 | 0.010 | 1.15e-01 |
BMI | lassosum.MultiPRS | LDpred1.Inf | 0.305 | 0.274 | 0.030 | 0.0000047 | 0.305 | 0.264 | 0.041 | 3.69e-17 |
BMI | DBSLMM.PseudoVal | LDpred1.Inf | 0.285 | 0.274 | 0.010 | 0.0002096 | 0.283 | 0.264 | 0.019 | 7.09e-04 |
BMI | LDpred2.10FCVal | LDpred1.Inf | 0.301 | 0.274 | 0.027 | 0.0000000 | 0.296 | 0.264 | 0.032 | 8.61e-13 |
BMI | MegaPRS.10FCVal | LDpred1.Inf | 0.299 | 0.274 | 0.025 | 0.0000000 | 0.298 | 0.264 | 0.034 | 4.34e-14 |
BMI | PRScs.PseudoVal | LDpred1.Inf | 0.282 | 0.274 | 0.008 | 0.0039162 | 0.282 | 0.264 | 0.018 | 1.33e-03 |
BMI | lassosum.PseudoVal | LDpred1.Inf | 0.216 | 0.274 | -0.059 | 0.0000000 | 0.225 | 0.264 | -0.039 | 1.48e-05 |
BMI | LDpred2.Inf | LDpred1.Inf | 0.291 | 0.274 | 0.017 | 0.0000000 | 0.284 | 0.264 | 0.020 | 2.85e-07 |
BMI | PRScs.MultiPRS | LDpred1.Inf | 0.301 | 0.274 | 0.027 | 0.0000487 | 0.296 | 0.264 | 0.032 | 3.29e-13 |
BMI | LDpred1.10FCVal | LDpred1.Inf | 0.279 | 0.274 | 0.004 | 0.0299785 | 0.271 | 0.264 | 0.007 | 5.85e-02 |
BMI | SBLUP.Inf | LDpred1.Inf | 0.293 | 0.274 | 0.018 | 0.0000000 | 0.286 | 0.264 | 0.022 | 3.52e-08 |
BMI | lassosum.10FCVal | LDpred1.Inf | 0.300 | 0.274 | 0.026 | 0.0000000 | 0.298 | 0.264 | 0.034 | 7.84e-15 |
BMI | LDpred1.Inf | LDpred1.Inf | 0.274 | 0.274 | 0.000 | 1.0000000 | 0.264 | 0.264 | 0.000 | 1.00e+00 |
BMI | SBayesR.PseudoVal | LDpred1.Inf | 0.211 | 0.274 | -0.063 | 0.0000000 | 0.224 | 0.264 | -0.040 | 1.51e-05 |
BMI | LDpred2.Inf | LDpred1.10FCVal | 0.291 | 0.279 | 0.013 | 0.0000027 | 0.284 | 0.271 | 0.013 | 1.73e-02 |
BMI | PRScs.10FCVal | LDpred1.10FCVal | 0.292 | 0.279 | 0.013 | 0.0000015 | 0.282 | 0.271 | 0.010 | 6.51e-02 |
BMI | lassosum.MultiPRS | LDpred1.10FCVal | 0.305 | 0.279 | 0.026 | 0.0000775 | 0.305 | 0.271 | 0.034 | 4.14e-13 |
BMI | LDpred2.MultiPRS | LDpred1.10FCVal | 0.302 | 0.279 | 0.024 | 0.0003645 | 0.299 | 0.271 | 0.028 | 7.85e-11 |
BMI | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.304 | 0.279 | 0.025 | 0.0001136 | 0.301 | 0.271 | 0.030 | 1.73e-10 |
BMI | SBayesR.PseudoVal | LDpred1.10FCVal | 0.211 | 0.279 | -0.067 | 0.0000000 | 0.224 | 0.271 | -0.047 | 2.08e-11 |
BMI | PRScs.PseudoVal | LDpred1.10FCVal | 0.282 | 0.279 | 0.004 | 0.0305011 | 0.282 | 0.271 | 0.011 | 2.85e-03 |
BMI | All.MultiPRS | LDpred1.10FCVal | 0.310 | 0.279 | 0.032 | 0.0000014 | 0.311 | 0.271 | 0.040 | 3.56e-19 |
BMI | LDpred2.PseudoVal | LDpred1.10FCVal | 0.256 | 0.279 | -0.022 | 0.0000000 | 0.261 | 0.271 | -0.010 | 5.67e-02 |
BMI | LDpred1.MultiPRS | LDpred1.10FCVal | 0.289 | 0.279 | 0.010 | 0.1267093 | 0.281 | 0.271 | 0.010 | 9.11e-05 |
BMI | pT+clump.10FCVal | LDpred1.10FCVal | 0.249 | 0.279 | -0.030 | 0.0000000 | 0.244 | 0.271 | -0.027 | 2.79e-04 |
BMI | SBLUP.Inf | LDpred1.10FCVal | 0.293 | 0.279 | 0.014 | 0.0000002 | 0.286 | 0.271 | 0.014 | 8.23e-03 |
BMI | PRScs.MultiPRS | LDpred1.10FCVal | 0.301 | 0.279 | 0.023 | 0.0005934 | 0.296 | 0.271 | 0.024 | 3.94e-09 |
BMI | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.263 | 0.279 | -0.015 | 0.0000000 | 0.263 | 0.271 | -0.009 | 7.64e-02 |
BMI | pT+clump.MultiPRS | LDpred1.10FCVal | 0.271 | 0.279 | -0.008 | 0.2596379 | 0.274 | 0.271 | 0.002 | 6.78e-01 |
BMI | LDpred1.Inf | LDpred1.10FCVal | 0.274 | 0.279 | -0.004 | 0.0299785 | 0.264 | 0.271 | -0.007 | 5.85e-02 |
BMI | lassosum.PseudoVal | LDpred1.10FCVal | 0.216 | 0.279 | -0.063 | 0.0000000 | 0.225 | 0.271 | -0.046 | 9.26e-14 |
BMI | LDpred2.10FCVal | LDpred1.10FCVal | 0.301 | 0.279 | 0.023 | 0.0000000 | 0.296 | 0.271 | 0.024 | 1.52e-08 |
BMI | MegaPRS.10FCVal | LDpred1.10FCVal | 0.299 | 0.279 | 0.021 | 0.0000000 | 0.298 | 0.271 | 0.026 | 1.07e-07 |
BMI | LDpred1.10FCVal | LDpred1.10FCVal | 0.279 | 0.279 | 0.000 | 1.0000000 | 0.271 | 0.271 | 0.000 | 1.00e+00 |
BMI | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.285 | 0.279 | 0.006 | 0.0044635 | 0.283 | 0.271 | 0.012 | 6.86e-03 |
BMI | lassosum.10FCVal | LDpred1.10FCVal | 0.300 | 0.279 | 0.022 | 0.0000000 | 0.298 | 0.271 | 0.027 | 1.10e-08 |
BMI | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.285 | 0.302 | -0.017 | 0.0080176 | 0.283 | 0.299 | -0.016 | 4.64e-05 |
BMI | LDpred2.10FCVal | LDpred2.MultiPRS | 0.301 | 0.302 | -0.001 | 0.9256259 | 0.296 | 0.299 | -0.003 | 3.91e-03 |
BMI | PRScs.PseudoVal | LDpred2.MultiPRS | 0.282 | 0.302 | -0.020 | 0.0027414 | 0.282 | 0.299 | -0.017 | 3.98e-05 |
BMI | All.MultiPRS | LDpred2.MultiPRS | 0.310 | 0.302 | 0.008 | 0.0000000 | 0.311 | 0.299 | 0.012 | 1.06e-07 |
BMI | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.302 | 0.302 | 0.000 | 1.0000000 | 0.299 | 0.299 | 0.000 | 1.00e+00 |
BMI | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.299 | 0.302 | -0.003 | 0.6852188 | 0.298 | 0.299 | -0.001 | 7.11e-01 |
BMI | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.263 | 0.302 | -0.039 | 0.0000000 | 0.263 | 0.299 | -0.036 | 2.75e-11 |
BMI | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.271 | 0.302 | -0.031 | 0.0000025 | 0.274 | 0.299 | -0.025 | 3.60e-07 |
BMI | lassosum.10FCVal | LDpred2.MultiPRS | 0.300 | 0.302 | -0.002 | 0.7945875 | 0.298 | 0.299 | -0.001 | 7.13e-01 |
BMI | PRScs.MultiPRS | LDpred2.MultiPRS | 0.301 | 0.302 | -0.001 | 0.9002023 | 0.296 | 0.299 | -0.003 | 1.91e-01 |
BMI | LDpred1.Inf | LDpred2.MultiPRS | 0.274 | 0.302 | -0.028 | 0.0000273 | 0.264 | 0.299 | -0.035 | 6.60e-15 |
BMI | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.211 | 0.302 | -0.091 | 0.0000000 | 0.224 | 0.299 | -0.075 | 6.96e-23 |
BMI | pT+clump.10FCVal | LDpred2.MultiPRS | 0.249 | 0.302 | -0.053 | 0.0000000 | 0.244 | 0.299 | -0.055 | 9.79e-19 |
BMI | lassosum.PseudoVal | LDpred2.MultiPRS | 0.216 | 0.302 | -0.086 | 0.0000000 | 0.225 | 0.299 | -0.074 | 2.02e-22 |
BMI | LDpred2.Inf | LDpred2.MultiPRS | 0.291 | 0.302 | -0.011 | 0.0955609 | 0.284 | 0.299 | -0.015 | 7.18e-08 |
BMI | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.289 | 0.302 | -0.013 | 0.0422138 | 0.281 | 0.299 | -0.018 | 6.82e-07 |
BMI | SBLUP.Inf | LDpred2.MultiPRS | 0.293 | 0.302 | -0.010 | 0.1465781 | 0.286 | 0.299 | -0.013 | 1.63e-05 |
BMI | lassosum.MultiPRS | LDpred2.MultiPRS | 0.305 | 0.302 | 0.003 | 0.6943269 | 0.305 | 0.299 | 0.006 | 2.85e-02 |
BMI | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.256 | 0.302 | -0.046 | 0.0000000 | 0.261 | 0.299 | -0.038 | 2.79e-12 |
BMI | LDpred1.10FCVal | LDpred2.MultiPRS | 0.279 | 0.302 | -0.024 | 0.0003645 | 0.271 | 0.299 | -0.028 | 7.85e-11 |
BMI | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.304 | 0.302 | 0.002 | 0.7641069 | 0.301 | 0.299 | 0.002 | 4.85e-01 |
BMI | PRScs.10FCVal | LDpred2.MultiPRS | 0.292 | 0.302 | -0.010 | 0.1229904 | 0.282 | 0.299 | -0.018 | 1.17e-06 |
BMI | LDpred2.MultiPRS | LDpred2.10FCVal | 0.302 | 0.301 | 0.001 | 0.9256259 | 0.299 | 0.296 | 0.003 | 3.91e-03 |
BMI | LDpred2.Inf | LDpred2.10FCVal | 0.291 | 0.301 | -0.010 | 0.0000000 | 0.284 | 0.296 | -0.012 | 3.34e-06 |
BMI | PRScs.10FCVal | LDpred2.10FCVal | 0.292 | 0.301 | -0.010 | 0.0000000 | 0.282 | 0.296 | -0.014 | 1.57e-05 |
BMI | SBayesR.PseudoVal | LDpred2.10FCVal | 0.211 | 0.301 | -0.090 | 0.0000000 | 0.224 | 0.296 | -0.072 | 9.73e-20 |
BMI | lassosum.PseudoVal | LDpred2.10FCVal | 0.216 | 0.301 | -0.086 | 0.0000000 | 0.225 | 0.296 | -0.071 | 1.69e-19 |
BMI | LDpred2.10FCVal | LDpred2.10FCVal | 0.301 | 0.301 | 0.000 | 1.0000000 | 0.296 | 0.296 | 0.000 | 1.00e+00 |
BMI | PRScs.PseudoVal | LDpred2.10FCVal | 0.282 | 0.301 | -0.019 | 0.0000000 | 0.282 | 0.296 | -0.014 | 1.24e-03 |
BMI | LDpred1.MultiPRS | LDpred2.10FCVal | 0.289 | 0.301 | -0.013 | 0.0523314 | 0.281 | 0.296 | -0.015 | 1.03e-04 |
BMI | pT+clump.10FCVal | LDpred2.10FCVal | 0.249 | 0.301 | -0.053 | 0.0000000 | 0.244 | 0.296 | -0.052 | 8.97e-17 |
BMI | All.MultiPRS | LDpred2.10FCVal | 0.310 | 0.301 | 0.009 | 0.1775377 | 0.311 | 0.296 | 0.016 | 1.78e-09 |
BMI | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.304 | 0.301 | 0.003 | 0.6943626 | 0.301 | 0.296 | 0.006 | 8.87e-02 |
BMI | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.263 | 0.301 | -0.038 | 0.0000000 | 0.263 | 0.296 | -0.033 | 5.74e-09 |
BMI | pT+clump.MultiPRS | LDpred2.10FCVal | 0.271 | 0.301 | -0.030 | 0.0000044 | 0.274 | 0.296 | -0.022 | 1.30e-05 |
BMI | lassosum.MultiPRS | LDpred2.10FCVal | 0.305 | 0.301 | 0.003 | 0.6269542 | 0.305 | 0.296 | 0.009 | 1.01e-03 |
BMI | PRScs.MultiPRS | LDpred2.10FCVal | 0.301 | 0.301 | 0.000 | 0.9741381 | 0.296 | 0.296 | 0.000 | 9.90e-01 |
BMI | LDpred1.Inf | LDpred2.10FCVal | 0.274 | 0.301 | -0.027 | 0.0000000 | 0.264 | 0.296 | -0.032 | 8.61e-13 |
BMI | MegaPRS.10FCVal | LDpred2.10FCVal | 0.299 | 0.301 | -0.002 | 0.2559441 | 0.298 | 0.296 | 0.002 | 5.87e-01 |
BMI | SBLUP.Inf | LDpred2.10FCVal | 0.293 | 0.301 | -0.009 | 0.0000000 | 0.286 | 0.296 | -0.010 | 4.91e-04 |
BMI | lassosum.10FCVal | LDpred2.10FCVal | 0.300 | 0.301 | -0.001 | 0.4359844 | 0.298 | 0.296 | 0.002 | 4.24e-01 |
BMI | LDpred2.PseudoVal | LDpred2.10FCVal | 0.256 | 0.301 | -0.045 | 0.0000000 | 0.261 | 0.296 | -0.035 | 2.65e-09 |
BMI | LDpred1.10FCVal | LDpred2.10FCVal | 0.279 | 0.301 | -0.023 | 0.0000000 | 0.271 | 0.296 | -0.024 | 1.52e-08 |
BMI | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.285 | 0.301 | -0.017 | 0.0000000 | 0.283 | 0.296 | -0.013 | 1.31e-03 |
BMI | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.299 | 0.256 | 0.043 | 0.0000000 | 0.298 | 0.261 | 0.037 | 1.88e-07 |
BMI | PRScs.PseudoVal | LDpred2.PseudoVal | 0.282 | 0.256 | 0.026 | 0.0000000 | 0.282 | 0.261 | 0.021 | 1.23e-05 |
BMI | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.302 | 0.256 | 0.046 | 0.0000000 | 0.299 | 0.261 | 0.038 | 2.79e-12 |
BMI | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.304 | 0.256 | 0.048 | 0.0000000 | 0.301 | 0.261 | 0.040 | 2.04e-10 |
BMI | PRScs.10FCVal | LDpred2.PseudoVal | 0.292 | 0.256 | 0.036 | 0.0000000 | 0.282 | 0.261 | 0.020 | 7.08e-03 |
BMI | All.MultiPRS | LDpred2.PseudoVal | 0.310 | 0.256 | 0.054 | 0.0000000 | 0.311 | 0.261 | 0.050 | 5.21e-18 |
BMI | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.285 | 0.256 | 0.028 | 0.0000000 | 0.283 | 0.261 | 0.022 | 5.11e-05 |
BMI | LDpred2.10FCVal | LDpred2.PseudoVal | 0.301 | 0.256 | 0.045 | 0.0000000 | 0.296 | 0.261 | 0.035 | 2.65e-09 |
BMI | LDpred1.Inf | LDpred2.PseudoVal | 0.274 | 0.256 | 0.018 | 0.0000015 | 0.264 | 0.261 | 0.003 | 7.32e-01 |
BMI | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.211 | 0.256 | -0.045 | 0.0000000 | 0.224 | 0.261 | -0.037 | 1.36e-14 |
BMI | lassosum.PseudoVal | LDpred2.PseudoVal | 0.216 | 0.256 | -0.041 | 0.0000000 | 0.225 | 0.261 | -0.036 | 4.15e-17 |
BMI | LDpred2.Inf | LDpred2.PseudoVal | 0.291 | 0.256 | 0.035 | 0.0000000 | 0.284 | 0.261 | 0.023 | 2.47e-03 |
BMI | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.256 | 0.256 | 0.000 | 1.0000000 | 0.261 | 0.261 | 0.000 | 1.00e+00 |
BMI | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.289 | 0.256 | 0.032 | 0.0000012 | 0.281 | 0.261 | 0.020 | 3.79e-04 |
BMI | pT+clump.10FCVal | LDpred2.PseudoVal | 0.249 | 0.256 | -0.008 | 0.0712501 | 0.244 | 0.261 | -0.017 | 4.56e-02 |
BMI | lassosum.MultiPRS | LDpred2.PseudoVal | 0.305 | 0.256 | 0.048 | 0.0000000 | 0.305 | 0.261 | 0.044 | 1.18e-13 |
BMI | PRScs.MultiPRS | LDpred2.PseudoVal | 0.301 | 0.256 | 0.045 | 0.0000000 | 0.296 | 0.261 | 0.035 | 1.57e-08 |
BMI | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.263 | 0.256 | 0.007 | 0.0027135 | 0.263 | 0.261 | 0.002 | 7.41e-01 |
BMI | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.271 | 0.256 | 0.015 | 0.0285267 | 0.274 | 0.261 | 0.013 | 6.08e-02 |
BMI | lassosum.10FCVal | LDpred2.PseudoVal | 0.300 | 0.256 | 0.044 | 0.0000000 | 0.298 | 0.261 | 0.037 | 2.53e-08 |
BMI | LDpred1.10FCVal | LDpred2.PseudoVal | 0.279 | 0.256 | 0.022 | 0.0000000 | 0.271 | 0.261 | 0.010 | 5.67e-02 |
BMI | SBLUP.Inf | LDpred2.PseudoVal | 0.293 | 0.256 | 0.036 | 0.0000000 | 0.286 | 0.261 | 0.025 | 1.56e-03 |
BMI | PRScs.10FCVal | LDpred2.Inf | 0.292 | 0.291 | 0.001 | 0.6063191 | 0.282 | 0.284 | -0.003 | 4.05e-01 |
BMI | pT+clump.MultiPRS | LDpred2.Inf | 0.271 | 0.291 | -0.020 | 0.0024972 | 0.274 | 0.284 | -0.011 | 6.64e-02 |
BMI | LDpred2.Inf | LDpred2.Inf | 0.291 | 0.291 | 0.000 | 1.0000000 | 0.284 | 0.284 | 0.000 | 1.00e+00 |
BMI | lassosum.PseudoVal | LDpred2.Inf | 0.216 | 0.291 | -0.075 | 0.0000000 | 0.225 | 0.284 | -0.059 | 3.09e-10 |
BMI | LDpred2.MultiPRS | LDpred2.Inf | 0.302 | 0.291 | 0.011 | 0.0955609 | 0.299 | 0.284 | 0.015 | 7.18e-08 |
BMI | SBayesR.PseudoVal | LDpred2.Inf | 0.211 | 0.291 | -0.080 | 0.0000000 | 0.224 | 0.284 | -0.060 | 9.04e-11 |
BMI | pT+clump.10FCVal | LDpred2.Inf | 0.249 | 0.291 | -0.042 | 0.0000000 | 0.244 | 0.284 | -0.040 | 2.47e-10 |
BMI | PRScs.PseudoVal | LDpred2.Inf | 0.282 | 0.291 | -0.009 | 0.0013986 | 0.282 | 0.284 | -0.002 | 6.72e-01 |
BMI | LDpred2.PseudoVal | LDpred2.Inf | 0.256 | 0.291 | -0.035 | 0.0000000 | 0.261 | 0.284 | -0.023 | 2.47e-03 |
BMI | All.MultiPRS | LDpred2.Inf | 0.310 | 0.291 | 0.019 | 0.0034889 | 0.311 | 0.284 | 0.027 | 1.31e-14 |
BMI | SBLUP.Inf | LDpred2.Inf | 0.293 | 0.291 | 0.001 | 0.0367571 | 0.286 | 0.284 | 0.001 | 2.93e-01 |
BMI | MegaPRS.MultiPRS | LDpred2.Inf | 0.304 | 0.291 | 0.013 | 0.0497140 | 0.301 | 0.284 | 0.017 | 3.69e-06 |
BMI | PRScs.MultiPRS | LDpred2.Inf | 0.301 | 0.291 | 0.010 | 0.1239172 | 0.296 | 0.284 | 0.011 | 3.14e-04 |
BMI | lassosum.MultiPRS | LDpred2.Inf | 0.305 | 0.291 | 0.014 | 0.0398163 | 0.305 | 0.284 | 0.021 | 1.34e-08 |
BMI | LDpred1.Inf | LDpred2.Inf | 0.274 | 0.291 | -0.017 | 0.0000000 | 0.264 | 0.284 | -0.020 | 2.85e-07 |
BMI | MegaPRS.PseudoVal | LDpred2.Inf | 0.263 | 0.291 | -0.028 | 0.0000000 | 0.263 | 0.284 | -0.022 | 2.06e-03 |
BMI | MegaPRS.10FCVal | LDpred2.Inf | 0.299 | 0.291 | 0.008 | 0.0000013 | 0.298 | 0.284 | 0.013 | 1.01e-04 |
BMI | lassosum.10FCVal | LDpred2.Inf | 0.300 | 0.291 | 0.009 | 0.0000000 | 0.298 | 0.284 | 0.014 | 1.01e-05 |
BMI | LDpred2.10FCVal | LDpred2.Inf | 0.301 | 0.291 | 0.010 | 0.0000000 | 0.296 | 0.284 | 0.012 | 3.34e-06 |
BMI | DBSLMM.PseudoVal | LDpred2.Inf | 0.285 | 0.291 | -0.007 | 0.0094008 | 0.283 | 0.284 | -0.001 | 8.05e-01 |
BMI | LDpred1.MultiPRS | LDpred2.Inf | 0.289 | 0.291 | -0.002 | 0.7133111 | 0.281 | 0.284 | -0.003 | 4.59e-01 |
BMI | LDpred1.10FCVal | LDpred2.Inf | 0.279 | 0.291 | -0.013 | 0.0000027 | 0.271 | 0.284 | -0.013 | 1.73e-02 |
BMI | PRScs.PseudoVal | PRScs.MultiPRS | 0.282 | 0.301 | -0.019 | 0.0040923 | 0.282 | 0.296 | -0.014 | 5.30e-05 |
BMI | LDpred2.MultiPRS | PRScs.MultiPRS | 0.302 | 0.301 | 0.001 | 0.9002023 | 0.299 | 0.296 | 0.003 | 1.91e-01 |
BMI | LDpred2.Inf | PRScs.MultiPRS | 0.291 | 0.301 | -0.010 | 0.1239172 | 0.284 | 0.296 | -0.011 | 3.14e-04 |
BMI | pT+clump.10FCVal | PRScs.MultiPRS | 0.249 | 0.301 | -0.053 | 0.0000000 | 0.244 | 0.296 | -0.052 | 6.57e-17 |
BMI | SBayesR.PseudoVal | PRScs.MultiPRS | 0.211 | 0.301 | -0.090 | 0.0000000 | 0.224 | 0.296 | -0.072 | 6.39e-20 |
BMI | LDpred2.PseudoVal | PRScs.MultiPRS | 0.256 | 0.301 | -0.045 | 0.0000000 | 0.261 | 0.296 | -0.035 | 1.57e-08 |
BMI | LDpred2.10FCVal | PRScs.MultiPRS | 0.301 | 0.301 | 0.000 | 0.9741381 | 0.296 | 0.296 | 0.000 | 9.90e-01 |
BMI | PRScs.MultiPRS | PRScs.MultiPRS | 0.301 | 0.301 | 0.000 | 1.0000000 | 0.296 | 0.296 | 0.000 | 1.00e+00 |
BMI | LDpred1.MultiPRS | PRScs.MultiPRS | 0.289 | 0.301 | -0.013 | 0.0000000 | 0.281 | 0.296 | -0.015 | 8.41e-05 |
BMI | pT+clump.MultiPRS | PRScs.MultiPRS | 0.271 | 0.301 | -0.030 | 0.0000052 | 0.274 | 0.296 | -0.022 | 6.32e-06 |
BMI | All.MultiPRS | PRScs.MultiPRS | 0.310 | 0.301 | 0.009 | 0.1688502 | 0.311 | 0.296 | 0.016 | 7.82e-10 |
BMI | lassosum.PseudoVal | PRScs.MultiPRS | 0.216 | 0.301 | -0.085 | 0.0000000 | 0.225 | 0.296 | -0.071 | 1.32e-20 |
BMI | PRScs.10FCVal | PRScs.MultiPRS | 0.292 | 0.301 | -0.009 | 0.1573719 | 0.282 | 0.296 | -0.014 | 3.55e-09 |
BMI | MegaPRS.10FCVal | PRScs.MultiPRS | 0.299 | 0.301 | -0.002 | 0.7799453 | 0.298 | 0.296 | 0.002 | 5.95e-01 |
BMI | lassosum.MultiPRS | PRScs.MultiPRS | 0.305 | 0.301 | 0.003 | 0.6043067 | 0.305 | 0.296 | 0.009 | 3.02e-04 |
BMI | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.304 | 0.301 | 0.003 | 0.1109232 | 0.301 | 0.296 | 0.006 | 1.06e-01 |
BMI | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.285 | 0.301 | -0.017 | 0.0115723 | 0.283 | 0.296 | -0.013 | 5.21e-04 |
BMI | LDpred1.10FCVal | PRScs.MultiPRS | 0.279 | 0.301 | -0.023 | 0.0005934 | 0.271 | 0.296 | -0.024 | 3.94e-09 |
BMI | SBLUP.Inf | PRScs.MultiPRS | 0.293 | 0.301 | -0.009 | 0.1854355 | 0.286 | 0.296 | -0.010 | 7.74e-04 |
BMI | lassosum.10FCVal | PRScs.MultiPRS | 0.300 | 0.301 | -0.001 | 0.8930216 | 0.298 | 0.296 | 0.002 | 3.71e-01 |
BMI | LDpred1.Inf | PRScs.MultiPRS | 0.274 | 0.301 | -0.027 | 0.0000487 | 0.264 | 0.296 | -0.032 | 3.29e-13 |
BMI | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.263 | 0.301 | -0.038 | 0.0000000 | 0.263 | 0.296 | -0.033 | 5.17e-09 |
BMI | PRScs.10FCVal | PRScs.10FCVal | 0.292 | 0.292 | 0.000 | 1.0000000 | 0.282 | 0.282 | 0.000 | 1.00e+00 |
BMI | pT+clump.MultiPRS | PRScs.10FCVal | 0.271 | 0.292 | -0.021 | 0.0016589 | 0.274 | 0.282 | -0.008 | 1.42e-01 |
BMI | SBayesR.PseudoVal | PRScs.10FCVal | 0.211 | 0.292 | -0.080 | 0.0000000 | 0.224 | 0.282 | -0.058 | 2.74e-10 |
BMI | pT+clump.10FCVal | PRScs.10FCVal | 0.249 | 0.292 | -0.043 | 0.0000000 | 0.244 | 0.282 | -0.038 | 8.95e-10 |
BMI | LDpred2.MultiPRS | PRScs.10FCVal | 0.302 | 0.292 | 0.010 | 0.1229904 | 0.299 | 0.282 | 0.018 | 1.17e-06 |
BMI | LDpred2.10FCVal | PRScs.10FCVal | 0.301 | 0.292 | 0.010 | 0.0000000 | 0.296 | 0.282 | 0.014 | 1.57e-05 |
BMI | SBLUP.Inf | PRScs.10FCVal | 0.293 | 0.292 | 0.001 | 0.6719611 | 0.286 | 0.282 | 0.004 | 1.48e-01 |
BMI | PRScs.PseudoVal | PRScs.10FCVal | 0.282 | 0.292 | -0.010 | 0.0004618 | 0.282 | 0.282 | 0.000 | 9.59e-01 |
BMI | LDpred2.PseudoVal | PRScs.10FCVal | 0.256 | 0.292 | -0.036 | 0.0000000 | 0.261 | 0.282 | -0.020 | 7.08e-03 |
BMI | LDpred2.Inf | PRScs.10FCVal | 0.291 | 0.292 | -0.001 | 0.6063191 | 0.284 | 0.282 | 0.003 | 4.05e-01 |
BMI | LDpred1.Inf | PRScs.10FCVal | 0.274 | 0.292 | -0.018 | 0.0000000 | 0.264 | 0.282 | -0.018 | 3.37e-04 |
BMI | MegaPRS.MultiPRS | PRScs.10FCVal | 0.304 | 0.292 | 0.012 | 0.0660746 | 0.301 | 0.282 | 0.020 | 5.41e-06 |
BMI | PRScs.MultiPRS | PRScs.10FCVal | 0.301 | 0.292 | 0.009 | 0.1573719 | 0.296 | 0.282 | 0.014 | 3.55e-09 |
BMI | lassosum.MultiPRS | PRScs.10FCVal | 0.305 | 0.292 | 0.013 | 0.0532407 | 0.305 | 0.282 | 0.023 | 8.25e-12 |
BMI | DBSLMM.PseudoVal | PRScs.10FCVal | 0.285 | 0.292 | -0.007 | 0.0024070 | 0.283 | 0.282 | 0.001 | 7.74e-01 |
BMI | MegaPRS.PseudoVal | PRScs.10FCVal | 0.263 | 0.292 | -0.029 | 0.0000000 | 0.263 | 0.282 | -0.019 | 8.24e-03 |
BMI | MegaPRS.10FCVal | PRScs.10FCVal | 0.299 | 0.292 | 0.007 | 0.0009657 | 0.298 | 0.282 | 0.016 | 3.77e-04 |
BMI | lassosum.10FCVal | PRScs.10FCVal | 0.300 | 0.292 | 0.008 | 0.0000002 | 0.298 | 0.282 | 0.016 | 3.45e-07 |
BMI | All.MultiPRS | PRScs.10FCVal | 0.310 | 0.292 | 0.018 | 0.0051631 | 0.311 | 0.282 | 0.030 | 8.05e-18 |
BMI | lassosum.PseudoVal | PRScs.10FCVal | 0.216 | 0.292 | -0.076 | 0.0000000 | 0.225 | 0.282 | -0.057 | 3.90e-10 |
BMI | LDpred1.MultiPRS | PRScs.10FCVal | 0.289 | 0.292 | -0.003 | 0.6230622 | 0.281 | 0.282 | -0.001 | 8.88e-01 |
BMI | LDpred1.10FCVal | PRScs.10FCVal | 0.279 | 0.292 | -0.013 | 0.0000015 | 0.271 | 0.282 | -0.010 | 6.51e-02 |
BMI | LDpred2.MultiPRS | PRScs.PseudoVal | 0.302 | 0.282 | 0.020 | 0.0027414 | 0.299 | 0.282 | 0.017 | 3.98e-05 |
BMI | PRScs.10FCVal | PRScs.PseudoVal | 0.292 | 0.282 | 0.010 | 0.0004618 | 0.282 | 0.282 | 0.000 | 9.59e-01 |
BMI | pT+clump.10FCVal | PRScs.PseudoVal | 0.249 | 0.282 | -0.034 | 0.0000000 | 0.244 | 0.282 | -0.038 | 4.85e-07 |
BMI | LDpred2.PseudoVal | PRScs.PseudoVal | 0.256 | 0.282 | -0.026 | 0.0000000 | 0.261 | 0.282 | -0.021 | 1.23e-05 |
BMI | LDpred2.Inf | PRScs.PseudoVal | 0.291 | 0.282 | 0.009 | 0.0013986 | 0.284 | 0.282 | 0.002 | 6.72e-01 |
BMI | pT+clump.MultiPRS | PRScs.PseudoVal | 0.271 | 0.282 | -0.011 | 0.0907872 | 0.274 | 0.282 | -0.008 | 1.56e-01 |
BMI | PRScs.PseudoVal | PRScs.PseudoVal | 0.282 | 0.282 | 0.000 | 1.0000000 | 0.282 | 0.282 | 0.000 | 1.00e+00 |
BMI | SBayesR.PseudoVal | PRScs.PseudoVal | 0.211 | 0.282 | -0.071 | 0.0000000 | 0.224 | 0.282 | -0.058 | 2.44e-20 |
BMI | lassosum.MultiPRS | PRScs.PseudoVal | 0.305 | 0.282 | 0.022 | 0.0007114 | 0.305 | 0.282 | 0.023 | 1.08e-07 |
BMI | LDpred2.10FCVal | PRScs.PseudoVal | 0.301 | 0.282 | 0.019 | 0.0000000 | 0.296 | 0.282 | 0.014 | 1.24e-03 |
BMI | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.304 | 0.282 | 0.022 | 0.0009843 | 0.301 | 0.282 | 0.020 | 3.38e-05 |
BMI | LDpred1.MultiPRS | PRScs.PseudoVal | 0.289 | 0.282 | 0.006 | 0.3357144 | 0.281 | 0.282 | -0.001 | 8.11e-01 |
BMI | SBLUP.Inf | PRScs.PseudoVal | 0.293 | 0.282 | 0.010 | 0.0002203 | 0.286 | 0.282 | 0.004 | 4.96e-01 |
BMI | All.MultiPRS | PRScs.PseudoVal | 0.310 | 0.282 | 0.028 | 0.0000215 | 0.311 | 0.282 | 0.030 | 4.51e-12 |
BMI | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.263 | 0.282 | -0.019 | 0.0000000 | 0.263 | 0.282 | -0.019 | 5.19e-06 |
BMI | LDpred1.10FCVal | PRScs.PseudoVal | 0.279 | 0.282 | -0.004 | 0.0305011 | 0.271 | 0.282 | -0.011 | 2.85e-03 |
BMI | MegaPRS.10FCVal | PRScs.PseudoVal | 0.299 | 0.282 | 0.017 | 0.0000000 | 0.298 | 0.282 | 0.016 | 1.77e-03 |
BMI | lassosum.10FCVal | PRScs.PseudoVal | 0.300 | 0.282 | 0.018 | 0.0000000 | 0.298 | 0.282 | 0.016 | 4.95e-04 |
BMI | PRScs.MultiPRS | PRScs.PseudoVal | 0.301 | 0.282 | 0.019 | 0.0040923 | 0.296 | 0.282 | 0.014 | 5.30e-05 |
BMI | LDpred1.Inf | PRScs.PseudoVal | 0.274 | 0.282 | -0.008 | 0.0039162 | 0.264 | 0.282 | -0.018 | 1.33e-03 |
BMI | lassosum.PseudoVal | PRScs.PseudoVal | 0.216 | 0.282 | -0.067 | 0.0000000 | 0.225 | 0.282 | -0.057 | 3.33e-25 |
BMI | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.285 | 0.282 | 0.002 | 0.1906078 | 0.283 | 0.282 | 0.001 | 7.51e-01 |
BMI | All.MultiPRS | pT+clump.MultiPRS | 0.310 | 0.271 | 0.039 | 0.0000000 | 0.311 | 0.274 | 0.038 | 1.50e-14 |
BMI | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.302 | 0.271 | 0.031 | 0.0000025 | 0.299 | 0.274 | 0.025 | 3.60e-07 |
BMI | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.289 | 0.271 | 0.018 | 0.0080316 | 0.281 | 0.274 | 0.007 | 2.00e-01 |
BMI | pT+clump.10FCVal | pT+clump.MultiPRS | 0.249 | 0.271 | -0.022 | 0.0008445 | 0.244 | 0.274 | -0.030 | 8.69e-14 |
BMI | lassosum.MultiPRS | pT+clump.MultiPRS | 0.305 | 0.271 | 0.034 | 0.0000004 | 0.305 | 0.274 | 0.031 | 4.02e-11 |
BMI | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.256 | 0.271 | -0.015 | 0.0285267 | 0.261 | 0.274 | -0.013 | 6.08e-02 |
BMI | LDpred1.10FCVal | pT+clump.MultiPRS | 0.279 | 0.271 | 0.008 | 0.2596379 | 0.271 | 0.274 | -0.002 | 6.78e-01 |
BMI | SBLUP.Inf | pT+clump.MultiPRS | 0.293 | 0.271 | 0.021 | 0.0012015 | 0.286 | 0.274 | 0.012 | 3.00e-02 |
BMI | lassosum.10FCVal | pT+clump.MultiPRS | 0.300 | 0.271 | 0.029 | 0.0000098 | 0.298 | 0.274 | 0.024 | 1.37e-06 |
BMI | PRScs.MultiPRS | pT+clump.MultiPRS | 0.301 | 0.271 | 0.030 | 0.0000052 | 0.296 | 0.274 | 0.022 | 6.32e-06 |
BMI | LDpred2.10FCVal | pT+clump.MultiPRS | 0.301 | 0.271 | 0.030 | 0.0000044 | 0.296 | 0.274 | 0.022 | 1.30e-05 |
BMI | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.299 | 0.271 | 0.028 | 0.0000185 | 0.298 | 0.274 | 0.024 | 1.39e-04 |
BMI | PRScs.PseudoVal | pT+clump.MultiPRS | 0.282 | 0.271 | 0.011 | 0.0907872 | 0.282 | 0.274 | 0.008 | 1.56e-01 |
BMI | lassosum.PseudoVal | pT+clump.MultiPRS | 0.216 | 0.271 | -0.055 | 0.0000000 | 0.225 | 0.274 | -0.049 | 3.37e-10 |
BMI | LDpred2.Inf | pT+clump.MultiPRS | 0.291 | 0.271 | 0.020 | 0.0024972 | 0.284 | 0.274 | 0.011 | 6.64e-02 |
BMI | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.263 | 0.271 | -0.008 | 0.2414412 | 0.263 | 0.274 | -0.011 | 1.08e-01 |
BMI | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.304 | 0.271 | 0.033 | 0.0000006 | 0.301 | 0.274 | 0.028 | 3.25e-06 |
BMI | PRScs.10FCVal | pT+clump.MultiPRS | 0.292 | 0.271 | 0.021 | 0.0016589 | 0.282 | 0.274 | 0.008 | 1.42e-01 |
BMI | LDpred1.Inf | pT+clump.MultiPRS | 0.274 | 0.271 | 0.003 | 0.6168784 | 0.264 | 0.274 | -0.010 | 1.15e-01 |
BMI | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.271 | 0.271 | 0.000 | 1.0000000 | 0.274 | 0.274 | 0.000 | 1.00e+00 |
BMI | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.285 | 0.271 | 0.014 | 0.0416955 | 0.283 | 0.274 | 0.009 | 9.36e-02 |
BMI | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.211 | 0.271 | -0.060 | 0.0000000 | 0.224 | 0.274 | -0.050 | 9.43e-10 |
BMI | LDpred2.MultiPRS | pT+clump.10FCVal | 0.302 | 0.249 | 0.053 | 0.0000000 | 0.299 | 0.244 | 0.055 | 9.79e-19 |
BMI | LDpred2.PseudoVal | pT+clump.10FCVal | 0.256 | 0.249 | 0.008 | 0.0712501 | 0.261 | 0.244 | 0.017 | 4.56e-02 |
BMI | pT+clump.MultiPRS | pT+clump.10FCVal | 0.271 | 0.249 | 0.022 | 0.0008445 | 0.274 | 0.244 | 0.030 | 8.69e-14 |
BMI | SBLUP.Inf | pT+clump.10FCVal | 0.293 | 0.249 | 0.044 | 0.0000000 | 0.286 | 0.244 | 0.042 | 1.09e-11 |
BMI | PRScs.PseudoVal | pT+clump.10FCVal | 0.282 | 0.249 | 0.034 | 0.0000000 | 0.282 | 0.244 | 0.038 | 4.85e-07 |
BMI | PRScs.MultiPRS | pT+clump.10FCVal | 0.301 | 0.249 | 0.053 | 0.0000000 | 0.296 | 0.244 | 0.052 | 6.57e-17 |
BMI | LDpred2.Inf | pT+clump.10FCVal | 0.291 | 0.249 | 0.042 | 0.0000000 | 0.284 | 0.244 | 0.040 | 2.47e-10 |
BMI | SBayesR.PseudoVal | pT+clump.10FCVal | 0.211 | 0.249 | -0.037 | 0.0000000 | 0.224 | 0.244 | -0.020 | 4.33e-02 |
BMI | pT+clump.10FCVal | pT+clump.10FCVal | 0.249 | 0.249 | 0.000 | 1.0000000 | 0.244 | 0.244 | 0.000 | 1.00e+00 |
BMI | MegaPRS.10FCVal | pT+clump.10FCVal | 0.299 | 0.249 | 0.051 | 0.0000000 | 0.298 | 0.244 | 0.054 | 4.41e-14 |
BMI | PRScs.10FCVal | pT+clump.10FCVal | 0.292 | 0.249 | 0.043 | 0.0000000 | 0.282 | 0.244 | 0.038 | 8.95e-10 |
BMI | LDpred2.10FCVal | pT+clump.10FCVal | 0.301 | 0.249 | 0.053 | 0.0000000 | 0.296 | 0.244 | 0.052 | 8.97e-17 |
BMI | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.263 | 0.249 | 0.015 | 0.0005876 | 0.263 | 0.244 | 0.019 | 2.92e-02 |
BMI | LDpred1.MultiPRS | pT+clump.10FCVal | 0.289 | 0.249 | 0.040 | 0.0000000 | 0.281 | 0.244 | 0.037 | 1.49e-07 |
BMI | lassosum.10FCVal | pT+clump.10FCVal | 0.300 | 0.249 | 0.052 | 0.0000000 | 0.298 | 0.244 | 0.054 | 6.65e-20 |
BMI | All.MultiPRS | pT+clump.10FCVal | 0.310 | 0.249 | 0.062 | 0.0000000 | 0.311 | 0.244 | 0.067 | 2.45e-28 |
BMI | LDpred1.Inf | pT+clump.10FCVal | 0.274 | 0.249 | 0.026 | 0.0000000 | 0.264 | 0.244 | 0.020 | 5.30e-03 |
BMI | LDpred1.10FCVal | pT+clump.10FCVal | 0.279 | 0.249 | 0.030 | 0.0000000 | 0.271 | 0.244 | 0.027 | 2.79e-04 |
BMI | lassosum.MultiPRS | pT+clump.10FCVal | 0.305 | 0.249 | 0.056 | 0.0000000 | 0.305 | 0.244 | 0.061 | 6.01e-25 |
BMI | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.285 | 0.249 | 0.036 | 0.0000000 | 0.283 | 0.244 | 0.039 | 1.02e-07 |
BMI | lassosum.PseudoVal | pT+clump.10FCVal | 0.216 | 0.249 | -0.033 | 0.0000000 | 0.225 | 0.244 | -0.019 | 5.37e-02 |
BMI | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.304 | 0.249 | 0.055 | 0.0000000 | 0.301 | 0.244 | 0.057 | 1.91e-16 |
BMI | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.211 | 0.211 | 0.000 | 1.0000000 | 0.224 | 0.224 | 0.000 | 1.00e+00 |
BMI | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.302 | 0.211 | 0.091 | 0.0000000 | 0.299 | 0.224 | 0.075 | 6.96e-23 |
BMI | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.289 | 0.211 | 0.077 | 0.0000000 | 0.281 | 0.224 | 0.057 | 8.42e-15 |
BMI | PRScs.PseudoVal | SBayesR.PseudoVal | 0.282 | 0.211 | 0.071 | 0.0000000 | 0.282 | 0.224 | 0.058 | 2.44e-20 |
BMI | All.MultiPRS | SBayesR.PseudoVal | 0.310 | 0.211 | 0.099 | 0.0000000 | 0.311 | 0.224 | 0.088 | 5.36e-30 |
BMI | PRScs.MultiPRS | SBayesR.PseudoVal | 0.301 | 0.211 | 0.090 | 0.0000000 | 0.296 | 0.224 | 0.072 | 6.39e-20 |
BMI | LDpred2.10FCVal | SBayesR.PseudoVal | 0.301 | 0.211 | 0.090 | 0.0000000 | 0.296 | 0.224 | 0.072 | 9.73e-20 |
BMI | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.299 | 0.211 | 0.088 | 0.0000000 | 0.298 | 0.224 | 0.074 | 1.37e-17 |
BMI | pT+clump.10FCVal | SBayesR.PseudoVal | 0.249 | 0.211 | 0.037 | 0.0000000 | 0.244 | 0.224 | 0.020 | 4.33e-02 |
BMI | lassosum.PseudoVal | SBayesR.PseudoVal | 0.216 | 0.211 | 0.004 | 0.1095563 | 0.225 | 0.224 | 0.001 | 8.44e-01 |
BMI | LDpred2.Inf | SBayesR.PseudoVal | 0.291 | 0.211 | 0.080 | 0.0000000 | 0.284 | 0.224 | 0.060 | 9.04e-11 |
BMI | PRScs.10FCVal | SBayesR.PseudoVal | 0.292 | 0.211 | 0.080 | 0.0000000 | 0.282 | 0.224 | 0.058 | 2.74e-10 |
BMI | SBLUP.Inf | SBayesR.PseudoVal | 0.293 | 0.211 | 0.081 | 0.0000000 | 0.286 | 0.224 | 0.062 | 3.83e-11 |
BMI | lassosum.MultiPRS | SBayesR.PseudoVal | 0.305 | 0.211 | 0.093 | 0.0000000 | 0.305 | 0.224 | 0.081 | 1.44e-25 |
BMI | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.256 | 0.211 | 0.045 | 0.0000000 | 0.261 | 0.224 | 0.037 | 1.36e-14 |
BMI | lassosum.10FCVal | SBayesR.PseudoVal | 0.300 | 0.211 | 0.089 | 0.0000000 | 0.298 | 0.224 | 0.074 | 1.52e-18 |
BMI | LDpred1.Inf | SBayesR.PseudoVal | 0.274 | 0.211 | 0.063 | 0.0000000 | 0.264 | 0.224 | 0.040 | 1.51e-05 |
BMI | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.271 | 0.211 | 0.060 | 0.0000000 | 0.274 | 0.224 | 0.050 | 9.43e-10 |
BMI | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.285 | 0.211 | 0.073 | 0.0000000 | 0.283 | 0.224 | 0.059 | 7.93e-21 |
BMI | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.304 | 0.211 | 0.093 | 0.0000000 | 0.301 | 0.224 | 0.078 | 2.32e-22 |
BMI | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.263 | 0.211 | 0.052 | 0.0000000 | 0.263 | 0.224 | 0.039 | 1.97e-11 |
BMI | LDpred1.10FCVal | SBayesR.PseudoVal | 0.279 | 0.211 | 0.067 | 0.0000000 | 0.271 | 0.224 | 0.047 | 2.08e-11 |
BMI | All.MultiPRS | SBLUP.Inf | 0.310 | 0.293 | 0.018 | 0.0068159 | 0.311 | 0.286 | 0.026 | 5.67e-14 |
BMI | LDpred2.MultiPRS | SBLUP.Inf | 0.302 | 0.293 | 0.010 | 0.1465781 | 0.299 | 0.286 | 0.013 | 1.63e-05 |
BMI | PRScs.PseudoVal | SBLUP.Inf | 0.282 | 0.293 | -0.010 | 0.0002203 | 0.282 | 0.286 | -0.004 | 4.96e-01 |
BMI | lassosum.PseudoVal | SBLUP.Inf | 0.216 | 0.293 | -0.077 | 0.0000000 | 0.225 | 0.286 | -0.061 | 1.28e-10 |
BMI | LDpred2.Inf | SBLUP.Inf | 0.291 | 0.293 | -0.001 | 0.0367571 | 0.284 | 0.286 | -0.001 | 2.93e-01 |
BMI | MegaPRS.10FCVal | SBLUP.Inf | 0.299 | 0.293 | 0.007 | 0.0000876 | 0.298 | 0.286 | 0.012 | 6.56e-04 |
BMI | pT+clump.10FCVal | SBLUP.Inf | 0.249 | 0.293 | -0.044 | 0.0000000 | 0.244 | 0.286 | -0.042 | 1.09e-11 |
BMI | lassosum.MultiPRS | SBLUP.Inf | 0.305 | 0.293 | 0.012 | 0.0656279 | 0.305 | 0.286 | 0.019 | 2.91e-08 |
BMI | LDpred2.PseudoVal | SBLUP.Inf | 0.256 | 0.293 | -0.036 | 0.0000000 | 0.261 | 0.286 | -0.025 | 1.56e-03 |
BMI | LDpred1.MultiPRS | SBLUP.Inf | 0.289 | 0.293 | -0.004 | 0.5606346 | 0.281 | 0.286 | -0.005 | 2.89e-01 |
BMI | MegaPRS.PseudoVal | SBLUP.Inf | 0.263 | 0.293 | -0.029 | 0.0000000 | 0.263 | 0.286 | -0.023 | 1.14e-03 |
BMI | pT+clump.MultiPRS | SBLUP.Inf | 0.271 | 0.293 | -0.021 | 0.0012015 | 0.274 | 0.286 | -0.012 | 3.00e-02 |
BMI | DBSLMM.PseudoVal | SBLUP.Inf | 0.285 | 0.293 | -0.008 | 0.0014438 | 0.283 | 0.286 | -0.003 | 5.94e-01 |
BMI | LDpred2.10FCVal | SBLUP.Inf | 0.301 | 0.293 | 0.009 | 0.0000000 | 0.296 | 0.286 | 0.010 | 4.91e-04 |
BMI | LDpred1.Inf | SBLUP.Inf | 0.274 | 0.293 | -0.018 | 0.0000000 | 0.264 | 0.286 | -0.022 | 3.52e-08 |
BMI | SBayesR.PseudoVal | SBLUP.Inf | 0.211 | 0.293 | -0.081 | 0.0000000 | 0.224 | 0.286 | -0.062 | 3.83e-11 |
BMI | SBLUP.Inf | SBLUP.Inf | 0.293 | 0.293 | 0.000 | 1.0000000 | 0.286 | 0.286 | 0.000 | 1.00e+00 |
BMI | MegaPRS.MultiPRS | SBLUP.Inf | 0.304 | 0.293 | 0.012 | 0.0804469 | 0.301 | 0.286 | 0.016 | 2.31e-05 |
BMI | PRScs.10FCVal | SBLUP.Inf | 0.292 | 0.293 | -0.001 | 0.6719611 | 0.282 | 0.286 | -0.004 | 1.48e-01 |
BMI | LDpred1.10FCVal | SBLUP.Inf | 0.279 | 0.293 | -0.014 | 0.0000002 | 0.271 | 0.286 | -0.014 | 8.23e-03 |
BMI | lassosum.10FCVal | SBLUP.Inf | 0.300 | 0.293 | 0.008 | 0.0000001 | 0.298 | 0.286 | 0.012 | 3.01e-05 |
BMI | PRScs.MultiPRS | SBLUP.Inf | 0.301 | 0.293 | 0.009 | 0.1854355 | 0.296 | 0.286 | 0.010 | 7.74e-04 |
T2D | DBSLMM.PseudoVal | All.MultiPRS | 0.229 | 0.249 | -0.019 | 0.0043362 | 0.226 | 0.248 | -0.021 | 1.46e-08 |
T2D | SBayesR.PseudoVal | All.MultiPRS | 0.226 | 0.249 | -0.022 | 0.0010300 | 0.227 | 0.248 | -0.020 | 1.02e-06 |
T2D | lassosum.PseudoVal | All.MultiPRS | 0.206 | 0.249 | -0.043 | 0.0000000 | 0.214 | 0.248 | -0.033 | 3.65e-09 |
T2D | LDpred2.10FCVal | All.MultiPRS | 0.237 | 0.249 | -0.012 | 0.0809314 | 0.238 | 0.248 | -0.010 | 8.27e-04 |
T2D | MegaPRS.MultiPRS | All.MultiPRS | 0.244 | 0.249 | -0.004 | 0.5480743 | 0.245 | 0.248 | -0.003 | 6.62e-02 |
T2D | PRScs.10FCVal | All.MultiPRS | 0.228 | 0.249 | -0.021 | 0.0023044 | 0.227 | 0.248 | -0.021 | 2.82e-07 |
T2D | LDpred2.Inf | All.MultiPRS | 0.189 | 0.249 | -0.059 | 0.0000000 | 0.185 | 0.248 | -0.063 | 3.19e-22 |
T2D | MegaPRS.10FCVal | All.MultiPRS | 0.244 | 0.249 | -0.005 | 0.4851840 | 0.244 | 0.248 | -0.004 | 3.60e-02 |
T2D | pT+clump.MultiPRS | All.MultiPRS | 0.212 | 0.249 | -0.037 | 0.0000001 | 0.215 | 0.248 | -0.033 | 1.13e-10 |
T2D | lassosum.10FCVal | All.MultiPRS | 0.214 | 0.249 | -0.035 | 0.0000003 | 0.216 | 0.248 | -0.032 | 4.24e-11 |
T2D | PRScs.MultiPRS | All.MultiPRS | 0.235 | 0.249 | -0.014 | 0.0397343 | 0.237 | 0.248 | -0.011 | 8.27e-04 |
T2D | LDpred1.Inf | All.MultiPRS | 0.187 | 0.249 | -0.062 | 0.0000000 | 0.184 | 0.248 | -0.063 | 9.70e-23 |
T2D | MegaPRS.PseudoVal | All.MultiPRS | 0.234 | 0.249 | -0.014 | 0.0336817 | 0.240 | 0.248 | -0.008 | 1.33e-02 |
T2D | PRScs.PseudoVal | All.MultiPRS | 0.226 | 0.249 | -0.022 | 0.0011470 | 0.226 | 0.248 | -0.022 | 7.53e-08 |
T2D | All.MultiPRS | All.MultiPRS | 0.249 | 0.249 | 0.000 | 1.0000000 | 0.248 | 0.248 | 0.000 | 1.00e+00 |
T2D | LDpred2.MultiPRS | All.MultiPRS | 0.242 | 0.249 | -0.007 | 0.3274515 | 0.240 | 0.248 | -0.008 | 1.24e-02 |
T2D | LDpred1.MultiPRS | All.MultiPRS | 0.232 | 0.249 | -0.016 | 0.0146723 | 0.231 | 0.248 | -0.017 | 7.51e-07 |
T2D | pT+clump.10FCVal | All.MultiPRS | 0.167 | 0.249 | -0.082 | 0.0000000 | 0.173 | 0.248 | -0.075 | 1.91e-22 |
T2D | lassosum.MultiPRS | All.MultiPRS | 0.237 | 0.249 | -0.011 | 0.0000000 | 0.240 | 0.248 | -0.007 | 5.20e-03 |
T2D | LDpred2.PseudoVal | All.MultiPRS | 0.194 | 0.249 | -0.055 | 0.0000000 | 0.190 | 0.248 | -0.058 | 4.83e-21 |
T2D | LDpred1.10FCVal | All.MultiPRS | 0.232 | 0.249 | -0.017 | 0.0143323 | 0.230 | 0.248 | -0.018 | 3.38e-07 |
T2D | SBLUP.Inf | All.MultiPRS | 0.189 | 0.249 | -0.059 | 0.0000000 | 0.184 | 0.248 | -0.064 | 1.04e-22 |
T2D | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.226 | 0.229 | -0.003 | 0.1752873 | 0.226 | 0.226 | 0.000 | 9.03e-01 |
T2D | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.226 | 0.229 | -0.003 | 0.2828740 | 0.227 | 0.226 | 0.001 | 8.61e-01 |
T2D | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.242 | 0.229 | 0.013 | 0.0608498 | 0.240 | 0.226 | 0.014 | 2.71e-04 |
T2D | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.235 | 0.229 | 0.005 | 0.4267616 | 0.237 | 0.226 | 0.011 | 2.46e-03 |
T2D | LDpred1.Inf | DBSLMM.PseudoVal | 0.187 | 0.229 | -0.042 | 0.0000000 | 0.184 | 0.226 | -0.042 | 2.33e-13 |
T2D | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.212 | 0.229 | -0.018 | 0.0100914 | 0.215 | 0.226 | -0.011 | 2.49e-02 |
T2D | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.237 | 0.229 | 0.008 | 0.0000886 | 0.238 | 0.226 | 0.011 | 2.47e-03 |
T2D | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.206 | 0.229 | -0.024 | 0.0000000 | 0.214 | 0.226 | -0.012 | 9.36e-02 |
T2D | LDpred2.Inf | DBSLMM.PseudoVal | 0.189 | 0.229 | -0.040 | 0.0000000 | 0.185 | 0.226 | -0.041 | 2.09e-13 |
T2D | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.234 | 0.229 | 0.005 | 0.0561965 | 0.240 | 0.226 | 0.014 | 7.65e-03 |
T2D | All.MultiPRS | DBSLMM.PseudoVal | 0.249 | 0.229 | 0.019 | 0.0043362 | 0.248 | 0.226 | 0.021 | 1.46e-08 |
T2D | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.237 | 0.229 | 0.008 | 0.2284307 | 0.240 | 0.226 | 0.014 | 1.14e-04 |
T2D | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.194 | 0.229 | -0.035 | 0.0000000 | 0.190 | 0.226 | -0.037 | 1.28e-11 |
T2D | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.232 | 0.229 | 0.003 | 0.6735603 | 0.231 | 0.226 | 0.005 | 2.77e-01 |
T2D | SBLUP.Inf | DBSLMM.PseudoVal | 0.189 | 0.229 | -0.040 | 0.0000000 | 0.184 | 0.226 | -0.042 | 4.78e-14 |
T2D | lassosum.10FCVal | DBSLMM.PseudoVal | 0.214 | 0.229 | -0.016 | 0.0000002 | 0.216 | 0.226 | -0.011 | 6.96e-02 |
T2D | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.229 | 0.229 | 0.000 | 1.0000000 | 0.226 | 0.226 | 0.000 | 1.00e+00 |
T2D | PRScs.10FCVal | DBSLMM.PseudoVal | 0.228 | 0.229 | -0.001 | 0.5026328 | 0.227 | 0.226 | 0.001 | 8.31e-01 |
T2D | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.232 | 0.229 | 0.003 | 0.1958172 | 0.230 | 0.226 | 0.004 | 3.65e-01 |
T2D | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.167 | 0.229 | -0.062 | 0.0000000 | 0.173 | 0.226 | -0.054 | 2.59e-10 |
T2D | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.244 | 0.229 | 0.015 | 0.0241793 | 0.245 | 0.226 | 0.018 | 1.55e-05 |
T2D | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.244 | 0.229 | 0.015 | 0.0000000 | 0.244 | 0.226 | 0.017 | 4.69e-05 |
T2D | LDpred2.MultiPRS | lassosum.MultiPRS | 0.242 | 0.237 | 0.005 | 0.5027318 | 0.240 | 0.240 | 0.000 | 9.04e-01 |
T2D | LDpred2.PseudoVal | lassosum.MultiPRS | 0.194 | 0.237 | -0.044 | 0.0000000 | 0.190 | 0.240 | -0.051 | 7.52e-17 |
T2D | PRScs.MultiPRS | lassosum.MultiPRS | 0.235 | 0.237 | -0.003 | 0.6814676 | 0.237 | 0.240 | -0.003 | 2.05e-01 |
T2D | LDpred2.Inf | lassosum.MultiPRS | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.185 | 0.240 | -0.055 | 6.80e-18 |
T2D | PRScs.PseudoVal | lassosum.MultiPRS | 0.226 | 0.237 | -0.011 | 0.1087394 | 0.226 | 0.240 | -0.014 | 7.36e-05 |
T2D | pT+clump.MultiPRS | lassosum.MultiPRS | 0.212 | 0.237 | -0.026 | 0.0001465 | 0.215 | 0.240 | -0.025 | 5.80e-08 |
T2D | PRScs.10FCVal | lassosum.MultiPRS | 0.228 | 0.237 | -0.010 | 0.1611655 | 0.227 | 0.240 | -0.013 | 2.89e-04 |
T2D | LDpred2.10FCVal | lassosum.MultiPRS | 0.237 | 0.237 | -0.001 | 0.9221728 | 0.238 | 0.240 | -0.003 | 2.78e-01 |
T2D | pT+clump.10FCVal | lassosum.MultiPRS | 0.167 | 0.237 | -0.071 | 0.0000000 | 0.173 | 0.240 | -0.068 | 6.94e-20 |
T2D | SBayesR.PseudoVal | lassosum.MultiPRS | 0.226 | 0.237 | -0.011 | 0.1024003 | 0.227 | 0.240 | -0.013 | 1.37e-03 |
T2D | lassosum.10FCVal | lassosum.MultiPRS | 0.214 | 0.237 | -0.024 | 0.0004823 | 0.216 | 0.240 | -0.025 | 4.04e-09 |
T2D | All.MultiPRS | lassosum.MultiPRS | 0.249 | 0.237 | 0.011 | 0.0000000 | 0.248 | 0.240 | 0.007 | 5.20e-03 |
T2D | SBLUP.Inf | lassosum.MultiPRS | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.184 | 0.240 | -0.056 | 1.38e-18 |
T2D | LDpred1.MultiPRS | lassosum.MultiPRS | 0.232 | 0.237 | -0.005 | 0.4315795 | 0.231 | 0.240 | -0.009 | 1.01e-03 |
T2D | MegaPRS.10FCVal | lassosum.MultiPRS | 0.244 | 0.237 | 0.006 | 0.3421429 | 0.244 | 0.240 | 0.004 | 3.18e-01 |
T2D | lassosum.MultiPRS | lassosum.MultiPRS | 0.237 | 0.237 | 0.000 | 1.0000000 | 0.240 | 0.240 | 0.000 | 1.00e+00 |
T2D | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.229 | 0.237 | -0.008 | 0.2284307 | 0.226 | 0.240 | -0.014 | 1.14e-04 |
T2D | LDpred1.10FCVal | lassosum.MultiPRS | 0.232 | 0.237 | -0.005 | 0.4233306 | 0.230 | 0.240 | -0.010 | 5.87e-04 |
T2D | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.234 | 0.237 | -0.003 | 0.6352088 | 0.240 | 0.240 | 0.000 | 9.20e-01 |
T2D | LDpred1.Inf | lassosum.MultiPRS | 0.187 | 0.237 | -0.050 | 0.0000000 | 0.184 | 0.240 | -0.056 | 2.15e-18 |
T2D | lassosum.PseudoVal | lassosum.MultiPRS | 0.206 | 0.237 | -0.032 | 0.0000031 | 0.214 | 0.240 | -0.026 | 1.36e-07 |
T2D | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.244 | 0.237 | 0.007 | 0.2948940 | 0.245 | 0.240 | 0.004 | 1.92e-01 |
T2D | MegaPRS.10FCVal | lassosum.PseudoVal | 0.244 | 0.206 | 0.038 | 0.0000000 | 0.244 | 0.214 | 0.029 | 3.67e-06 |
T2D | PRScs.MultiPRS | lassosum.PseudoVal | 0.235 | 0.206 | 0.029 | 0.0000230 | 0.237 | 0.214 | 0.023 | 9.22e-05 |
T2D | LDpred1.Inf | lassosum.PseudoVal | 0.187 | 0.206 | -0.019 | 0.0002565 | 0.184 | 0.214 | -0.030 | 2.87e-03 |
T2D | pT+clump.MultiPRS | lassosum.PseudoVal | 0.212 | 0.206 | 0.006 | 0.3794638 | 0.215 | 0.214 | 0.001 | 9.15e-01 |
T2D | All.MultiPRS | lassosum.PseudoVal | 0.249 | 0.206 | 0.043 | 0.0000000 | 0.248 | 0.214 | 0.033 | 3.65e-09 |
T2D | LDpred2.MultiPRS | lassosum.PseudoVal | 0.242 | 0.206 | 0.036 | 0.0000001 | 0.240 | 0.214 | 0.026 | 7.12e-06 |
T2D | SBayesR.PseudoVal | lassosum.PseudoVal | 0.226 | 0.206 | 0.021 | 0.0000000 | 0.227 | 0.214 | 0.013 | 5.67e-03 |
T2D | lassosum.MultiPRS | lassosum.PseudoVal | 0.237 | 0.206 | 0.032 | 0.0000031 | 0.240 | 0.214 | 0.026 | 1.36e-07 |
T2D | LDpred2.PseudoVal | lassosum.PseudoVal | 0.194 | 0.206 | -0.012 | 0.0171422 | 0.190 | 0.214 | -0.025 | 1.22e-02 |
T2D | LDpred1.10FCVal | lassosum.PseudoVal | 0.232 | 0.206 | 0.026 | 0.0000000 | 0.230 | 0.214 | 0.016 | 5.85e-03 |
T2D | SBLUP.Inf | lassosum.PseudoVal | 0.189 | 0.206 | -0.017 | 0.0013035 | 0.184 | 0.214 | -0.030 | 3.09e-03 |
T2D | lassosum.10FCVal | lassosum.PseudoVal | 0.214 | 0.206 | 0.008 | 0.0064251 | 0.216 | 0.214 | 0.001 | 8.10e-01 |
T2D | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.229 | 0.206 | 0.024 | 0.0000000 | 0.226 | 0.214 | 0.012 | 9.36e-02 |
T2D | LDpred2.10FCVal | lassosum.PseudoVal | 0.237 | 0.206 | 0.031 | 0.0000000 | 0.238 | 0.214 | 0.023 | 1.38e-05 |
T2D | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.234 | 0.206 | 0.029 | 0.0000000 | 0.240 | 0.214 | 0.026 | 3.26e-07 |
T2D | PRScs.PseudoVal | lassosum.PseudoVal | 0.226 | 0.206 | 0.021 | 0.0000000 | 0.226 | 0.214 | 0.012 | 1.03e-01 |
T2D | lassosum.PseudoVal | lassosum.PseudoVal | 0.206 | 0.206 | 0.000 | 1.0000000 | 0.214 | 0.214 | 0.000 | 1.00e+00 |
T2D | LDpred2.Inf | lassosum.PseudoVal | 0.189 | 0.206 | -0.017 | 0.0013299 | 0.185 | 0.214 | -0.029 | 4.15e-03 |
T2D | LDpred1.MultiPRS | lassosum.PseudoVal | 0.232 | 0.206 | 0.026 | 0.0001038 | 0.231 | 0.214 | 0.017 | 2.81e-03 |
T2D | pT+clump.10FCVal | lassosum.PseudoVal | 0.167 | 0.206 | -0.039 | 0.0000000 | 0.173 | 0.214 | -0.042 | 4.23e-11 |
T2D | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.244 | 0.206 | 0.039 | 0.0000000 | 0.245 | 0.214 | 0.030 | 1.12e-06 |
T2D | PRScs.10FCVal | lassosum.PseudoVal | 0.228 | 0.206 | 0.022 | 0.0000000 | 0.227 | 0.214 | 0.013 | 6.75e-02 |
T2D | MegaPRS.MultiPRS | lassosum.10FCVal | 0.244 | 0.214 | 0.031 | 0.0000053 | 0.245 | 0.216 | 0.029 | 4.75e-09 |
T2D | PRScs.10FCVal | lassosum.10FCVal | 0.228 | 0.214 | 0.014 | 0.0000000 | 0.227 | 0.216 | 0.012 | 1.22e-02 |
T2D | lassosum.MultiPRS | lassosum.10FCVal | 0.237 | 0.214 | 0.024 | 0.0004823 | 0.240 | 0.216 | 0.025 | 4.04e-09 |
T2D | LDpred2.PseudoVal | lassosum.10FCVal | 0.194 | 0.214 | -0.020 | 0.0000000 | 0.190 | 0.216 | -0.026 | 4.30e-05 |
T2D | MegaPRS.10FCVal | lassosum.10FCVal | 0.244 | 0.214 | 0.030 | 0.0000000 | 0.244 | 0.216 | 0.028 | 2.77e-08 |
T2D | pT+clump.MultiPRS | lassosum.10FCVal | 0.212 | 0.214 | -0.002 | 0.7696225 | 0.215 | 0.216 | -0.001 | 9.07e-01 |
T2D | lassosum.10FCVal | lassosum.10FCVal | 0.214 | 0.214 | 0.000 | 1.0000000 | 0.216 | 0.216 | 0.000 | 1.00e+00 |
T2D | PRScs.MultiPRS | lassosum.10FCVal | 0.235 | 0.214 | 0.021 | 0.0021266 | 0.237 | 0.216 | 0.021 | 1.55e-06 |
T2D | LDpred1.Inf | lassosum.10FCVal | 0.187 | 0.214 | -0.027 | 0.0000000 | 0.184 | 0.216 | -0.031 | 2.25e-06 |
T2D | SBayesR.PseudoVal | lassosum.10FCVal | 0.226 | 0.214 | 0.013 | 0.0000135 | 0.227 | 0.216 | 0.012 | 4.36e-02 |
T2D | PRScs.PseudoVal | lassosum.10FCVal | 0.226 | 0.214 | 0.013 | 0.0000000 | 0.226 | 0.216 | 0.010 | 2.86e-02 |
T2D | All.MultiPRS | lassosum.10FCVal | 0.249 | 0.214 | 0.035 | 0.0000003 | 0.248 | 0.216 | 0.032 | 4.24e-11 |
T2D | LDpred2.MultiPRS | lassosum.10FCVal | 0.242 | 0.214 | 0.028 | 0.0000319 | 0.240 | 0.216 | 0.024 | 1.59e-06 |
T2D | LDpred1.MultiPRS | lassosum.10FCVal | 0.232 | 0.214 | 0.018 | 0.0068647 | 0.231 | 0.216 | 0.015 | 5.02e-05 |
T2D | pT+clump.10FCVal | lassosum.10FCVal | 0.167 | 0.214 | -0.047 | 0.0000000 | 0.173 | 0.216 | -0.043 | 8.50e-07 |
T2D | DBSLMM.PseudoVal | lassosum.10FCVal | 0.229 | 0.214 | 0.016 | 0.0000002 | 0.226 | 0.216 | 0.011 | 6.96e-02 |
T2D | LDpred1.10FCVal | lassosum.10FCVal | 0.232 | 0.214 | 0.018 | 0.0000000 | 0.230 | 0.216 | 0.014 | 1.07e-04 |
T2D | SBLUP.Inf | lassosum.10FCVal | 0.189 | 0.214 | -0.025 | 0.0000000 | 0.184 | 0.216 | -0.031 | 1.96e-06 |
T2D | lassosum.PseudoVal | lassosum.10FCVal | 0.206 | 0.214 | -0.008 | 0.0064251 | 0.214 | 0.216 | -0.001 | 8.10e-01 |
T2D | LDpred2.10FCVal | lassosum.10FCVal | 0.237 | 0.214 | 0.023 | 0.0000000 | 0.238 | 0.216 | 0.022 | 4.27e-09 |
T2D | MegaPRS.PseudoVal | lassosum.10FCVal | 0.234 | 0.214 | 0.021 | 0.0000000 | 0.240 | 0.216 | 0.024 | 9.53e-06 |
T2D | LDpred2.Inf | lassosum.10FCVal | 0.189 | 0.214 | -0.025 | 0.0000000 | 0.185 | 0.216 | -0.031 | 4.35e-06 |
T2D | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.226 | 0.244 | -0.018 | 0.0071931 | 0.227 | 0.245 | -0.017 | 6.32e-04 |
T2D | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.212 | 0.244 | -0.033 | 0.0000013 | 0.215 | 0.245 | -0.030 | 1.24e-07 |
T2D | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.237 | 0.244 | -0.008 | 0.2507974 | 0.238 | 0.245 | -0.007 | 5.40e-02 |
T2D | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.234 | 0.244 | -0.010 | 0.1272843 | 0.240 | 0.245 | -0.005 | 9.53e-02 |
T2D | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.226 | 0.244 | -0.018 | 0.0078385 | 0.226 | 0.245 | -0.019 | 9.22e-06 |
T2D | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.235 | 0.244 | -0.010 | 0.1438559 | 0.237 | 0.245 | -0.008 | 4.30e-02 |
T2D | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.242 | 0.244 | -0.003 | 0.7040817 | 0.240 | 0.245 | -0.005 | 2.36e-01 |
T2D | LDpred2.Inf | MegaPRS.MultiPRS | 0.189 | 0.244 | -0.055 | 0.0000000 | 0.185 | 0.245 | -0.060 | 9.81e-22 |
T2D | SBLUP.Inf | MegaPRS.MultiPRS | 0.189 | 0.244 | -0.055 | 0.0000000 | 0.184 | 0.245 | -0.060 | 2.99e-22 |
T2D | All.MultiPRS | MegaPRS.MultiPRS | 0.249 | 0.244 | 0.004 | 0.5480743 | 0.248 | 0.245 | 0.003 | 6.62e-02 |
T2D | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.194 | 0.244 | -0.051 | 0.0000000 | 0.190 | 0.245 | -0.055 | 2.88e-20 |
T2D | PRScs.10FCVal | MegaPRS.MultiPRS | 0.228 | 0.244 | -0.017 | 0.0140413 | 0.227 | 0.245 | -0.017 | 3.63e-05 |
T2D | LDpred1.Inf | MegaPRS.MultiPRS | 0.187 | 0.244 | -0.057 | 0.0000000 | 0.184 | 0.245 | -0.060 | 3.14e-22 |
T2D | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.167 | 0.244 | -0.078 | 0.0000000 | 0.173 | 0.245 | -0.072 | 3.06e-18 |
T2D | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.229 | 0.244 | -0.015 | 0.0241793 | 0.226 | 0.245 | -0.018 | 1.55e-05 |
T2D | lassosum.10FCVal | MegaPRS.MultiPRS | 0.214 | 0.244 | -0.031 | 0.0000053 | 0.216 | 0.245 | -0.029 | 4.75e-09 |
T2D | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.206 | 0.244 | -0.039 | 0.0000000 | 0.214 | 0.245 | -0.030 | 1.12e-06 |
T2D | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.244 | 0.244 | -0.001 | 0.9224193 | 0.244 | 0.245 | -0.001 | 9.21e-02 |
T2D | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.232 | 0.244 | -0.012 | 0.0664865 | 0.231 | 0.245 | -0.014 | 3.20e-04 |
T2D | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.237 | 0.244 | -0.007 | 0.2948940 | 0.240 | 0.245 | -0.004 | 1.92e-01 |
T2D | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.244 | 0.244 | 0.000 | 1.0000000 | 0.245 | 0.245 | 0.000 | 1.00e+00 |
T2D | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.232 | 0.244 | -0.013 | 0.0639016 | 0.230 | 0.245 | -0.015 | 1.47e-04 |
T2D | PRScs.10FCVal | MegaPRS.PseudoVal | 0.228 | 0.234 | -0.006 | 0.0224973 | 0.227 | 0.240 | -0.013 | 2.00e-02 |
T2D | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.212 | 0.234 | -0.023 | 0.0009466 | 0.215 | 0.240 | -0.025 | 4.12e-06 |
T2D | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.237 | 0.234 | 0.003 | 0.2445653 | 0.238 | 0.240 | -0.002 | 6.18e-01 |
T2D | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.235 | 0.234 | 0.000 | 0.9493948 | 0.237 | 0.240 | -0.003 | 5.45e-01 |
T2D | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.242 | 0.234 | 0.008 | 0.2523455 | 0.240 | 0.240 | 0.000 | 9.94e-01 |
T2D | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.226 | 0.234 | -0.008 | 0.0003425 | 0.227 | 0.240 | -0.013 | 3.50e-03 |
T2D | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.167 | 0.234 | -0.067 | 0.0000000 | 0.173 | 0.240 | -0.067 | 1.22e-21 |
T2D | LDpred2.Inf | MegaPRS.PseudoVal | 0.189 | 0.234 | -0.045 | 0.0000000 | 0.185 | 0.240 | -0.055 | 1.08e-11 |
T2D | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.194 | 0.234 | -0.040 | 0.0000000 | 0.190 | 0.240 | -0.050 | 1.35e-10 |
T2D | All.MultiPRS | MegaPRS.PseudoVal | 0.249 | 0.234 | 0.014 | 0.0336817 | 0.248 | 0.240 | 0.008 | 1.33e-02 |
T2D | SBLUP.Inf | MegaPRS.PseudoVal | 0.189 | 0.234 | -0.045 | 0.0000000 | 0.184 | 0.240 | -0.056 | 5.32e-12 |
T2D | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.226 | 0.234 | -0.008 | 0.0059064 | 0.226 | 0.240 | -0.014 | 1.04e-02 |
T2D | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.229 | 0.234 | -0.005 | 0.0561965 | 0.226 | 0.240 | -0.014 | 7.65e-03 |
T2D | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.237 | 0.234 | 0.003 | 0.6352088 | 0.240 | 0.240 | 0.000 | 9.20e-01 |
T2D | LDpred1.Inf | MegaPRS.PseudoVal | 0.187 | 0.234 | -0.047 | 0.0000000 | 0.184 | 0.240 | -0.056 | 4.11e-12 |
T2D | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.244 | 0.234 | 0.010 | 0.1272843 | 0.245 | 0.240 | 0.005 | 9.53e-02 |
T2D | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.206 | 0.234 | -0.029 | 0.0000000 | 0.214 | 0.240 | -0.026 | 3.26e-07 |
T2D | lassosum.10FCVal | MegaPRS.PseudoVal | 0.214 | 0.234 | -0.021 | 0.0000000 | 0.216 | 0.240 | -0.024 | 9.53e-06 |
T2D | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.244 | 0.234 | 0.010 | 0.0000000 | 0.244 | 0.240 | 0.004 | 1.88e-01 |
T2D | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.234 | 0.234 | 0.000 | 1.0000000 | 0.240 | 0.240 | 0.000 | 1.00e+00 |
T2D | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.232 | 0.234 | -0.002 | 0.7575776 | 0.231 | 0.240 | -0.009 | 4.00e-02 |
T2D | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.232 | 0.234 | -0.002 | 0.3313270 | 0.230 | 0.240 | -0.010 | 2.77e-02 |
T2D | LDpred2.Inf | MegaPRS.10FCVal | 0.189 | 0.244 | -0.055 | 0.0000000 | 0.185 | 0.244 | -0.059 | 3.87e-21 |
T2D | LDpred2.10FCVal | MegaPRS.10FCVal | 0.237 | 0.244 | -0.007 | 0.0001783 | 0.238 | 0.244 | -0.006 | 1.07e-01 |
T2D | PRScs.PseudoVal | MegaPRS.10FCVal | 0.226 | 0.244 | -0.017 | 0.0000000 | 0.226 | 0.244 | -0.018 | 3.29e-05 |
T2D | All.MultiPRS | MegaPRS.10FCVal | 0.249 | 0.244 | 0.005 | 0.4851840 | 0.248 | 0.244 | 0.004 | 3.60e-02 |
T2D | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.242 | 0.244 | -0.002 | 0.7787079 | 0.240 | 0.244 | -0.004 | 3.45e-01 |
T2D | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.226 | 0.244 | -0.018 | 0.0000000 | 0.227 | 0.244 | -0.016 | 1.51e-03 |
T2D | PRScs.10FCVal | MegaPRS.10FCVal | 0.228 | 0.244 | -0.016 | 0.0000000 | 0.227 | 0.244 | -0.017 | 1.21e-04 |
T2D | pT+clump.10FCVal | MegaPRS.10FCVal | 0.167 | 0.244 | -0.077 | 0.0000000 | 0.173 | 0.244 | -0.071 | 1.47e-17 |
T2D | PRScs.MultiPRS | MegaPRS.10FCVal | 0.235 | 0.244 | -0.009 | 0.1742917 | 0.237 | 0.244 | -0.007 | 8.41e-02 |
T2D | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.244 | 0.244 | 0.001 | 0.9224193 | 0.245 | 0.244 | 0.001 | 9.21e-02 |
T2D | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.212 | 0.244 | -0.032 | 0.0000023 | 0.215 | 0.244 | -0.029 | 4.28e-07 |
T2D | SBLUP.Inf | MegaPRS.10FCVal | 0.189 | 0.244 | -0.055 | 0.0000000 | 0.184 | 0.244 | -0.060 | 1.20e-21 |
T2D | lassosum.PseudoVal | MegaPRS.10FCVal | 0.206 | 0.244 | -0.038 | 0.0000000 | 0.214 | 0.244 | -0.029 | 3.67e-06 |
T2D | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.194 | 0.244 | -0.050 | 0.0000000 | 0.190 | 0.244 | -0.054 | 1.57e-19 |
T2D | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.234 | 0.244 | -0.010 | 0.0000000 | 0.240 | 0.244 | -0.004 | 1.88e-01 |
T2D | LDpred1.Inf | MegaPRS.10FCVal | 0.187 | 0.244 | -0.057 | 0.0000000 | 0.184 | 0.244 | -0.059 | 1.45e-21 |
T2D | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.232 | 0.244 | -0.012 | 0.0835532 | 0.231 | 0.244 | -0.013 | 1.14e-03 |
T2D | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.229 | 0.244 | -0.015 | 0.0000000 | 0.226 | 0.244 | -0.017 | 4.69e-05 |
T2D | lassosum.MultiPRS | MegaPRS.10FCVal | 0.237 | 0.244 | -0.006 | 0.3421429 | 0.240 | 0.244 | -0.004 | 3.18e-01 |
T2D | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.244 | 0.244 | 0.000 | 1.0000000 | 0.244 | 0.244 | 0.000 | 1.00e+00 |
T2D | LDpred1.10FCVal | MegaPRS.10FCVal | 0.232 | 0.244 | -0.012 | 0.0000000 | 0.230 | 0.244 | -0.014 | 5.49e-04 |
T2D | lassosum.10FCVal | MegaPRS.10FCVal | 0.214 | 0.244 | -0.030 | 0.0000000 | 0.216 | 0.244 | -0.028 | 2.77e-08 |
T2D | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.242 | 0.232 | 0.010 | 0.1467731 | 0.240 | 0.231 | 0.009 | 7.28e-03 |
T2D | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.194 | 0.232 | -0.038 | 0.0000000 | 0.190 | 0.231 | -0.041 | 5.68e-13 |
T2D | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.226 | 0.232 | -0.006 | 0.3962151 | 0.227 | 0.231 | -0.004 | 4.27e-01 |
T2D | LDpred1.Inf | LDpred1.MultiPRS | 0.187 | 0.232 | -0.045 | 0.0000000 | 0.184 | 0.231 | -0.047 | 3.90e-16 |
T2D | PRScs.PseudoVal | LDpred1.MultiPRS | 0.226 | 0.232 | -0.006 | 0.4126653 | 0.226 | 0.231 | -0.005 | 1.29e-01 |
T2D | PRScs.MultiPRS | LDpred1.MultiPRS | 0.235 | 0.232 | 0.003 | 0.7100273 | 0.237 | 0.231 | 0.006 | 2.13e-02 |
T2D | LDpred2.Inf | LDpred1.MultiPRS | 0.189 | 0.232 | -0.043 | 0.0000000 | 0.185 | 0.231 | -0.046 | 2.78e-14 |
T2D | LDpred2.10FCVal | LDpred1.MultiPRS | 0.237 | 0.232 | 0.005 | 0.4934431 | 0.238 | 0.231 | 0.007 | 8.48e-04 |
T2D | pT+clump.10FCVal | LDpred1.MultiPRS | 0.167 | 0.232 | -0.065 | 0.0000000 | 0.173 | 0.231 | -0.058 | 3.83e-13 |
T2D | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.234 | 0.232 | 0.002 | 0.7575776 | 0.240 | 0.231 | 0.009 | 4.00e-02 |
T2D | PRScs.10FCVal | LDpred1.MultiPRS | 0.228 | 0.232 | -0.004 | 0.5365336 | 0.227 | 0.231 | -0.004 | 2.60e-01 |
T2D | All.MultiPRS | LDpred1.MultiPRS | 0.249 | 0.232 | 0.016 | 0.0146723 | 0.248 | 0.231 | 0.017 | 7.51e-07 |
T2D | SBLUP.Inf | LDpred1.MultiPRS | 0.189 | 0.232 | -0.043 | 0.0000000 | 0.184 | 0.231 | -0.047 | 6.09e-15 |
T2D | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.232 | 0.232 | 0.000 | 1.0000000 | 0.231 | 0.231 | 0.000 | 1.00e+00 |
T2D | lassosum.10FCVal | LDpred1.MultiPRS | 0.214 | 0.232 | -0.018 | 0.0068647 | 0.216 | 0.231 | -0.015 | 5.02e-05 |
T2D | lassosum.MultiPRS | LDpred1.MultiPRS | 0.237 | 0.232 | 0.005 | 0.4315795 | 0.240 | 0.231 | 0.009 | 1.01e-03 |
T2D | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.229 | 0.232 | -0.003 | 0.6735603 | 0.226 | 0.231 | -0.005 | 2.77e-01 |
T2D | LDpred1.10FCVal | LDpred1.MultiPRS | 0.232 | 0.232 | 0.000 | 0.9861470 | 0.230 | 0.231 | -0.001 | 8.06e-02 |
T2D | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.212 | 0.232 | -0.020 | 0.0026686 | 0.215 | 0.231 | -0.016 | 1.96e-03 |
T2D | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.244 | 0.232 | 0.012 | 0.0835532 | 0.244 | 0.231 | 0.013 | 1.14e-03 |
T2D | lassosum.PseudoVal | LDpred1.MultiPRS | 0.206 | 0.232 | -0.026 | 0.0001038 | 0.214 | 0.231 | -0.017 | 2.81e-03 |
T2D | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.244 | 0.232 | 0.012 | 0.0664865 | 0.245 | 0.231 | 0.014 | 3.20e-04 |
T2D | MegaPRS.MultiPRS | LDpred1.Inf | 0.244 | 0.187 | 0.057 | 0.0000000 | 0.245 | 0.184 | 0.060 | 3.14e-22 |
T2D | PRScs.10FCVal | LDpred1.Inf | 0.228 | 0.187 | 0.041 | 0.0000000 | 0.227 | 0.184 | 0.043 | 5.70e-19 |
T2D | LDpred2.MultiPRS | LDpred1.Inf | 0.242 | 0.187 | 0.055 | 0.0000000 | 0.240 | 0.184 | 0.056 | 3.13e-17 |
T2D | LDpred1.MultiPRS | LDpred1.Inf | 0.232 | 0.187 | 0.045 | 0.0000000 | 0.231 | 0.184 | 0.047 | 3.90e-16 |
T2D | pT+clump.10FCVal | LDpred1.Inf | 0.167 | 0.187 | -0.020 | 0.0004173 | 0.173 | 0.184 | -0.012 | 3.00e-01 |
T2D | All.MultiPRS | LDpred1.Inf | 0.249 | 0.187 | 0.062 | 0.0000000 | 0.248 | 0.184 | 0.063 | 9.70e-23 |
T2D | LDpred2.PseudoVal | LDpred1.Inf | 0.194 | 0.187 | 0.007 | 0.0000000 | 0.190 | 0.184 | 0.005 | 1.43e-02 |
T2D | MegaPRS.10FCVal | LDpred1.Inf | 0.244 | 0.187 | 0.057 | 0.0000000 | 0.244 | 0.184 | 0.059 | 1.45e-21 |
T2D | pT+clump.MultiPRS | LDpred1.Inf | 0.212 | 0.187 | 0.025 | 0.0003522 | 0.215 | 0.184 | 0.031 | 1.76e-04 |
T2D | lassosum.MultiPRS | LDpred1.Inf | 0.237 | 0.187 | 0.050 | 0.0000000 | 0.240 | 0.184 | 0.056 | 2.15e-18 |
T2D | DBSLMM.PseudoVal | LDpred1.Inf | 0.229 | 0.187 | 0.042 | 0.0000000 | 0.226 | 0.184 | 0.042 | 2.33e-13 |
T2D | LDpred2.10FCVal | LDpred1.Inf | 0.237 | 0.187 | 0.050 | 0.0000000 | 0.238 | 0.184 | 0.053 | 9.48e-20 |
T2D | MegaPRS.PseudoVal | LDpred1.Inf | 0.234 | 0.187 | 0.047 | 0.0000000 | 0.240 | 0.184 | 0.056 | 4.11e-12 |
T2D | PRScs.PseudoVal | LDpred1.Inf | 0.226 | 0.187 | 0.039 | 0.0000000 | 0.226 | 0.184 | 0.042 | 3.43e-18 |
T2D | lassosum.PseudoVal | LDpred1.Inf | 0.206 | 0.187 | 0.019 | 0.0002565 | 0.214 | 0.184 | 0.030 | 2.87e-03 |
T2D | LDpred2.Inf | LDpred1.Inf | 0.189 | 0.187 | 0.002 | 0.0599183 | 0.185 | 0.184 | 0.001 | 7.02e-01 |
T2D | PRScs.MultiPRS | LDpred1.Inf | 0.235 | 0.187 | 0.048 | 0.0000000 | 0.237 | 0.184 | 0.053 | 8.26e-20 |
T2D | LDpred1.10FCVal | LDpred1.Inf | 0.232 | 0.187 | 0.045 | 0.0000000 | 0.230 | 0.184 | 0.046 | 1.11e-16 |
T2D | SBLUP.Inf | LDpred1.Inf | 0.189 | 0.187 | 0.002 | 0.0511343 | 0.184 | 0.184 | 0.000 | 9.57e-01 |
T2D | lassosum.10FCVal | LDpred1.Inf | 0.214 | 0.187 | 0.027 | 0.0000000 | 0.216 | 0.184 | 0.031 | 2.25e-06 |
T2D | LDpred1.Inf | LDpred1.Inf | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
T2D | SBayesR.PseudoVal | LDpred1.Inf | 0.226 | 0.187 | 0.039 | 0.0000000 | 0.227 | 0.184 | 0.043 | 4.40e-07 |
T2D | LDpred2.Inf | LDpred1.10FCVal | 0.189 | 0.232 | -0.043 | 0.0000000 | 0.185 | 0.230 | -0.045 | 1.15e-14 |
T2D | PRScs.10FCVal | LDpred1.10FCVal | 0.228 | 0.232 | -0.004 | 0.0118529 | 0.227 | 0.230 | -0.003 | 3.63e-01 |
T2D | lassosum.MultiPRS | LDpred1.10FCVal | 0.237 | 0.232 | 0.005 | 0.4233306 | 0.240 | 0.230 | 0.010 | 5.87e-04 |
T2D | LDpred2.MultiPRS | LDpred1.10FCVal | 0.242 | 0.232 | 0.010 | 0.1414016 | 0.240 | 0.230 | 0.010 | 4.09e-03 |
T2D | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.244 | 0.232 | 0.013 | 0.0639016 | 0.245 | 0.230 | 0.015 | 1.47e-04 |
T2D | SBayesR.PseudoVal | LDpred1.10FCVal | 0.226 | 0.232 | -0.006 | 0.0162483 | 0.227 | 0.230 | -0.003 | 5.42e-01 |
T2D | PRScs.PseudoVal | LDpred1.10FCVal | 0.226 | 0.232 | -0.005 | 0.0008156 | 0.226 | 0.230 | -0.004 | 1.90e-01 |
T2D | All.MultiPRS | LDpred1.10FCVal | 0.249 | 0.232 | 0.017 | 0.0143323 | 0.248 | 0.230 | 0.018 | 3.38e-07 |
T2D | LDpred2.PseudoVal | LDpred1.10FCVal | 0.194 | 0.232 | -0.038 | 0.0000000 | 0.190 | 0.230 | -0.041 | 2.89e-13 |
T2D | LDpred1.MultiPRS | LDpred1.10FCVal | 0.232 | 0.232 | 0.000 | 0.9861470 | 0.231 | 0.230 | 0.001 | 8.06e-02 |
T2D | pT+clump.10FCVal | LDpred1.10FCVal | 0.167 | 0.232 | -0.065 | 0.0000000 | 0.173 | 0.230 | -0.058 | 1.33e-12 |
T2D | SBLUP.Inf | LDpred1.10FCVal | 0.189 | 0.232 | -0.043 | 0.0000000 | 0.184 | 0.230 | -0.046 | 2.36e-15 |
T2D | PRScs.MultiPRS | LDpred1.10FCVal | 0.235 | 0.232 | 0.003 | 0.6968859 | 0.237 | 0.230 | 0.007 | 1.19e-02 |
T2D | MegaPRS.10FCVal | LDpred1.10FCVal | 0.244 | 0.232 | 0.012 | 0.0000000 | 0.244 | 0.230 | 0.014 | 5.49e-04 |
T2D | pT+clump.MultiPRS | LDpred1.10FCVal | 0.212 | 0.232 | -0.020 | 0.0028747 | 0.215 | 0.230 | -0.015 | 3.77e-03 |
T2D | LDpred1.Inf | LDpred1.10FCVal | 0.187 | 0.232 | -0.045 | 0.0000000 | 0.184 | 0.230 | -0.046 | 1.11e-16 |
T2D | lassosum.PseudoVal | LDpred1.10FCVal | 0.206 | 0.232 | -0.026 | 0.0000000 | 0.214 | 0.230 | -0.016 | 5.85e-03 |
T2D | LDpred2.10FCVal | LDpred1.10FCVal | 0.237 | 0.232 | 0.005 | 0.0000118 | 0.238 | 0.230 | 0.008 | 3.40e-04 |
T2D | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.234 | 0.232 | 0.002 | 0.3313270 | 0.240 | 0.230 | 0.010 | 2.77e-02 |
T2D | LDpred1.10FCVal | LDpred1.10FCVal | 0.232 | 0.232 | 0.000 | 1.0000000 | 0.230 | 0.230 | 0.000 | 1.00e+00 |
T2D | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.229 | 0.232 | -0.003 | 0.1958172 | 0.226 | 0.230 | -0.004 | 3.65e-01 |
T2D | lassosum.10FCVal | LDpred1.10FCVal | 0.214 | 0.232 | -0.018 | 0.0000000 | 0.216 | 0.230 | -0.014 | 1.07e-04 |
T2D | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.229 | 0.242 | -0.013 | 0.0608498 | 0.226 | 0.240 | -0.014 | 2.71e-04 |
T2D | LDpred2.10FCVal | LDpred2.MultiPRS | 0.237 | 0.242 | -0.005 | 0.4429843 | 0.238 | 0.240 | -0.002 | 4.18e-01 |
T2D | PRScs.PseudoVal | LDpred2.MultiPRS | 0.226 | 0.242 | -0.015 | 0.0230039 | 0.226 | 0.240 | -0.014 | 4.27e-04 |
T2D | All.MultiPRS | LDpred2.MultiPRS | 0.249 | 0.242 | 0.007 | 0.3274515 | 0.248 | 0.240 | 0.008 | 1.24e-02 |
T2D | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.242 | 0.242 | 0.000 | 1.0000000 | 0.240 | 0.240 | 0.000 | 1.00e+00 |
T2D | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.234 | 0.242 | -0.008 | 0.2523455 | 0.240 | 0.240 | 0.000 | 9.94e-01 |
T2D | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.244 | 0.242 | 0.002 | 0.7787079 | 0.244 | 0.240 | 0.004 | 3.45e-01 |
T2D | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.212 | 0.242 | -0.030 | 0.0000081 | 0.215 | 0.240 | -0.025 | 7.69e-07 |
T2D | lassosum.10FCVal | LDpred2.MultiPRS | 0.214 | 0.242 | -0.028 | 0.0000319 | 0.216 | 0.240 | -0.024 | 1.59e-06 |
T2D | PRScs.MultiPRS | LDpred2.MultiPRS | 0.235 | 0.242 | -0.007 | 0.2777745 | 0.237 | 0.240 | -0.003 | 3.51e-01 |
T2D | LDpred1.Inf | LDpred2.MultiPRS | 0.187 | 0.242 | -0.055 | 0.0000000 | 0.184 | 0.240 | -0.056 | 3.13e-17 |
T2D | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.226 | 0.242 | -0.016 | 0.0212590 | 0.227 | 0.240 | -0.013 | 2.16e-03 |
T2D | pT+clump.10FCVal | LDpred2.MultiPRS | 0.167 | 0.242 | -0.075 | 0.0000000 | 0.173 | 0.240 | -0.067 | 1.49e-18 |
T2D | lassosum.PseudoVal | LDpred2.MultiPRS | 0.206 | 0.242 | -0.036 | 0.0000001 | 0.214 | 0.240 | -0.026 | 7.12e-06 |
T2D | LDpred2.Inf | LDpred2.MultiPRS | 0.189 | 0.242 | -0.053 | 0.0000000 | 0.185 | 0.240 | -0.055 | 3.12e-17 |
T2D | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.232 | 0.242 | -0.010 | 0.1467731 | 0.231 | 0.240 | -0.009 | 7.28e-03 |
T2D | SBLUP.Inf | LDpred2.MultiPRS | 0.189 | 0.242 | -0.053 | 0.0000000 | 0.184 | 0.240 | -0.056 | 1.55e-17 |
T2D | lassosum.MultiPRS | LDpred2.MultiPRS | 0.237 | 0.242 | -0.005 | 0.5027318 | 0.240 | 0.240 | 0.000 | 9.04e-01 |
T2D | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.194 | 0.242 | -0.048 | 0.0000000 | 0.190 | 0.240 | -0.050 | 6.01e-16 |
T2D | LDpred1.10FCVal | LDpred2.MultiPRS | 0.232 | 0.242 | -0.010 | 0.1414016 | 0.230 | 0.240 | -0.010 | 4.09e-03 |
T2D | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.244 | 0.242 | 0.003 | 0.7040817 | 0.245 | 0.240 | 0.005 | 2.36e-01 |
T2D | PRScs.10FCVal | LDpred2.MultiPRS | 0.228 | 0.242 | -0.014 | 0.0383790 | 0.227 | 0.240 | -0.013 | 1.28e-03 |
T2D | LDpred2.MultiPRS | LDpred2.10FCVal | 0.242 | 0.237 | 0.005 | 0.4429843 | 0.240 | 0.238 | 0.002 | 4.18e-01 |
T2D | LDpred2.Inf | LDpred2.10FCVal | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.185 | 0.238 | -0.053 | 6.63e-20 |
T2D | PRScs.10FCVal | LDpred2.10FCVal | 0.228 | 0.237 | -0.009 | 0.0000000 | 0.227 | 0.238 | -0.011 | 4.46e-04 |
T2D | SBayesR.PseudoVal | LDpred2.10FCVal | 0.226 | 0.237 | -0.010 | 0.0000014 | 0.227 | 0.238 | -0.010 | 1.44e-02 |
T2D | lassosum.PseudoVal | LDpred2.10FCVal | 0.206 | 0.237 | -0.031 | 0.0000000 | 0.214 | 0.238 | -0.023 | 1.38e-05 |
T2D | LDpred2.10FCVal | LDpred2.10FCVal | 0.237 | 0.237 | 0.000 | 1.0000000 | 0.238 | 0.238 | 0.000 | 1.00e+00 |
T2D | PRScs.PseudoVal | LDpred2.10FCVal | 0.226 | 0.237 | -0.010 | 0.0000000 | 0.226 | 0.238 | -0.012 | 1.00e-04 |
T2D | LDpred1.MultiPRS | LDpred2.10FCVal | 0.232 | 0.237 | -0.005 | 0.4934431 | 0.231 | 0.238 | -0.007 | 8.48e-04 |
T2D | pT+clump.10FCVal | LDpred2.10FCVal | 0.167 | 0.237 | -0.070 | 0.0000000 | 0.173 | 0.238 | -0.065 | 2.26e-16 |
T2D | All.MultiPRS | LDpred2.10FCVal | 0.249 | 0.237 | 0.012 | 0.0809314 | 0.248 | 0.238 | 0.010 | 8.27e-04 |
T2D | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.244 | 0.237 | 0.008 | 0.2507974 | 0.245 | 0.238 | 0.007 | 5.40e-02 |
T2D | MegaPRS.10FCVal | LDpred2.10FCVal | 0.244 | 0.237 | 0.007 | 0.0001783 | 0.244 | 0.238 | 0.006 | 1.07e-01 |
T2D | pT+clump.MultiPRS | LDpred2.10FCVal | 0.212 | 0.237 | -0.025 | 0.0002323 | 0.215 | 0.238 | -0.023 | 6.26e-06 |
T2D | lassosum.MultiPRS | LDpred2.10FCVal | 0.237 | 0.237 | 0.001 | 0.9221728 | 0.240 | 0.238 | 0.003 | 2.78e-01 |
T2D | PRScs.MultiPRS | LDpred2.10FCVal | 0.235 | 0.237 | -0.002 | 0.7546606 | 0.237 | 0.238 | -0.001 | 7.47e-01 |
T2D | LDpred1.Inf | LDpred2.10FCVal | 0.187 | 0.237 | -0.050 | 0.0000000 | 0.184 | 0.238 | -0.053 | 9.48e-20 |
T2D | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.234 | 0.237 | -0.003 | 0.2445653 | 0.240 | 0.238 | 0.002 | 6.18e-01 |
T2D | SBLUP.Inf | LDpred2.10FCVal | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.184 | 0.238 | -0.054 | 3.32e-20 |
T2D | lassosum.10FCVal | LDpred2.10FCVal | 0.214 | 0.237 | -0.023 | 0.0000000 | 0.216 | 0.238 | -0.022 | 4.27e-09 |
T2D | LDpred2.PseudoVal | LDpred2.10FCVal | 0.194 | 0.237 | -0.043 | 0.0000000 | 0.190 | 0.238 | -0.048 | 6.64e-19 |
T2D | LDpred1.10FCVal | LDpred2.10FCVal | 0.232 | 0.237 | -0.005 | 0.0000118 | 0.230 | 0.238 | -0.008 | 3.40e-04 |
T2D | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.229 | 0.237 | -0.008 | 0.0000886 | 0.226 | 0.238 | -0.011 | 2.47e-03 |
T2D | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.234 | 0.194 | 0.040 | 0.0000000 | 0.240 | 0.190 | 0.050 | 1.35e-10 |
T2D | PRScs.PseudoVal | LDpred2.PseudoVal | 0.226 | 0.194 | 0.033 | 0.0000000 | 0.226 | 0.190 | 0.036 | 2.87e-16 |
T2D | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.242 | 0.194 | 0.048 | 0.0000000 | 0.240 | 0.190 | 0.050 | 6.01e-16 |
T2D | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.244 | 0.194 | 0.051 | 0.0000000 | 0.245 | 0.190 | 0.055 | 2.88e-20 |
T2D | PRScs.10FCVal | LDpred2.PseudoVal | 0.228 | 0.194 | 0.034 | 0.0000000 | 0.227 | 0.190 | 0.038 | 2.84e-17 |
T2D | All.MultiPRS | LDpred2.PseudoVal | 0.249 | 0.194 | 0.055 | 0.0000000 | 0.248 | 0.190 | 0.058 | 4.83e-21 |
T2D | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.229 | 0.194 | 0.035 | 0.0000000 | 0.226 | 0.190 | 0.037 | 1.28e-11 |
T2D | LDpred2.10FCVal | LDpred2.PseudoVal | 0.237 | 0.194 | 0.043 | 0.0000000 | 0.238 | 0.190 | 0.048 | 6.64e-19 |
T2D | LDpred1.Inf | LDpred2.PseudoVal | 0.187 | 0.194 | -0.007 | 0.0000000 | 0.184 | 0.190 | -0.005 | 1.43e-02 |
T2D | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.226 | 0.194 | 0.033 | 0.0000000 | 0.227 | 0.190 | 0.038 | 4.75e-06 |
T2D | lassosum.PseudoVal | LDpred2.PseudoVal | 0.206 | 0.194 | 0.012 | 0.0171422 | 0.214 | 0.190 | 0.025 | 1.22e-02 |
T2D | LDpred2.Inf | LDpred2.PseudoVal | 0.189 | 0.194 | -0.005 | 0.0000000 | 0.185 | 0.190 | -0.004 | 1.65e-05 |
T2D | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.194 | 0.194 | 0.000 | 1.0000000 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
T2D | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.232 | 0.194 | 0.038 | 0.0000000 | 0.231 | 0.190 | 0.041 | 5.68e-13 |
T2D | pT+clump.10FCVal | LDpred2.PseudoVal | 0.167 | 0.194 | -0.027 | 0.0000017 | 0.173 | 0.190 | -0.017 | 1.27e-01 |
T2D | lassosum.MultiPRS | LDpred2.PseudoVal | 0.237 | 0.194 | 0.044 | 0.0000000 | 0.240 | 0.190 | 0.051 | 7.52e-17 |
T2D | PRScs.MultiPRS | LDpred2.PseudoVal | 0.235 | 0.194 | 0.041 | 0.0000000 | 0.237 | 0.190 | 0.047 | 2.24e-18 |
T2D | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.244 | 0.194 | 0.050 | 0.0000000 | 0.244 | 0.190 | 0.054 | 1.57e-19 |
T2D | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.212 | 0.194 | 0.018 | 0.0093602 | 0.215 | 0.190 | 0.025 | 1.59e-03 |
T2D | lassosum.10FCVal | LDpred2.PseudoVal | 0.214 | 0.194 | 0.020 | 0.0000000 | 0.216 | 0.190 | 0.026 | 4.30e-05 |
T2D | LDpred1.10FCVal | LDpred2.PseudoVal | 0.232 | 0.194 | 0.038 | 0.0000000 | 0.230 | 0.190 | 0.041 | 2.89e-13 |
T2D | SBLUP.Inf | LDpred2.PseudoVal | 0.189 | 0.194 | -0.005 | 0.0000000 | 0.184 | 0.190 | -0.005 | 1.98e-06 |
T2D | PRScs.10FCVal | LDpred2.Inf | 0.228 | 0.189 | 0.039 | 0.0000000 | 0.227 | 0.185 | 0.042 | 4.31e-19 |
T2D | pT+clump.MultiPRS | LDpred2.Inf | 0.212 | 0.189 | 0.023 | 0.0010698 | 0.215 | 0.185 | 0.030 | 2.73e-04 |
T2D | LDpred2.Inf | LDpred2.Inf | 0.189 | 0.189 | 0.000 | 1.0000000 | 0.185 | 0.185 | 0.000 | 1.00e+00 |
T2D | lassosum.PseudoVal | LDpred2.Inf | 0.206 | 0.189 | 0.017 | 0.0013299 | 0.214 | 0.185 | 0.029 | 4.15e-03 |
T2D | LDpred2.MultiPRS | LDpred2.Inf | 0.242 | 0.189 | 0.053 | 0.0000000 | 0.240 | 0.185 | 0.055 | 3.12e-17 |
T2D | SBayesR.PseudoVal | LDpred2.Inf | 0.226 | 0.189 | 0.037 | 0.0000000 | 0.227 | 0.185 | 0.042 | 7.51e-07 |
T2D | pT+clump.10FCVal | LDpred2.Inf | 0.167 | 0.189 | -0.022 | 0.0001072 | 0.173 | 0.185 | -0.013 | 2.70e-01 |
T2D | PRScs.PseudoVal | LDpred2.Inf | 0.226 | 0.189 | 0.037 | 0.0000000 | 0.226 | 0.185 | 0.041 | 2.65e-18 |
T2D | LDpred2.PseudoVal | LDpred2.Inf | 0.194 | 0.189 | 0.005 | 0.0000000 | 0.190 | 0.185 | 0.004 | 1.65e-05 |
T2D | All.MultiPRS | LDpred2.Inf | 0.249 | 0.189 | 0.059 | 0.0000000 | 0.248 | 0.185 | 0.063 | 3.19e-22 |
T2D | SBLUP.Inf | LDpred2.Inf | 0.189 | 0.189 | 0.000 | 0.9690174 | 0.184 | 0.185 | -0.001 | 2.78e-01 |
T2D | MegaPRS.MultiPRS | LDpred2.Inf | 0.244 | 0.189 | 0.055 | 0.0000000 | 0.245 | 0.185 | 0.060 | 9.81e-22 |
T2D | PRScs.MultiPRS | LDpred2.Inf | 0.235 | 0.189 | 0.046 | 0.0000000 | 0.237 | 0.185 | 0.052 | 2.32e-19 |
T2D | lassosum.MultiPRS | LDpred2.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.240 | 0.185 | 0.055 | 6.80e-18 |
T2D | LDpred1.Inf | LDpred2.Inf | 0.187 | 0.189 | -0.002 | 0.0599183 | 0.184 | 0.185 | -0.001 | 7.02e-01 |
T2D | MegaPRS.10FCVal | LDpred2.Inf | 0.244 | 0.189 | 0.055 | 0.0000000 | 0.244 | 0.185 | 0.059 | 3.87e-21 |
T2D | MegaPRS.PseudoVal | LDpred2.Inf | 0.234 | 0.189 | 0.045 | 0.0000000 | 0.240 | 0.185 | 0.055 | 1.08e-11 |
T2D | lassosum.10FCVal | LDpred2.Inf | 0.214 | 0.189 | 0.025 | 0.0000000 | 0.216 | 0.185 | 0.031 | 4.35e-06 |
T2D | LDpred2.10FCVal | LDpred2.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.238 | 0.185 | 0.053 | 6.63e-20 |
T2D | DBSLMM.PseudoVal | LDpred2.Inf | 0.229 | 0.189 | 0.040 | 0.0000000 | 0.226 | 0.185 | 0.041 | 2.09e-13 |
T2D | LDpred1.MultiPRS | LDpred2.Inf | 0.232 | 0.189 | 0.043 | 0.0000000 | 0.231 | 0.185 | 0.046 | 2.78e-14 |
T2D | LDpred1.10FCVal | LDpred2.Inf | 0.232 | 0.189 | 0.043 | 0.0000000 | 0.230 | 0.185 | 0.045 | 1.15e-14 |
T2D | PRScs.PseudoVal | PRScs.MultiPRS | 0.226 | 0.235 | -0.008 | 0.2324194 | 0.226 | 0.237 | -0.011 | 6.99e-06 |
T2D | LDpred2.MultiPRS | PRScs.MultiPRS | 0.242 | 0.235 | 0.007 | 0.2777745 | 0.240 | 0.237 | 0.003 | 3.51e-01 |
T2D | LDpred2.Inf | PRScs.MultiPRS | 0.189 | 0.235 | -0.046 | 0.0000000 | 0.185 | 0.237 | -0.052 | 2.32e-19 |
T2D | pT+clump.10FCVal | PRScs.MultiPRS | 0.167 | 0.235 | -0.068 | 0.0000000 | 0.173 | 0.237 | -0.064 | 5.15e-15 |
T2D | SBayesR.PseudoVal | PRScs.MultiPRS | 0.226 | 0.235 | -0.008 | 0.2233584 | 0.227 | 0.237 | -0.010 | 3.18e-02 |
T2D | LDpred2.PseudoVal | PRScs.MultiPRS | 0.194 | 0.235 | -0.041 | 0.0000000 | 0.190 | 0.237 | -0.047 | 2.24e-18 |
T2D | LDpred2.10FCVal | PRScs.MultiPRS | 0.237 | 0.235 | 0.002 | 0.7546606 | 0.238 | 0.237 | 0.001 | 7.47e-01 |
T2D | PRScs.MultiPRS | PRScs.MultiPRS | 0.235 | 0.235 | 0.000 | 1.0000000 | 0.237 | 0.237 | 0.000 | 1.00e+00 |
T2D | LDpred1.MultiPRS | PRScs.MultiPRS | 0.232 | 0.235 | -0.003 | 0.7100273 | 0.231 | 0.237 | -0.006 | 2.13e-02 |
T2D | pT+clump.MultiPRS | PRScs.MultiPRS | 0.212 | 0.235 | -0.023 | 0.0007513 | 0.215 | 0.237 | -0.022 | 1.34e-05 |
T2D | All.MultiPRS | PRScs.MultiPRS | 0.249 | 0.235 | 0.014 | 0.0397343 | 0.248 | 0.237 | 0.011 | 8.27e-04 |
T2D | lassosum.PseudoVal | PRScs.MultiPRS | 0.206 | 0.235 | -0.029 | 0.0000230 | 0.214 | 0.237 | -0.023 | 9.22e-05 |
T2D | PRScs.10FCVal | PRScs.MultiPRS | 0.228 | 0.235 | -0.007 | 0.3217600 | 0.227 | 0.237 | -0.010 | 2.97e-05 |
T2D | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.234 | 0.235 | 0.000 | 0.9493948 | 0.240 | 0.237 | 0.003 | 5.45e-01 |
T2D | lassosum.MultiPRS | PRScs.MultiPRS | 0.237 | 0.235 | 0.003 | 0.6814676 | 0.240 | 0.237 | 0.003 | 2.05e-01 |
T2D | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.244 | 0.235 | 0.010 | 0.1438559 | 0.245 | 0.237 | 0.008 | 4.30e-02 |
T2D | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.229 | 0.235 | -0.005 | 0.4267616 | 0.226 | 0.237 | -0.011 | 2.46e-03 |
T2D | LDpred1.10FCVal | PRScs.MultiPRS | 0.232 | 0.235 | -0.003 | 0.6968859 | 0.230 | 0.237 | -0.007 | 1.19e-02 |
T2D | SBLUP.Inf | PRScs.MultiPRS | 0.189 | 0.235 | -0.046 | 0.0000000 | 0.184 | 0.237 | -0.053 | 3.88e-20 |
T2D | lassosum.10FCVal | PRScs.MultiPRS | 0.214 | 0.235 | -0.021 | 0.0021266 | 0.216 | 0.237 | -0.021 | 1.55e-06 |
T2D | LDpred1.Inf | PRScs.MultiPRS | 0.187 | 0.235 | -0.048 | 0.0000000 | 0.184 | 0.237 | -0.053 | 8.26e-20 |
T2D | MegaPRS.10FCVal | PRScs.MultiPRS | 0.244 | 0.235 | 0.009 | 0.1742917 | 0.244 | 0.237 | 0.007 | 8.41e-02 |
T2D | PRScs.10FCVal | PRScs.10FCVal | 0.228 | 0.228 | 0.000 | 1.0000000 | 0.227 | 0.227 | 0.000 | 1.00e+00 |
T2D | pT+clump.MultiPRS | PRScs.10FCVal | 0.212 | 0.228 | -0.016 | 0.0174312 | 0.215 | 0.227 | -0.012 | 3.72e-02 |
T2D | SBayesR.PseudoVal | PRScs.10FCVal | 0.226 | 0.228 | -0.002 | 0.5845040 | 0.227 | 0.227 | 0.000 | 9.88e-01 |
T2D | pT+clump.10FCVal | PRScs.10FCVal | 0.167 | 0.228 | -0.061 | 0.0000000 | 0.173 | 0.227 | -0.055 | 1.71e-09 |
T2D | LDpred2.MultiPRS | PRScs.10FCVal | 0.242 | 0.228 | 0.014 | 0.0383790 | 0.240 | 0.227 | 0.013 | 1.28e-03 |
T2D | LDpred2.10FCVal | PRScs.10FCVal | 0.237 | 0.228 | 0.009 | 0.0000000 | 0.238 | 0.227 | 0.011 | 4.46e-04 |
T2D | SBLUP.Inf | PRScs.10FCVal | 0.189 | 0.228 | -0.039 | 0.0000000 | 0.184 | 0.227 | -0.043 | 3.06e-20 |
T2D | PRScs.PseudoVal | PRScs.10FCVal | 0.226 | 0.228 | -0.001 | 0.3625509 | 0.226 | 0.227 | -0.001 | 6.57e-01 |
T2D | LDpred2.PseudoVal | PRScs.10FCVal | 0.194 | 0.228 | -0.034 | 0.0000000 | 0.190 | 0.227 | -0.038 | 2.84e-17 |
T2D | LDpred2.Inf | PRScs.10FCVal | 0.189 | 0.228 | -0.039 | 0.0000000 | 0.185 | 0.227 | -0.042 | 4.31e-19 |
T2D | LDpred1.Inf | PRScs.10FCVal | 0.187 | 0.228 | -0.041 | 0.0000000 | 0.184 | 0.227 | -0.043 | 5.70e-19 |
T2D | MegaPRS.MultiPRS | PRScs.10FCVal | 0.244 | 0.228 | 0.017 | 0.0140413 | 0.245 | 0.227 | 0.017 | 3.63e-05 |
T2D | PRScs.MultiPRS | PRScs.10FCVal | 0.235 | 0.228 | 0.007 | 0.3217600 | 0.237 | 0.227 | 0.010 | 2.97e-05 |
T2D | lassosum.MultiPRS | PRScs.10FCVal | 0.237 | 0.228 | 0.010 | 0.1611655 | 0.240 | 0.227 | 0.013 | 2.89e-04 |
T2D | DBSLMM.PseudoVal | PRScs.10FCVal | 0.229 | 0.228 | 0.001 | 0.5026328 | 0.226 | 0.227 | -0.001 | 8.31e-01 |
T2D | MegaPRS.10FCVal | PRScs.10FCVal | 0.244 | 0.228 | 0.016 | 0.0000000 | 0.244 | 0.227 | 0.017 | 1.21e-04 |
T2D | MegaPRS.PseudoVal | PRScs.10FCVal | 0.234 | 0.228 | 0.006 | 0.0224973 | 0.240 | 0.227 | 0.013 | 2.00e-02 |
T2D | lassosum.10FCVal | PRScs.10FCVal | 0.214 | 0.228 | -0.014 | 0.0000000 | 0.216 | 0.227 | -0.012 | 1.22e-02 |
T2D | All.MultiPRS | PRScs.10FCVal | 0.249 | 0.228 | 0.021 | 0.0023044 | 0.248 | 0.227 | 0.021 | 2.82e-07 |
T2D | lassosum.PseudoVal | PRScs.10FCVal | 0.206 | 0.228 | -0.022 | 0.0000000 | 0.214 | 0.227 | -0.013 | 6.75e-02 |
T2D | LDpred1.MultiPRS | PRScs.10FCVal | 0.232 | 0.228 | 0.004 | 0.5365336 | 0.231 | 0.227 | 0.004 | 2.60e-01 |
T2D | LDpred1.10FCVal | PRScs.10FCVal | 0.232 | 0.228 | 0.004 | 0.0118529 | 0.230 | 0.227 | 0.003 | 3.63e-01 |
T2D | LDpred2.MultiPRS | PRScs.PseudoVal | 0.242 | 0.226 | 0.015 | 0.0230039 | 0.240 | 0.226 | 0.014 | 4.27e-04 |
T2D | PRScs.10FCVal | PRScs.PseudoVal | 0.228 | 0.226 | 0.001 | 0.3625509 | 0.227 | 0.226 | 0.001 | 6.57e-01 |
T2D | pT+clump.10FCVal | PRScs.PseudoVal | 0.167 | 0.226 | -0.060 | 0.0000000 | 0.173 | 0.226 | -0.053 | 4.90e-09 |
T2D | LDpred2.PseudoVal | PRScs.PseudoVal | 0.194 | 0.226 | -0.033 | 0.0000000 | 0.190 | 0.226 | -0.036 | 2.87e-16 |
T2D | LDpred2.Inf | PRScs.PseudoVal | 0.189 | 0.226 | -0.037 | 0.0000000 | 0.185 | 0.226 | -0.041 | 2.65e-18 |
T2D | pT+clump.MultiPRS | PRScs.PseudoVal | 0.212 | 0.226 | -0.015 | 0.0296830 | 0.215 | 0.226 | -0.011 | 6.43e-02 |
T2D | PRScs.PseudoVal | PRScs.PseudoVal | 0.226 | 0.226 | 0.000 | 1.0000000 | 0.226 | 0.226 | 0.000 | 1.00e+00 |
T2D | SBayesR.PseudoVal | PRScs.PseudoVal | 0.226 | 0.226 | 0.000 | 0.9474333 | 0.227 | 0.226 | 0.001 | 8.05e-01 |
T2D | lassosum.MultiPRS | PRScs.PseudoVal | 0.237 | 0.226 | 0.011 | 0.1087394 | 0.240 | 0.226 | 0.014 | 7.36e-05 |
T2D | LDpred2.10FCVal | PRScs.PseudoVal | 0.237 | 0.226 | 0.010 | 0.0000000 | 0.238 | 0.226 | 0.012 | 1.00e-04 |
T2D | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.244 | 0.226 | 0.018 | 0.0078385 | 0.245 | 0.226 | 0.019 | 9.22e-06 |
T2D | LDpred1.MultiPRS | PRScs.PseudoVal | 0.232 | 0.226 | 0.006 | 0.4126653 | 0.231 | 0.226 | 0.005 | 1.29e-01 |
T2D | SBLUP.Inf | PRScs.PseudoVal | 0.189 | 0.226 | -0.037 | 0.0000000 | 0.184 | 0.226 | -0.042 | 2.31e-19 |
T2D | All.MultiPRS | PRScs.PseudoVal | 0.249 | 0.226 | 0.022 | 0.0011470 | 0.248 | 0.226 | 0.022 | 7.53e-08 |
T2D | MegaPRS.10FCVal | PRScs.PseudoVal | 0.244 | 0.226 | 0.017 | 0.0000000 | 0.244 | 0.226 | 0.018 | 3.29e-05 |
T2D | LDpred1.10FCVal | PRScs.PseudoVal | 0.232 | 0.226 | 0.005 | 0.0008156 | 0.230 | 0.226 | 0.004 | 1.90e-01 |
T2D | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.234 | 0.226 | 0.008 | 0.0059064 | 0.240 | 0.226 | 0.014 | 1.04e-02 |
T2D | lassosum.10FCVal | PRScs.PseudoVal | 0.214 | 0.226 | -0.013 | 0.0000000 | 0.216 | 0.226 | -0.010 | 2.86e-02 |
T2D | PRScs.MultiPRS | PRScs.PseudoVal | 0.235 | 0.226 | 0.008 | 0.2324194 | 0.237 | 0.226 | 0.011 | 6.99e-06 |
T2D | LDpred1.Inf | PRScs.PseudoVal | 0.187 | 0.226 | -0.039 | 0.0000000 | 0.184 | 0.226 | -0.042 | 3.43e-18 |
T2D | lassosum.PseudoVal | PRScs.PseudoVal | 0.206 | 0.226 | -0.021 | 0.0000000 | 0.214 | 0.226 | -0.012 | 1.03e-01 |
T2D | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.229 | 0.226 | 0.003 | 0.1752873 | 0.226 | 0.226 | 0.000 | 9.03e-01 |
T2D | All.MultiPRS | pT+clump.MultiPRS | 0.249 | 0.212 | 0.037 | 0.0000001 | 0.248 | 0.215 | 0.033 | 1.13e-10 |
T2D | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.242 | 0.212 | 0.030 | 0.0000081 | 0.240 | 0.215 | 0.025 | 7.69e-07 |
T2D | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.232 | 0.212 | 0.020 | 0.0026686 | 0.231 | 0.215 | 0.016 | 1.96e-03 |
T2D | pT+clump.10FCVal | pT+clump.MultiPRS | 0.167 | 0.212 | -0.045 | 0.0000000 | 0.173 | 0.215 | -0.042 | 2.98e-11 |
T2D | lassosum.MultiPRS | pT+clump.MultiPRS | 0.237 | 0.212 | 0.026 | 0.0001465 | 0.240 | 0.215 | 0.025 | 5.80e-08 |
T2D | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.194 | 0.212 | -0.018 | 0.0093602 | 0.190 | 0.215 | -0.025 | 1.59e-03 |
T2D | LDpred1.10FCVal | pT+clump.MultiPRS | 0.232 | 0.212 | 0.020 | 0.0028747 | 0.230 | 0.215 | 0.015 | 3.77e-03 |
T2D | SBLUP.Inf | pT+clump.MultiPRS | 0.189 | 0.212 | -0.023 | 0.0010604 | 0.184 | 0.215 | -0.031 | 1.59e-04 |
T2D | lassosum.10FCVal | pT+clump.MultiPRS | 0.214 | 0.212 | 0.002 | 0.7696225 | 0.216 | 0.215 | 0.001 | 9.07e-01 |
T2D | PRScs.MultiPRS | pT+clump.MultiPRS | 0.235 | 0.212 | 0.023 | 0.0007513 | 0.237 | 0.215 | 0.022 | 1.34e-05 |
T2D | LDpred2.10FCVal | pT+clump.MultiPRS | 0.237 | 0.212 | 0.025 | 0.0002323 | 0.238 | 0.215 | 0.023 | 6.26e-06 |
T2D | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.234 | 0.212 | 0.023 | 0.0009466 | 0.240 | 0.215 | 0.025 | 4.12e-06 |
T2D | PRScs.PseudoVal | pT+clump.MultiPRS | 0.226 | 0.212 | 0.015 | 0.0296830 | 0.226 | 0.215 | 0.011 | 6.43e-02 |
T2D | lassosum.PseudoVal | pT+clump.MultiPRS | 0.206 | 0.212 | -0.006 | 0.3794638 | 0.214 | 0.215 | -0.001 | 9.15e-01 |
T2D | LDpred2.Inf | pT+clump.MultiPRS | 0.189 | 0.212 | -0.023 | 0.0010698 | 0.185 | 0.215 | -0.030 | 2.73e-04 |
T2D | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.244 | 0.212 | 0.032 | 0.0000023 | 0.244 | 0.215 | 0.029 | 4.28e-07 |
T2D | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.244 | 0.212 | 0.033 | 0.0000013 | 0.245 | 0.215 | 0.030 | 1.24e-07 |
T2D | PRScs.10FCVal | pT+clump.MultiPRS | 0.228 | 0.212 | 0.016 | 0.0174312 | 0.227 | 0.215 | 0.012 | 3.72e-02 |
T2D | LDpred1.Inf | pT+clump.MultiPRS | 0.187 | 0.212 | -0.025 | 0.0003522 | 0.184 | 0.215 | -0.031 | 1.76e-04 |
T2D | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.212 | 0.212 | 0.000 | 1.0000000 | 0.215 | 0.215 | 0.000 | 1.00e+00 |
T2D | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.229 | 0.212 | 0.018 | 0.0100914 | 0.226 | 0.215 | 0.011 | 2.49e-02 |
T2D | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.226 | 0.212 | 0.015 | 0.0314108 | 0.227 | 0.215 | 0.012 | 2.29e-02 |
T2D | LDpred2.MultiPRS | pT+clump.10FCVal | 0.242 | 0.167 | 0.075 | 0.0000000 | 0.240 | 0.173 | 0.067 | 1.49e-18 |
T2D | LDpred2.PseudoVal | pT+clump.10FCVal | 0.194 | 0.167 | 0.027 | 0.0000017 | 0.190 | 0.173 | 0.017 | 1.27e-01 |
T2D | pT+clump.MultiPRS | pT+clump.10FCVal | 0.212 | 0.167 | 0.045 | 0.0000000 | 0.215 | 0.173 | 0.042 | 2.98e-11 |
T2D | SBLUP.Inf | pT+clump.10FCVal | 0.189 | 0.167 | 0.022 | 0.0001079 | 0.184 | 0.173 | 0.012 | 3.07e-01 |
T2D | PRScs.PseudoVal | pT+clump.10FCVal | 0.226 | 0.167 | 0.060 | 0.0000000 | 0.226 | 0.173 | 0.053 | 4.90e-09 |
T2D | PRScs.MultiPRS | pT+clump.10FCVal | 0.235 | 0.167 | 0.068 | 0.0000000 | 0.237 | 0.173 | 0.064 | 5.15e-15 |
T2D | LDpred2.Inf | pT+clump.10FCVal | 0.189 | 0.167 | 0.022 | 0.0001072 | 0.185 | 0.173 | 0.013 | 2.70e-01 |
T2D | SBayesR.PseudoVal | pT+clump.10FCVal | 0.226 | 0.167 | 0.059 | 0.0000000 | 0.227 | 0.173 | 0.055 | 9.71e-16 |
T2D | pT+clump.10FCVal | pT+clump.10FCVal | 0.167 | 0.167 | 0.000 | 1.0000000 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
T2D | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.234 | 0.167 | 0.067 | 0.0000000 | 0.240 | 0.173 | 0.067 | 1.22e-21 |
T2D | PRScs.10FCVal | pT+clump.10FCVal | 0.228 | 0.167 | 0.061 | 0.0000000 | 0.227 | 0.173 | 0.055 | 1.71e-09 |
T2D | LDpred2.10FCVal | pT+clump.10FCVal | 0.237 | 0.167 | 0.070 | 0.0000000 | 0.238 | 0.173 | 0.065 | 2.26e-16 |
T2D | MegaPRS.10FCVal | pT+clump.10FCVal | 0.244 | 0.167 | 0.077 | 0.0000000 | 0.244 | 0.173 | 0.071 | 1.47e-17 |
T2D | LDpred1.MultiPRS | pT+clump.10FCVal | 0.232 | 0.167 | 0.065 | 0.0000000 | 0.231 | 0.173 | 0.058 | 3.83e-13 |
T2D | lassosum.10FCVal | pT+clump.10FCVal | 0.214 | 0.167 | 0.047 | 0.0000000 | 0.216 | 0.173 | 0.043 | 8.50e-07 |
T2D | All.MultiPRS | pT+clump.10FCVal | 0.249 | 0.167 | 0.082 | 0.0000000 | 0.248 | 0.173 | 0.075 | 1.91e-22 |
T2D | LDpred1.Inf | pT+clump.10FCVal | 0.187 | 0.167 | 0.020 | 0.0004173 | 0.184 | 0.173 | 0.012 | 3.00e-01 |
T2D | LDpred1.10FCVal | pT+clump.10FCVal | 0.232 | 0.167 | 0.065 | 0.0000000 | 0.230 | 0.173 | 0.058 | 1.33e-12 |
T2D | lassosum.MultiPRS | pT+clump.10FCVal | 0.237 | 0.167 | 0.071 | 0.0000000 | 0.240 | 0.173 | 0.068 | 6.94e-20 |
T2D | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.229 | 0.167 | 0.062 | 0.0000000 | 0.226 | 0.173 | 0.054 | 2.59e-10 |
T2D | lassosum.PseudoVal | pT+clump.10FCVal | 0.206 | 0.167 | 0.039 | 0.0000000 | 0.214 | 0.173 | 0.042 | 4.23e-11 |
T2D | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.244 | 0.167 | 0.078 | 0.0000000 | 0.245 | 0.173 | 0.072 | 3.06e-18 |
T2D | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.226 | 0.226 | 0.000 | 1.0000000 | 0.227 | 0.227 | 0.000 | 1.00e+00 |
T2D | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.242 | 0.226 | 0.016 | 0.0212590 | 0.240 | 0.227 | 0.013 | 2.16e-03 |
T2D | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.232 | 0.226 | 0.006 | 0.3962151 | 0.231 | 0.227 | 0.004 | 4.27e-01 |
T2D | PRScs.PseudoVal | SBayesR.PseudoVal | 0.226 | 0.226 | 0.000 | 0.9474333 | 0.226 | 0.227 | -0.001 | 8.05e-01 |
T2D | All.MultiPRS | SBayesR.PseudoVal | 0.249 | 0.226 | 0.022 | 0.0010300 | 0.248 | 0.227 | 0.020 | 1.02e-06 |
T2D | PRScs.MultiPRS | SBayesR.PseudoVal | 0.235 | 0.226 | 0.008 | 0.2233584 | 0.237 | 0.227 | 0.010 | 3.18e-02 |
T2D | LDpred2.10FCVal | SBayesR.PseudoVal | 0.237 | 0.226 | 0.010 | 0.0000014 | 0.238 | 0.227 | 0.010 | 1.44e-02 |
T2D | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.234 | 0.226 | 0.008 | 0.0003425 | 0.240 | 0.227 | 0.013 | 3.50e-03 |
T2D | pT+clump.10FCVal | SBayesR.PseudoVal | 0.167 | 0.226 | -0.059 | 0.0000000 | 0.173 | 0.227 | -0.055 | 9.71e-16 |
T2D | lassosum.PseudoVal | SBayesR.PseudoVal | 0.206 | 0.226 | -0.021 | 0.0000000 | 0.214 | 0.227 | -0.013 | 5.67e-03 |
T2D | LDpred2.Inf | SBayesR.PseudoVal | 0.189 | 0.226 | -0.037 | 0.0000000 | 0.185 | 0.227 | -0.042 | 7.51e-07 |
T2D | PRScs.10FCVal | SBayesR.PseudoVal | 0.228 | 0.226 | 0.002 | 0.5845040 | 0.227 | 0.227 | 0.000 | 9.88e-01 |
T2D | SBLUP.Inf | SBayesR.PseudoVal | 0.189 | 0.226 | -0.037 | 0.0000000 | 0.184 | 0.227 | -0.043 | 4.42e-07 |
T2D | lassosum.MultiPRS | SBayesR.PseudoVal | 0.237 | 0.226 | 0.011 | 0.1024003 | 0.240 | 0.227 | 0.013 | 1.37e-03 |
T2D | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.194 | 0.226 | -0.033 | 0.0000000 | 0.190 | 0.227 | -0.038 | 4.75e-06 |
T2D | lassosum.10FCVal | SBayesR.PseudoVal | 0.214 | 0.226 | -0.013 | 0.0000135 | 0.216 | 0.227 | -0.012 | 4.36e-02 |
T2D | LDpred1.Inf | SBayesR.PseudoVal | 0.187 | 0.226 | -0.039 | 0.0000000 | 0.184 | 0.227 | -0.043 | 4.40e-07 |
T2D | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.212 | 0.226 | -0.015 | 0.0314108 | 0.215 | 0.227 | -0.012 | 2.29e-02 |
T2D | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.229 | 0.226 | 0.003 | 0.2828740 | 0.226 | 0.227 | -0.001 | 8.61e-01 |
T2D | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.244 | 0.226 | 0.018 | 0.0071931 | 0.245 | 0.227 | 0.017 | 6.32e-04 |
T2D | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.244 | 0.226 | 0.018 | 0.0000000 | 0.244 | 0.227 | 0.016 | 1.51e-03 |
T2D | LDpred1.10FCVal | SBayesR.PseudoVal | 0.232 | 0.226 | 0.006 | 0.0162483 | 0.230 | 0.227 | 0.003 | 5.42e-01 |
T2D | All.MultiPRS | SBLUP.Inf | 0.249 | 0.189 | 0.059 | 0.0000000 | 0.248 | 0.184 | 0.064 | 1.04e-22 |
T2D | LDpred2.MultiPRS | SBLUP.Inf | 0.242 | 0.189 | 0.053 | 0.0000000 | 0.240 | 0.184 | 0.056 | 1.55e-17 |
T2D | PRScs.PseudoVal | SBLUP.Inf | 0.226 | 0.189 | 0.037 | 0.0000000 | 0.226 | 0.184 | 0.042 | 2.31e-19 |
T2D | lassosum.PseudoVal | SBLUP.Inf | 0.206 | 0.189 | 0.017 | 0.0013035 | 0.214 | 0.184 | 0.030 | 3.09e-03 |
T2D | LDpred2.Inf | SBLUP.Inf | 0.189 | 0.189 | 0.000 | 0.9690174 | 0.185 | 0.184 | 0.001 | 2.78e-01 |
T2D | MegaPRS.PseudoVal | SBLUP.Inf | 0.234 | 0.189 | 0.045 | 0.0000000 | 0.240 | 0.184 | 0.056 | 5.32e-12 |
T2D | pT+clump.10FCVal | SBLUP.Inf | 0.167 | 0.189 | -0.022 | 0.0001079 | 0.173 | 0.184 | -0.012 | 3.07e-01 |
T2D | lassosum.MultiPRS | SBLUP.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.240 | 0.184 | 0.056 | 1.38e-18 |
T2D | LDpred2.PseudoVal | SBLUP.Inf | 0.194 | 0.189 | 0.005 | 0.0000000 | 0.190 | 0.184 | 0.005 | 1.98e-06 |
T2D | LDpred1.MultiPRS | SBLUP.Inf | 0.232 | 0.189 | 0.043 | 0.0000000 | 0.231 | 0.184 | 0.047 | 6.09e-15 |
T2D | MegaPRS.10FCVal | SBLUP.Inf | 0.244 | 0.189 | 0.055 | 0.0000000 | 0.244 | 0.184 | 0.060 | 1.20e-21 |
T2D | pT+clump.MultiPRS | SBLUP.Inf | 0.212 | 0.189 | 0.023 | 0.0010604 | 0.215 | 0.184 | 0.031 | 1.59e-04 |
T2D | DBSLMM.PseudoVal | SBLUP.Inf | 0.229 | 0.189 | 0.040 | 0.0000000 | 0.226 | 0.184 | 0.042 | 4.78e-14 |
T2D | LDpred2.10FCVal | SBLUP.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.238 | 0.184 | 0.054 | 3.32e-20 |
T2D | LDpred1.Inf | SBLUP.Inf | 0.187 | 0.189 | -0.002 | 0.0511343 | 0.184 | 0.184 | 0.000 | 9.57e-01 |
T2D | SBayesR.PseudoVal | SBLUP.Inf | 0.226 | 0.189 | 0.037 | 0.0000000 | 0.227 | 0.184 | 0.043 | 4.42e-07 |
T2D | SBLUP.Inf | SBLUP.Inf | 0.189 | 0.189 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
T2D | MegaPRS.MultiPRS | SBLUP.Inf | 0.244 | 0.189 | 0.055 | 0.0000000 | 0.245 | 0.184 | 0.060 | 2.99e-22 |
T2D | PRScs.10FCVal | SBLUP.Inf | 0.228 | 0.189 | 0.039 | 0.0000000 | 0.227 | 0.184 | 0.043 | 3.06e-20 |
T2D | LDpred1.10FCVal | SBLUP.Inf | 0.232 | 0.189 | 0.043 | 0.0000000 | 0.230 | 0.184 | 0.046 | 2.36e-15 |
T2D | lassosum.10FCVal | SBLUP.Inf | 0.214 | 0.189 | 0.025 | 0.0000000 | 0.216 | 0.184 | 0.031 | 1.96e-06 |
T2D | PRScs.MultiPRS | SBLUP.Inf | 0.235 | 0.189 | 0.046 | 0.0000000 | 0.237 | 0.184 | 0.053 | 3.88e-20 |
CAD | DBSLMM.PseudoVal | All.MultiPRS | 0.171 | 0.197 | -0.027 | 0.0001158 | 0.164 | 0.197 | -0.033 | 1.17e-09 |
CAD | SBayesR.PseudoVal | All.MultiPRS | 0.159 | 0.197 | -0.038 | 0.0000000 | 0.160 | 0.197 | -0.037 | 3.24e-09 |
CAD | lassosum.PseudoVal | All.MultiPRS | 0.162 | 0.197 | -0.035 | 0.0000004 | 0.160 | 0.197 | -0.037 | 7.70e-10 |
CAD | LDpred2.10FCVal | All.MultiPRS | 0.188 | 0.197 | -0.009 | 0.1789641 | 0.184 | 0.197 | -0.013 | 1.57e-04 |
CAD | MegaPRS.MultiPRS | All.MultiPRS | 0.187 | 0.197 | -0.010 | 0.1392815 | 0.189 | 0.197 | -0.008 | 1.61e-02 |
CAD | PRScs.10FCVal | All.MultiPRS | 0.181 | 0.197 | -0.016 | 0.0223623 | 0.182 | 0.197 | -0.015 | 2.82e-04 |
CAD | LDpred2.Inf | All.MultiPRS | 0.162 | 0.197 | -0.035 | 0.0000003 | 0.157 | 0.197 | -0.040 | 6.09e-11 |
CAD | MegaPRS.10FCVal | All.MultiPRS | 0.185 | 0.197 | -0.012 | 0.0753398 | 0.182 | 0.197 | -0.015 | 1.32e-04 |
CAD | pT+clump.MultiPRS | All.MultiPRS | 0.167 | 0.197 | -0.030 | 0.0000142 | 0.166 | 0.197 | -0.031 | 2.53e-08 |
CAD | lassosum.10FCVal | All.MultiPRS | 0.174 | 0.197 | -0.023 | 0.0007182 | 0.171 | 0.197 | -0.026 | 2.52e-07 |
CAD | PRScs.MultiPRS | All.MultiPRS | 0.186 | 0.197 | -0.011 | 0.1049725 | 0.186 | 0.197 | -0.011 | 1.84e-03 |
CAD | LDpred1.Inf | All.MultiPRS | 0.148 | 0.197 | -0.049 | 0.0000000 | 0.147 | 0.197 | -0.050 | 1.33e-12 |
CAD | MegaPRS.PseudoVal | All.MultiPRS | 0.183 | 0.197 | -0.014 | 0.0440885 | 0.184 | 0.197 | -0.013 | 1.01e-03 |
CAD | PRScs.PseudoVal | All.MultiPRS | 0.181 | 0.197 | -0.016 | 0.0193809 | 0.182 | 0.197 | -0.015 | 2.80e-04 |
CAD | All.MultiPRS | All.MultiPRS | 0.197 | 0.197 | 0.000 | 1.0000000 | 0.197 | 0.197 | 0.000 | 1.00e+00 |
CAD | LDpred2.MultiPRS | All.MultiPRS | 0.192 | 0.197 | -0.005 | 0.4347522 | 0.186 | 0.197 | -0.011 | 1.16e-04 |
CAD | LDpred1.MultiPRS | All.MultiPRS | 0.173 | 0.197 | -0.024 | 0.0005028 | 0.174 | 0.197 | -0.023 | 4.63e-06 |
CAD | pT+clump.10FCVal | All.MultiPRS | 0.135 | 0.197 | -0.063 | 0.0000000 | 0.134 | 0.197 | -0.063 | 2.44e-15 |
CAD | lassosum.MultiPRS | All.MultiPRS | 0.187 | 0.197 | -0.010 | 0.0000000 | 0.186 | 0.197 | -0.011 | 5.31e-04 |
CAD | LDpred2.PseudoVal | All.MultiPRS | 0.107 | 0.197 | -0.090 | 0.0000000 | 0.111 | 0.197 | -0.086 | 2.41e-19 |
CAD | LDpred1.10FCVal | All.MultiPRS | 0.172 | 0.197 | -0.025 | 0.0002739 | 0.172 | 0.197 | -0.025 | 1.27e-06 |
CAD | SBLUP.Inf | All.MultiPRS | 0.162 | 0.197 | -0.035 | 0.0000004 | 0.157 | 0.197 | -0.040 | 2.99e-11 |
CAD | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.181 | 0.171 | 0.011 | 0.0000813 | 0.182 | 0.164 | 0.017 | 1.35e-03 |
CAD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.159 | 0.171 | -0.011 | 0.0000287 | 0.160 | 0.164 | -0.005 | 3.77e-01 |
CAD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.192 | 0.171 | 0.021 | 0.0020730 | 0.186 | 0.164 | 0.021 | 2.95e-05 |
CAD | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.186 | 0.171 | 0.015 | 0.0253980 | 0.186 | 0.164 | 0.021 | 8.59e-06 |
CAD | LDpred1.Inf | DBSLMM.PseudoVal | 0.148 | 0.171 | -0.023 | 0.0000001 | 0.147 | 0.164 | -0.017 | 4.02e-02 |
CAD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.167 | 0.171 | -0.003 | 0.6386592 | 0.166 | 0.164 | 0.002 | 7.54e-01 |
CAD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.188 | 0.171 | 0.017 | 0.0000000 | 0.184 | 0.164 | 0.020 | 4.31e-04 |
CAD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.162 | 0.171 | -0.008 | 0.0118266 | 0.160 | 0.164 | -0.004 | 4.99e-01 |
CAD | LDpred2.Inf | DBSLMM.PseudoVal | 0.162 | 0.171 | -0.009 | 0.0255104 | 0.157 | 0.164 | -0.007 | 3.76e-01 |
CAD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.183 | 0.171 | 0.013 | 0.0000196 | 0.184 | 0.164 | 0.020 | 1.15e-03 |
CAD | All.MultiPRS | DBSLMM.PseudoVal | 0.197 | 0.171 | 0.027 | 0.0001158 | 0.197 | 0.164 | 0.033 | 1.17e-09 |
CAD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.187 | 0.171 | 0.017 | 0.0152763 | 0.186 | 0.164 | 0.021 | 3.14e-05 |
CAD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.107 | 0.171 | -0.064 | 0.0000000 | 0.111 | 0.164 | -0.053 | 1.74e-07 |
CAD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.173 | 0.171 | 0.003 | 0.7094497 | 0.174 | 0.164 | 0.010 | 9.42e-02 |
CAD | SBLUP.Inf | DBSLMM.PseudoVal | 0.162 | 0.171 | -0.008 | 0.0286464 | 0.157 | 0.164 | -0.007 | 3.48e-01 |
CAD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.174 | 0.171 | 0.003 | 0.3535791 | 0.171 | 0.164 | 0.007 | 3.30e-01 |
CAD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.171 | 0.171 | 0.000 | 1.0000000 | 0.164 | 0.164 | 0.000 | 1.00e+00 |
CAD | PRScs.10FCVal | DBSLMM.PseudoVal | 0.181 | 0.171 | 0.011 | 0.0000571 | 0.182 | 0.164 | 0.018 | 1.26e-03 |
CAD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.172 | 0.171 | 0.002 | 0.5895662 | 0.172 | 0.164 | 0.008 | 1.74e-01 |
CAD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.135 | 0.171 | -0.036 | 0.0000000 | 0.134 | 0.164 | -0.030 | 1.35e-03 |
CAD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.187 | 0.171 | 0.016 | 0.0168991 | 0.189 | 0.164 | 0.024 | 5.31e-05 |
CAD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.185 | 0.171 | 0.014 | 0.0000022 | 0.182 | 0.164 | 0.018 | 2.97e-03 |
CAD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.192 | 0.187 | 0.004 | 0.5181064 | 0.186 | 0.186 | 0.000 | 9.41e-01 |
CAD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.107 | 0.187 | -0.080 | 0.0000000 | 0.111 | 0.186 | -0.074 | 1.23e-14 |
CAD | PRScs.MultiPRS | lassosum.MultiPRS | 0.186 | 0.187 | -0.001 | 0.8476865 | 0.186 | 0.186 | 0.000 | 9.14e-01 |
CAD | LDpred2.Inf | lassosum.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0002320 | 0.157 | 0.186 | -0.028 | 7.52e-07 |
CAD | PRScs.PseudoVal | lassosum.MultiPRS | 0.181 | 0.187 | -0.006 | 0.3652374 | 0.182 | 0.186 | -0.004 | 2.61e-01 |
CAD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.167 | 0.187 | -0.020 | 0.0036609 | 0.166 | 0.186 | -0.019 | 1.03e-04 |
CAD | PRScs.10FCVal | lassosum.MultiPRS | 0.181 | 0.187 | -0.006 | 0.3950836 | 0.182 | 0.186 | -0.004 | 2.86e-01 |
CAD | LDpred2.10FCVal | lassosum.MultiPRS | 0.188 | 0.187 | 0.001 | 0.9304819 | 0.184 | 0.186 | -0.002 | 5.74e-01 |
CAD | pT+clump.10FCVal | lassosum.MultiPRS | 0.135 | 0.187 | -0.053 | 0.0000000 | 0.134 | 0.186 | -0.052 | 6.58e-12 |
CAD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.159 | 0.187 | -0.028 | 0.0000561 | 0.160 | 0.186 | -0.026 | 2.64e-05 |
CAD | lassosum.10FCVal | lassosum.MultiPRS | 0.174 | 0.187 | -0.013 | 0.0513405 | 0.171 | 0.186 | -0.014 | 1.15e-04 |
CAD | All.MultiPRS | lassosum.MultiPRS | 0.197 | 0.187 | 0.010 | 0.0000000 | 0.197 | 0.186 | 0.011 | 5.31e-04 |
CAD | SBLUP.Inf | lassosum.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0002695 | 0.157 | 0.186 | -0.028 | 3.19e-07 |
CAD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.173 | 0.187 | -0.014 | 0.0402893 | 0.174 | 0.186 | -0.011 | 1.33e-02 |
CAD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.185 | 0.187 | -0.002 | 0.7297344 | 0.182 | 0.186 | -0.003 | 4.88e-01 |
CAD | lassosum.MultiPRS | lassosum.MultiPRS | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
CAD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.171 | 0.187 | -0.017 | 0.0152763 | 0.164 | 0.186 | -0.021 | 3.14e-05 |
CAD | LDpred1.10FCVal | lassosum.MultiPRS | 0.172 | 0.187 | -0.015 | 0.0274587 | 0.172 | 0.186 | -0.013 | 5.21e-03 |
CAD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5620489 | 0.184 | 0.186 | -0.002 | 7.05e-01 |
CAD | LDpred1.Inf | lassosum.MultiPRS | 0.148 | 0.187 | -0.040 | 0.0000000 | 0.147 | 0.186 | -0.038 | 1.90e-08 |
CAD | lassosum.PseudoVal | lassosum.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0002768 | 0.160 | 0.186 | -0.026 | 4.11e-07 |
CAD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.187 | 0.187 | 0.000 | 0.9621399 | 0.189 | 0.186 | 0.003 | 4.77e-01 |
CAD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.185 | 0.162 | 0.023 | 0.0000000 | 0.182 | 0.160 | 0.023 | 5.22e-04 |
CAD | PRScs.MultiPRS | lassosum.PseudoVal | 0.186 | 0.162 | 0.024 | 0.0005926 | 0.186 | 0.160 | 0.026 | 2.09e-05 |
CAD | LDpred1.Inf | lassosum.PseudoVal | 0.148 | 0.162 | -0.015 | 0.0020714 | 0.147 | 0.160 | -0.013 | 1.79e-01 |
CAD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.167 | 0.162 | 0.005 | 0.4640216 | 0.166 | 0.160 | 0.006 | 3.08e-01 |
CAD | All.MultiPRS | lassosum.PseudoVal | 0.197 | 0.162 | 0.035 | 0.0000004 | 0.197 | 0.160 | 0.037 | 7.70e-10 |
CAD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.192 | 0.162 | 0.030 | 0.0000185 | 0.186 | 0.160 | 0.026 | 1.26e-06 |
CAD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.159 | 0.162 | -0.003 | 0.3217724 | 0.160 | 0.160 | 0.000 | 9.68e-01 |
CAD | lassosum.MultiPRS | lassosum.PseudoVal | 0.187 | 0.162 | 0.025 | 0.0002768 | 0.186 | 0.160 | 0.026 | 4.11e-07 |
CAD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.107 | 0.162 | -0.055 | 0.0000000 | 0.111 | 0.160 | -0.049 | 8.73e-07 |
CAD | LDpred1.10FCVal | lassosum.PseudoVal | 0.172 | 0.162 | 0.010 | 0.0005790 | 0.172 | 0.160 | 0.012 | 3.11e-02 |
CAD | SBLUP.Inf | lassosum.PseudoVal | 0.162 | 0.162 | 0.000 | 0.9824928 | 0.157 | 0.160 | -0.003 | 7.61e-01 |
CAD | lassosum.10FCVal | lassosum.PseudoVal | 0.174 | 0.162 | 0.012 | 0.0003627 | 0.171 | 0.160 | 0.012 | 8.26e-02 |
CAD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.171 | 0.162 | 0.008 | 0.0118266 | 0.164 | 0.160 | 0.004 | 4.99e-01 |
CAD | LDpred2.10FCVal | lassosum.PseudoVal | 0.188 | 0.162 | 0.026 | 0.0000000 | 0.184 | 0.160 | 0.024 | 6.63e-05 |
CAD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.183 | 0.162 | 0.021 | 0.0000000 | 0.184 | 0.160 | 0.024 | 6.08e-05 |
CAD | PRScs.PseudoVal | lassosum.PseudoVal | 0.181 | 0.162 | 0.019 | 0.0000000 | 0.182 | 0.160 | 0.022 | 6.59e-04 |
CAD | lassosum.PseudoVal | lassosum.PseudoVal | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.160 | 0.160 | 0.000 | 1.00e+00 |
CAD | LDpred2.Inf | lassosum.PseudoVal | 0.162 | 0.162 | 0.000 | 0.9355262 | 0.157 | 0.160 | -0.002 | 7.91e-01 |
CAD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.173 | 0.162 | 0.011 | 0.1146578 | 0.174 | 0.160 | 0.014 | 1.74e-02 |
CAD | pT+clump.10FCVal | lassosum.PseudoVal | 0.135 | 0.162 | -0.028 | 0.0000000 | 0.134 | 0.160 | -0.026 | 1.05e-02 |
CAD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.187 | 0.162 | 0.025 | 0.0003300 | 0.189 | 0.160 | 0.029 | 7.48e-06 |
CAD | PRScs.10FCVal | lassosum.PseudoVal | 0.181 | 0.162 | 0.019 | 0.0000000 | 0.182 | 0.160 | 0.022 | 5.08e-04 |
CAD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.187 | 0.174 | 0.013 | 0.0569620 | 0.189 | 0.171 | 0.017 | 7.09e-04 |
CAD | PRScs.10FCVal | lassosum.10FCVal | 0.181 | 0.174 | 0.008 | 0.0003946 | 0.182 | 0.171 | 0.011 | 1.35e-02 |
CAD | lassosum.MultiPRS | lassosum.10FCVal | 0.187 | 0.174 | 0.013 | 0.0513405 | 0.186 | 0.171 | 0.014 | 1.15e-04 |
CAD | LDpred2.PseudoVal | lassosum.10FCVal | 0.107 | 0.174 | -0.067 | 0.0000000 | 0.111 | 0.171 | -0.060 | 1.19e-09 |
CAD | MegaPRS.10FCVal | lassosum.10FCVal | 0.185 | 0.174 | 0.011 | 0.0000187 | 0.182 | 0.171 | 0.011 | 3.18e-02 |
CAD | pT+clump.MultiPRS | lassosum.10FCVal | 0.167 | 0.174 | -0.007 | 0.3424478 | 0.166 | 0.171 | -0.005 | 4.12e-01 |
CAD | lassosum.10FCVal | lassosum.10FCVal | 0.174 | 0.174 | 0.000 | 1.0000000 | 0.171 | 0.171 | 0.000 | 1.00e+00 |
CAD | PRScs.MultiPRS | lassosum.10FCVal | 0.186 | 0.174 | 0.012 | 0.0801883 | 0.186 | 0.171 | 0.014 | 6.67e-04 |
CAD | LDpred1.Inf | lassosum.10FCVal | 0.148 | 0.174 | -0.026 | 0.0000000 | 0.147 | 0.171 | -0.024 | 9.11e-05 |
CAD | SBayesR.PseudoVal | lassosum.10FCVal | 0.159 | 0.174 | -0.014 | 0.0004675 | 0.160 | 0.171 | -0.012 | 1.57e-01 |
CAD | PRScs.PseudoVal | lassosum.10FCVal | 0.181 | 0.174 | 0.007 | 0.0008708 | 0.182 | 0.171 | 0.010 | 1.80e-02 |
CAD | All.MultiPRS | lassosum.10FCVal | 0.197 | 0.174 | 0.023 | 0.0007182 | 0.197 | 0.171 | 0.026 | 2.52e-07 |
CAD | LDpred2.MultiPRS | lassosum.10FCVal | 0.192 | 0.174 | 0.018 | 0.0093541 | 0.186 | 0.171 | 0.014 | 5.13e-04 |
CAD | LDpred1.MultiPRS | lassosum.10FCVal | 0.173 | 0.174 | -0.001 | 0.9140029 | 0.174 | 0.171 | 0.003 | 6.31e-01 |
CAD | pT+clump.10FCVal | lassosum.10FCVal | 0.135 | 0.174 | -0.039 | 0.0000000 | 0.134 | 0.171 | -0.037 | 5.16e-08 |
CAD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.171 | 0.174 | -0.003 | 0.3535791 | 0.164 | 0.171 | -0.007 | 3.30e-01 |
CAD | LDpred1.10FCVal | lassosum.10FCVal | 0.172 | 0.174 | -0.002 | 0.5610506 | 0.172 | 0.171 | 0.001 | 8.98e-01 |
CAD | SBLUP.Inf | lassosum.10FCVal | 0.162 | 0.174 | -0.012 | 0.0000003 | 0.157 | 0.171 | -0.014 | 1.92e-03 |
CAD | lassosum.PseudoVal | lassosum.10FCVal | 0.162 | 0.174 | -0.012 | 0.0003627 | 0.160 | 0.171 | -0.012 | 8.26e-02 |
CAD | LDpred2.10FCVal | lassosum.10FCVal | 0.188 | 0.174 | 0.014 | 0.0000000 | 0.184 | 0.171 | 0.013 | 3.99e-04 |
CAD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.183 | 0.174 | 0.009 | 0.0005733 | 0.184 | 0.171 | 0.012 | 2.24e-02 |
CAD | LDpred2.Inf | lassosum.10FCVal | 0.162 | 0.174 | -0.012 | 0.0000003 | 0.157 | 0.171 | -0.014 | 2.97e-03 |
CAD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.159 | 0.187 | -0.027 | 0.0000693 | 0.160 | 0.189 | -0.029 | 2.48e-05 |
CAD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.167 | 0.187 | -0.020 | 0.0043034 | 0.166 | 0.189 | -0.022 | 6.99e-04 |
CAD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.188 | 0.187 | 0.001 | 0.8926047 | 0.184 | 0.189 | -0.005 | 2.69e-01 |
CAD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5939814 | 0.184 | 0.189 | -0.005 | 9.01e-03 |
CAD | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.181 | 0.187 | -0.006 | 0.3895551 | 0.182 | 0.189 | -0.007 | 1.32e-01 |
CAD | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.186 | 0.187 | -0.001 | 0.8847009 | 0.186 | 0.189 | -0.003 | 5.37e-01 |
CAD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.192 | 0.187 | 0.005 | 0.4872336 | 0.186 | 0.189 | -0.003 | 5.08e-01 |
CAD | LDpred2.Inf | MegaPRS.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0002641 | 0.157 | 0.189 | -0.031 | 8.86e-08 |
CAD | SBLUP.Inf | MegaPRS.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0003064 | 0.157 | 0.189 | -0.032 | 4.63e-08 |
CAD | All.MultiPRS | MegaPRS.MultiPRS | 0.197 | 0.187 | 0.010 | 0.1392815 | 0.197 | 0.189 | 0.008 | 1.61e-02 |
CAD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.107 | 0.187 | -0.080 | 0.0000000 | 0.111 | 0.189 | -0.078 | 4.08e-15 |
CAD | PRScs.10FCVal | MegaPRS.MultiPRS | 0.181 | 0.187 | -0.006 | 0.4213014 | 0.182 | 0.189 | -0.007 | 1.43e-01 |
CAD | LDpred1.Inf | MegaPRS.MultiPRS | 0.148 | 0.187 | -0.039 | 0.0000000 | 0.147 | 0.189 | -0.041 | 3.61e-10 |
CAD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.135 | 0.187 | -0.052 | 0.0000000 | 0.134 | 0.189 | -0.055 | 3.72e-10 |
CAD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.171 | 0.187 | -0.016 | 0.0168991 | 0.164 | 0.189 | -0.024 | 5.31e-05 |
CAD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.174 | 0.187 | -0.013 | 0.0569620 | 0.171 | 0.189 | -0.017 | 7.09e-04 |
CAD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.162 | 0.187 | -0.025 | 0.0003300 | 0.160 | 0.189 | -0.029 | 7.48e-06 |
CAD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.185 | 0.187 | -0.002 | 0.7652480 | 0.182 | 0.189 | -0.006 | 2.24e-06 |
CAD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.173 | 0.187 | -0.014 | 0.0444676 | 0.174 | 0.189 | -0.014 | 4.35e-03 |
CAD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.187 | 0.187 | 0.000 | 0.9621399 | 0.186 | 0.189 | -0.003 | 4.77e-01 |
CAD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.189 | 0.189 | 0.000 | 1.00e+00 |
CAD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.172 | 0.187 | -0.015 | 0.0305550 | 0.172 | 0.189 | -0.016 | 2.15e-03 |
CAD | LDpred2.Inf | MegaPRS.PseudoVal | 0.162 | 0.183 | -0.021 | 0.0000000 | 0.157 | 0.184 | -0.026 | 6.11e-05 |
CAD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0435542 | 0.184 | 0.184 | 0.000 | 9.96e-01 |
CAD | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.181 | 0.183 | -0.002 | 0.3620338 | 0.182 | 0.184 | -0.002 | 6.54e-01 |
CAD | All.MultiPRS | MegaPRS.PseudoVal | 0.197 | 0.183 | 0.014 | 0.0440885 | 0.197 | 0.184 | 0.013 | 1.01e-03 |
CAD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.192 | 0.183 | 0.008 | 0.2196542 | 0.186 | 0.184 | 0.002 | 6.73e-01 |
CAD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.159 | 0.183 | -0.024 | 0.0000000 | 0.160 | 0.184 | -0.024 | 2.22e-04 |
CAD | PRScs.10FCVal | MegaPRS.PseudoVal | 0.181 | 0.183 | -0.002 | 0.4508124 | 0.182 | 0.184 | -0.002 | 6.91e-01 |
CAD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.135 | 0.183 | -0.049 | 0.0000000 | 0.134 | 0.184 | -0.050 | 3.72e-08 |
CAD | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.186 | 0.183 | 0.003 | 0.6996680 | 0.186 | 0.184 | 0.002 | 6.80e-01 |
CAD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.187 | 0.183 | 0.004 | 0.5939814 | 0.189 | 0.184 | 0.005 | 9.01e-03 |
CAD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.167 | 0.183 | -0.016 | 0.0205392 | 0.166 | 0.184 | -0.018 | 7.77e-03 |
CAD | SBLUP.Inf | MegaPRS.PseudoVal | 0.162 | 0.183 | -0.021 | 0.0000000 | 0.157 | 0.184 | -0.027 | 4.17e-05 |
CAD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.162 | 0.183 | -0.021 | 0.0000000 | 0.160 | 0.184 | -0.024 | 6.08e-05 |
CAD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.107 | 0.183 | -0.076 | 0.0000000 | 0.111 | 0.184 | -0.073 | 3.87e-14 |
CAD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
CAD | LDpred1.Inf | MegaPRS.PseudoVal | 0.148 | 0.183 | -0.036 | 0.0000000 | 0.147 | 0.184 | -0.037 | 3.58e-07 |
CAD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.173 | 0.183 | -0.010 | 0.1394276 | 0.174 | 0.184 | -0.010 | 5.70e-02 |
CAD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.171 | 0.183 | -0.013 | 0.0000196 | 0.164 | 0.184 | -0.020 | 1.15e-03 |
CAD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.187 | 0.183 | 0.004 | 0.5620489 | 0.186 | 0.184 | 0.002 | 7.05e-01 |
CAD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.185 | 0.183 | 0.002 | 0.0175190 | 0.182 | 0.184 | -0.001 | 3.01e-01 |
CAD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.172 | 0.183 | -0.011 | 0.0000251 | 0.172 | 0.184 | -0.012 | 2.70e-02 |
CAD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.174 | 0.183 | -0.009 | 0.0005733 | 0.171 | 0.184 | -0.012 | 2.24e-02 |
CAD | PRScs.10FCVal | MegaPRS.10FCVal | 0.181 | 0.185 | -0.003 | 0.1382070 | 0.182 | 0.182 | -0.001 | 9.07e-01 |
CAD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.167 | 0.185 | -0.018 | 0.0107824 | 0.166 | 0.182 | -0.016 | 1.61e-02 |
CAD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.188 | 0.185 | 0.003 | 0.1697036 | 0.184 | 0.182 | 0.001 | 7.43e-01 |
CAD | PRScs.MultiPRS | MegaPRS.10FCVal | 0.186 | 0.185 | 0.001 | 0.8787287 | 0.186 | 0.182 | 0.003 | 4.62e-01 |
CAD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.192 | 0.185 | 0.007 | 0.3204203 | 0.186 | 0.182 | 0.003 | 4.57e-01 |
CAD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.159 | 0.185 | -0.025 | 0.0000000 | 0.160 | 0.182 | -0.023 | 1.14e-03 |
CAD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.135 | 0.185 | -0.050 | 0.0000000 | 0.134 | 0.182 | -0.048 | 3.37e-08 |
CAD | LDpred2.Inf | MegaPRS.10FCVal | 0.162 | 0.185 | -0.023 | 0.0000000 | 0.157 | 0.182 | -0.025 | 2.15e-05 |
CAD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.107 | 0.185 | -0.078 | 0.0000000 | 0.111 | 0.182 | -0.071 | 6.07e-13 |
CAD | All.MultiPRS | MegaPRS.10FCVal | 0.197 | 0.185 | 0.012 | 0.0753398 | 0.197 | 0.182 | 0.015 | 1.32e-04 |
CAD | SBLUP.Inf | MegaPRS.10FCVal | 0.162 | 0.185 | -0.023 | 0.0000000 | 0.157 | 0.182 | -0.025 | 1.35e-05 |
CAD | PRScs.PseudoVal | MegaPRS.10FCVal | 0.181 | 0.185 | -0.004 | 0.0995303 | 0.182 | 0.182 | -0.001 | 8.63e-01 |
CAD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.171 | 0.185 | -0.014 | 0.0000022 | 0.164 | 0.182 | -0.018 | 2.97e-03 |
CAD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.187 | 0.185 | 0.002 | 0.7297344 | 0.186 | 0.182 | 0.003 | 4.88e-01 |
CAD | LDpred1.Inf | MegaPRS.10FCVal | 0.148 | 0.185 | -0.037 | 0.0000000 | 0.147 | 0.182 | -0.035 | 1.21e-07 |
CAD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.187 | 0.185 | 0.002 | 0.7652480 | 0.189 | 0.182 | 0.006 | 2.24e-06 |
CAD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.162 | 0.185 | -0.023 | 0.0000000 | 0.160 | 0.182 | -0.023 | 5.22e-04 |
CAD | lassosum.10FCVal | MegaPRS.10FCVal | 0.174 | 0.185 | -0.011 | 0.0000187 | 0.171 | 0.182 | -0.011 | 3.18e-02 |
CAD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.185 | 0.185 | 0.000 | 1.0000000 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
CAD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.183 | 0.185 | -0.002 | 0.0175190 | 0.184 | 0.182 | 0.001 | 3.01e-01 |
CAD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.173 | 0.185 | -0.012 | 0.0867656 | 0.174 | 0.182 | -0.008 | 1.05e-01 |
CAD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.172 | 0.185 | -0.013 | 0.0000025 | 0.172 | 0.182 | -0.010 | 5.71e-02 |
CAD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.192 | 0.173 | 0.019 | 0.0069048 | 0.186 | 0.174 | 0.012 | 7.09e-03 |
CAD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.107 | 0.173 | -0.066 | 0.0000000 | 0.111 | 0.174 | -0.063 | 1.29e-10 |
CAD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.159 | 0.173 | -0.014 | 0.0489554 | 0.160 | 0.174 | -0.014 | 1.98e-02 |
CAD | LDpred1.Inf | LDpred1.MultiPRS | 0.148 | 0.173 | -0.025 | 0.0002210 | 0.147 | 0.174 | -0.027 | 2.80e-07 |
CAD | PRScs.PseudoVal | LDpred1.MultiPRS | 0.181 | 0.173 | 0.008 | 0.2485082 | 0.182 | 0.174 | 0.008 | 1.06e-01 |
CAD | PRScs.MultiPRS | LDpred1.MultiPRS | 0.186 | 0.173 | 0.013 | 0.0627638 | 0.186 | 0.174 | 0.012 | 7.62e-03 |
CAD | LDpred2.Inf | LDpred1.MultiPRS | 0.162 | 0.173 | -0.011 | 0.1011483 | 0.157 | 0.174 | -0.017 | 1.26e-02 |
CAD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.188 | 0.173 | 0.015 | 0.0316676 | 0.184 | 0.174 | 0.010 | 2.96e-02 |
CAD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.135 | 0.173 | -0.039 | 0.0000000 | 0.134 | 0.174 | -0.040 | 5.74e-06 |
CAD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.183 | 0.173 | 0.010 | 0.1394276 | 0.184 | 0.174 | 0.010 | 5.70e-02 |
CAD | PRScs.10FCVal | LDpred1.MultiPRS | 0.181 | 0.173 | 0.008 | 0.2265038 | 0.182 | 0.174 | 0.008 | 9.95e-02 |
CAD | All.MultiPRS | LDpred1.MultiPRS | 0.197 | 0.173 | 0.024 | 0.0005028 | 0.197 | 0.174 | 0.023 | 4.63e-06 |
CAD | SBLUP.Inf | LDpred1.MultiPRS | 0.162 | 0.173 | -0.011 | 0.1095840 | 0.157 | 0.174 | -0.017 | 9.91e-03 |
CAD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.173 | 0.173 | 0.000 | 1.0000000 | 0.174 | 0.174 | 0.000 | 1.00e+00 |
CAD | lassosum.10FCVal | LDpred1.MultiPRS | 0.174 | 0.173 | 0.001 | 0.9140029 | 0.171 | 0.174 | -0.003 | 6.31e-01 |
CAD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.187 | 0.173 | 0.014 | 0.0402893 | 0.186 | 0.174 | 0.011 | 1.33e-02 |
CAD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.171 | 0.173 | -0.003 | 0.7094497 | 0.164 | 0.174 | -0.010 | 9.42e-02 |
CAD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.172 | 0.173 | -0.001 | 0.8818153 | 0.172 | 0.174 | -0.002 | 1.11e-01 |
CAD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.167 | 0.173 | -0.006 | 0.3999915 | 0.166 | 0.174 | -0.008 | 2.06e-01 |
CAD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.185 | 0.173 | 0.012 | 0.0867656 | 0.182 | 0.174 | 0.008 | 1.05e-01 |
CAD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.162 | 0.173 | -0.011 | 0.1146578 | 0.160 | 0.174 | -0.014 | 1.74e-02 |
CAD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.187 | 0.173 | 0.014 | 0.0444676 | 0.189 | 0.174 | 0.014 | 4.35e-03 |
CAD | MegaPRS.MultiPRS | LDpred1.Inf | 0.187 | 0.148 | 0.039 | 0.0000000 | 0.189 | 0.147 | 0.041 | 3.61e-10 |
CAD | PRScs.10FCVal | LDpred1.Inf | 0.181 | 0.148 | 0.034 | 0.0000000 | 0.182 | 0.147 | 0.035 | 1.93e-08 |
CAD | LDpred2.MultiPRS | LDpred1.Inf | 0.192 | 0.148 | 0.044 | 0.0000000 | 0.186 | 0.147 | 0.039 | 5.35e-09 |
CAD | LDpred1.MultiPRS | LDpred1.Inf | 0.173 | 0.148 | 0.025 | 0.0002210 | 0.174 | 0.147 | 0.027 | 2.80e-07 |
CAD | pT+clump.10FCVal | LDpred1.Inf | 0.135 | 0.148 | -0.013 | 0.0009338 | 0.134 | 0.147 | -0.013 | 1.00e-01 |
CAD | All.MultiPRS | LDpred1.Inf | 0.197 | 0.148 | 0.049 | 0.0000000 | 0.197 | 0.147 | 0.050 | 1.33e-12 |
CAD | LDpred2.PseudoVal | LDpred1.Inf | 0.107 | 0.148 | -0.041 | 0.0000000 | 0.111 | 0.147 | -0.036 | 8.38e-04 |
CAD | MegaPRS.10FCVal | LDpred1.Inf | 0.185 | 0.148 | 0.037 | 0.0000000 | 0.182 | 0.147 | 0.035 | 1.21e-07 |
CAD | pT+clump.MultiPRS | LDpred1.Inf | 0.167 | 0.148 | 0.020 | 0.0046569 | 0.166 | 0.147 | 0.019 | 1.87e-02 |
CAD | lassosum.MultiPRS | LDpred1.Inf | 0.187 | 0.148 | 0.040 | 0.0000000 | 0.186 | 0.147 | 0.038 | 1.90e-08 |
CAD | DBSLMM.PseudoVal | LDpred1.Inf | 0.171 | 0.148 | 0.023 | 0.0000001 | 0.164 | 0.147 | 0.017 | 4.02e-02 |
CAD | LDpred2.10FCVal | LDpred1.Inf | 0.188 | 0.148 | 0.040 | 0.0000000 | 0.184 | 0.147 | 0.037 | 1.03e-09 |
CAD | MegaPRS.PseudoVal | LDpred1.Inf | 0.183 | 0.148 | 0.036 | 0.0000000 | 0.184 | 0.147 | 0.037 | 3.58e-07 |
CAD | PRScs.PseudoVal | LDpred1.Inf | 0.181 | 0.148 | 0.033 | 0.0000000 | 0.182 | 0.147 | 0.034 | 1.92e-08 |
CAD | lassosum.PseudoVal | LDpred1.Inf | 0.162 | 0.148 | 0.015 | 0.0020714 | 0.160 | 0.147 | 0.013 | 1.79e-01 |
CAD | LDpred2.Inf | LDpred1.Inf | 0.162 | 0.148 | 0.014 | 0.0000000 | 0.157 | 0.147 | 0.010 | 3.06e-02 |
CAD | PRScs.MultiPRS | LDpred1.Inf | 0.186 | 0.148 | 0.038 | 0.0000000 | 0.186 | 0.147 | 0.039 | 6.28e-10 |
CAD | LDpred1.10FCVal | LDpred1.Inf | 0.172 | 0.148 | 0.024 | 0.0000000 | 0.172 | 0.147 | 0.025 | 4.36e-05 |
CAD | SBLUP.Inf | LDpred1.Inf | 0.162 | 0.148 | 0.014 | 0.0000000 | 0.157 | 0.147 | 0.010 | 3.51e-02 |
CAD | lassosum.10FCVal | LDpred1.Inf | 0.174 | 0.148 | 0.026 | 0.0000000 | 0.171 | 0.147 | 0.024 | 9.11e-05 |
CAD | LDpred1.Inf | LDpred1.Inf | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.147 | 0.147 | 0.000 | 1.00e+00 |
CAD | SBayesR.PseudoVal | LDpred1.Inf | 0.159 | 0.148 | 0.012 | 0.0157044 | 0.160 | 0.147 | 0.012 | 2.03e-01 |
CAD | LDpred2.Inf | LDpred1.10FCVal | 0.162 | 0.172 | -0.010 | 0.0048373 | 0.157 | 0.172 | -0.015 | 4.51e-02 |
CAD | PRScs.10FCVal | LDpred1.10FCVal | 0.181 | 0.172 | 0.009 | 0.0002246 | 0.182 | 0.172 | 0.010 | 5.38e-02 |
CAD | lassosum.MultiPRS | LDpred1.10FCVal | 0.187 | 0.172 | 0.015 | 0.0274587 | 0.186 | 0.172 | 0.013 | 5.21e-03 |
CAD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.192 | 0.172 | 0.020 | 0.0043021 | 0.186 | 0.172 | 0.014 | 2.40e-03 |
CAD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.187 | 0.172 | 0.015 | 0.0305550 | 0.189 | 0.172 | 0.016 | 2.15e-03 |
CAD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.159 | 0.172 | -0.013 | 0.0000180 | 0.160 | 0.172 | -0.013 | 3.25e-02 |
CAD | PRScs.PseudoVal | LDpred1.10FCVal | 0.181 | 0.172 | 0.009 | 0.0003272 | 0.182 | 0.172 | 0.009 | 5.67e-02 |
CAD | All.MultiPRS | LDpred1.10FCVal | 0.197 | 0.172 | 0.025 | 0.0002739 | 0.197 | 0.172 | 0.025 | 1.27e-06 |
CAD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.107 | 0.172 | -0.065 | 0.0000000 | 0.111 | 0.172 | -0.061 | 1.00e-09 |
CAD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.173 | 0.172 | 0.001 | 0.8818153 | 0.174 | 0.172 | 0.002 | 1.11e-01 |
CAD | pT+clump.10FCVal | LDpred1.10FCVal | 0.135 | 0.172 | -0.038 | 0.0000000 | 0.134 | 0.172 | -0.038 | 3.33e-05 |
CAD | SBLUP.Inf | LDpred1.10FCVal | 0.162 | 0.172 | -0.010 | 0.0054700 | 0.157 | 0.172 | -0.015 | 3.80e-02 |
CAD | PRScs.MultiPRS | LDpred1.10FCVal | 0.186 | 0.172 | 0.014 | 0.0443711 | 0.186 | 0.172 | 0.014 | 3.32e-03 |
CAD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.185 | 0.172 | 0.013 | 0.0000025 | 0.182 | 0.172 | 0.010 | 5.71e-02 |
CAD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.167 | 0.172 | -0.005 | 0.4883220 | 0.166 | 0.172 | -0.006 | 3.47e-01 |
CAD | LDpred1.Inf | LDpred1.10FCVal | 0.148 | 0.172 | -0.024 | 0.0000000 | 0.147 | 0.172 | -0.025 | 4.36e-05 |
CAD | lassosum.PseudoVal | LDpred1.10FCVal | 0.162 | 0.172 | -0.010 | 0.0005790 | 0.160 | 0.172 | -0.012 | 3.11e-02 |
CAD | LDpred2.10FCVal | LDpred1.10FCVal | 0.188 | 0.172 | 0.016 | 0.0000000 | 0.184 | 0.172 | 0.012 | 1.51e-02 |
CAD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.183 | 0.172 | 0.011 | 0.0000251 | 0.184 | 0.172 | 0.012 | 2.70e-02 |
CAD | LDpred1.10FCVal | LDpred1.10FCVal | 0.172 | 0.172 | 0.000 | 1.0000000 | 0.172 | 0.172 | 0.000 | 1.00e+00 |
CAD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.171 | 0.172 | -0.002 | 0.5895662 | 0.164 | 0.172 | -0.008 | 1.74e-01 |
CAD | lassosum.10FCVal | LDpred1.10FCVal | 0.174 | 0.172 | 0.002 | 0.5610506 | 0.171 | 0.172 | -0.001 | 8.98e-01 |
CAD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.171 | 0.192 | -0.021 | 0.0020730 | 0.164 | 0.186 | -0.021 | 2.95e-05 |
CAD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.188 | 0.192 | -0.004 | 0.5750032 | 0.184 | 0.186 | -0.002 | 2.79e-01 |
CAD | PRScs.PseudoVal | LDpred2.MultiPRS | 0.181 | 0.192 | -0.011 | 0.1202573 | 0.182 | 0.186 | -0.004 | 2.07e-01 |
CAD | All.MultiPRS | LDpred2.MultiPRS | 0.197 | 0.192 | 0.005 | 0.4347522 | 0.197 | 0.186 | 0.011 | 1.16e-04 |
CAD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.192 | 0.192 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
CAD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.183 | 0.192 | -0.008 | 0.2196542 | 0.184 | 0.186 | -0.002 | 6.73e-01 |
CAD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.185 | 0.192 | -0.007 | 0.3204203 | 0.182 | 0.186 | -0.003 | 4.57e-01 |
CAD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.167 | 0.192 | -0.024 | 0.0003882 | 0.166 | 0.186 | -0.020 | 2.15e-04 |
CAD | lassosum.10FCVal | LDpred2.MultiPRS | 0.174 | 0.192 | -0.018 | 0.0093541 | 0.171 | 0.186 | -0.014 | 5.13e-04 |
CAD | PRScs.MultiPRS | LDpred2.MultiPRS | 0.186 | 0.192 | -0.006 | 0.4022941 | 0.186 | 0.186 | 0.000 | 9.78e-01 |
CAD | LDpred1.Inf | LDpred2.MultiPRS | 0.148 | 0.192 | -0.044 | 0.0000000 | 0.147 | 0.186 | -0.039 | 5.35e-09 |
CAD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.159 | 0.192 | -0.032 | 0.0000030 | 0.160 | 0.186 | -0.026 | 2.31e-05 |
CAD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.135 | 0.192 | -0.057 | 0.0000000 | 0.134 | 0.186 | -0.052 | 4.26e-11 |
CAD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.162 | 0.192 | -0.030 | 0.0000185 | 0.160 | 0.186 | -0.026 | 1.26e-06 |
CAD | LDpred2.Inf | LDpred2.MultiPRS | 0.162 | 0.192 | -0.030 | 0.0000143 | 0.157 | 0.186 | -0.028 | 1.04e-07 |
CAD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.173 | 0.192 | -0.019 | 0.0069048 | 0.174 | 0.186 | -0.012 | 7.09e-03 |
CAD | SBLUP.Inf | LDpred2.MultiPRS | 0.162 | 0.192 | -0.030 | 0.0000172 | 0.157 | 0.186 | -0.029 | 7.35e-08 |
CAD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.187 | 0.192 | -0.004 | 0.5181064 | 0.186 | 0.186 | 0.000 | 9.41e-01 |
CAD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.107 | 0.192 | -0.085 | 0.0000000 | 0.111 | 0.186 | -0.075 | 6.43e-16 |
CAD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.172 | 0.192 | -0.020 | 0.0043021 | 0.172 | 0.186 | -0.014 | 2.40e-03 |
CAD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.187 | 0.192 | -0.005 | 0.4872336 | 0.189 | 0.186 | 0.003 | 5.08e-01 |
CAD | PRScs.10FCVal | LDpred2.MultiPRS | 0.181 | 0.192 | -0.010 | 0.1338307 | 0.182 | 0.186 | -0.004 | 2.37e-01 |
CAD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.192 | 0.188 | 0.004 | 0.5750032 | 0.186 | 0.184 | 0.002 | 2.79e-01 |
CAD | LDpred2.Inf | LDpred2.10FCVal | 0.162 | 0.188 | -0.026 | 0.0000000 | 0.157 | 0.184 | -0.026 | 1.70e-09 |
CAD | PRScs.10FCVal | LDpred2.10FCVal | 0.181 | 0.188 | -0.006 | 0.0000202 | 0.182 | 0.184 | -0.002 | 5.10e-01 |
CAD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.159 | 0.188 | -0.028 | 0.0000000 | 0.160 | 0.184 | -0.024 | 4.16e-04 |
CAD | lassosum.PseudoVal | LDpred2.10FCVal | 0.162 | 0.188 | -0.026 | 0.0000000 | 0.160 | 0.184 | -0.024 | 6.63e-05 |
CAD | LDpred2.10FCVal | LDpred2.10FCVal | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
CAD | PRScs.PseudoVal | LDpred2.10FCVal | 0.181 | 0.188 | -0.007 | 0.0000052 | 0.182 | 0.184 | -0.002 | 4.55e-01 |
CAD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.173 | 0.188 | -0.015 | 0.0316676 | 0.174 | 0.184 | -0.010 | 2.96e-02 |
CAD | pT+clump.10FCVal | LDpred2.10FCVal | 0.135 | 0.188 | -0.053 | 0.0000000 | 0.134 | 0.184 | -0.050 | 9.99e-12 |
CAD | All.MultiPRS | LDpred2.10FCVal | 0.197 | 0.188 | 0.009 | 0.1789641 | 0.197 | 0.184 | 0.013 | 1.57e-04 |
CAD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.187 | 0.188 | -0.001 | 0.8926047 | 0.189 | 0.184 | 0.005 | 2.69e-01 |
CAD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.185 | 0.188 | -0.003 | 0.1697036 | 0.182 | 0.184 | -0.001 | 7.43e-01 |
CAD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.167 | 0.188 | -0.021 | 0.0028823 | 0.166 | 0.184 | -0.018 | 1.04e-03 |
CAD | lassosum.MultiPRS | LDpred2.10FCVal | 0.187 | 0.188 | -0.001 | 0.9304819 | 0.186 | 0.184 | 0.002 | 5.74e-01 |
CAD | PRScs.MultiPRS | LDpred2.10FCVal | 0.186 | 0.188 | -0.002 | 0.7804545 | 0.186 | 0.184 | 0.002 | 4.80e-01 |
CAD | LDpred1.Inf | LDpred2.10FCVal | 0.148 | 0.188 | -0.040 | 0.0000000 | 0.147 | 0.184 | -0.037 | 1.03e-09 |
CAD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.183 | 0.188 | -0.005 | 0.0435542 | 0.184 | 0.184 | 0.000 | 9.96e-01 |
CAD | SBLUP.Inf | LDpred2.10FCVal | 0.162 | 0.188 | -0.026 | 0.0000000 | 0.157 | 0.184 | -0.027 | 1.60e-09 |
CAD | lassosum.10FCVal | LDpred2.10FCVal | 0.174 | 0.188 | -0.014 | 0.0000000 | 0.171 | 0.184 | -0.013 | 3.99e-04 |
CAD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.107 | 0.188 | -0.081 | 0.0000000 | 0.111 | 0.184 | -0.073 | 1.06e-16 |
CAD | LDpred1.10FCVal | LDpred2.10FCVal | 0.172 | 0.188 | -0.016 | 0.0000000 | 0.172 | 0.184 | -0.012 | 1.51e-02 |
CAD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.171 | 0.188 | -0.017 | 0.0000000 | 0.164 | 0.184 | -0.020 | 4.31e-04 |
CAD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.183 | 0.107 | 0.076 | 0.0000000 | 0.184 | 0.111 | 0.073 | 3.87e-14 |
CAD | PRScs.PseudoVal | LDpred2.PseudoVal | 0.181 | 0.107 | 0.074 | 0.0000000 | 0.182 | 0.111 | 0.071 | 2.35e-13 |
CAD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.192 | 0.107 | 0.085 | 0.0000000 | 0.186 | 0.111 | 0.075 | 6.43e-16 |
CAD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.187 | 0.107 | 0.080 | 0.0000000 | 0.189 | 0.111 | 0.078 | 4.08e-15 |
CAD | PRScs.10FCVal | LDpred2.PseudoVal | 0.181 | 0.107 | 0.075 | 0.0000000 | 0.182 | 0.111 | 0.071 | 2.02e-13 |
CAD | All.MultiPRS | LDpred2.PseudoVal | 0.197 | 0.107 | 0.090 | 0.0000000 | 0.197 | 0.111 | 0.086 | 2.41e-19 |
CAD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.171 | 0.107 | 0.064 | 0.0000000 | 0.164 | 0.111 | 0.053 | 1.74e-07 |
CAD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.188 | 0.107 | 0.081 | 0.0000000 | 0.184 | 0.111 | 0.073 | 1.06e-16 |
CAD | LDpred1.Inf | LDpred2.PseudoVal | 0.148 | 0.107 | 0.041 | 0.0000000 | 0.147 | 0.111 | 0.036 | 8.38e-04 |
CAD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.159 | 0.107 | 0.053 | 0.0000000 | 0.160 | 0.111 | 0.049 | 1.54e-06 |
CAD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.162 | 0.107 | 0.055 | 0.0000000 | 0.160 | 0.111 | 0.049 | 8.73e-07 |
CAD | LDpred2.Inf | LDpred2.PseudoVal | 0.162 | 0.107 | 0.055 | 0.0000000 | 0.157 | 0.111 | 0.046 | 1.08e-05 |
CAD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.107 | 0.107 | 0.000 | 1.0000000 | 0.111 | 0.111 | 0.000 | 1.00e+00 |
CAD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.173 | 0.107 | 0.066 | 0.0000000 | 0.174 | 0.111 | 0.063 | 1.29e-10 |
CAD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.135 | 0.107 | 0.028 | 0.0000005 | 0.134 | 0.111 | 0.023 | 3.98e-02 |
CAD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.187 | 0.107 | 0.080 | 0.0000000 | 0.186 | 0.111 | 0.074 | 1.23e-14 |
CAD | PRScs.MultiPRS | LDpred2.PseudoVal | 0.186 | 0.107 | 0.079 | 0.0000000 | 0.186 | 0.111 | 0.075 | 2.50e-14 |
CAD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.185 | 0.107 | 0.078 | 0.0000000 | 0.182 | 0.111 | 0.071 | 6.07e-13 |
CAD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.167 | 0.107 | 0.060 | 0.0000000 | 0.166 | 0.111 | 0.055 | 1.63e-08 |
CAD | lassosum.10FCVal | LDpred2.PseudoVal | 0.174 | 0.107 | 0.067 | 0.0000000 | 0.171 | 0.111 | 0.060 | 1.19e-09 |
CAD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.172 | 0.107 | 0.065 | 0.0000000 | 0.172 | 0.111 | 0.061 | 1.00e-09 |
CAD | SBLUP.Inf | LDpred2.PseudoVal | 0.162 | 0.107 | 0.055 | 0.0000000 | 0.157 | 0.111 | 0.046 | 1.53e-05 |
CAD | PRScs.10FCVal | LDpred2.Inf | 0.181 | 0.162 | 0.020 | 0.0000000 | 0.182 | 0.157 | 0.025 | 5.18e-07 |
CAD | pT+clump.MultiPRS | LDpred2.Inf | 0.167 | 0.162 | 0.005 | 0.4306661 | 0.166 | 0.157 | 0.009 | 2.36e-01 |
CAD | LDpred2.Inf | LDpred2.Inf | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.157 | 0.157 | 0.000 | 1.00e+00 |
CAD | lassosum.PseudoVal | LDpred2.Inf | 0.162 | 0.162 | 0.000 | 0.9355262 | 0.160 | 0.157 | 0.002 | 7.91e-01 |
CAD | LDpred2.MultiPRS | LDpred2.Inf | 0.192 | 0.162 | 0.030 | 0.0000143 | 0.186 | 0.157 | 0.028 | 1.04e-07 |
CAD | SBayesR.PseudoVal | LDpred2.Inf | 0.159 | 0.162 | -0.002 | 0.6328920 | 0.160 | 0.157 | 0.002 | 8.20e-01 |
CAD | pT+clump.10FCVal | LDpred2.Inf | 0.135 | 0.162 | -0.027 | 0.0000000 | 0.134 | 0.157 | -0.023 | 5.01e-04 |
CAD | PRScs.PseudoVal | LDpred2.Inf | 0.181 | 0.162 | 0.019 | 0.0000000 | 0.182 | 0.157 | 0.024 | 7.55e-07 |
CAD | LDpred2.PseudoVal | LDpred2.Inf | 0.107 | 0.162 | -0.055 | 0.0000000 | 0.111 | 0.157 | -0.046 | 1.08e-05 |
CAD | All.MultiPRS | LDpred2.Inf | 0.197 | 0.162 | 0.035 | 0.0000003 | 0.197 | 0.157 | 0.040 | 6.09e-11 |
CAD | SBLUP.Inf | LDpred2.Inf | 0.162 | 0.162 | 0.000 | 0.5792797 | 0.157 | 0.157 | 0.000 | 7.37e-01 |
CAD | MegaPRS.MultiPRS | LDpred2.Inf | 0.187 | 0.162 | 0.025 | 0.0002641 | 0.189 | 0.157 | 0.031 | 8.86e-08 |
CAD | PRScs.MultiPRS | LDpred2.Inf | 0.186 | 0.162 | 0.024 | 0.0004859 | 0.186 | 0.157 | 0.028 | 1.18e-08 |
CAD | lassosum.MultiPRS | LDpred2.Inf | 0.187 | 0.162 | 0.025 | 0.0002320 | 0.186 | 0.157 | 0.028 | 7.52e-07 |
CAD | LDpred1.Inf | LDpred2.Inf | 0.148 | 0.162 | -0.014 | 0.0000000 | 0.147 | 0.157 | -0.010 | 3.06e-02 |
CAD | MegaPRS.10FCVal | LDpred2.Inf | 0.185 | 0.162 | 0.023 | 0.0000000 | 0.182 | 0.157 | 0.025 | 2.15e-05 |
CAD | MegaPRS.PseudoVal | LDpred2.Inf | 0.183 | 0.162 | 0.021 | 0.0000000 | 0.184 | 0.157 | 0.026 | 6.11e-05 |
CAD | lassosum.10FCVal | LDpred2.Inf | 0.174 | 0.162 | 0.012 | 0.0000003 | 0.171 | 0.157 | 0.014 | 2.97e-03 |
CAD | LDpred2.10FCVal | LDpred2.Inf | 0.188 | 0.162 | 0.026 | 0.0000000 | 0.184 | 0.157 | 0.026 | 1.70e-09 |
CAD | DBSLMM.PseudoVal | LDpred2.Inf | 0.171 | 0.162 | 0.009 | 0.0255104 | 0.164 | 0.157 | 0.007 | 3.76e-01 |
CAD | LDpred1.MultiPRS | LDpred2.Inf | 0.173 | 0.162 | 0.011 | 0.1011483 | 0.174 | 0.157 | 0.017 | 1.26e-02 |
CAD | LDpred1.10FCVal | LDpred2.Inf | 0.172 | 0.162 | 0.010 | 0.0048373 | 0.172 | 0.157 | 0.015 | 4.51e-02 |
CAD | PRScs.PseudoVal | PRScs.MultiPRS | 0.181 | 0.186 | -0.005 | 0.4764065 | 0.182 | 0.186 | -0.004 | 6.60e-02 |
CAD | LDpred2.MultiPRS | PRScs.MultiPRS | 0.192 | 0.186 | 0.006 | 0.4022941 | 0.186 | 0.186 | 0.000 | 9.78e-01 |
CAD | LDpred2.Inf | PRScs.MultiPRS | 0.162 | 0.186 | -0.024 | 0.0004859 | 0.157 | 0.186 | -0.028 | 1.18e-08 |
CAD | pT+clump.10FCVal | PRScs.MultiPRS | 0.135 | 0.186 | -0.051 | 0.0000000 | 0.134 | 0.186 | -0.052 | 3.08e-12 |
CAD | SBayesR.PseudoVal | PRScs.MultiPRS | 0.159 | 0.186 | -0.026 | 0.0001283 | 0.160 | 0.186 | -0.026 | 6.63e-05 |
CAD | LDpred2.PseudoVal | PRScs.MultiPRS | 0.107 | 0.186 | -0.079 | 0.0000000 | 0.111 | 0.186 | -0.075 | 2.50e-14 |
CAD | LDpred2.10FCVal | PRScs.MultiPRS | 0.188 | 0.186 | 0.002 | 0.7804545 | 0.184 | 0.186 | -0.002 | 4.80e-01 |
CAD | PRScs.MultiPRS | PRScs.MultiPRS | 0.186 | 0.186 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
CAD | LDpred1.MultiPRS | PRScs.MultiPRS | 0.173 | 0.186 | -0.013 | 0.0627638 | 0.174 | 0.186 | -0.012 | 7.62e-03 |
CAD | pT+clump.MultiPRS | PRScs.MultiPRS | 0.167 | 0.186 | -0.019 | 0.0068869 | 0.166 | 0.186 | -0.020 | 1.85e-04 |
CAD | All.MultiPRS | PRScs.MultiPRS | 0.197 | 0.186 | 0.011 | 0.1049725 | 0.197 | 0.186 | 0.011 | 1.84e-03 |
CAD | lassosum.PseudoVal | PRScs.MultiPRS | 0.162 | 0.186 | -0.024 | 0.0005926 | 0.160 | 0.186 | -0.026 | 2.09e-05 |
CAD | PRScs.10FCVal | PRScs.MultiPRS | 0.181 | 0.186 | -0.005 | 0.5119919 | 0.182 | 0.186 | -0.004 | 6.57e-02 |
CAD | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.183 | 0.186 | -0.003 | 0.6996680 | 0.184 | 0.186 | -0.002 | 6.80e-01 |
CAD | lassosum.MultiPRS | PRScs.MultiPRS | 0.187 | 0.186 | 0.001 | 0.8476865 | 0.186 | 0.186 | 0.000 | 9.14e-01 |
CAD | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.187 | 0.186 | 0.001 | 0.8847009 | 0.189 | 0.186 | 0.003 | 5.37e-01 |
CAD | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.171 | 0.186 | -0.015 | 0.0253980 | 0.164 | 0.186 | -0.021 | 8.59e-06 |
CAD | LDpred1.10FCVal | PRScs.MultiPRS | 0.172 | 0.186 | -0.014 | 0.0443711 | 0.172 | 0.186 | -0.014 | 3.32e-03 |
CAD | SBLUP.Inf | PRScs.MultiPRS | 0.162 | 0.186 | -0.024 | 0.0005637 | 0.157 | 0.186 | -0.029 | 3.18e-09 |
CAD | lassosum.10FCVal | PRScs.MultiPRS | 0.174 | 0.186 | -0.012 | 0.0801883 | 0.171 | 0.186 | -0.014 | 6.67e-04 |
CAD | LDpred1.Inf | PRScs.MultiPRS | 0.148 | 0.186 | -0.038 | 0.0000000 | 0.147 | 0.186 | -0.039 | 6.28e-10 |
CAD | MegaPRS.10FCVal | PRScs.MultiPRS | 0.185 | 0.186 | -0.001 | 0.8787287 | 0.182 | 0.186 | -0.003 | 4.62e-01 |
CAD | PRScs.10FCVal | PRScs.10FCVal | 0.181 | 0.181 | 0.000 | 1.0000000 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
CAD | pT+clump.MultiPRS | PRScs.10FCVal | 0.167 | 0.181 | -0.014 | 0.0404908 | 0.166 | 0.182 | -0.016 | 6.35e-03 |
CAD | SBayesR.PseudoVal | PRScs.10FCVal | 0.159 | 0.181 | -0.022 | 0.0000000 | 0.160 | 0.182 | -0.022 | 1.29e-03 |
CAD | pT+clump.10FCVal | PRScs.10FCVal | 0.135 | 0.181 | -0.047 | 0.0000000 | 0.134 | 0.182 | -0.048 | 3.75e-10 |
CAD | LDpred2.MultiPRS | PRScs.10FCVal | 0.192 | 0.181 | 0.010 | 0.1338307 | 0.186 | 0.182 | 0.004 | 2.37e-01 |
CAD | LDpred2.10FCVal | PRScs.10FCVal | 0.188 | 0.181 | 0.006 | 0.0000202 | 0.184 | 0.182 | 0.002 | 5.10e-01 |
CAD | SBLUP.Inf | PRScs.10FCVal | 0.162 | 0.181 | -0.019 | 0.0000000 | 0.157 | 0.182 | -0.025 | 1.91e-07 |
CAD | PRScs.PseudoVal | PRScs.10FCVal | 0.181 | 0.181 | 0.000 | 0.8058382 | 0.182 | 0.182 | 0.000 | 9.32e-01 |
CAD | LDpred2.PseudoVal | PRScs.10FCVal | 0.107 | 0.181 | -0.075 | 0.0000000 | 0.111 | 0.182 | -0.071 | 2.02e-13 |
CAD | LDpred2.Inf | PRScs.10FCVal | 0.162 | 0.181 | -0.020 | 0.0000000 | 0.157 | 0.182 | -0.025 | 5.18e-07 |
CAD | LDpred1.Inf | PRScs.10FCVal | 0.148 | 0.181 | -0.034 | 0.0000000 | 0.147 | 0.182 | -0.035 | 1.93e-08 |
CAD | MegaPRS.MultiPRS | PRScs.10FCVal | 0.187 | 0.181 | 0.006 | 0.4213014 | 0.189 | 0.182 | 0.007 | 1.43e-01 |
CAD | PRScs.MultiPRS | PRScs.10FCVal | 0.186 | 0.181 | 0.005 | 0.5119919 | 0.186 | 0.182 | 0.004 | 6.57e-02 |
CAD | lassosum.MultiPRS | PRScs.10FCVal | 0.187 | 0.181 | 0.006 | 0.3950836 | 0.186 | 0.182 | 0.004 | 2.86e-01 |
CAD | DBSLMM.PseudoVal | PRScs.10FCVal | 0.171 | 0.181 | -0.011 | 0.0000571 | 0.164 | 0.182 | -0.018 | 1.26e-03 |
CAD | MegaPRS.10FCVal | PRScs.10FCVal | 0.185 | 0.181 | 0.003 | 0.1382070 | 0.182 | 0.182 | 0.001 | 9.07e-01 |
CAD | MegaPRS.PseudoVal | PRScs.10FCVal | 0.183 | 0.181 | 0.002 | 0.4508124 | 0.184 | 0.182 | 0.002 | 6.91e-01 |
CAD | lassosum.10FCVal | PRScs.10FCVal | 0.174 | 0.181 | -0.008 | 0.0003946 | 0.171 | 0.182 | -0.011 | 1.35e-02 |
CAD | All.MultiPRS | PRScs.10FCVal | 0.197 | 0.181 | 0.016 | 0.0223623 | 0.197 | 0.182 | 0.015 | 2.82e-04 |
CAD | lassosum.PseudoVal | PRScs.10FCVal | 0.162 | 0.181 | -0.019 | 0.0000000 | 0.160 | 0.182 | -0.022 | 5.08e-04 |
CAD | LDpred1.MultiPRS | PRScs.10FCVal | 0.173 | 0.181 | -0.008 | 0.2265038 | 0.174 | 0.182 | -0.008 | 9.95e-02 |
CAD | LDpred1.10FCVal | PRScs.10FCVal | 0.172 | 0.181 | -0.009 | 0.0002246 | 0.172 | 0.182 | -0.010 | 5.38e-02 |
CAD | LDpred2.MultiPRS | PRScs.PseudoVal | 0.192 | 0.181 | 0.011 | 0.1202573 | 0.186 | 0.182 | 0.004 | 2.07e-01 |
CAD | PRScs.10FCVal | PRScs.PseudoVal | 0.181 | 0.181 | 0.000 | 0.8058382 | 0.182 | 0.182 | 0.000 | 9.32e-01 |
CAD | pT+clump.10FCVal | PRScs.PseudoVal | 0.135 | 0.181 | -0.046 | 0.0000000 | 0.134 | 0.182 | -0.048 | 4.87e-10 |
CAD | LDpred2.PseudoVal | PRScs.PseudoVal | 0.107 | 0.181 | -0.074 | 0.0000000 | 0.111 | 0.182 | -0.071 | 2.35e-13 |
CAD | LDpred2.Inf | PRScs.PseudoVal | 0.162 | 0.181 | -0.019 | 0.0000000 | 0.157 | 0.182 | -0.024 | 7.55e-07 |
CAD | pT+clump.MultiPRS | PRScs.PseudoVal | 0.167 | 0.181 | -0.014 | 0.0466229 | 0.166 | 0.182 | -0.015 | 6.98e-03 |
CAD | PRScs.PseudoVal | PRScs.PseudoVal | 0.181 | 0.181 | 0.000 | 1.0000000 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
CAD | SBayesR.PseudoVal | PRScs.PseudoVal | 0.159 | 0.181 | -0.022 | 0.0000000 | 0.160 | 0.182 | -0.022 | 1.52e-03 |
CAD | lassosum.MultiPRS | PRScs.PseudoVal | 0.187 | 0.181 | 0.006 | 0.3652374 | 0.186 | 0.182 | 0.004 | 2.61e-01 |
CAD | LDpred2.10FCVal | PRScs.PseudoVal | 0.188 | 0.181 | 0.007 | 0.0000052 | 0.184 | 0.182 | 0.002 | 4.55e-01 |
CAD | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.187 | 0.181 | 0.006 | 0.3895551 | 0.189 | 0.182 | 0.007 | 1.32e-01 |
CAD | LDpred1.MultiPRS | PRScs.PseudoVal | 0.173 | 0.181 | -0.008 | 0.2485082 | 0.174 | 0.182 | -0.008 | 1.06e-01 |
CAD | SBLUP.Inf | PRScs.PseudoVal | 0.162 | 0.181 | -0.019 | 0.0000000 | 0.157 | 0.182 | -0.025 | 2.83e-07 |
CAD | All.MultiPRS | PRScs.PseudoVal | 0.197 | 0.181 | 0.016 | 0.0193809 | 0.197 | 0.182 | 0.015 | 2.80e-04 |
CAD | MegaPRS.10FCVal | PRScs.PseudoVal | 0.185 | 0.181 | 0.004 | 0.0995303 | 0.182 | 0.182 | 0.001 | 8.63e-01 |
CAD | LDpred1.10FCVal | PRScs.PseudoVal | 0.172 | 0.181 | -0.009 | 0.0003272 | 0.172 | 0.182 | -0.009 | 5.67e-02 |
CAD | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.183 | 0.181 | 0.002 | 0.3620338 | 0.184 | 0.182 | 0.002 | 6.54e-01 |
CAD | lassosum.10FCVal | PRScs.PseudoVal | 0.174 | 0.181 | -0.007 | 0.0008708 | 0.171 | 0.182 | -0.010 | 1.80e-02 |
CAD | PRScs.MultiPRS | PRScs.PseudoVal | 0.186 | 0.181 | 0.005 | 0.4764065 | 0.186 | 0.182 | 0.004 | 6.60e-02 |
CAD | LDpred1.Inf | PRScs.PseudoVal | 0.148 | 0.181 | -0.033 | 0.0000000 | 0.147 | 0.182 | -0.034 | 1.92e-08 |
CAD | lassosum.PseudoVal | PRScs.PseudoVal | 0.162 | 0.181 | -0.019 | 0.0000000 | 0.160 | 0.182 | -0.022 | 6.59e-04 |
CAD | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.171 | 0.181 | -0.011 | 0.0000813 | 0.164 | 0.182 | -0.017 | 1.35e-03 |
CAD | All.MultiPRS | pT+clump.MultiPRS | 0.197 | 0.167 | 0.030 | 0.0000142 | 0.197 | 0.166 | 0.031 | 2.53e-08 |
CAD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.192 | 0.167 | 0.024 | 0.0003882 | 0.186 | 0.166 | 0.020 | 2.15e-04 |
CAD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.173 | 0.167 | 0.006 | 0.3999915 | 0.174 | 0.166 | 0.008 | 2.06e-01 |
CAD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.135 | 0.167 | -0.033 | 0.0000025 | 0.134 | 0.166 | -0.032 | 2.00e-07 |
CAD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.187 | 0.167 | 0.020 | 0.0036609 | 0.186 | 0.166 | 0.019 | 1.03e-04 |
CAD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.107 | 0.167 | -0.060 | 0.0000000 | 0.111 | 0.166 | -0.055 | 1.63e-08 |
CAD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.172 | 0.167 | 0.005 | 0.4883220 | 0.172 | 0.166 | 0.006 | 3.47e-01 |
CAD | SBLUP.Inf | pT+clump.MultiPRS | 0.162 | 0.167 | -0.005 | 0.4540913 | 0.157 | 0.166 | -0.009 | 2.10e-01 |
CAD | lassosum.10FCVal | pT+clump.MultiPRS | 0.174 | 0.167 | 0.007 | 0.3424478 | 0.171 | 0.166 | 0.005 | 4.12e-01 |
CAD | PRScs.MultiPRS | pT+clump.MultiPRS | 0.186 | 0.167 | 0.019 | 0.0068869 | 0.186 | 0.166 | 0.020 | 1.85e-04 |
CAD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.188 | 0.167 | 0.021 | 0.0028823 | 0.184 | 0.166 | 0.018 | 1.04e-03 |
CAD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.183 | 0.167 | 0.016 | 0.0205392 | 0.184 | 0.166 | 0.018 | 7.77e-03 |
CAD | PRScs.PseudoVal | pT+clump.MultiPRS | 0.181 | 0.167 | 0.014 | 0.0466229 | 0.182 | 0.166 | 0.015 | 6.98e-03 |
CAD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.162 | 0.167 | -0.005 | 0.4640216 | 0.160 | 0.166 | -0.006 | 3.08e-01 |
CAD | LDpred2.Inf | pT+clump.MultiPRS | 0.162 | 0.167 | -0.005 | 0.4306661 | 0.157 | 0.166 | -0.009 | 2.36e-01 |
CAD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.185 | 0.167 | 0.018 | 0.0107824 | 0.182 | 0.166 | 0.016 | 1.61e-02 |
CAD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.187 | 0.167 | 0.020 | 0.0043034 | 0.189 | 0.166 | 0.022 | 6.99e-04 |
CAD | PRScs.10FCVal | pT+clump.MultiPRS | 0.181 | 0.167 | 0.014 | 0.0404908 | 0.182 | 0.166 | 0.016 | 6.35e-03 |
CAD | LDpred1.Inf | pT+clump.MultiPRS | 0.148 | 0.167 | -0.020 | 0.0046569 | 0.147 | 0.166 | -0.019 | 1.87e-02 |
CAD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.167 | 0.167 | 0.000 | 1.0000000 | 0.166 | 0.166 | 0.000 | 1.00e+00 |
CAD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.171 | 0.167 | 0.003 | 0.6386592 | 0.164 | 0.166 | -0.002 | 7.54e-01 |
CAD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.159 | 0.167 | -0.008 | 0.2622475 | 0.160 | 0.166 | -0.007 | 3.42e-01 |
CAD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.192 | 0.135 | 0.057 | 0.0000000 | 0.186 | 0.134 | 0.052 | 4.26e-11 |
CAD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.107 | 0.135 | -0.028 | 0.0000005 | 0.111 | 0.134 | -0.023 | 3.98e-02 |
CAD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.167 | 0.135 | 0.033 | 0.0000025 | 0.166 | 0.134 | 0.032 | 2.00e-07 |
CAD | SBLUP.Inf | pT+clump.10FCVal | 0.162 | 0.135 | 0.028 | 0.0000000 | 0.157 | 0.134 | 0.023 | 4.60e-04 |
CAD | PRScs.PseudoVal | pT+clump.10FCVal | 0.181 | 0.135 | 0.046 | 0.0000000 | 0.182 | 0.134 | 0.048 | 4.87e-10 |
CAD | PRScs.MultiPRS | pT+clump.10FCVal | 0.186 | 0.135 | 0.051 | 0.0000000 | 0.186 | 0.134 | 0.052 | 3.08e-12 |
CAD | LDpred2.Inf | pT+clump.10FCVal | 0.162 | 0.135 | 0.027 | 0.0000000 | 0.157 | 0.134 | 0.023 | 5.01e-04 |
CAD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.159 | 0.135 | 0.025 | 0.0000034 | 0.160 | 0.134 | 0.026 | 1.85e-02 |
CAD | pT+clump.10FCVal | pT+clump.10FCVal | 0.135 | 0.135 | 0.000 | 1.0000000 | 0.134 | 0.134 | 0.000 | 1.00e+00 |
CAD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.183 | 0.135 | 0.049 | 0.0000000 | 0.184 | 0.134 | 0.050 | 3.72e-08 |
CAD | PRScs.10FCVal | pT+clump.10FCVal | 0.181 | 0.135 | 0.047 | 0.0000000 | 0.182 | 0.134 | 0.048 | 3.75e-10 |
CAD | LDpred2.10FCVal | pT+clump.10FCVal | 0.188 | 0.135 | 0.053 | 0.0000000 | 0.184 | 0.134 | 0.050 | 9.99e-12 |
CAD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.185 | 0.135 | 0.050 | 0.0000000 | 0.182 | 0.134 | 0.048 | 3.37e-08 |
CAD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.173 | 0.135 | 0.039 | 0.0000000 | 0.174 | 0.134 | 0.040 | 5.74e-06 |
CAD | lassosum.10FCVal | pT+clump.10FCVal | 0.174 | 0.135 | 0.039 | 0.0000000 | 0.171 | 0.134 | 0.037 | 5.16e-08 |
CAD | All.MultiPRS | pT+clump.10FCVal | 0.197 | 0.135 | 0.063 | 0.0000000 | 0.197 | 0.134 | 0.063 | 2.44e-15 |
CAD | LDpred1.Inf | pT+clump.10FCVal | 0.148 | 0.135 | 0.013 | 0.0009338 | 0.147 | 0.134 | 0.013 | 1.00e-01 |
CAD | LDpred1.10FCVal | pT+clump.10FCVal | 0.172 | 0.135 | 0.038 | 0.0000000 | 0.172 | 0.134 | 0.038 | 3.33e-05 |
CAD | lassosum.MultiPRS | pT+clump.10FCVal | 0.187 | 0.135 | 0.053 | 0.0000000 | 0.186 | 0.134 | 0.052 | 6.58e-12 |
CAD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.171 | 0.135 | 0.036 | 0.0000000 | 0.164 | 0.134 | 0.030 | 1.35e-03 |
CAD | lassosum.PseudoVal | pT+clump.10FCVal | 0.162 | 0.135 | 0.028 | 0.0000000 | 0.160 | 0.134 | 0.026 | 1.05e-02 |
CAD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.187 | 0.135 | 0.052 | 0.0000000 | 0.189 | 0.134 | 0.055 | 3.72e-10 |
CAD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.159 | 0.159 | 0.000 | 1.0000000 | 0.160 | 0.160 | 0.000 | 1.00e+00 |
CAD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.192 | 0.159 | 0.032 | 0.0000030 | 0.186 | 0.160 | 0.026 | 2.31e-05 |
CAD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.173 | 0.159 | 0.014 | 0.0489554 | 0.174 | 0.160 | 0.014 | 1.98e-02 |
CAD | PRScs.PseudoVal | SBayesR.PseudoVal | 0.181 | 0.159 | 0.022 | 0.0000000 | 0.182 | 0.160 | 0.022 | 1.52e-03 |
CAD | All.MultiPRS | SBayesR.PseudoVal | 0.197 | 0.159 | 0.038 | 0.0000000 | 0.197 | 0.160 | 0.037 | 3.24e-09 |
CAD | PRScs.MultiPRS | SBayesR.PseudoVal | 0.186 | 0.159 | 0.026 | 0.0001283 | 0.186 | 0.160 | 0.026 | 6.63e-05 |
CAD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.188 | 0.159 | 0.028 | 0.0000000 | 0.184 | 0.160 | 0.024 | 4.16e-04 |
CAD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.183 | 0.159 | 0.024 | 0.0000000 | 0.184 | 0.160 | 0.024 | 2.22e-04 |
CAD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.135 | 0.159 | -0.025 | 0.0000034 | 0.134 | 0.160 | -0.026 | 1.85e-02 |
CAD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.162 | 0.159 | 0.003 | 0.3217724 | 0.160 | 0.160 | 0.000 | 9.68e-01 |
CAD | LDpred2.Inf | SBayesR.PseudoVal | 0.162 | 0.159 | 0.002 | 0.6328920 | 0.157 | 0.160 | -0.002 | 8.20e-01 |
CAD | PRScs.10FCVal | SBayesR.PseudoVal | 0.181 | 0.159 | 0.022 | 0.0000000 | 0.182 | 0.160 | 0.022 | 1.29e-03 |
CAD | SBLUP.Inf | SBayesR.PseudoVal | 0.162 | 0.159 | 0.003 | 0.5908967 | 0.157 | 0.160 | -0.003 | 7.92e-01 |
CAD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.187 | 0.159 | 0.028 | 0.0000561 | 0.186 | 0.160 | 0.026 | 2.64e-05 |
CAD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.107 | 0.159 | -0.053 | 0.0000000 | 0.111 | 0.160 | -0.049 | 1.54e-06 |
CAD | lassosum.10FCVal | SBayesR.PseudoVal | 0.174 | 0.159 | 0.014 | 0.0004675 | 0.171 | 0.160 | 0.012 | 1.57e-01 |
CAD | LDpred1.Inf | SBayesR.PseudoVal | 0.148 | 0.159 | -0.012 | 0.0157044 | 0.147 | 0.160 | -0.012 | 2.03e-01 |
CAD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.167 | 0.159 | 0.008 | 0.2622475 | 0.166 | 0.160 | 0.007 | 3.42e-01 |
CAD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.171 | 0.159 | 0.011 | 0.0000287 | 0.164 | 0.160 | 0.005 | 3.77e-01 |
CAD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.187 | 0.159 | 0.027 | 0.0000693 | 0.189 | 0.160 | 0.029 | 2.48e-05 |
CAD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.185 | 0.159 | 0.025 | 0.0000000 | 0.182 | 0.160 | 0.023 | 1.14e-03 |
CAD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.172 | 0.159 | 0.013 | 0.0000180 | 0.172 | 0.160 | 0.013 | 3.25e-02 |
CAD | All.MultiPRS | SBLUP.Inf | 0.197 | 0.162 | 0.035 | 0.0000004 | 0.197 | 0.157 | 0.040 | 2.99e-11 |
CAD | LDpred2.MultiPRS | SBLUP.Inf | 0.192 | 0.162 | 0.030 | 0.0000172 | 0.186 | 0.157 | 0.029 | 7.35e-08 |
CAD | PRScs.PseudoVal | SBLUP.Inf | 0.181 | 0.162 | 0.019 | 0.0000000 | 0.182 | 0.157 | 0.025 | 2.83e-07 |
CAD | lassosum.PseudoVal | SBLUP.Inf | 0.162 | 0.162 | 0.000 | 0.9824928 | 0.160 | 0.157 | 0.003 | 7.61e-01 |
CAD | LDpred2.Inf | SBLUP.Inf | 0.162 | 0.162 | 0.000 | 0.5792797 | 0.157 | 0.157 | 0.000 | 7.37e-01 |
CAD | MegaPRS.PseudoVal | SBLUP.Inf | 0.183 | 0.162 | 0.021 | 0.0000000 | 0.184 | 0.157 | 0.027 | 4.17e-05 |
CAD | pT+clump.10FCVal | SBLUP.Inf | 0.135 | 0.162 | -0.028 | 0.0000000 | 0.134 | 0.157 | -0.023 | 4.60e-04 |
CAD | lassosum.MultiPRS | SBLUP.Inf | 0.187 | 0.162 | 0.025 | 0.0002695 | 0.186 | 0.157 | 0.028 | 3.19e-07 |
CAD | LDpred2.PseudoVal | SBLUP.Inf | 0.107 | 0.162 | -0.055 | 0.0000000 | 0.111 | 0.157 | -0.046 | 1.53e-05 |
CAD | LDpred1.MultiPRS | SBLUP.Inf | 0.173 | 0.162 | 0.011 | 0.1095840 | 0.174 | 0.157 | 0.017 | 9.91e-03 |
CAD | MegaPRS.10FCVal | SBLUP.Inf | 0.185 | 0.162 | 0.023 | 0.0000000 | 0.182 | 0.157 | 0.025 | 1.35e-05 |
CAD | pT+clump.MultiPRS | SBLUP.Inf | 0.167 | 0.162 | 0.005 | 0.4540913 | 0.166 | 0.157 | 0.009 | 2.10e-01 |
CAD | DBSLMM.PseudoVal | SBLUP.Inf | 0.171 | 0.162 | 0.008 | 0.0286464 | 0.164 | 0.157 | 0.007 | 3.48e-01 |
CAD | LDpred2.10FCVal | SBLUP.Inf | 0.188 | 0.162 | 0.026 | 0.0000000 | 0.184 | 0.157 | 0.027 | 1.60e-09 |
CAD | LDpred1.Inf | SBLUP.Inf | 0.148 | 0.162 | -0.014 | 0.0000000 | 0.147 | 0.157 | -0.010 | 3.51e-02 |
CAD | SBayesR.PseudoVal | SBLUP.Inf | 0.159 | 0.162 | -0.003 | 0.5908967 | 0.160 | 0.157 | 0.003 | 7.92e-01 |
CAD | SBLUP.Inf | SBLUP.Inf | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.157 | 0.157 | 0.000 | 1.00e+00 |
CAD | MegaPRS.MultiPRS | SBLUP.Inf | 0.187 | 0.162 | 0.025 | 0.0003064 | 0.189 | 0.157 | 0.032 | 4.63e-08 |
CAD | PRScs.10FCVal | SBLUP.Inf | 0.181 | 0.162 | 0.019 | 0.0000000 | 0.182 | 0.157 | 0.025 | 1.91e-07 |
CAD | LDpred1.10FCVal | SBLUP.Inf | 0.172 | 0.162 | 0.010 | 0.0054700 | 0.172 | 0.157 | 0.015 | 3.80e-02 |
CAD | lassosum.10FCVal | SBLUP.Inf | 0.174 | 0.162 | 0.012 | 0.0000003 | 0.171 | 0.157 | 0.014 | 1.92e-03 |
CAD | PRScs.MultiPRS | SBLUP.Inf | 0.186 | 0.162 | 0.024 | 0.0005637 | 0.186 | 0.157 | 0.029 | 3.18e-09 |
IBD | All.MultiPRS | All.MultiPRS | 0.154 | 0.154 | 0.000 | 1.0000000 | 0.158 | 0.158 | 0.000 | 1.00e+00 |
IBD | LDpred1.10FCVal | All.MultiPRS | 0.130 | 0.154 | -0.024 | 0.0004737 | 0.134 | 0.158 | -0.024 | 1.22e-05 |
IBD | PRScs.10FCVal | All.MultiPRS | 0.129 | 0.154 | -0.025 | 0.0002676 | 0.133 | 0.158 | -0.025 | 2.59e-06 |
IBD | lassosum.MultiPRS | All.MultiPRS | 0.142 | 0.154 | -0.012 | 0.0000000 | 0.146 | 0.158 | -0.012 | 7.72e-04 |
IBD | LDpred2.Inf | All.MultiPRS | 0.096 | 0.154 | -0.058 | 0.0000000 | 0.099 | 0.158 | -0.059 | 6.90e-13 |
IBD | DBSLMM.PseudoVal | All.MultiPRS | 0.131 | 0.154 | -0.024 | 0.0007795 | 0.135 | 0.158 | -0.023 | 8.69e-06 |
IBD | LDpred2.10FCVal | All.MultiPRS | 0.143 | 0.154 | -0.011 | 0.1055156 | 0.145 | 0.158 | -0.013 | 1.17e-03 |
IBD | lassosum.10FCVal | All.MultiPRS | 0.134 | 0.154 | -0.020 | 0.0043221 | 0.136 | 0.158 | -0.022 | 1.23e-05 |
IBD | MegaPRS.10FCVal | All.MultiPRS | 0.148 | 0.154 | -0.006 | 0.4031991 | 0.150 | 0.158 | -0.008 | 8.79e-03 |
IBD | MegaPRS.PseudoVal | All.MultiPRS | 0.148 | 0.154 | -0.006 | 0.4031991 | 0.150 | 0.158 | -0.008 | 8.79e-03 |
IBD | pT+clump.MultiPRS | All.MultiPRS | 0.128 | 0.154 | -0.026 | 0.0001709 | 0.137 | 0.158 | -0.021 | 1.83e-04 |
IBD | LDpred1.MultiPRS | All.MultiPRS | 0.131 | 0.154 | -0.023 | 0.0000000 | 0.137 | 0.158 | -0.021 | 6.33e-05 |
IBD | LDpred2.MultiPRS | All.MultiPRS | 0.143 | 0.154 | -0.011 | 0.0000000 | 0.148 | 0.158 | -0.010 | 5.06e-03 |
IBD | SBayesR.PseudoVal | All.MultiPRS | 0.122 | 0.154 | -0.032 | 0.0000044 | 0.130 | 0.158 | -0.028 | 2.83e-06 |
IBD | lassosum.PseudoVal | All.MultiPRS | 0.134 | 0.154 | -0.020 | 0.0033277 | 0.137 | 0.158 | -0.021 | 2.93e-05 |
IBD | LDpred1.Inf | All.MultiPRS | 0.100 | 0.154 | -0.054 | 0.0000000 | 0.104 | 0.158 | -0.054 | 2.12e-11 |
IBD | PRScs.MultiPRS | All.MultiPRS | 0.135 | 0.154 | -0.019 | 0.0000000 | 0.137 | 0.158 | -0.020 | 1.06e-05 |
IBD | PRScs.PseudoVal | All.MultiPRS | 0.130 | 0.154 | -0.025 | 0.0004543 | 0.128 | 0.158 | -0.030 | 1.85e-08 |
IBD | LDpred2.PseudoVal | All.MultiPRS | 0.100 | 0.154 | -0.055 | 0.0000000 | 0.103 | 0.158 | -0.055 | 2.88e-12 |
IBD | pT+clump.10FCVal | All.MultiPRS | 0.112 | 0.154 | -0.043 | 0.0000000 | 0.112 | 0.158 | -0.046 | 4.83e-10 |
IBD | MegaPRS.MultiPRS | All.MultiPRS | 0.148 | 0.154 | -0.006 | 0.0000047 | 0.153 | 0.158 | -0.005 | 3.19e-02 |
IBD | SBLUP.Inf | All.MultiPRS | 0.098 | 0.154 | -0.057 | 0.0000000 | 0.102 | 0.158 | -0.056 | 4.67e-12 |
IBD | All.MultiPRS | DBSLMM.PseudoVal | 0.154 | 0.131 | 0.024 | 0.0007795 | 0.158 | 0.135 | 0.023 | 8.69e-06 |
IBD | LDpred1.Inf | DBSLMM.PseudoVal | 0.100 | 0.131 | -0.031 | 0.0000000 | 0.104 | 0.135 | -0.031 | 2.85e-04 |
IBD | PRScs.10FCVal | DBSLMM.PseudoVal | 0.129 | 0.131 | -0.002 | 0.4921250 | 0.133 | 0.135 | -0.002 | 6.91e-01 |
IBD | LDpred2.Inf | DBSLMM.PseudoVal | 0.096 | 0.131 | -0.035 | 0.0000000 | 0.099 | 0.135 | -0.036 | 2.78e-05 |
IBD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.142 | 0.131 | 0.012 | 0.0944746 | 0.146 | 0.135 | 0.010 | 3.19e-02 |
IBD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.130 | 0.131 | -0.001 | 0.7629218 | 0.134 | 0.135 | -0.001 | 8.85e-01 |
IBD | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.130 | 0.131 | -0.001 | 0.7208320 | 0.128 | 0.135 | -0.007 | 2.01e-01 |
IBD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.131 | 0.131 | 0.001 | 0.9307361 | 0.137 | 0.135 | 0.002 | 7.29e-01 |
IBD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.134 | 0.131 | 0.003 | 0.3105080 | 0.137 | 0.135 | 0.001 | 8.16e-01 |
IBD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.128 | 0.131 | -0.003 | 0.6963930 | 0.137 | 0.135 | 0.002 | 7.37e-01 |
IBD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.131 | 0.131 | 0.000 | 1.0000000 | 0.135 | 0.135 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.148 | 0.131 | 0.018 | 0.0000000 | 0.150 | 0.135 | 0.015 | 7.76e-03 |
IBD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.143 | 0.131 | 0.012 | 0.0000011 | 0.145 | 0.135 | 0.010 | 4.05e-02 |
IBD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.131 | -0.031 | 0.0000000 | 0.103 | 0.135 | -0.032 | 8.99e-05 |
IBD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.134 | 0.131 | 0.004 | 0.2770780 | 0.136 | 0.135 | 0.000 | 9.50e-01 |
IBD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.122 | 0.131 | -0.009 | 0.0059531 | 0.130 | 0.135 | -0.005 | 4.09e-01 |
IBD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.148 | 0.131 | 0.018 | 0.0113495 | 0.153 | 0.135 | 0.017 | 1.77e-03 |
IBD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.112 | 0.131 | -0.019 | 0.0000004 | 0.112 | 0.135 | -0.023 | 2.20e-03 |
IBD | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.135 | 0.131 | 0.005 | 0.5183143 | 0.137 | 0.135 | 0.002 | 5.89e-01 |
IBD | SBLUP.Inf | DBSLMM.PseudoVal | 0.098 | 0.131 | -0.033 | 0.0000000 | 0.102 | 0.135 | -0.034 | 1.06e-04 |
IBD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.148 | 0.131 | 0.018 | 0.0000000 | 0.150 | 0.135 | 0.015 | 7.76e-03 |
IBD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.143 | 0.131 | 0.012 | 0.0801754 | 0.148 | 0.135 | 0.013 | 5.37e-03 |
IBD | lassosum.MultiPRS | lassosum.MultiPRS | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.146 | 0.146 | 0.000 | 1.00e+00 |
IBD | LDpred2.10FCVal | lassosum.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9393878 | 0.145 | 0.146 | 0.000 | 9.51e-01 |
IBD | LDpred2.Inf | lassosum.MultiPRS | 0.096 | 0.142 | -0.046 | 0.0000000 | 0.099 | 0.146 | -0.047 | 5.28e-09 |
IBD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.100 | 0.142 | -0.043 | 0.0000000 | 0.103 | 0.146 | -0.043 | 2.14e-08 |
IBD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.148 | 0.142 | 0.006 | 0.3920490 | 0.150 | 0.146 | 0.005 | 3.15e-01 |
IBD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.122 | 0.142 | -0.020 | 0.0037579 | 0.130 | 0.146 | -0.016 | 6.98e-03 |
IBD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.128 | 0.142 | -0.014 | 0.0384459 | 0.137 | 0.146 | -0.008 | 9.83e-02 |
IBD | LDpred1.Inf | lassosum.MultiPRS | 0.100 | 0.142 | -0.042 | 0.0000000 | 0.104 | 0.146 | -0.041 | 1.42e-07 |
IBD | All.MultiPRS | lassosum.MultiPRS | 0.154 | 0.142 | 0.012 | 0.0000000 | 0.158 | 0.146 | 0.012 | 7.72e-04 |
IBD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.131 | 0.142 | -0.012 | 0.0944746 | 0.135 | 0.146 | -0.010 | 3.19e-02 |
IBD | lassosum.PseudoVal | lassosum.MultiPRS | 0.134 | 0.142 | -0.009 | 0.2140797 | 0.137 | 0.146 | -0.009 | 8.44e-03 |
IBD | pT+clump.10FCVal | lassosum.MultiPRS | 0.112 | 0.142 | -0.031 | 0.0000106 | 0.112 | 0.146 | -0.033 | 2.99e-06 |
IBD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.148 | 0.142 | 0.006 | 0.0068253 | 0.153 | 0.146 | 0.007 | 1.14e-01 |
IBD | SBLUP.Inf | lassosum.MultiPRS | 0.098 | 0.142 | -0.045 | 0.0000000 | 0.102 | 0.146 | -0.044 | 2.46e-08 |
IBD | lassosum.10FCVal | lassosum.MultiPRS | 0.134 | 0.142 | -0.008 | 0.2449384 | 0.136 | 0.146 | -0.010 | 2.62e-03 |
IBD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.143 | 0.142 | 0.001 | 0.7263165 | 0.148 | 0.146 | 0.002 | 4.40e-01 |
IBD | PRScs.MultiPRS | lassosum.MultiPRS | 0.135 | 0.142 | -0.007 | 0.0002295 | 0.137 | 0.146 | -0.008 | 3.75e-02 |
IBD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.148 | 0.142 | 0.006 | 0.3920490 | 0.150 | 0.146 | 0.005 | 3.15e-01 |
IBD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.131 | 0.142 | -0.011 | 0.0000049 | 0.137 | 0.146 | -0.008 | 7.81e-02 |
IBD | PRScs.10FCVal | lassosum.MultiPRS | 0.129 | 0.142 | -0.014 | 0.0504179 | 0.133 | 0.146 | -0.013 | 7.49e-03 |
IBD | PRScs.PseudoVal | lassosum.MultiPRS | 0.130 | 0.142 | -0.013 | 0.0688274 | 0.128 | 0.146 | -0.018 | 2.05e-04 |
IBD | LDpred1.10FCVal | lassosum.MultiPRS | 0.130 | 0.142 | -0.013 | 0.0710019 | 0.134 | 0.146 | -0.011 | 2.48e-02 |
IBD | SBLUP.Inf | lassosum.PseudoVal | 0.098 | 0.134 | -0.036 | 0.0000000 | 0.102 | 0.137 | -0.035 | 5.22e-04 |
IBD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.143 | 0.134 | 0.009 | 0.1866061 | 0.148 | 0.137 | 0.011 | 5.80e-03 |
IBD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.122 | 0.134 | -0.012 | 0.0000537 | 0.130 | 0.137 | -0.007 | 2.48e-01 |
IBD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.100 | 0.134 | -0.034 | 0.0000000 | 0.103 | 0.137 | -0.034 | 4.99e-04 |
IBD | LDpred2.Inf | lassosum.PseudoVal | 0.096 | 0.134 | -0.038 | 0.0000000 | 0.099 | 0.137 | -0.038 | 1.91e-04 |
IBD | PRScs.MultiPRS | lassosum.PseudoVal | 0.135 | 0.134 | 0.001 | 0.8311110 | 0.137 | 0.137 | 0.001 | 8.65e-01 |
IBD | LDpred2.10FCVal | lassosum.PseudoVal | 0.143 | 0.134 | 0.009 | 0.0000007 | 0.145 | 0.137 | 0.009 | 1.86e-02 |
IBD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.128 | 0.134 | -0.006 | 0.4096977 | 0.137 | 0.137 | 0.001 | 9.24e-01 |
IBD | lassosum.MultiPRS | lassosum.PseudoVal | 0.142 | 0.134 | 0.009 | 0.2140797 | 0.146 | 0.137 | 0.009 | 8.44e-03 |
IBD | pT+clump.10FCVal | lassosum.PseudoVal | 0.112 | 0.134 | -0.022 | 0.0000000 | 0.112 | 0.137 | -0.024 | 2.77e-04 |
IBD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.148 | 0.134 | 0.015 | 0.0000030 | 0.150 | 0.137 | 0.014 | 2.65e-02 |
IBD | PRScs.PseudoVal | lassosum.PseudoVal | 0.130 | 0.134 | -0.004 | 0.2348360 | 0.128 | 0.137 | -0.009 | 2.00e-01 |
IBD | All.MultiPRS | lassosum.PseudoVal | 0.154 | 0.134 | 0.020 | 0.0033277 | 0.158 | 0.137 | 0.021 | 2.93e-05 |
IBD | PRScs.10FCVal | lassosum.PseudoVal | 0.129 | 0.134 | -0.005 | 0.1365158 | 0.133 | 0.137 | -0.004 | 5.86e-01 |
IBD | lassosum.10FCVal | lassosum.PseudoVal | 0.134 | 0.134 | 0.001 | 0.7740454 | 0.136 | 0.137 | -0.001 | 7.92e-01 |
IBD | lassosum.PseudoVal | lassosum.PseudoVal | 0.134 | 0.134 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
IBD | LDpred1.Inf | lassosum.PseudoVal | 0.100 | 0.134 | -0.034 | 0.0000000 | 0.104 | 0.137 | -0.032 | 1.04e-03 |
IBD | LDpred1.10FCVal | lassosum.PseudoVal | 0.130 | 0.134 | -0.004 | 0.2600745 | 0.134 | 0.137 | -0.002 | 7.44e-01 |
IBD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.148 | 0.134 | 0.015 | 0.0000030 | 0.150 | 0.137 | 0.014 | 2.65e-02 |
IBD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.131 | 0.134 | -0.003 | 0.3105080 | 0.135 | 0.137 | -0.001 | 8.16e-01 |
IBD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.131 | 0.134 | -0.002 | 0.7277567 | 0.137 | 0.137 | 0.001 | 9.26e-01 |
IBD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.148 | 0.134 | 0.015 | 0.0353778 | 0.153 | 0.137 | 0.016 | 5.93e-03 |
IBD | SBayesR.PseudoVal | lassosum.10FCVal | 0.122 | 0.134 | -0.012 | 0.0003134 | 0.130 | 0.136 | -0.006 | 4.07e-01 |
IBD | lassosum.PseudoVal | lassosum.10FCVal | 0.134 | 0.134 | -0.001 | 0.7740454 | 0.137 | 0.136 | 0.001 | 7.92e-01 |
IBD | lassosum.MultiPRS | lassosum.10FCVal | 0.142 | 0.134 | 0.008 | 0.2449384 | 0.146 | 0.136 | 0.010 | 2.62e-03 |
IBD | MegaPRS.10FCVal | lassosum.10FCVal | 0.148 | 0.134 | 0.014 | 0.0000008 | 0.150 | 0.136 | 0.015 | 9.69e-03 |
IBD | LDpred2.MultiPRS | lassosum.10FCVal | 0.143 | 0.134 | 0.009 | 0.2145731 | 0.148 | 0.136 | 0.012 | 3.63e-03 |
IBD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.131 | 0.134 | -0.004 | 0.2770780 | 0.135 | 0.136 | 0.000 | 9.50e-01 |
IBD | LDpred2.PseudoVal | lassosum.10FCVal | 0.100 | 0.134 | -0.035 | 0.0000000 | 0.103 | 0.136 | -0.033 | 5.44e-05 |
IBD | pT+clump.10FCVal | lassosum.10FCVal | 0.112 | 0.134 | -0.023 | 0.0000000 | 0.112 | 0.136 | -0.023 | 3.88e-03 |
IBD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.148 | 0.134 | 0.014 | 0.0000008 | 0.150 | 0.136 | 0.015 | 9.69e-03 |
IBD | LDpred1.Inf | lassosum.10FCVal | 0.100 | 0.134 | -0.034 | 0.0000000 | 0.104 | 0.136 | -0.031 | 1.82e-04 |
IBD | LDpred1.10FCVal | lassosum.10FCVal | 0.130 | 0.134 | -0.004 | 0.1231557 | 0.134 | 0.136 | -0.001 | 8.26e-01 |
IBD | All.MultiPRS | lassosum.10FCVal | 0.154 | 0.134 | 0.020 | 0.0043221 | 0.158 | 0.136 | 0.022 | 1.23e-05 |
IBD | lassosum.10FCVal | lassosum.10FCVal | 0.134 | 0.134 | 0.000 | 1.0000000 | 0.136 | 0.136 | 0.000 | 1.00e+00 |
IBD | PRScs.MultiPRS | lassosum.10FCVal | 0.135 | 0.134 | 0.001 | 0.8927320 | 0.137 | 0.136 | 0.002 | 7.13e-01 |
IBD | PRScs.PseudoVal | lassosum.10FCVal | 0.130 | 0.134 | -0.005 | 0.0995838 | 0.128 | 0.136 | -0.008 | 1.69e-01 |
IBD | LDpred1.MultiPRS | lassosum.10FCVal | 0.131 | 0.134 | -0.003 | 0.6699822 | 0.137 | 0.136 | 0.002 | 7.73e-01 |
IBD | PRScs.10FCVal | lassosum.10FCVal | 0.129 | 0.134 | -0.006 | 0.0449491 | 0.133 | 0.136 | -0.003 | 6.32e-01 |
IBD | pT+clump.MultiPRS | lassosum.10FCVal | 0.128 | 0.134 | -0.006 | 0.3660930 | 0.137 | 0.136 | 0.002 | 7.90e-01 |
IBD | SBLUP.Inf | lassosum.10FCVal | 0.098 | 0.134 | -0.037 | 0.0000000 | 0.102 | 0.136 | -0.034 | 5.12e-05 |
IBD | LDpred2.Inf | lassosum.10FCVal | 0.096 | 0.134 | -0.038 | 0.0000000 | 0.099 | 0.136 | -0.037 | 1.46e-05 |
IBD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.148 | 0.134 | 0.014 | 0.0430567 | 0.153 | 0.136 | 0.017 | 1.49e-03 |
IBD | LDpred2.10FCVal | lassosum.10FCVal | 0.143 | 0.134 | 0.009 | 0.0000593 | 0.145 | 0.136 | 0.010 | 2.26e-02 |
IBD | All.MultiPRS | MegaPRS.MultiPRS | 0.154 | 0.148 | 0.006 | 0.0000047 | 0.158 | 0.153 | 0.005 | 3.19e-02 |
IBD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.131 | 0.148 | -0.018 | 0.0113495 | 0.135 | 0.153 | -0.017 | 1.77e-03 |
IBD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.131 | 0.148 | -0.017 | 0.0000000 | 0.137 | 0.153 | -0.015 | 1.30e-03 |
IBD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.148 | -0.049 | 0.0000000 | 0.103 | 0.153 | -0.050 | 2.42e-12 |
IBD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9950144 | 0.150 | 0.153 | -0.002 | 5.46e-02 |
IBD | LDpred2.Inf | MegaPRS.MultiPRS | 0.096 | 0.148 | -0.052 | 0.0000000 | 0.099 | 0.153 | -0.054 | 5.28e-13 |
IBD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.153 | 0.153 | 0.000 | 1.00e+00 |
IBD | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.135 | 0.148 | -0.013 | 0.0000000 | 0.137 | 0.153 | -0.015 | 9.87e-04 |
IBD | PRScs.10FCVal | MegaPRS.MultiPRS | 0.129 | 0.148 | -0.020 | 0.0048621 | 0.133 | 0.153 | -0.020 | 6.55e-05 |
IBD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.122 | 0.148 | -0.026 | 0.0001698 | 0.130 | 0.153 | -0.023 | 4.44e-04 |
IBD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.142 | 0.148 | -0.006 | 0.0068253 | 0.146 | 0.153 | -0.007 | 1.14e-01 |
IBD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.128 | 0.148 | -0.020 | 0.0033725 | 0.137 | 0.153 | -0.015 | 1.05e-02 |
IBD | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.130 | 0.148 | -0.019 | 0.0074120 | 0.128 | 0.153 | -0.025 | 4.36e-07 |
IBD | SBLUP.Inf | MegaPRS.MultiPRS | 0.098 | 0.148 | -0.051 | 0.0000000 | 0.102 | 0.153 | -0.051 | 4.23e-12 |
IBD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.130 | 0.148 | -0.019 | 0.0076957 | 0.134 | 0.153 | -0.018 | 1.86e-04 |
IBD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.134 | 0.148 | -0.014 | 0.0430567 | 0.136 | 0.153 | -0.017 | 1.49e-03 |
IBD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.143 | 0.148 | -0.005 | 0.0119832 | 0.148 | 0.153 | -0.005 | 2.82e-01 |
IBD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9950144 | 0.150 | 0.153 | -0.002 | 5.46e-02 |
IBD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.143 | 0.148 | -0.005 | 0.4310224 | 0.145 | 0.153 | -0.007 | 1.26e-01 |
IBD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.112 | 0.148 | -0.037 | 0.0000001 | 0.112 | 0.153 | -0.040 | 7.62e-07 |
IBD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.134 | 0.148 | -0.015 | 0.0353778 | 0.137 | 0.153 | -0.016 | 5.93e-03 |
IBD | LDpred1.Inf | MegaPRS.MultiPRS | 0.100 | 0.148 | -0.048 | 0.0000000 | 0.104 | 0.153 | -0.048 | 4.19e-11 |
IBD | lassosum.10FCVal | MegaPRS.10FCVal | 0.134 | 0.148 | -0.014 | 0.0000008 | 0.136 | 0.150 | -0.015 | 9.69e-03 |
IBD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.134 | 0.148 | -0.014 | 0.0000008 | 0.136 | 0.150 | -0.015 | 9.69e-03 |
IBD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 0.9950144 | 0.153 | 0.150 | 0.002 | 5.46e-02 |
IBD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 0.9950144 | 0.153 | 0.150 | 0.002 | 5.46e-02 |
IBD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.143 | 0.148 | -0.005 | 0.4376305 | 0.148 | 0.150 | -0.002 | 5.99e-01 |
IBD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.4376305 | 0.148 | 0.150 | -0.002 | 5.99e-01 |
IBD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.130 | 0.148 | -0.019 | 0.0000000 | 0.134 | 0.150 | -0.016 | 1.37e-03 |
IBD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.130 | 0.148 | -0.019 | 0.0000000 | 0.134 | 0.150 | -0.016 | 1.37e-03 |
IBD | All.MultiPRS | MegaPRS.10FCVal | 0.154 | 0.148 | 0.006 | 0.4031991 | 0.158 | 0.150 | 0.008 | 8.79e-03 |
IBD | All.MultiPRS | MegaPRS.PseudoVal | 0.154 | 0.148 | 0.006 | 0.4031991 | 0.158 | 0.150 | 0.008 | 8.79e-03 |
IBD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
IBD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
IBD | PRScs.10FCVal | MegaPRS.10FCVal | 0.129 | 0.148 | -0.020 | 0.0000000 | 0.133 | 0.150 | -0.018 | 5.83e-04 |
IBD | PRScs.10FCVal | MegaPRS.PseudoVal | 0.129 | 0.148 | -0.020 | 0.0000000 | 0.133 | 0.150 | -0.018 | 5.83e-04 |
IBD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.122 | 0.148 | -0.026 | 0.0000000 | 0.130 | 0.150 | -0.020 | 2.18e-03 |
IBD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.122 | 0.148 | -0.026 | 0.0000000 | 0.130 | 0.150 | -0.020 | 2.18e-03 |
IBD | SBLUP.Inf | MegaPRS.10FCVal | 0.098 | 0.148 | -0.051 | 0.0000000 | 0.102 | 0.150 | -0.049 | 2.82e-11 |
IBD | SBLUP.Inf | MegaPRS.PseudoVal | 0.098 | 0.148 | -0.051 | 0.0000000 | 0.102 | 0.150 | -0.049 | 2.82e-11 |
IBD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.142 | 0.148 | -0.006 | 0.3920490 | 0.146 | 0.150 | -0.005 | 3.15e-01 |
IBD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.142 | 0.148 | -0.006 | 0.3920490 | 0.146 | 0.150 | -0.005 | 3.15e-01 |
IBD | PRScs.PseudoVal | MegaPRS.10FCVal | 0.130 | 0.148 | -0.019 | 0.0000000 | 0.128 | 0.150 | -0.023 | 7.27e-06 |
IBD | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.130 | 0.148 | -0.019 | 0.0000000 | 0.128 | 0.150 | -0.023 | 7.27e-06 |
IBD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.131 | 0.148 | -0.018 | 0.0000000 | 0.135 | 0.150 | -0.015 | 7.76e-03 |
IBD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.131 | 0.148 | -0.018 | 0.0000000 | 0.135 | 0.150 | -0.015 | 7.76e-03 |
IBD | PRScs.MultiPRS | MegaPRS.10FCVal | 0.135 | 0.148 | -0.013 | 0.0599550 | 0.137 | 0.150 | -0.013 | 6.89e-03 |
IBD | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.135 | 0.148 | -0.013 | 0.0599550 | 0.137 | 0.150 | -0.013 | 6.89e-03 |
IBD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.143 | 0.148 | -0.005 | 0.0365391 | 0.145 | 0.150 | -0.005 | 3.20e-01 |
IBD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.0365391 | 0.145 | 0.150 | -0.005 | 3.20e-01 |
IBD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.128 | 0.148 | -0.020 | 0.0034933 | 0.137 | 0.150 | -0.013 | 3.32e-02 |
IBD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.128 | 0.148 | -0.020 | 0.0034933 | 0.137 | 0.150 | -0.013 | 3.32e-02 |
IBD | LDpred2.Inf | MegaPRS.10FCVal | 0.096 | 0.148 | -0.052 | 0.0000000 | 0.099 | 0.150 | -0.051 | 3.86e-12 |
IBD | LDpred2.Inf | MegaPRS.PseudoVal | 0.096 | 0.148 | -0.052 | 0.0000000 | 0.099 | 0.150 | -0.051 | 3.86e-12 |
IBD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.148 | -0.049 | 0.0000000 | 0.103 | 0.150 | -0.047 | 2.17e-11 |
IBD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.148 | -0.049 | 0.0000000 | 0.103 | 0.150 | -0.047 | 2.17e-11 |
IBD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.134 | 0.148 | -0.015 | 0.0000030 | 0.137 | 0.150 | -0.014 | 2.65e-02 |
IBD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.134 | 0.148 | -0.015 | 0.0000030 | 0.137 | 0.150 | -0.014 | 2.65e-02 |
IBD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.131 | 0.148 | -0.017 | 0.0145365 | 0.137 | 0.150 | -0.013 | 7.63e-03 |
IBD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.131 | 0.148 | -0.017 | 0.0145365 | 0.137 | 0.150 | -0.013 | 7.63e-03 |
IBD | LDpred1.Inf | MegaPRS.10FCVal | 0.100 | 0.148 | -0.048 | 0.0000000 | 0.104 | 0.150 | -0.046 | 3.11e-10 |
IBD | LDpred1.Inf | MegaPRS.PseudoVal | 0.100 | 0.148 | -0.048 | 0.0000000 | 0.104 | 0.150 | -0.046 | 3.11e-10 |
IBD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.112 | 0.148 | -0.037 | 0.0000000 | 0.112 | 0.150 | -0.038 | 5.32e-06 |
IBD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.112 | 0.148 | -0.037 | 0.0000000 | 0.112 | 0.150 | -0.038 | 5.32e-06 |
IBD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.122 | 0.131 | -0.009 | 0.1911628 | 0.130 | 0.137 | -0.007 | 2.90e-01 |
IBD | SBLUP.Inf | LDpred1.MultiPRS | 0.098 | 0.131 | -0.034 | 0.0000016 | 0.102 | 0.137 | -0.036 | 5.31e-10 |
IBD | PRScs.10FCVal | LDpred1.MultiPRS | 0.129 | 0.131 | -0.003 | 0.7128317 | 0.133 | 0.137 | -0.004 | 2.59e-01 |
IBD | All.MultiPRS | LDpred1.MultiPRS | 0.154 | 0.131 | 0.023 | 0.0000000 | 0.158 | 0.137 | 0.021 | 6.33e-05 |
IBD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.148 | 0.131 | 0.017 | 0.0145365 | 0.150 | 0.137 | 0.013 | 7.63e-03 |
IBD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.128 | 0.131 | -0.003 | 0.6324120 | 0.137 | 0.137 | 0.000 | 9.93e-01 |
IBD | PRScs.PseudoVal | LDpred1.MultiPRS | 0.130 | 0.131 | -0.002 | 0.8158476 | 0.128 | 0.137 | -0.009 | 1.37e-02 |
IBD | lassosum.10FCVal | LDpred1.MultiPRS | 0.134 | 0.131 | 0.003 | 0.6699822 | 0.136 | 0.137 | -0.002 | 7.73e-01 |
IBD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.134 | 0.131 | 0.002 | 0.7277567 | 0.137 | 0.137 | -0.001 | 9.26e-01 |
IBD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.112 | 0.131 | -0.020 | 0.0048058 | 0.112 | 0.137 | -0.025 | 3.53e-03 |
IBD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.148 | 0.131 | 0.017 | 0.0145365 | 0.150 | 0.137 | 0.013 | 7.63e-03 |
IBD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.131 | 0.131 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
IBD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.143 | 0.131 | 0.012 | 0.0000002 | 0.148 | 0.137 | 0.011 | 1.36e-02 |
IBD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.142 | 0.131 | 0.011 | 0.0000049 | 0.146 | 0.137 | 0.008 | 7.81e-02 |
IBD | LDpred1.Inf | LDpred1.MultiPRS | 0.100 | 0.131 | -0.031 | 0.0000090 | 0.104 | 0.137 | -0.033 | 1.21e-11 |
IBD | LDpred2.Inf | LDpred1.MultiPRS | 0.096 | 0.131 | -0.035 | 0.0000005 | 0.099 | 0.137 | -0.038 | 3.73e-11 |
IBD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.148 | 0.131 | 0.017 | 0.0000000 | 0.153 | 0.137 | 0.015 | 1.30e-03 |
IBD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.130 | 0.131 | -0.002 | 0.8283318 | 0.134 | 0.137 | -0.003 | 2.83e-02 |
IBD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.131 | 0.131 | -0.001 | 0.9307361 | 0.135 | 0.137 | -0.002 | 7.29e-01 |
IBD | PRScs.MultiPRS | LDpred1.MultiPRS | 0.135 | 0.131 | 0.004 | 0.0473898 | 0.137 | 0.137 | 0.000 | 9.29e-01 |
IBD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.143 | 0.131 | 0.012 | 0.0954398 | 0.145 | 0.137 | 0.008 | 1.09e-01 |
IBD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.131 | -0.032 | 0.0000069 | 0.103 | 0.137 | -0.034 | 1.36e-10 |
IBD | PRScs.10FCVal | LDpred1.Inf | 0.129 | 0.100 | 0.029 | 0.0000000 | 0.133 | 0.104 | 0.029 | 4.76e-07 |
IBD | PRScs.PseudoVal | LDpred1.Inf | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.128 | 0.104 | 0.023 | 2.67e-05 |
IBD | LDpred1.MultiPRS | LDpred1.Inf | 0.131 | 0.100 | 0.031 | 0.0000090 | 0.137 | 0.104 | 0.033 | 1.21e-11 |
IBD | DBSLMM.PseudoVal | LDpred1.Inf | 0.131 | 0.100 | 0.031 | 0.0000000 | 0.135 | 0.104 | 0.031 | 2.85e-04 |
IBD | LDpred2.MultiPRS | LDpred1.Inf | 0.143 | 0.100 | 0.043 | 0.0000000 | 0.148 | 0.104 | 0.044 | 3.44e-08 |
IBD | LDpred2.Inf | LDpred1.Inf | 0.096 | 0.100 | -0.004 | 0.0090491 | 0.099 | 0.104 | -0.005 | 8.81e-02 |
IBD | All.MultiPRS | LDpred1.Inf | 0.154 | 0.100 | 0.054 | 0.0000000 | 0.158 | 0.104 | 0.054 | 2.12e-11 |
IBD | MegaPRS.10FCVal | LDpred1.Inf | 0.148 | 0.100 | 0.048 | 0.0000000 | 0.150 | 0.104 | 0.046 | 3.11e-10 |
IBD | lassosum.MultiPRS | LDpred1.Inf | 0.142 | 0.100 | 0.042 | 0.0000000 | 0.146 | 0.104 | 0.041 | 1.42e-07 |
IBD | LDpred1.10FCVal | LDpred1.Inf | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.134 | 0.104 | 0.030 | 6.93e-13 |
IBD | LDpred2.PseudoVal | LDpred1.Inf | 0.100 | 0.100 | 0.000 | 0.7786600 | 0.103 | 0.104 | -0.001 | 6.52e-01 |
IBD | lassosum.PseudoVal | LDpred1.Inf | 0.134 | 0.100 | 0.034 | 0.0000000 | 0.137 | 0.104 | 0.032 | 1.04e-03 |
IBD | MegaPRS.PseudoVal | LDpred1.Inf | 0.148 | 0.100 | 0.048 | 0.0000000 | 0.150 | 0.104 | 0.046 | 3.11e-10 |
IBD | MegaPRS.MultiPRS | LDpred1.Inf | 0.148 | 0.100 | 0.048 | 0.0000000 | 0.153 | 0.104 | 0.048 | 4.19e-11 |
IBD | SBayesR.PseudoVal | LDpred1.Inf | 0.122 | 0.100 | 0.022 | 0.0000052 | 0.130 | 0.104 | 0.026 | 8.42e-03 |
IBD | lassosum.10FCVal | LDpred1.Inf | 0.134 | 0.100 | 0.034 | 0.0000000 | 0.136 | 0.104 | 0.031 | 1.82e-04 |
IBD | pT+clump.MultiPRS | LDpred1.Inf | 0.128 | 0.100 | 0.028 | 0.0000684 | 0.137 | 0.104 | 0.033 | 9.33e-05 |
IBD | PRScs.MultiPRS | LDpred1.Inf | 0.135 | 0.100 | 0.035 | 0.0000006 | 0.137 | 0.104 | 0.033 | 1.28e-06 |
IBD | SBLUP.Inf | LDpred1.Inf | 0.098 | 0.100 | -0.003 | 0.1141277 | 0.102 | 0.104 | -0.003 | 3.85e-01 |
IBD | LDpred2.10FCVal | LDpred1.Inf | 0.143 | 0.100 | 0.043 | 0.0000000 | 0.145 | 0.104 | 0.041 | 2.09e-06 |
IBD | pT+clump.10FCVal | LDpred1.Inf | 0.112 | 0.100 | 0.011 | 0.0366054 | 0.112 | 0.104 | 0.008 | 4.73e-01 |
IBD | LDpred1.Inf | LDpred1.Inf | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.104 | 0.104 | 0.000 | 1.00e+00 |
IBD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.148 | 0.130 | 0.019 | 0.0076957 | 0.153 | 0.134 | 0.018 | 1.86e-04 |
IBD | PRScs.10FCVal | LDpred1.10FCVal | 0.129 | 0.130 | -0.001 | 0.5648285 | 0.133 | 0.134 | -0.001 | 7.01e-01 |
IBD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.103 | 0.134 | -0.031 | 7.10e-11 |
IBD | LDpred2.Inf | LDpred1.10FCVal | 0.096 | 0.130 | -0.034 | 0.0000000 | 0.099 | 0.134 | -0.035 | 1.75e-11 |
IBD | PRScs.MultiPRS | LDpred1.10FCVal | 0.135 | 0.130 | 0.005 | 0.4371993 | 0.137 | 0.134 | 0.003 | 4.20e-01 |
IBD | PRScs.PseudoVal | LDpred1.10FCVal | 0.130 | 0.130 | 0.000 | 0.9500499 | 0.128 | 0.134 | -0.006 | 7.48e-02 |
IBD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.122 | 0.130 | -0.008 | 0.0313492 | 0.130 | 0.134 | -0.004 | 5.44e-01 |
IBD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.128 | 0.130 | -0.002 | 0.7942422 | 0.137 | 0.134 | 0.003 | 6.46e-01 |
IBD | LDpred1.Inf | LDpred1.10FCVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.104 | 0.134 | -0.030 | 6.93e-13 |
IBD | SBLUP.Inf | LDpred1.10FCVal | 0.098 | 0.130 | -0.032 | 0.0000000 | 0.102 | 0.134 | -0.033 | 3.45e-10 |
IBD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.131 | 0.130 | 0.002 | 0.8283318 | 0.137 | 0.134 | 0.003 | 2.83e-02 |
IBD | lassosum.10FCVal | LDpred1.10FCVal | 0.134 | 0.130 | 0.004 | 0.1231557 | 0.136 | 0.134 | 0.001 | 8.26e-01 |
IBD | pT+clump.10FCVal | LDpred1.10FCVal | 0.112 | 0.130 | -0.018 | 0.0000474 | 0.112 | 0.134 | -0.022 | 1.27e-02 |
IBD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.143 | 0.130 | 0.013 | 0.0596639 | 0.148 | 0.134 | 0.014 | 3.70e-03 |
IBD | LDpred2.10FCVal | LDpred1.10FCVal | 0.143 | 0.130 | 0.013 | 0.0000023 | 0.145 | 0.134 | 0.011 | 4.34e-02 |
IBD | LDpred1.10FCVal | LDpred1.10FCVal | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.134 | 0.134 | 0.000 | 1.00e+00 |
IBD | lassosum.MultiPRS | LDpred1.10FCVal | 0.142 | 0.130 | 0.013 | 0.0710019 | 0.146 | 0.134 | 0.011 | 2.48e-02 |
IBD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.148 | 0.130 | 0.019 | 0.0000000 | 0.150 | 0.134 | 0.016 | 1.37e-03 |
IBD | All.MultiPRS | LDpred1.10FCVal | 0.154 | 0.130 | 0.024 | 0.0004737 | 0.158 | 0.134 | 0.024 | 1.22e-05 |
IBD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.148 | 0.130 | 0.019 | 0.0000000 | 0.150 | 0.134 | 0.016 | 1.37e-03 |
IBD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.131 | 0.130 | 0.001 | 0.7629218 | 0.135 | 0.134 | 0.001 | 8.85e-01 |
IBD | lassosum.PseudoVal | LDpred1.10FCVal | 0.134 | 0.130 | 0.004 | 0.2600745 | 0.137 | 0.134 | 0.002 | 7.44e-01 |
IBD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.128 | 0.143 | -0.015 | 0.0318231 | 0.137 | 0.148 | -0.011 | 3.66e-02 |
IBD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.112 | 0.143 | -0.031 | 0.0000073 | 0.112 | 0.148 | -0.036 | 2.91e-07 |
IBD | PRScs.PseudoVal | LDpred2.MultiPRS | 0.130 | 0.143 | -0.013 | 0.0577887 | 0.128 | 0.148 | -0.020 | 1.22e-05 |
IBD | PRScs.10FCVal | LDpred2.MultiPRS | 0.129 | 0.143 | -0.014 | 0.0420165 | 0.133 | 0.148 | -0.015 | 7.61e-04 |
IBD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.148 | 0.143 | 0.005 | 0.4376305 | 0.150 | 0.148 | 0.002 | 5.99e-01 |
IBD | All.MultiPRS | LDpred2.MultiPRS | 0.154 | 0.143 | 0.011 | 0.0000000 | 0.158 | 0.148 | 0.010 | 5.06e-03 |
IBD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.131 | 0.143 | -0.012 | 0.0801754 | 0.135 | 0.148 | -0.013 | 5.37e-03 |
IBD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.142 | 0.143 | -0.001 | 0.7263165 | 0.146 | 0.148 | -0.002 | 4.40e-01 |
IBD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.148 | 0.143 | 0.005 | 0.4376305 | 0.150 | 0.148 | 0.002 | 5.99e-01 |
IBD | lassosum.10FCVal | LDpred2.MultiPRS | 0.134 | 0.143 | -0.009 | 0.2145731 | 0.136 | 0.148 | -0.012 | 3.63e-03 |
IBD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
IBD | PRScs.MultiPRS | LDpred2.MultiPRS | 0.135 | 0.143 | -0.008 | 0.0000143 | 0.137 | 0.148 | -0.010 | 2.96e-03 |
IBD | LDpred1.Inf | LDpred2.MultiPRS | 0.100 | 0.143 | -0.043 | 0.0000000 | 0.104 | 0.148 | -0.044 | 3.44e-08 |
IBD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.131 | 0.143 | -0.012 | 0.0000002 | 0.137 | 0.148 | -0.011 | 1.36e-02 |
IBD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9974659 | 0.145 | 0.148 | -0.003 | 5.07e-02 |
IBD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.143 | -0.043 | 0.0000000 | 0.103 | 0.148 | -0.045 | 2.56e-09 |
IBD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.134 | 0.143 | -0.009 | 0.1866061 | 0.137 | 0.148 | -0.011 | 5.80e-03 |
IBD | LDpred2.Inf | LDpred2.MultiPRS | 0.096 | 0.143 | -0.047 | 0.0000000 | 0.099 | 0.148 | -0.049 | 9.28e-10 |
IBD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.122 | 0.143 | -0.021 | 0.0029271 | 0.130 | 0.148 | -0.018 | 6.92e-04 |
IBD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.148 | 0.143 | 0.005 | 0.0119832 | 0.153 | 0.148 | 0.005 | 2.82e-01 |
IBD | SBLUP.Inf | LDpred2.MultiPRS | 0.098 | 0.143 | -0.045 | 0.0000000 | 0.102 | 0.148 | -0.046 | 7.79e-09 |
IBD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.130 | 0.143 | -0.013 | 0.0596639 | 0.134 | 0.148 | -0.014 | 3.70e-03 |
IBD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.143 | 0.143 | 0.000 | 0.9974659 | 0.148 | 0.145 | 0.003 | 5.07e-02 |
IBD | LDpred2.10FCVal | LDpred2.10FCVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.145 | 0.145 | 0.000 | 1.00e+00 |
IBD | lassosum.10FCVal | LDpred2.10FCVal | 0.134 | 0.143 | -0.009 | 0.0000593 | 0.136 | 0.145 | -0.010 | 2.26e-02 |
IBD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.148 | 0.143 | 0.005 | 0.4310224 | 0.153 | 0.145 | 0.007 | 1.26e-01 |
IBD | PRScs.10FCVal | LDpred2.10FCVal | 0.129 | 0.143 | -0.014 | 0.0000001 | 0.133 | 0.145 | -0.012 | 1.75e-02 |
IBD | lassosum.PseudoVal | LDpred2.10FCVal | 0.134 | 0.143 | -0.009 | 0.0000007 | 0.137 | 0.145 | -0.009 | 1.86e-02 |
IBD | pT+clump.10FCVal | LDpred2.10FCVal | 0.112 | 0.143 | -0.031 | 0.0000000 | 0.112 | 0.145 | -0.033 | 7.17e-07 |
IBD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.128 | 0.143 | -0.015 | 0.0321598 | 0.137 | 0.145 | -0.008 | 1.27e-01 |
IBD | lassosum.MultiPRS | LDpred2.10FCVal | 0.142 | 0.143 | -0.001 | 0.9393878 | 0.146 | 0.145 | 0.000 | 9.51e-01 |
IBD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.100 | 0.143 | -0.043 | 0.0000000 | 0.103 | 0.145 | -0.042 | 3.76e-07 |
IBD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.122 | 0.143 | -0.021 | 0.0000000 | 0.130 | 0.145 | -0.015 | 4.05e-03 |
IBD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.148 | 0.143 | 0.005 | 0.0365391 | 0.150 | 0.145 | 0.005 | 3.20e-01 |
IBD | All.MultiPRS | LDpred2.10FCVal | 0.154 | 0.143 | 0.011 | 0.1055156 | 0.158 | 0.145 | 0.013 | 1.17e-03 |
IBD | LDpred2.Inf | LDpred2.10FCVal | 0.096 | 0.143 | -0.047 | 0.0000000 | 0.099 | 0.145 | -0.046 | 1.31e-07 |
IBD | LDpred1.10FCVal | LDpred2.10FCVal | 0.130 | 0.143 | -0.013 | 0.0000023 | 0.134 | 0.145 | -0.011 | 4.34e-02 |
IBD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.148 | 0.143 | 0.005 | 0.0365391 | 0.150 | 0.145 | 0.005 | 3.20e-01 |
IBD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.131 | 0.143 | -0.012 | 0.0000011 | 0.135 | 0.145 | -0.010 | 4.05e-02 |
IBD | LDpred1.Inf | LDpred2.10FCVal | 0.100 | 0.143 | -0.043 | 0.0000000 | 0.104 | 0.145 | -0.041 | 2.09e-06 |
IBD | SBLUP.Inf | LDpred2.10FCVal | 0.098 | 0.143 | -0.045 | 0.0000000 | 0.102 | 0.145 | -0.044 | 7.02e-07 |
IBD | PRScs.MultiPRS | LDpred2.10FCVal | 0.135 | 0.143 | -0.008 | 0.2693584 | 0.137 | 0.145 | -0.008 | 6.25e-02 |
IBD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.131 | 0.143 | -0.012 | 0.0954398 | 0.137 | 0.145 | -0.008 | 1.09e-01 |
IBD | PRScs.PseudoVal | LDpred2.10FCVal | 0.130 | 0.143 | -0.013 | 0.0000008 | 0.128 | 0.145 | -0.018 | 1.05e-03 |
IBD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.142 | 0.100 | 0.043 | 0.0000000 | 0.146 | 0.103 | 0.043 | 2.14e-08 |
IBD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.122 | 0.100 | 0.023 | 0.0000033 | 0.130 | 0.103 | 0.027 | 5.52e-03 |
IBD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.148 | 0.100 | 0.049 | 0.0000000 | 0.153 | 0.103 | 0.050 | 2.42e-12 |
IBD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.143 | 0.100 | 0.043 | 0.0000000 | 0.145 | 0.103 | 0.042 | 3.76e-07 |
IBD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.128 | 0.100 | 0.028 | 0.0000525 | 0.137 | 0.103 | 0.034 | 3.40e-05 |
IBD | LDpred2.Inf | LDpred2.PseudoVal | 0.096 | 0.100 | -0.004 | 0.0000000 | 0.099 | 0.103 | -0.004 | 2.49e-06 |
IBD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.148 | 0.100 | 0.049 | 0.0000000 | 0.150 | 0.103 | 0.047 | 2.17e-11 |
IBD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.131 | 0.100 | 0.031 | 0.0000000 | 0.135 | 0.103 | 0.032 | 8.99e-05 |
IBD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.134 | 0.100 | 0.034 | 0.0000000 | 0.137 | 0.103 | 0.034 | 4.99e-04 |
IBD | lassosum.10FCVal | LDpred2.PseudoVal | 0.134 | 0.100 | 0.035 | 0.0000000 | 0.136 | 0.103 | 0.033 | 5.44e-05 |
IBD | SBLUP.Inf | LDpred2.PseudoVal | 0.098 | 0.100 | -0.002 | 0.0113250 | 0.102 | 0.103 | -0.001 | 4.08e-01 |
IBD | PRScs.10FCVal | LDpred2.PseudoVal | 0.129 | 0.100 | 0.029 | 0.0000000 | 0.133 | 0.103 | 0.030 | 2.87e-09 |
IBD | All.MultiPRS | LDpred2.PseudoVal | 0.154 | 0.100 | 0.055 | 0.0000000 | 0.158 | 0.103 | 0.055 | 2.88e-12 |
IBD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.148 | 0.100 | 0.049 | 0.0000000 | 0.150 | 0.103 | 0.047 | 2.17e-11 |
IBD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.143 | 0.100 | 0.043 | 0.0000000 | 0.148 | 0.103 | 0.045 | 2.56e-09 |
IBD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.134 | 0.103 | 0.031 | 7.10e-11 |
IBD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.103 | 0.103 | 0.000 | 1.00e+00 |
IBD | LDpred1.Inf | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 0.7786600 | 0.104 | 0.103 | 0.001 | 6.52e-01 |
IBD | PRScs.MultiPRS | LDpred2.PseudoVal | 0.135 | 0.100 | 0.036 | 0.0000004 | 0.137 | 0.103 | 0.035 | 8.23e-08 |
IBD | PRScs.PseudoVal | LDpred2.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.128 | 0.103 | 0.025 | 6.09e-07 |
IBD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.112 | 0.100 | 0.012 | 0.0291055 | 0.112 | 0.103 | 0.009 | 3.94e-01 |
IBD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.131 | 0.100 | 0.032 | 0.0000069 | 0.137 | 0.103 | 0.034 | 1.36e-10 |
IBD | SBayesR.PseudoVal | LDpred2.Inf | 0.122 | 0.096 | 0.026 | 0.0000002 | 0.130 | 0.099 | 0.031 | 2.23e-03 |
IBD | MegaPRS.MultiPRS | LDpred2.Inf | 0.148 | 0.096 | 0.052 | 0.0000000 | 0.153 | 0.099 | 0.054 | 5.28e-13 |
IBD | lassosum.10FCVal | LDpred2.Inf | 0.134 | 0.096 | 0.038 | 0.0000000 | 0.136 | 0.099 | 0.037 | 1.46e-05 |
IBD | LDpred2.Inf | LDpred2.Inf | 0.096 | 0.096 | 0.000 | 1.0000000 | 0.099 | 0.099 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | LDpred2.Inf | 0.148 | 0.096 | 0.052 | 0.0000000 | 0.150 | 0.099 | 0.051 | 3.86e-12 |
IBD | LDpred2.10FCVal | LDpred2.Inf | 0.143 | 0.096 | 0.047 | 0.0000000 | 0.145 | 0.099 | 0.046 | 1.31e-07 |
IBD | lassosum.PseudoVal | LDpred2.Inf | 0.134 | 0.096 | 0.038 | 0.0000000 | 0.137 | 0.099 | 0.038 | 1.91e-04 |
IBD | LDpred2.MultiPRS | LDpred2.Inf | 0.143 | 0.096 | 0.047 | 0.0000000 | 0.148 | 0.099 | 0.049 | 9.28e-10 |
IBD | SBLUP.Inf | LDpred2.Inf | 0.098 | 0.096 | 0.002 | 0.0099598 | 0.102 | 0.099 | 0.003 | 3.32e-02 |
IBD | All.MultiPRS | LDpred2.Inf | 0.154 | 0.096 | 0.058 | 0.0000000 | 0.158 | 0.099 | 0.059 | 6.90e-13 |
IBD | LDpred2.PseudoVal | LDpred2.Inf | 0.100 | 0.096 | 0.004 | 0.0000000 | 0.103 | 0.099 | 0.004 | 2.49e-06 |
IBD | pT+clump.MultiPRS | LDpred2.Inf | 0.128 | 0.096 | 0.032 | 0.0000049 | 0.137 | 0.099 | 0.038 | 1.02e-05 |
IBD | lassosum.MultiPRS | LDpred2.Inf | 0.142 | 0.096 | 0.046 | 0.0000000 | 0.146 | 0.099 | 0.047 | 5.28e-09 |
IBD | PRScs.10FCVal | LDpred2.Inf | 0.129 | 0.096 | 0.033 | 0.0000000 | 0.133 | 0.099 | 0.034 | 4.51e-10 |
IBD | LDpred1.10FCVal | LDpred2.Inf | 0.130 | 0.096 | 0.034 | 0.0000000 | 0.134 | 0.099 | 0.035 | 1.75e-11 |
IBD | pT+clump.10FCVal | LDpred2.Inf | 0.112 | 0.096 | 0.016 | 0.0058155 | 0.112 | 0.099 | 0.013 | 2.39e-01 |
IBD | PRScs.MultiPRS | LDpred2.Inf | 0.135 | 0.096 | 0.039 | 0.0000000 | 0.137 | 0.099 | 0.039 | 2.49e-08 |
IBD | PRScs.PseudoVal | LDpred2.Inf | 0.130 | 0.096 | 0.034 | 0.0000000 | 0.128 | 0.099 | 0.029 | 7.38e-08 |
IBD | LDpred1.MultiPRS | LDpred2.Inf | 0.131 | 0.096 | 0.035 | 0.0000005 | 0.137 | 0.099 | 0.038 | 3.73e-11 |
IBD | MegaPRS.10FCVal | LDpred2.Inf | 0.148 | 0.096 | 0.052 | 0.0000000 | 0.150 | 0.099 | 0.051 | 3.86e-12 |
IBD | LDpred1.Inf | LDpred2.Inf | 0.100 | 0.096 | 0.004 | 0.0090491 | 0.104 | 0.099 | 0.005 | 8.81e-02 |
IBD | DBSLMM.PseudoVal | LDpred2.Inf | 0.131 | 0.096 | 0.035 | 0.0000000 | 0.135 | 0.099 | 0.036 | 2.78e-05 |
IBD | lassosum.10FCVal | PRScs.MultiPRS | 0.134 | 0.135 | -0.001 | 0.8927320 | 0.136 | 0.137 | -0.002 | 7.13e-01 |
IBD | SBLUP.Inf | PRScs.MultiPRS | 0.098 | 0.135 | -0.038 | 0.0000001 | 0.102 | 0.137 | -0.036 | 1.73e-07 |
IBD | LDpred2.Inf | PRScs.MultiPRS | 0.096 | 0.135 | -0.039 | 0.0000000 | 0.099 | 0.137 | -0.039 | 2.49e-08 |
IBD | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.148 | 0.135 | 0.013 | 0.0000000 | 0.153 | 0.137 | 0.015 | 9.87e-04 |
IBD | lassosum.MultiPRS | PRScs.MultiPRS | 0.142 | 0.135 | 0.007 | 0.0002295 | 0.146 | 0.137 | 0.008 | 3.75e-02 |
IBD | MegaPRS.10FCVal | PRScs.MultiPRS | 0.148 | 0.135 | 0.013 | 0.0599550 | 0.150 | 0.137 | 0.013 | 6.89e-03 |
IBD | LDpred2.MultiPRS | PRScs.MultiPRS | 0.143 | 0.135 | 0.008 | 0.0000143 | 0.148 | 0.137 | 0.010 | 2.96e-03 |
IBD | PRScs.10FCVal | PRScs.MultiPRS | 0.129 | 0.135 | -0.007 | 0.3534759 | 0.133 | 0.137 | -0.005 | 1.19e-01 |
IBD | LDpred2.10FCVal | PRScs.MultiPRS | 0.143 | 0.135 | 0.008 | 0.2693584 | 0.145 | 0.137 | 0.008 | 6.25e-02 |
IBD | pT+clump.MultiPRS | PRScs.MultiPRS | 0.128 | 0.135 | -0.007 | 0.2982032 | 0.137 | 0.137 | 0.000 | 9.43e-01 |
IBD | SBayesR.PseudoVal | PRScs.MultiPRS | 0.122 | 0.135 | -0.013 | 0.0617818 | 0.130 | 0.137 | -0.008 | 2.44e-01 |
IBD | LDpred1.10FCVal | PRScs.MultiPRS | 0.130 | 0.135 | -0.005 | 0.4371993 | 0.134 | 0.137 | -0.003 | 4.20e-01 |
IBD | LDpred2.PseudoVal | PRScs.MultiPRS | 0.100 | 0.135 | -0.036 | 0.0000004 | 0.103 | 0.137 | -0.035 | 8.23e-08 |
IBD | lassosum.PseudoVal | PRScs.MultiPRS | 0.134 | 0.135 | -0.001 | 0.8311110 | 0.137 | 0.137 | -0.001 | 8.65e-01 |
IBD | PRScs.MultiPRS | PRScs.MultiPRS | 0.135 | 0.135 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
IBD | All.MultiPRS | PRScs.MultiPRS | 0.154 | 0.135 | 0.019 | 0.0000000 | 0.158 | 0.137 | 0.020 | 1.06e-05 |
IBD | PRScs.PseudoVal | PRScs.MultiPRS | 0.130 | 0.135 | -0.006 | 0.4281138 | 0.128 | 0.137 | -0.010 | 9.56e-04 |
IBD | LDpred1.MultiPRS | PRScs.MultiPRS | 0.131 | 0.135 | -0.004 | 0.0473898 | 0.137 | 0.137 | 0.000 | 9.29e-01 |
IBD | LDpred1.Inf | PRScs.MultiPRS | 0.100 | 0.135 | -0.035 | 0.0000006 | 0.104 | 0.137 | -0.033 | 1.28e-06 |
IBD | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.148 | 0.135 | 0.013 | 0.0599550 | 0.150 | 0.137 | 0.013 | 6.89e-03 |
IBD | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.131 | 0.135 | -0.005 | 0.5183143 | 0.135 | 0.137 | -0.002 | 5.89e-01 |
IBD | pT+clump.10FCVal | PRScs.MultiPRS | 0.112 | 0.135 | -0.024 | 0.0007242 | 0.112 | 0.137 | -0.025 | 1.37e-03 |
IBD | MegaPRS.10FCVal | PRScs.10FCVal | 0.148 | 0.129 | 0.020 | 0.0000000 | 0.150 | 0.133 | 0.018 | 5.83e-04 |
IBD | LDpred2.MultiPRS | PRScs.10FCVal | 0.143 | 0.129 | 0.014 | 0.0420165 | 0.148 | 0.133 | 0.015 | 7.61e-04 |
IBD | pT+clump.10FCVal | PRScs.10FCVal | 0.112 | 0.129 | -0.017 | 0.0001246 | 0.112 | 0.133 | -0.021 | 2.03e-02 |
IBD | LDpred2.PseudoVal | PRScs.10FCVal | 0.100 | 0.129 | -0.029 | 0.0000000 | 0.103 | 0.133 | -0.030 | 2.87e-09 |
IBD | pT+clump.MultiPRS | PRScs.10FCVal | 0.128 | 0.129 | -0.001 | 0.9129482 | 0.137 | 0.133 | 0.004 | 5.02e-01 |
IBD | MegaPRS.PseudoVal | PRScs.10FCVal | 0.148 | 0.129 | 0.020 | 0.0000000 | 0.150 | 0.133 | 0.018 | 5.83e-04 |
IBD | LDpred1.10FCVal | PRScs.10FCVal | 0.130 | 0.129 | 0.001 | 0.5648285 | 0.134 | 0.133 | 0.001 | 7.01e-01 |
IBD | LDpred1.MultiPRS | PRScs.10FCVal | 0.131 | 0.129 | 0.003 | 0.7128317 | 0.137 | 0.133 | 0.004 | 2.59e-01 |
IBD | lassosum.10FCVal | PRScs.10FCVal | 0.134 | 0.129 | 0.006 | 0.0449491 | 0.136 | 0.133 | 0.003 | 6.32e-01 |
IBD | LDpred1.Inf | PRScs.10FCVal | 0.100 | 0.129 | -0.029 | 0.0000000 | 0.104 | 0.133 | -0.029 | 4.76e-07 |
IBD | lassosum.MultiPRS | PRScs.10FCVal | 0.142 | 0.129 | 0.014 | 0.0504179 | 0.146 | 0.133 | 0.013 | 7.49e-03 |
IBD | MegaPRS.MultiPRS | PRScs.10FCVal | 0.148 | 0.129 | 0.020 | 0.0048621 | 0.153 | 0.133 | 0.020 | 6.55e-05 |
IBD | PRScs.10FCVal | PRScs.10FCVal | 0.129 | 0.129 | 0.000 | 1.0000000 | 0.133 | 0.133 | 0.000 | 1.00e+00 |
IBD | DBSLMM.PseudoVal | PRScs.10FCVal | 0.131 | 0.129 | 0.002 | 0.4921250 | 0.135 | 0.133 | 0.002 | 6.91e-01 |
IBD | PRScs.PseudoVal | PRScs.10FCVal | 0.130 | 0.129 | 0.001 | 0.5157142 | 0.128 | 0.133 | -0.005 | 8.03e-02 |
IBD | PRScs.MultiPRS | PRScs.10FCVal | 0.135 | 0.129 | 0.007 | 0.3534759 | 0.137 | 0.133 | 0.005 | 1.19e-01 |
IBD | SBayesR.PseudoVal | PRScs.10FCVal | 0.122 | 0.129 | -0.007 | 0.0771616 | 0.130 | 0.133 | -0.003 | 6.98e-01 |
IBD | All.MultiPRS | PRScs.10FCVal | 0.154 | 0.129 | 0.025 | 0.0002676 | 0.158 | 0.133 | 0.025 | 2.59e-06 |
IBD | lassosum.PseudoVal | PRScs.10FCVal | 0.134 | 0.129 | 0.005 | 0.1365158 | 0.137 | 0.133 | 0.004 | 5.86e-01 |
IBD | SBLUP.Inf | PRScs.10FCVal | 0.098 | 0.129 | -0.031 | 0.0000000 | 0.102 | 0.133 | -0.031 | 6.60e-09 |
IBD | LDpred2.Inf | PRScs.10FCVal | 0.096 | 0.129 | -0.033 | 0.0000000 | 0.099 | 0.133 | -0.034 | 4.51e-10 |
IBD | LDpred2.10FCVal | PRScs.10FCVal | 0.143 | 0.129 | 0.014 | 0.0000001 | 0.145 | 0.133 | 0.012 | 1.75e-02 |
IBD | All.MultiPRS | PRScs.PseudoVal | 0.154 | 0.130 | 0.025 | 0.0004543 | 0.158 | 0.128 | 0.030 | 1.85e-08 |
IBD | MegaPRS.10FCVal | PRScs.PseudoVal | 0.148 | 0.130 | 0.019 | 0.0000000 | 0.150 | 0.128 | 0.023 | 7.27e-06 |
IBD | LDpred1.10FCVal | PRScs.PseudoVal | 0.130 | 0.130 | 0.000 | 0.9500499 | 0.134 | 0.128 | 0.006 | 7.48e-02 |
IBD | PRScs.PseudoVal | PRScs.PseudoVal | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.128 | 0.128 | 0.000 | 1.00e+00 |
IBD | PRScs.10FCVal | PRScs.PseudoVal | 0.129 | 0.130 | -0.001 | 0.5157142 | 0.133 | 0.128 | 0.005 | 8.03e-02 |
IBD | pT+clump.MultiPRS | PRScs.PseudoVal | 0.128 | 0.130 | -0.002 | 0.8069965 | 0.137 | 0.128 | 0.009 | 1.44e-01 |
IBD | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.131 | 0.130 | 0.001 | 0.7208320 | 0.135 | 0.128 | 0.007 | 2.01e-01 |
IBD | SBayesR.PseudoVal | PRScs.PseudoVal | 0.122 | 0.130 | -0.008 | 0.0459817 | 0.130 | 0.128 | 0.002 | 7.75e-01 |
IBD | lassosum.MultiPRS | PRScs.PseudoVal | 0.142 | 0.130 | 0.013 | 0.0688274 | 0.146 | 0.128 | 0.018 | 2.05e-04 |
IBD | LDpred2.PseudoVal | PRScs.PseudoVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.103 | 0.128 | -0.025 | 6.09e-07 |
IBD | LDpred1.Inf | PRScs.PseudoVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.104 | 0.128 | -0.023 | 2.67e-05 |
IBD | LDpred1.MultiPRS | PRScs.PseudoVal | 0.131 | 0.130 | 0.002 | 0.8158476 | 0.137 | 0.128 | 0.009 | 1.37e-02 |
IBD | SBLUP.Inf | PRScs.PseudoVal | 0.098 | 0.130 | -0.032 | 0.0000000 | 0.102 | 0.128 | -0.026 | 6.93e-07 |
IBD | LDpred2.Inf | PRScs.PseudoVal | 0.096 | 0.130 | -0.034 | 0.0000000 | 0.099 | 0.128 | -0.029 | 7.38e-08 |
IBD | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.148 | 0.130 | 0.019 | 0.0000000 | 0.150 | 0.128 | 0.023 | 7.27e-06 |
IBD | LDpred2.MultiPRS | PRScs.PseudoVal | 0.143 | 0.130 | 0.013 | 0.0577887 | 0.148 | 0.128 | 0.020 | 1.22e-05 |
IBD | lassosum.PseudoVal | PRScs.PseudoVal | 0.134 | 0.130 | 0.004 | 0.2348360 | 0.137 | 0.128 | 0.009 | 2.00e-01 |
IBD | pT+clump.10FCVal | PRScs.PseudoVal | 0.112 | 0.130 | -0.018 | 0.0000632 | 0.112 | 0.128 | -0.016 | 8.35e-02 |
IBD | PRScs.MultiPRS | PRScs.PseudoVal | 0.135 | 0.130 | 0.006 | 0.4281138 | 0.137 | 0.128 | 0.010 | 9.56e-04 |
IBD | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.148 | 0.130 | 0.019 | 0.0074120 | 0.153 | 0.128 | 0.025 | 4.36e-07 |
IBD | lassosum.10FCVal | PRScs.PseudoVal | 0.134 | 0.130 | 0.005 | 0.0995838 | 0.136 | 0.128 | 0.008 | 1.69e-01 |
IBD | LDpred2.10FCVal | PRScs.PseudoVal | 0.143 | 0.130 | 0.013 | 0.0000008 | 0.145 | 0.128 | 0.018 | 1.05e-03 |
IBD | All.MultiPRS | pT+clump.MultiPRS | 0.154 | 0.128 | 0.026 | 0.0001709 | 0.158 | 0.137 | 0.021 | 1.83e-04 |
IBD | PRScs.10FCVal | pT+clump.MultiPRS | 0.129 | 0.128 | 0.001 | 0.9129482 | 0.133 | 0.137 | -0.004 | 5.02e-01 |
IBD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.142 | 0.128 | 0.014 | 0.0384459 | 0.146 | 0.137 | 0.008 | 9.83e-02 |
IBD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.131 | 0.128 | 0.003 | 0.6324120 | 0.137 | 0.137 | 0.000 | 9.93e-01 |
IBD | lassosum.10FCVal | pT+clump.MultiPRS | 0.134 | 0.128 | 0.006 | 0.3660930 | 0.136 | 0.137 | -0.002 | 7.90e-01 |
IBD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.148 | 0.128 | 0.020 | 0.0034933 | 0.150 | 0.137 | 0.013 | 3.32e-02 |
IBD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.148 | 0.128 | 0.020 | 0.0034933 | 0.150 | 0.137 | 0.013 | 3.32e-02 |
IBD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.128 | 0.128 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
IBD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.131 | 0.128 | 0.003 | 0.6963930 | 0.135 | 0.137 | -0.002 | 7.37e-01 |
IBD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.130 | 0.128 | 0.002 | 0.7942422 | 0.134 | 0.137 | -0.003 | 6.46e-01 |
IBD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.143 | 0.128 | 0.015 | 0.0321598 | 0.145 | 0.137 | 0.008 | 1.27e-01 |
IBD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.134 | 0.128 | 0.006 | 0.4096977 | 0.137 | 0.137 | -0.001 | 9.24e-01 |
IBD | LDpred2.Inf | pT+clump.MultiPRS | 0.096 | 0.128 | -0.032 | 0.0000049 | 0.099 | 0.137 | -0.038 | 1.02e-05 |
IBD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.122 | 0.128 | -0.006 | 0.4079347 | 0.130 | 0.137 | -0.007 | 3.00e-01 |
IBD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.128 | -0.028 | 0.0000525 | 0.103 | 0.137 | -0.034 | 3.40e-05 |
IBD | PRScs.MultiPRS | pT+clump.MultiPRS | 0.135 | 0.128 | 0.007 | 0.2982032 | 0.137 | 0.137 | 0.000 | 9.43e-01 |
IBD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.148 | 0.128 | 0.020 | 0.0033725 | 0.153 | 0.137 | 0.015 | 1.05e-02 |
IBD | PRScs.PseudoVal | pT+clump.MultiPRS | 0.130 | 0.128 | 0.002 | 0.8069965 | 0.128 | 0.137 | -0.009 | 1.44e-01 |
IBD | LDpred1.Inf | pT+clump.MultiPRS | 0.100 | 0.128 | -0.028 | 0.0000684 | 0.104 | 0.137 | -0.033 | 9.33e-05 |
IBD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.143 | 0.128 | 0.015 | 0.0318231 | 0.148 | 0.137 | 0.011 | 3.66e-02 |
IBD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.112 | 0.128 | -0.016 | 0.0193071 | 0.112 | 0.137 | -0.025 | 9.88e-07 |
IBD | SBLUP.Inf | pT+clump.MultiPRS | 0.098 | 0.128 | -0.030 | 0.0000138 | 0.102 | 0.137 | -0.036 | 3.59e-05 |
IBD | LDpred2.Inf | pT+clump.10FCVal | 0.096 | 0.112 | -0.016 | 0.0058155 | 0.099 | 0.112 | -0.013 | 2.39e-01 |
IBD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.122 | 0.112 | 0.011 | 0.0041521 | 0.130 | 0.112 | 0.018 | 1.55e-02 |
IBD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.100 | 0.112 | -0.012 | 0.0291055 | 0.103 | 0.112 | -0.009 | 3.94e-01 |
IBD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.131 | 0.112 | 0.019 | 0.0000004 | 0.135 | 0.112 | 0.023 | 2.20e-03 |
IBD | PRScs.PseudoVal | pT+clump.10FCVal | 0.130 | 0.112 | 0.018 | 0.0000632 | 0.128 | 0.112 | 0.016 | 8.35e-02 |
IBD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.148 | 0.112 | 0.037 | 0.0000001 | 0.153 | 0.112 | 0.040 | 7.62e-07 |
IBD | PRScs.10FCVal | pT+clump.10FCVal | 0.129 | 0.112 | 0.017 | 0.0001246 | 0.133 | 0.112 | 0.021 | 2.03e-02 |
IBD | lassosum.10FCVal | pT+clump.10FCVal | 0.134 | 0.112 | 0.023 | 0.0000000 | 0.136 | 0.112 | 0.023 | 3.88e-03 |
IBD | All.MultiPRS | pT+clump.10FCVal | 0.154 | 0.112 | 0.043 | 0.0000000 | 0.158 | 0.112 | 0.046 | 4.83e-10 |
IBD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.128 | 0.112 | 0.016 | 0.0193071 | 0.137 | 0.112 | 0.025 | 9.88e-07 |
IBD | SBLUP.Inf | pT+clump.10FCVal | 0.098 | 0.112 | -0.014 | 0.0137335 | 0.102 | 0.112 | -0.011 | 3.47e-01 |
IBD | LDpred2.10FCVal | pT+clump.10FCVal | 0.143 | 0.112 | 0.031 | 0.0000000 | 0.145 | 0.112 | 0.033 | 7.17e-07 |
IBD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.143 | 0.112 | 0.031 | 0.0000073 | 0.148 | 0.112 | 0.036 | 2.91e-07 |
IBD | PRScs.MultiPRS | pT+clump.10FCVal | 0.135 | 0.112 | 0.024 | 0.0007242 | 0.137 | 0.112 | 0.025 | 1.37e-03 |
IBD | lassosum.MultiPRS | pT+clump.10FCVal | 0.142 | 0.112 | 0.031 | 0.0000106 | 0.146 | 0.112 | 0.033 | 2.99e-06 |
IBD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.148 | 0.112 | 0.037 | 0.0000000 | 0.150 | 0.112 | 0.038 | 5.32e-06 |
IBD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.131 | 0.112 | 0.020 | 0.0048058 | 0.137 | 0.112 | 0.025 | 3.53e-03 |
IBD | lassosum.PseudoVal | pT+clump.10FCVal | 0.134 | 0.112 | 0.022 | 0.0000000 | 0.137 | 0.112 | 0.024 | 2.77e-04 |
IBD | LDpred1.10FCVal | pT+clump.10FCVal | 0.130 | 0.112 | 0.018 | 0.0000474 | 0.134 | 0.112 | 0.022 | 1.27e-02 |
IBD | LDpred1.Inf | pT+clump.10FCVal | 0.100 | 0.112 | -0.011 | 0.0366054 | 0.104 | 0.112 | -0.008 | 4.73e-01 |
IBD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.148 | 0.112 | 0.037 | 0.0000000 | 0.150 | 0.112 | 0.038 | 5.32e-06 |
IBD | pT+clump.10FCVal | pT+clump.10FCVal | 0.112 | 0.112 | 0.000 | 1.0000000 | 0.112 | 0.112 | 0.000 | 1.00e+00 |
IBD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.148 | 0.122 | 0.026 | 0.0001698 | 0.153 | 0.130 | 0.023 | 4.44e-04 |
IBD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.142 | 0.122 | 0.020 | 0.0037579 | 0.146 | 0.130 | 0.016 | 6.98e-03 |
IBD | LDpred1.Inf | SBayesR.PseudoVal | 0.100 | 0.122 | -0.022 | 0.0000052 | 0.104 | 0.130 | -0.026 | 8.42e-03 |
IBD | lassosum.10FCVal | SBayesR.PseudoVal | 0.134 | 0.122 | 0.012 | 0.0003134 | 0.136 | 0.130 | 0.006 | 4.07e-01 |
IBD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.143 | 0.122 | 0.021 | 0.0029271 | 0.148 | 0.130 | 0.018 | 6.92e-04 |
IBD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.148 | 0.122 | 0.026 | 0.0000000 | 0.150 | 0.130 | 0.020 | 2.18e-03 |
IBD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.130 | 0.122 | 0.008 | 0.0313492 | 0.134 | 0.130 | 0.004 | 5.44e-01 |
IBD | LDpred2.Inf | SBayesR.PseudoVal | 0.096 | 0.122 | -0.026 | 0.0000002 | 0.099 | 0.130 | -0.031 | 2.23e-03 |
IBD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.143 | 0.122 | 0.021 | 0.0000000 | 0.145 | 0.130 | 0.015 | 4.05e-03 |
IBD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.134 | 0.122 | 0.012 | 0.0000537 | 0.137 | 0.130 | 0.007 | 2.48e-01 |
IBD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.128 | 0.122 | 0.006 | 0.4079347 | 0.137 | 0.130 | 0.007 | 3.00e-01 |
IBD | SBLUP.Inf | SBayesR.PseudoVal | 0.098 | 0.122 | -0.025 | 0.0000012 | 0.102 | 0.130 | -0.028 | 5.27e-03 |
IBD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.122 | 0.122 | 0.000 | 1.0000000 | 0.130 | 0.130 | 0.000 | 1.00e+00 |
IBD | All.MultiPRS | SBayesR.PseudoVal | 0.154 | 0.122 | 0.032 | 0.0000044 | 0.158 | 0.130 | 0.028 | 2.83e-06 |
IBD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.122 | -0.023 | 0.0000033 | 0.103 | 0.130 | -0.027 | 5.52e-03 |
IBD | PRScs.10FCVal | SBayesR.PseudoVal | 0.129 | 0.122 | 0.007 | 0.0771616 | 0.133 | 0.130 | 0.003 | 6.98e-01 |
IBD | PRScs.MultiPRS | SBayesR.PseudoVal | 0.135 | 0.122 | 0.013 | 0.0617818 | 0.137 | 0.130 | 0.008 | 2.44e-01 |
IBD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.112 | 0.122 | -0.011 | 0.0041521 | 0.112 | 0.130 | -0.018 | 1.55e-02 |
IBD | PRScs.PseudoVal | SBayesR.PseudoVal | 0.130 | 0.122 | 0.008 | 0.0459817 | 0.128 | 0.130 | -0.002 | 7.75e-01 |
IBD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.148 | 0.122 | 0.026 | 0.0000000 | 0.150 | 0.130 | 0.020 | 2.18e-03 |
IBD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.131 | 0.122 | 0.009 | 0.0059531 | 0.135 | 0.130 | 0.005 | 4.09e-01 |
IBD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.131 | 0.122 | 0.009 | 0.1911628 | 0.137 | 0.130 | 0.007 | 2.90e-01 |
IBD | LDpred2.10FCVal | SBLUP.Inf | 0.143 | 0.098 | 0.045 | 0.0000000 | 0.145 | 0.102 | 0.044 | 7.02e-07 |
IBD | SBayesR.PseudoVal | SBLUP.Inf | 0.122 | 0.098 | 0.025 | 0.0000012 | 0.130 | 0.102 | 0.028 | 5.27e-03 |
IBD | All.MultiPRS | SBLUP.Inf | 0.154 | 0.098 | 0.057 | 0.0000000 | 0.158 | 0.102 | 0.056 | 4.67e-12 |
IBD | LDpred2.PseudoVal | SBLUP.Inf | 0.100 | 0.098 | 0.002 | 0.0113250 | 0.103 | 0.102 | 0.001 | 4.08e-01 |
IBD | SBLUP.Inf | SBLUP.Inf | 0.098 | 0.098 | 0.000 | 1.0000000 | 0.102 | 0.102 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | SBLUP.Inf | 0.148 | 0.098 | 0.051 | 0.0000000 | 0.150 | 0.102 | 0.049 | 2.82e-11 |
IBD | MegaPRS.MultiPRS | SBLUP.Inf | 0.148 | 0.098 | 0.051 | 0.0000000 | 0.153 | 0.102 | 0.051 | 4.23e-12 |
IBD | LDpred2.Inf | SBLUP.Inf | 0.096 | 0.098 | -0.002 | 0.0099598 | 0.099 | 0.102 | -0.003 | 3.32e-02 |
IBD | lassosum.PseudoVal | SBLUP.Inf | 0.134 | 0.098 | 0.036 | 0.0000000 | 0.137 | 0.102 | 0.035 | 5.22e-04 |
IBD | pT+clump.MultiPRS | SBLUP.Inf | 0.128 | 0.098 | 0.030 | 0.0000138 | 0.137 | 0.102 | 0.036 | 3.59e-05 |
IBD | lassosum.MultiPRS | SBLUP.Inf | 0.142 | 0.098 | 0.045 | 0.0000000 | 0.146 | 0.102 | 0.044 | 2.46e-08 |
IBD | DBSLMM.PseudoVal | SBLUP.Inf | 0.131 | 0.098 | 0.033 | 0.0000000 | 0.135 | 0.102 | 0.034 | 1.06e-04 |
IBD | lassosum.10FCVal | SBLUP.Inf | 0.134 | 0.098 | 0.037 | 0.0000000 | 0.136 | 0.102 | 0.034 | 5.12e-05 |
IBD | pT+clump.10FCVal | SBLUP.Inf | 0.112 | 0.098 | 0.014 | 0.0137335 | 0.112 | 0.102 | 0.011 | 3.47e-01 |
IBD | MegaPRS.10FCVal | SBLUP.Inf | 0.148 | 0.098 | 0.051 | 0.0000000 | 0.150 | 0.102 | 0.049 | 2.82e-11 |
IBD | LDpred1.Inf | SBLUP.Inf | 0.100 | 0.098 | 0.003 | 0.1141277 | 0.104 | 0.102 | 0.003 | 3.85e-01 |
IBD | LDpred1.MultiPRS | SBLUP.Inf | 0.131 | 0.098 | 0.034 | 0.0000016 | 0.137 | 0.102 | 0.036 | 5.31e-10 |
IBD | LDpred2.MultiPRS | SBLUP.Inf | 0.143 | 0.098 | 0.045 | 0.0000000 | 0.148 | 0.102 | 0.046 | 7.79e-09 |
IBD | PRScs.10FCVal | SBLUP.Inf | 0.129 | 0.098 | 0.031 | 0.0000000 | 0.133 | 0.102 | 0.031 | 6.60e-09 |
IBD | PRScs.PseudoVal | SBLUP.Inf | 0.130 | 0.098 | 0.032 | 0.0000000 | 0.128 | 0.102 | 0.026 | 6.93e-07 |
IBD | PRScs.MultiPRS | SBLUP.Inf | 0.135 | 0.098 | 0.038 | 0.0000001 | 0.137 | 0.102 | 0.036 | 1.73e-07 |
IBD | LDpred1.10FCVal | SBLUP.Inf | 0.130 | 0.098 | 0.032 | 0.0000000 | 0.134 | 0.102 | 0.033 | 3.45e-10 |
MultiScler | DBSLMM.PseudoVal | All.MultiPRS | 0.090 | 0.138 | -0.048 | 0.0000000 | 0.085 | 0.123 | -0.038 | 7.86e-06 |
MultiScler | SBayesR.PseudoVal | All.MultiPRS | 0.100 | 0.138 | -0.038 | 0.0000000 | 0.084 | 0.123 | -0.039 | 9.58e-07 |
MultiScler | lassosum.PseudoVal | All.MultiPRS | 0.100 | 0.138 | -0.038 | 0.0000001 | 0.106 | 0.123 | -0.017 | 1.36e-02 |
MultiScler | LDpred2.10FCVal | All.MultiPRS | 0.112 | 0.138 | -0.026 | 0.0001720 | 0.101 | 0.123 | -0.022 | 2.06e-04 |
MultiScler | MegaPRS.MultiPRS | All.MultiPRS | 0.129 | 0.138 | -0.009 | 0.0000020 | 0.118 | 0.123 | -0.005 | 1.85e-01 |
MultiScler | PRScs.10FCVal | All.MultiPRS | 0.118 | 0.138 | -0.020 | 0.0036013 | 0.104 | 0.123 | -0.019 | 4.02e-03 |
MultiScler | LDpred2.Inf | All.MultiPRS | 0.092 | 0.138 | -0.046 | 0.0000000 | 0.078 | 0.123 | -0.045 | 8.25e-07 |
MultiScler | MegaPRS.10FCVal | All.MultiPRS | 0.130 | 0.138 | -0.008 | 0.2512167 | 0.117 | 0.123 | -0.006 | 1.64e-01 |
MultiScler | pT+clump.MultiPRS | All.MultiPRS | 0.114 | 0.138 | -0.024 | 0.0006880 | 0.116 | 0.123 | -0.007 | 2.03e-01 |
MultiScler | lassosum.10FCVal | All.MultiPRS | 0.115 | 0.138 | -0.023 | 0.0010989 | 0.102 | 0.123 | -0.021 | 1.50e-03 |
MultiScler | PRScs.MultiPRS | All.MultiPRS | 0.118 | 0.138 | -0.020 | 0.0000000 | 0.108 | 0.123 | -0.015 | 1.14e-02 |
MultiScler | LDpred1.Inf | All.MultiPRS | 0.089 | 0.138 | -0.049 | 0.0000000 | 0.081 | 0.123 | -0.042 | 4.67e-07 |
MultiScler | MegaPRS.PseudoVal | All.MultiPRS | 0.110 | 0.138 | -0.028 | 0.0000638 | 0.110 | 0.123 | -0.013 | 2.24e-02 |
MultiScler | PRScs.PseudoVal | All.MultiPRS | 0.103 | 0.138 | -0.035 | 0.0000006 | 0.101 | 0.123 | -0.022 | 1.71e-03 |
MultiScler | All.MultiPRS | All.MultiPRS | 0.138 | 0.138 | 0.000 | 1.0000000 | 0.123 | 0.123 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.MultiPRS | All.MultiPRS | 0.130 | 0.138 | -0.008 | 0.0000078 | 0.117 | 0.123 | -0.006 | 9.75e-02 |
MultiScler | LDpred1.MultiPRS | All.MultiPRS | 0.103 | 0.138 | -0.035 | 0.0000000 | 0.096 | 0.123 | -0.027 | 1.04e-04 |
MultiScler | pT+clump.10FCVal | All.MultiPRS | 0.090 | 0.138 | -0.048 | 0.0000000 | 0.092 | 0.123 | -0.031 | 2.96e-04 |
MultiScler | lassosum.MultiPRS | All.MultiPRS | 0.126 | 0.138 | -0.012 | 0.0000001 | 0.124 | 0.123 | 0.001 | 7.85e-01 |
MultiScler | LDpred2.PseudoVal | All.MultiPRS | 0.101 | 0.138 | -0.037 | 0.0000001 | 0.088 | 0.123 | -0.035 | 2.60e-05 |
MultiScler | LDpred1.10FCVal | All.MultiPRS | 0.103 | 0.138 | -0.035 | 0.0000005 | 0.095 | 0.123 | -0.028 | 5.30e-05 |
MultiScler | SBLUP.Inf | All.MultiPRS | 0.093 | 0.138 | -0.045 | 0.0000000 | 0.079 | 0.123 | -0.044 | 9.32e-07 |
MultiScler | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.103 | 0.090 | 0.013 | 0.0000000 | 0.101 | 0.085 | 0.017 | 1.79e-04 |
MultiScler | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.090 | 0.010 | 0.1223998 | 0.084 | 0.085 | -0.001 | 9.40e-01 |
MultiScler | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.130 | 0.090 | 0.040 | 0.0000000 | 0.117 | 0.085 | 0.032 | 1.71e-04 |
MultiScler | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.118 | 0.090 | 0.028 | 0.0000580 | 0.108 | 0.085 | 0.023 | 4.38e-04 |
MultiScler | LDpred1.Inf | DBSLMM.PseudoVal | 0.089 | 0.090 | -0.001 | 0.7872858 | 0.081 | 0.085 | -0.004 | 7.01e-01 |
MultiScler | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.114 | 0.090 | 0.024 | 0.0005002 | 0.116 | 0.085 | 0.031 | 3.13e-04 |
MultiScler | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.112 | 0.090 | 0.022 | 0.0000000 | 0.101 | 0.085 | 0.016 | 6.56e-03 |
MultiScler | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.090 | 0.010 | 0.0000126 | 0.106 | 0.085 | 0.021 | 1.02e-05 |
MultiScler | LDpred2.Inf | DBSLMM.PseudoVal | 0.092 | 0.090 | 0.002 | 0.7637687 | 0.078 | 0.085 | -0.006 | 6.18e-01 |
MultiScler | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.110 | 0.090 | 0.020 | 0.0000000 | 0.110 | 0.085 | 0.025 | 9.67e-05 |
MultiScler | All.MultiPRS | DBSLMM.PseudoVal | 0.138 | 0.090 | 0.048 | 0.0000000 | 0.123 | 0.085 | 0.038 | 7.86e-06 |
MultiScler | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.126 | 0.090 | 0.036 | 0.0000003 | 0.124 | 0.085 | 0.040 | 2.57e-07 |
MultiScler | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.101 | 0.090 | 0.011 | 0.0666964 | 0.088 | 0.085 | 0.003 | 7.77e-01 |
MultiScler | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.103 | 0.090 | 0.013 | 0.0698089 | 0.096 | 0.085 | 0.011 | 1.24e-01 |
MultiScler | SBLUP.Inf | DBSLMM.PseudoVal | 0.093 | 0.090 | 0.003 | 0.6581726 | 0.079 | 0.085 | -0.006 | 6.47e-01 |
MultiScler | lassosum.10FCVal | DBSLMM.PseudoVal | 0.115 | 0.090 | 0.025 | 0.0000004 | 0.102 | 0.085 | 0.017 | 7.84e-02 |
MultiScler | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.090 | 0.090 | 0.000 | 1.0000000 | 0.085 | 0.085 | 0.000 | 1.00e+00 |
MultiScler | PRScs.10FCVal | DBSLMM.PseudoVal | 0.118 | 0.090 | 0.028 | 0.0000000 | 0.104 | 0.085 | 0.019 | 5.58e-02 |
MultiScler | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.103 | 0.090 | 0.013 | 0.0003383 | 0.095 | 0.085 | 0.010 | 1.53e-01 |
MultiScler | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.090 | 0.090 | 0.000 | 0.9474964 | 0.092 | 0.085 | 0.007 | 3.21e-01 |
MultiScler | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.129 | 0.090 | 0.039 | 0.0000000 | 0.118 | 0.085 | 0.034 | 1.57e-05 |
MultiScler | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.130 | 0.090 | 0.040 | 0.0000000 | 0.117 | 0.085 | 0.033 | 1.23e-04 |
MultiScler | LDpred2.MultiPRS | lassosum.MultiPRS | 0.130 | 0.126 | 0.004 | 0.1199151 | 0.117 | 0.124 | -0.007 | 1.25e-01 |
MultiScler | LDpred2.PseudoVal | lassosum.MultiPRS | 0.101 | 0.126 | -0.025 | 0.0003716 | 0.088 | 0.124 | -0.036 | 9.10e-07 |
MultiScler | PRScs.MultiPRS | lassosum.MultiPRS | 0.118 | 0.126 | -0.008 | 0.0000413 | 0.108 | 0.124 | -0.016 | 1.70e-05 |
MultiScler | LDpred2.Inf | lassosum.MultiPRS | 0.092 | 0.126 | -0.034 | 0.0000013 | 0.078 | 0.124 | -0.046 | 3.23e-08 |
MultiScler | PRScs.PseudoVal | lassosum.MultiPRS | 0.103 | 0.126 | -0.023 | 0.0011072 | 0.101 | 0.124 | -0.023 | 9.43e-06 |
MultiScler | pT+clump.MultiPRS | lassosum.MultiPRS | 0.114 | 0.126 | -0.012 | 0.0968718 | 0.116 | 0.124 | -0.009 | 1.30e-01 |
MultiScler | PRScs.10FCVal | lassosum.MultiPRS | 0.118 | 0.126 | -0.008 | 0.2358029 | 0.104 | 0.124 | -0.021 | 8.05e-05 |
MultiScler | LDpred2.10FCVal | lassosum.MultiPRS | 0.112 | 0.126 | -0.014 | 0.0427938 | 0.101 | 0.124 | -0.023 | 2.36e-04 |
MultiScler | pT+clump.10FCVal | lassosum.MultiPRS | 0.090 | 0.126 | -0.036 | 0.0000003 | 0.092 | 0.124 | -0.033 | 3.14e-04 |
MultiScler | SBayesR.PseudoVal | lassosum.MultiPRS | 0.100 | 0.126 | -0.026 | 0.0001641 | 0.084 | 0.124 | -0.041 | 7.10e-06 |
MultiScler | lassosum.10FCVal | lassosum.MultiPRS | 0.115 | 0.126 | -0.011 | 0.1243979 | 0.102 | 0.124 | -0.022 | 1.99e-06 |
MultiScler | All.MultiPRS | lassosum.MultiPRS | 0.138 | 0.126 | 0.012 | 0.0000001 | 0.123 | 0.124 | -0.001 | 7.85e-01 |
MultiScler | SBLUP.Inf | lassosum.MultiPRS | 0.093 | 0.126 | -0.033 | 0.0000024 | 0.079 | 0.124 | -0.045 | 3.28e-08 |
MultiScler | LDpred1.MultiPRS | lassosum.MultiPRS | 0.103 | 0.126 | -0.023 | 0.0000000 | 0.096 | 0.124 | -0.028 | 1.65e-06 |
MultiScler | MegaPRS.10FCVal | lassosum.MultiPRS | 0.130 | 0.126 | 0.004 | 0.5576237 | 0.117 | 0.124 | -0.007 | 1.91e-01 |
MultiScler | lassosum.MultiPRS | lassosum.MultiPRS | 0.126 | 0.126 | 0.000 | 1.0000000 | 0.124 | 0.124 | 0.000 | 1.00e+00 |
MultiScler | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.090 | 0.126 | -0.036 | 0.0000003 | 0.085 | 0.124 | -0.040 | 2.57e-07 |
MultiScler | LDpred1.10FCVal | lassosum.MultiPRS | 0.103 | 0.126 | -0.023 | 0.0009319 | 0.095 | 0.124 | -0.029 | 3.53e-07 |
MultiScler | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.110 | 0.126 | -0.016 | 0.0231045 | 0.110 | 0.124 | -0.014 | 1.96e-02 |
MultiScler | LDpred1.Inf | lassosum.MultiPRS | 0.089 | 0.126 | -0.037 | 0.0000001 | 0.081 | 0.124 | -0.044 | 6.13e-09 |
MultiScler | lassosum.PseudoVal | lassosum.MultiPRS | 0.100 | 0.126 | -0.026 | 0.0002256 | 0.106 | 0.124 | -0.019 | 3.38e-04 |
MultiScler | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.129 | 0.126 | 0.003 | 0.1970632 | 0.118 | 0.124 | -0.006 | 2.08e-01 |
MultiScler | MegaPRS.10FCVal | lassosum.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.117 | 0.106 | 0.012 | 7.99e-02 |
MultiScler | PRScs.MultiPRS | lassosum.PseudoVal | 0.118 | 0.100 | 0.018 | 0.0098967 | 0.108 | 0.106 | 0.002 | 6.47e-01 |
MultiScler | LDpred1.Inf | lassosum.PseudoVal | 0.089 | 0.100 | -0.012 | 0.0162700 | 0.081 | 0.106 | -0.025 | 9.08e-03 |
MultiScler | pT+clump.MultiPRS | lassosum.PseudoVal | 0.114 | 0.100 | 0.014 | 0.0423648 | 0.116 | 0.106 | 0.010 | 2.05e-01 |
MultiScler | All.MultiPRS | lassosum.PseudoVal | 0.138 | 0.100 | 0.038 | 0.0000001 | 0.123 | 0.106 | 0.017 | 1.36e-02 |
MultiScler | LDpred2.MultiPRS | lassosum.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000234 | 0.117 | 0.106 | 0.011 | 1.10e-01 |
MultiScler | SBayesR.PseudoVal | lassosum.PseudoVal | 0.100 | 0.100 | -0.001 | 0.9267456 | 0.084 | 0.106 | -0.022 | 5.37e-02 |
MultiScler | lassosum.MultiPRS | lassosum.PseudoVal | 0.126 | 0.100 | 0.026 | 0.0002256 | 0.124 | 0.106 | 0.019 | 3.38e-04 |
MultiScler | LDpred2.PseudoVal | lassosum.PseudoVal | 0.101 | 0.100 | 0.001 | 0.8774149 | 0.088 | 0.106 | -0.018 | 1.01e-01 |
MultiScler | LDpred1.10FCVal | lassosum.PseudoVal | 0.103 | 0.100 | 0.003 | 0.3965544 | 0.095 | 0.106 | -0.011 | 7.21e-02 |
MultiScler | SBLUP.Inf | lassosum.PseudoVal | 0.093 | 0.100 | -0.007 | 0.2029738 | 0.079 | 0.106 | -0.027 | 2.03e-02 |
MultiScler | lassosum.10FCVal | lassosum.PseudoVal | 0.115 | 0.100 | 0.015 | 0.0001193 | 0.102 | 0.106 | -0.004 | 6.45e-01 |
MultiScler | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.090 | 0.100 | -0.010 | 0.0000126 | 0.085 | 0.106 | -0.021 | 1.02e-05 |
MultiScler | LDpred2.10FCVal | lassosum.PseudoVal | 0.112 | 0.100 | 0.012 | 0.0000053 | 0.101 | 0.106 | -0.005 | 3.48e-01 |
MultiScler | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.110 | 0.100 | 0.010 | 0.0001038 | 0.110 | 0.106 | 0.004 | 3.76e-01 |
MultiScler | PRScs.PseudoVal | lassosum.PseudoVal | 0.103 | 0.100 | 0.003 | 0.0912395 | 0.101 | 0.106 | -0.004 | 1.99e-01 |
MultiScler | lassosum.PseudoVal | lassosum.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.106 | 0.106 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.Inf | lassosum.PseudoVal | 0.092 | 0.100 | -0.008 | 0.1566420 | 0.078 | 0.106 | -0.027 | 1.88e-02 |
MultiScler | LDpred1.MultiPRS | lassosum.PseudoVal | 0.103 | 0.100 | 0.003 | 0.7101581 | 0.096 | 0.106 | -0.010 | 1.26e-01 |
MultiScler | pT+clump.10FCVal | lassosum.PseudoVal | 0.090 | 0.100 | -0.010 | 0.0175439 | 0.092 | 0.106 | -0.014 | 9.87e-02 |
MultiScler | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.129 | 0.100 | 0.029 | 0.0000346 | 0.118 | 0.106 | 0.013 | 3.29e-02 |
MultiScler | PRScs.10FCVal | lassosum.PseudoVal | 0.118 | 0.100 | 0.017 | 0.0000341 | 0.104 | 0.106 | -0.002 | 8.12e-01 |
MultiScler | MegaPRS.MultiPRS | lassosum.10FCVal | 0.129 | 0.115 | 0.014 | 0.0467220 | 0.118 | 0.102 | 0.016 | 1.13e-02 |
MultiScler | PRScs.10FCVal | lassosum.10FCVal | 0.118 | 0.115 | 0.002 | 0.2180316 | 0.104 | 0.102 | 0.002 | 6.91e-01 |
MultiScler | lassosum.MultiPRS | lassosum.10FCVal | 0.126 | 0.115 | 0.011 | 0.1243979 | 0.124 | 0.102 | 0.022 | 1.99e-06 |
MultiScler | LDpred2.PseudoVal | lassosum.10FCVal | 0.101 | 0.115 | -0.014 | 0.0000051 | 0.088 | 0.102 | -0.014 | 2.54e-02 |
MultiScler | MegaPRS.10FCVal | lassosum.10FCVal | 0.130 | 0.115 | 0.015 | 0.0000027 | 0.117 | 0.102 | 0.015 | 1.42e-02 |
MultiScler | pT+clump.MultiPRS | lassosum.10FCVal | 0.114 | 0.115 | -0.001 | 0.9052702 | 0.116 | 0.102 | 0.014 | 6.52e-02 |
MultiScler | lassosum.10FCVal | lassosum.10FCVal | 0.115 | 0.115 | 0.000 | 1.0000000 | 0.102 | 0.102 | 0.000 | 1.00e+00 |
MultiScler | PRScs.MultiPRS | lassosum.10FCVal | 0.118 | 0.115 | 0.003 | 0.6664209 | 0.108 | 0.102 | 0.006 | 2.50e-01 |
MultiScler | LDpred1.Inf | lassosum.10FCVal | 0.089 | 0.115 | -0.027 | 0.0000000 | 0.081 | 0.102 | -0.021 | 2.99e-03 |
MultiScler | SBayesR.PseudoVal | lassosum.10FCVal | 0.100 | 0.115 | -0.016 | 0.0013479 | 0.084 | 0.102 | -0.018 | 5.88e-02 |
MultiScler | PRScs.PseudoVal | lassosum.10FCVal | 0.103 | 0.115 | -0.012 | 0.0011886 | 0.101 | 0.102 | -0.001 | 9.09e-01 |
MultiScler | All.MultiPRS | lassosum.10FCVal | 0.138 | 0.115 | 0.023 | 0.0010989 | 0.123 | 0.102 | 0.021 | 1.50e-03 |
MultiScler | LDpred2.MultiPRS | lassosum.10FCVal | 0.130 | 0.115 | 0.015 | 0.0374718 | 0.117 | 0.102 | 0.015 | 2.62e-02 |
MultiScler | LDpred1.MultiPRS | lassosum.10FCVal | 0.103 | 0.115 | -0.012 | 0.0769839 | 0.096 | 0.102 | -0.006 | 3.93e-01 |
MultiScler | pT+clump.10FCVal | lassosum.10FCVal | 0.090 | 0.115 | -0.025 | 0.0000056 | 0.092 | 0.102 | -0.011 | 3.44e-01 |
MultiScler | DBSLMM.PseudoVal | lassosum.10FCVal | 0.090 | 0.115 | -0.025 | 0.0000004 | 0.085 | 0.102 | -0.017 | 7.84e-02 |
MultiScler | LDpred1.10FCVal | lassosum.10FCVal | 0.103 | 0.115 | -0.012 | 0.0003877 | 0.095 | 0.102 | -0.007 | 2.99e-01 |
MultiScler | SBLUP.Inf | lassosum.10FCVal | 0.093 | 0.115 | -0.022 | 0.0000000 | 0.079 | 0.102 | -0.023 | 9.70e-04 |
MultiScler | lassosum.PseudoVal | lassosum.10FCVal | 0.100 | 0.115 | -0.015 | 0.0001193 | 0.106 | 0.102 | 0.004 | 6.45e-01 |
MultiScler | LDpred2.10FCVal | lassosum.10FCVal | 0.112 | 0.115 | -0.003 | 0.4523826 | 0.101 | 0.102 | -0.001 | 9.02e-01 |
MultiScler | MegaPRS.PseudoVal | lassosum.10FCVal | 0.110 | 0.115 | -0.005 | 0.2292474 | 0.110 | 0.102 | 0.008 | 3.32e-01 |
MultiScler | LDpred2.Inf | lassosum.10FCVal | 0.092 | 0.115 | -0.023 | 0.0000000 | 0.078 | 0.102 | -0.024 | 8.32e-04 |
MultiScler | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.129 | -0.029 | 0.0000245 | 0.084 | 0.118 | -0.034 | 3.91e-04 |
MultiScler | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.114 | 0.129 | -0.015 | 0.0342971 | 0.116 | 0.118 | -0.003 | 7.11e-01 |
MultiScler | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.112 | 0.129 | -0.017 | 0.0131547 | 0.101 | 0.118 | -0.017 | 4.02e-03 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.110 | 0.129 | -0.019 | 0.0064665 | 0.110 | 0.118 | -0.008 | 8.36e-02 |
MultiScler | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.103 | 0.129 | -0.026 | 0.0002022 | 0.101 | 0.118 | -0.017 | 3.50e-03 |
MultiScler | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.118 | 0.129 | -0.011 | 0.0000199 | 0.108 | 0.118 | -0.010 | 4.41e-02 |
MultiScler | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.130 | 0.129 | 0.001 | 0.8266524 | 0.117 | 0.118 | -0.001 | 8.17e-01 |
MultiScler | LDpred2.Inf | MegaPRS.MultiPRS | 0.092 | 0.129 | -0.037 | 0.0000001 | 0.078 | 0.118 | -0.040 | 2.95e-05 |
MultiScler | SBLUP.Inf | MegaPRS.MultiPRS | 0.093 | 0.129 | -0.036 | 0.0000002 | 0.079 | 0.118 | -0.039 | 3.27e-05 |
MultiScler | All.MultiPRS | MegaPRS.MultiPRS | 0.138 | 0.129 | 0.009 | 0.0000020 | 0.123 | 0.118 | 0.005 | 1.85e-01 |
MultiScler | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.101 | 0.129 | -0.028 | 0.0000612 | 0.088 | 0.118 | -0.030 | 4.77e-04 |
MultiScler | PRScs.10FCVal | MegaPRS.MultiPRS | 0.118 | 0.129 | -0.011 | 0.1014177 | 0.104 | 0.118 | -0.015 | 2.83e-02 |
MultiScler | LDpred1.Inf | MegaPRS.MultiPRS | 0.089 | 0.129 | -0.041 | 0.0000000 | 0.081 | 0.118 | -0.038 | 5.00e-06 |
MultiScler | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.090 | 0.129 | -0.039 | 0.0000000 | 0.092 | 0.118 | -0.027 | 5.16e-03 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.090 | 0.129 | -0.039 | 0.0000000 | 0.085 | 0.118 | -0.034 | 1.57e-05 |
MultiScler | lassosum.10FCVal | MegaPRS.MultiPRS | 0.115 | 0.129 | -0.014 | 0.0467220 | 0.102 | 0.118 | -0.016 | 1.13e-02 |
MultiScler | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.129 | -0.029 | 0.0000346 | 0.106 | 0.118 | -0.013 | 3.29e-02 |
MultiScler | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.130 | 0.129 | 0.001 | 0.8961536 | 0.117 | 0.118 | -0.001 | 6.56e-01 |
MultiScler | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.103 | 0.129 | -0.026 | 0.0000000 | 0.096 | 0.118 | -0.022 | 4.46e-04 |
MultiScler | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.126 | 0.129 | -0.003 | 0.1970632 | 0.124 | 0.118 | 0.006 | 2.08e-01 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.129 | 0.129 | 0.000 | 1.0000000 | 0.118 | 0.118 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.103 | 0.129 | -0.026 | 0.0001666 | 0.095 | 0.118 | -0.023 | 1.51e-04 |
MultiScler | LDpred2.Inf | MegaPRS.PseudoVal | 0.092 | 0.110 | -0.018 | 0.0016306 | 0.078 | 0.110 | -0.032 | 5.37e-03 |
MultiScler | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.112 | 0.110 | 0.002 | 0.4528299 | 0.101 | 0.110 | -0.009 | 4.59e-02 |
MultiScler | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.103 | 0.110 | -0.007 | 0.0155506 | 0.101 | 0.110 | -0.009 | 1.14e-01 |
MultiScler | All.MultiPRS | MegaPRS.PseudoVal | 0.138 | 0.110 | 0.028 | 0.0000638 | 0.123 | 0.110 | 0.013 | 2.24e-02 |
MultiScler | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.130 | 0.110 | 0.020 | 0.0048961 | 0.117 | 0.110 | 0.007 | 2.59e-01 |
MultiScler | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.110 | -0.010 | 0.0386810 | 0.084 | 0.110 | -0.026 | 9.37e-03 |
MultiScler | PRScs.10FCVal | MegaPRS.PseudoVal | 0.118 | 0.110 | 0.008 | 0.0893487 | 0.104 | 0.110 | -0.006 | 4.56e-01 |
MultiScler | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.090 | 0.110 | -0.020 | 0.0000015 | 0.092 | 0.110 | -0.019 | 2.90e-02 |
MultiScler | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.118 | 0.110 | 0.008 | 0.2449863 | 0.108 | 0.110 | -0.002 | 7.36e-01 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.129 | 0.110 | 0.019 | 0.0064665 | 0.118 | 0.110 | 0.008 | 8.36e-02 |
MultiScler | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.114 | 0.110 | 0.004 | 0.5401179 | 0.116 | 0.110 | 0.005 | 4.72e-01 |
MultiScler | SBLUP.Inf | MegaPRS.PseudoVal | 0.093 | 0.110 | -0.017 | 0.0025812 | 0.079 | 0.110 | -0.031 | 5.93e-03 |
MultiScler | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.110 | -0.010 | 0.0001038 | 0.106 | 0.110 | -0.004 | 3.76e-01 |
MultiScler | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.101 | 0.110 | -0.009 | 0.0891969 | 0.088 | 0.110 | -0.022 | 3.77e-02 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.110 | 0.110 | 0.000 | 1.0000000 | 0.110 | 0.110 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.Inf | MegaPRS.PseudoVal | 0.089 | 0.110 | -0.022 | 0.0000143 | 0.081 | 0.110 | -0.030 | 2.46e-03 |
MultiScler | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.103 | 0.110 | -0.007 | 0.2977059 | 0.096 | 0.110 | -0.014 | 4.65e-02 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.090 | 0.110 | -0.020 | 0.0000000 | 0.085 | 0.110 | -0.025 | 9.67e-05 |
MultiScler | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.126 | 0.110 | 0.016 | 0.0231045 | 0.124 | 0.110 | 0.014 | 1.96e-02 |
MultiScler | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.130 | 0.110 | 0.020 | 0.0000000 | 0.117 | 0.110 | 0.007 | 2.21e-01 |
MultiScler | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.103 | 0.110 | -0.007 | 0.0390139 | 0.095 | 0.110 | -0.015 | 2.77e-02 |
MultiScler | lassosum.10FCVal | MegaPRS.PseudoVal | 0.115 | 0.110 | 0.005 | 0.2292474 | 0.102 | 0.110 | -0.008 | 3.32e-01 |
MultiScler | PRScs.10FCVal | MegaPRS.10FCVal | 0.118 | 0.130 | -0.012 | 0.0001923 | 0.104 | 0.117 | -0.014 | 3.45e-02 |
MultiScler | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.114 | 0.130 | -0.016 | 0.0245592 | 0.116 | 0.117 | -0.002 | 8.02e-01 |
MultiScler | LDpred2.10FCVal | MegaPRS.10FCVal | 0.112 | 0.130 | -0.018 | 0.0000002 | 0.101 | 0.117 | -0.016 | 1.72e-02 |
MultiScler | PRScs.MultiPRS | MegaPRS.10FCVal | 0.118 | 0.130 | -0.012 | 0.0899066 | 0.108 | 0.117 | -0.009 | 8.91e-02 |
MultiScler | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.130 | 0.130 | 0.000 | 0.9661934 | 0.117 | 0.117 | 0.000 | 9.39e-01 |
MultiScler | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.084 | 0.117 | -0.034 | 5.75e-04 |
MultiScler | pT+clump.10FCVal | MegaPRS.10FCVal | 0.090 | 0.130 | -0.040 | 0.0000000 | 0.092 | 0.117 | -0.026 | 9.65e-03 |
MultiScler | LDpred2.Inf | MegaPRS.10FCVal | 0.092 | 0.130 | -0.038 | 0.0000000 | 0.078 | 0.117 | -0.039 | 2.01e-05 |
MultiScler | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.101 | 0.130 | -0.029 | 0.0000000 | 0.088 | 0.117 | -0.029 | 4.05e-04 |
MultiScler | All.MultiPRS | MegaPRS.10FCVal | 0.138 | 0.130 | 0.008 | 0.2512167 | 0.123 | 0.117 | 0.006 | 1.64e-01 |
MultiScler | SBLUP.Inf | MegaPRS.10FCVal | 0.093 | 0.130 | -0.037 | 0.0000000 | 0.079 | 0.117 | -0.039 | 2.25e-05 |
MultiScler | PRScs.PseudoVal | MegaPRS.10FCVal | 0.103 | 0.130 | -0.027 | 0.0000000 | 0.101 | 0.117 | -0.016 | 1.38e-02 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.090 | 0.130 | -0.040 | 0.0000000 | 0.085 | 0.117 | -0.033 | 1.23e-04 |
MultiScler | lassosum.MultiPRS | MegaPRS.10FCVal | 0.126 | 0.130 | -0.004 | 0.5576237 | 0.124 | 0.117 | 0.007 | 1.91e-01 |
MultiScler | LDpred1.Inf | MegaPRS.10FCVal | 0.089 | 0.130 | -0.041 | 0.0000000 | 0.081 | 0.117 | -0.037 | 6.32e-06 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.129 | 0.130 | -0.001 | 0.8961536 | 0.118 | 0.117 | 0.001 | 6.56e-01 |
MultiScler | lassosum.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.130 | -0.030 | 0.0000000 | 0.106 | 0.117 | -0.012 | 7.99e-02 |
MultiScler | lassosum.10FCVal | MegaPRS.10FCVal | 0.115 | 0.130 | -0.015 | 0.0000027 | 0.102 | 0.117 | -0.015 | 1.42e-02 |
MultiScler | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.117 | 0.117 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.110 | 0.130 | -0.020 | 0.0000000 | 0.110 | 0.117 | -0.007 | 2.21e-01 |
MultiScler | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.103 | 0.130 | -0.027 | 0.0000958 | 0.096 | 0.117 | -0.021 | 1.39e-03 |
MultiScler | LDpred1.10FCVal | MegaPRS.10FCVal | 0.103 | 0.130 | -0.027 | 0.0000000 | 0.095 | 0.117 | -0.023 | 5.94e-04 |
MultiScler | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.130 | 0.103 | 0.027 | 0.0000000 | 0.117 | 0.096 | 0.021 | 1.14e-03 |
MultiScler | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.101 | 0.103 | -0.002 | 0.7992837 | 0.088 | 0.096 | -0.008 | 3.44e-01 |
MultiScler | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.103 | -0.003 | 0.6548315 | 0.084 | 0.096 | -0.012 | 2.59e-01 |
MultiScler | LDpred1.Inf | LDpred1.MultiPRS | 0.089 | 0.103 | -0.014 | 0.0436865 | 0.081 | 0.096 | -0.016 | 3.80e-03 |
MultiScler | PRScs.PseudoVal | LDpred1.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9634234 | 0.101 | 0.096 | 0.005 | 3.37e-01 |
MultiScler | PRScs.MultiPRS | LDpred1.MultiPRS | 0.118 | 0.103 | 0.015 | 0.0000000 | 0.108 | 0.096 | 0.012 | 1.43e-02 |
MultiScler | LDpred2.Inf | LDpred1.MultiPRS | 0.092 | 0.103 | -0.011 | 0.1231101 | 0.078 | 0.096 | -0.018 | 5.93e-02 |
MultiScler | LDpred2.10FCVal | LDpred1.MultiPRS | 0.112 | 0.103 | 0.009 | 0.1969151 | 0.101 | 0.096 | 0.005 | 4.71e-01 |
MultiScler | pT+clump.10FCVal | LDpred1.MultiPRS | 0.090 | 0.103 | -0.013 | 0.0750744 | 0.092 | 0.096 | -0.005 | 6.48e-01 |
MultiScler | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.110 | 0.103 | 0.007 | 0.2977059 | 0.110 | 0.096 | 0.014 | 4.65e-02 |
MultiScler | PRScs.10FCVal | LDpred1.MultiPRS | 0.118 | 0.103 | 0.015 | 0.0341456 | 0.104 | 0.096 | 0.008 | 2.57e-01 |
MultiScler | All.MultiPRS | LDpred1.MultiPRS | 0.138 | 0.103 | 0.035 | 0.0000000 | 0.123 | 0.096 | 0.027 | 1.04e-04 |
MultiScler | SBLUP.Inf | LDpred1.MultiPRS | 0.093 | 0.103 | -0.010 | 0.1570323 | 0.079 | 0.096 | -0.017 | 6.52e-02 |
MultiScler | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
MultiScler | lassosum.10FCVal | LDpred1.MultiPRS | 0.115 | 0.103 | 0.012 | 0.0769839 | 0.102 | 0.096 | 0.006 | 3.93e-01 |
MultiScler | lassosum.MultiPRS | LDpred1.MultiPRS | 0.126 | 0.103 | 0.023 | 0.0000000 | 0.124 | 0.096 | 0.028 | 1.65e-06 |
MultiScler | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.090 | 0.103 | -0.013 | 0.0698089 | 0.085 | 0.096 | -0.011 | 1.24e-01 |
MultiScler | LDpred1.10FCVal | LDpred1.MultiPRS | 0.103 | 0.103 | 0.000 | 0.9942636 | 0.095 | 0.096 | -0.001 | 4.87e-01 |
MultiScler | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.114 | 0.103 | 0.012 | 0.0980858 | 0.116 | 0.096 | 0.019 | 1.80e-02 |
MultiScler | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.130 | 0.103 | 0.027 | 0.0000958 | 0.117 | 0.096 | 0.021 | 1.39e-03 |
MultiScler | lassosum.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.103 | -0.003 | 0.7101581 | 0.106 | 0.096 | 0.010 | 1.26e-01 |
MultiScler | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.129 | 0.103 | 0.026 | 0.0000000 | 0.118 | 0.096 | 0.022 | 4.46e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred1.Inf | 0.129 | 0.089 | 0.041 | 0.0000000 | 0.118 | 0.081 | 0.038 | 5.00e-06 |
MultiScler | PRScs.10FCVal | LDpred1.Inf | 0.118 | 0.089 | 0.029 | 0.0000000 | 0.104 | 0.081 | 0.023 | 3.46e-04 |
MultiScler | LDpred2.MultiPRS | LDpred1.Inf | 0.130 | 0.089 | 0.041 | 0.0000000 | 0.117 | 0.081 | 0.036 | 5.01e-06 |
MultiScler | LDpred1.MultiPRS | LDpred1.Inf | 0.103 | 0.089 | 0.014 | 0.0436865 | 0.096 | 0.081 | 0.016 | 3.80e-03 |
MultiScler | pT+clump.10FCVal | LDpred1.Inf | 0.090 | 0.089 | 0.002 | 0.7761170 | 0.092 | 0.081 | 0.011 | 3.58e-01 |
MultiScler | All.MultiPRS | LDpred1.Inf | 0.138 | 0.089 | 0.049 | 0.0000000 | 0.123 | 0.081 | 0.042 | 4.67e-07 |
MultiScler | LDpred2.PseudoVal | LDpred1.Inf | 0.101 | 0.089 | 0.012 | 0.0001532 | 0.088 | 0.081 | 0.008 | 2.53e-01 |
MultiScler | MegaPRS.10FCVal | LDpred1.Inf | 0.130 | 0.089 | 0.041 | 0.0000000 | 0.117 | 0.081 | 0.037 | 6.32e-06 |
MultiScler | pT+clump.MultiPRS | LDpred1.Inf | 0.114 | 0.089 | 0.026 | 0.0002282 | 0.116 | 0.081 | 0.035 | 1.55e-04 |
MultiScler | lassosum.MultiPRS | LDpred1.Inf | 0.126 | 0.089 | 0.037 | 0.0000001 | 0.124 | 0.081 | 0.044 | 6.13e-09 |
MultiScler | DBSLMM.PseudoVal | LDpred1.Inf | 0.090 | 0.089 | 0.001 | 0.7872858 | 0.085 | 0.081 | 0.004 | 7.01e-01 |
MultiScler | LDpred2.10FCVal | LDpred1.Inf | 0.112 | 0.089 | 0.023 | 0.0000033 | 0.101 | 0.081 | 0.020 | 3.93e-02 |
MultiScler | MegaPRS.PseudoVal | LDpred1.Inf | 0.110 | 0.089 | 0.022 | 0.0000143 | 0.110 | 0.081 | 0.030 | 2.46e-03 |
MultiScler | PRScs.PseudoVal | LDpred1.Inf | 0.103 | 0.089 | 0.015 | 0.0008652 | 0.101 | 0.081 | 0.021 | 1.73e-02 |
MultiScler | lassosum.PseudoVal | LDpred1.Inf | 0.100 | 0.089 | 0.012 | 0.0162700 | 0.106 | 0.081 | 0.025 | 9.08e-03 |
MultiScler | LDpred2.Inf | LDpred1.Inf | 0.092 | 0.089 | 0.003 | 0.3445716 | 0.078 | 0.081 | -0.002 | 7.47e-01 |
MultiScler | PRScs.MultiPRS | LDpred1.Inf | 0.118 | 0.089 | 0.030 | 0.0000245 | 0.108 | 0.081 | 0.027 | 1.37e-04 |
MultiScler | LDpred1.10FCVal | LDpred1.Inf | 0.103 | 0.089 | 0.014 | 0.0000001 | 0.095 | 0.081 | 0.014 | 7.42e-03 |
MultiScler | SBLUP.Inf | LDpred1.Inf | 0.093 | 0.089 | 0.004 | 0.2289823 | 0.079 | 0.081 | -0.002 | 8.05e-01 |
MultiScler | lassosum.10FCVal | LDpred1.Inf | 0.115 | 0.089 | 0.027 | 0.0000000 | 0.102 | 0.081 | 0.021 | 2.99e-03 |
MultiScler | LDpred1.Inf | LDpred1.Inf | 0.089 | 0.089 | 0.000 | 1.0000000 | 0.081 | 0.081 | 0.000 | 1.00e+00 |
MultiScler | SBayesR.PseudoVal | LDpred1.Inf | 0.100 | 0.089 | 0.011 | 0.0306387 | 0.084 | 0.081 | 0.003 | 7.59e-01 |
MultiScler | LDpred2.Inf | LDpred1.10FCVal | 0.092 | 0.103 | -0.011 | 0.0239493 | 0.078 | 0.095 | -0.017 | 8.30e-02 |
MultiScler | PRScs.10FCVal | LDpred1.10FCVal | 0.118 | 0.103 | 0.015 | 0.0000107 | 0.104 | 0.095 | 0.009 | 1.83e-01 |
MultiScler | lassosum.MultiPRS | LDpred1.10FCVal | 0.126 | 0.103 | 0.023 | 0.0009319 | 0.124 | 0.095 | 0.029 | 3.53e-07 |
MultiScler | LDpred2.MultiPRS | LDpred1.10FCVal | 0.130 | 0.103 | 0.027 | 0.0001161 | 0.117 | 0.095 | 0.022 | 6.29e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.129 | 0.103 | 0.026 | 0.0001666 | 0.118 | 0.095 | 0.023 | 1.51e-04 |
MultiScler | SBayesR.PseudoVal | LDpred1.10FCVal | 0.100 | 0.103 | -0.003 | 0.5774700 | 0.084 | 0.095 | -0.011 | 3.17e-01 |
MultiScler | PRScs.PseudoVal | LDpred1.10FCVal | 0.103 | 0.103 | 0.000 | 0.8819251 | 0.101 | 0.095 | 0.006 | 1.97e-01 |
MultiScler | All.MultiPRS | LDpred1.10FCVal | 0.138 | 0.103 | 0.035 | 0.0000005 | 0.123 | 0.095 | 0.028 | 5.30e-05 |
MultiScler | LDpred2.PseudoVal | LDpred1.10FCVal | 0.101 | 0.103 | -0.002 | 0.6852140 | 0.088 | 0.095 | -0.007 | 4.29e-01 |
MultiScler | LDpred1.MultiPRS | LDpred1.10FCVal | 0.103 | 0.103 | 0.000 | 0.9942636 | 0.096 | 0.095 | 0.001 | 4.87e-01 |
MultiScler | pT+clump.10FCVal | LDpred1.10FCVal | 0.090 | 0.103 | -0.012 | 0.0102328 | 0.092 | 0.095 | -0.003 | 7.38e-01 |
MultiScler | SBLUP.Inf | LDpred1.10FCVal | 0.093 | 0.103 | -0.010 | 0.0364770 | 0.079 | 0.095 | -0.016 | 9.09e-02 |
MultiScler | PRScs.MultiPRS | LDpred1.10FCVal | 0.118 | 0.103 | 0.015 | 0.0273217 | 0.108 | 0.095 | 0.013 | 3.72e-03 |
MultiScler | MegaPRS.10FCVal | LDpred1.10FCVal | 0.130 | 0.103 | 0.027 | 0.0000000 | 0.117 | 0.095 | 0.023 | 5.94e-04 |
MultiScler | pT+clump.MultiPRS | LDpred1.10FCVal | 0.114 | 0.103 | 0.012 | 0.0957901 | 0.116 | 0.095 | 0.021 | 1.16e-02 |
MultiScler | LDpred1.Inf | LDpred1.10FCVal | 0.089 | 0.103 | -0.014 | 0.0000001 | 0.081 | 0.095 | -0.014 | 7.42e-03 |
MultiScler | lassosum.PseudoVal | LDpred1.10FCVal | 0.100 | 0.103 | -0.003 | 0.3965544 | 0.106 | 0.095 | 0.011 | 7.21e-02 |
MultiScler | LDpred2.10FCVal | LDpred1.10FCVal | 0.112 | 0.103 | 0.009 | 0.0074519 | 0.101 | 0.095 | 0.006 | 3.58e-01 |
MultiScler | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.110 | 0.103 | 0.007 | 0.0390139 | 0.110 | 0.095 | 0.015 | 2.77e-02 |
MultiScler | LDpred1.10FCVal | LDpred1.10FCVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.095 | 0.095 | 0.000 | 1.00e+00 |
MultiScler | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.090 | 0.103 | -0.013 | 0.0003383 | 0.085 | 0.095 | -0.010 | 1.53e-01 |
MultiScler | lassosum.10FCVal | LDpred1.10FCVal | 0.115 | 0.103 | 0.012 | 0.0003877 | 0.102 | 0.095 | 0.007 | 2.99e-01 |
MultiScler | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.090 | 0.130 | -0.040 | 0.0000000 | 0.085 | 0.117 | -0.032 | 1.71e-04 |
MultiScler | LDpred2.10FCVal | LDpred2.MultiPRS | 0.112 | 0.130 | -0.018 | 0.0102170 | 0.101 | 0.117 | -0.016 | 1.06e-03 |
MultiScler | PRScs.PseudoVal | LDpred2.MultiPRS | 0.103 | 0.130 | -0.027 | 0.0001409 | 0.101 | 0.117 | -0.016 | 1.94e-02 |
MultiScler | All.MultiPRS | LDpred2.MultiPRS | 0.138 | 0.130 | 0.008 | 0.0000078 | 0.123 | 0.117 | 0.006 | 9.75e-02 |
MultiScler | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.117 | 0.117 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.110 | 0.130 | -0.020 | 0.0048961 | 0.110 | 0.117 | -0.007 | 2.59e-01 |
MultiScler | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.130 | 0.130 | 0.000 | 0.9661934 | 0.117 | 0.117 | 0.000 | 9.39e-01 |
MultiScler | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.114 | 0.130 | -0.015 | 0.0275502 | 0.116 | 0.117 | -0.001 | 8.38e-01 |
MultiScler | lassosum.10FCVal | LDpred2.MultiPRS | 0.115 | 0.130 | -0.015 | 0.0374718 | 0.102 | 0.117 | -0.015 | 2.62e-02 |
MultiScler | PRScs.MultiPRS | LDpred2.MultiPRS | 0.118 | 0.130 | -0.012 | 0.0001144 | 0.108 | 0.117 | -0.009 | 1.24e-01 |
MultiScler | LDpred1.Inf | LDpred2.MultiPRS | 0.089 | 0.130 | -0.041 | 0.0000000 | 0.081 | 0.117 | -0.036 | 5.01e-06 |
MultiScler | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.130 | -0.030 | 0.0000159 | 0.084 | 0.117 | -0.033 | 9.98e-05 |
MultiScler | pT+clump.10FCVal | LDpred2.MultiPRS | 0.090 | 0.130 | -0.040 | 0.0000000 | 0.092 | 0.117 | -0.025 | 6.11e-03 |
MultiScler | lassosum.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.130 | -0.030 | 0.0000234 | 0.106 | 0.117 | -0.011 | 1.10e-01 |
MultiScler | LDpred2.Inf | LDpred2.MultiPRS | 0.092 | 0.130 | -0.038 | 0.0000001 | 0.078 | 0.117 | -0.039 | 6.03e-06 |
MultiScler | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.103 | 0.130 | -0.027 | 0.0000000 | 0.096 | 0.117 | -0.021 | 1.14e-03 |
MultiScler | SBLUP.Inf | LDpred2.MultiPRS | 0.093 | 0.130 | -0.037 | 0.0000001 | 0.079 | 0.117 | -0.038 | 7.07e-06 |
MultiScler | lassosum.MultiPRS | LDpred2.MultiPRS | 0.126 | 0.130 | -0.004 | 0.1199151 | 0.124 | 0.117 | 0.007 | 1.25e-01 |
MultiScler | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.101 | 0.130 | -0.029 | 0.0000402 | 0.088 | 0.117 | -0.029 | 1.63e-04 |
MultiScler | LDpred1.10FCVal | LDpred2.MultiPRS | 0.103 | 0.130 | -0.027 | 0.0001161 | 0.095 | 0.117 | -0.022 | 6.29e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.129 | 0.130 | -0.001 | 0.8266524 | 0.118 | 0.117 | 0.001 | 8.17e-01 |
MultiScler | PRScs.10FCVal | LDpred2.MultiPRS | 0.118 | 0.130 | -0.012 | 0.0838147 | 0.104 | 0.117 | -0.013 | 4.68e-02 |
MultiScler | LDpred2.MultiPRS | LDpred2.10FCVal | 0.130 | 0.112 | 0.018 | 0.0102170 | 0.117 | 0.101 | 0.016 | 1.06e-03 |
MultiScler | LDpred2.Inf | LDpred2.10FCVal | 0.092 | 0.112 | -0.020 | 0.0007233 | 0.078 | 0.101 | -0.023 | 5.37e-02 |
MultiScler | PRScs.10FCVal | LDpred2.10FCVal | 0.118 | 0.112 | 0.006 | 0.2133675 | 0.104 | 0.101 | 0.003 | 7.70e-01 |
MultiScler | SBayesR.PseudoVal | LDpred2.10FCVal | 0.100 | 0.112 | -0.012 | 0.0178914 | 0.084 | 0.101 | -0.017 | 9.64e-02 |
MultiScler | lassosum.PseudoVal | LDpred2.10FCVal | 0.100 | 0.112 | -0.012 | 0.0000053 | 0.106 | 0.101 | 0.005 | 3.48e-01 |
MultiScler | LDpred2.10FCVal | LDpred2.10FCVal | 0.112 | 0.112 | 0.000 | 1.0000000 | 0.101 | 0.101 | 0.000 | 1.00e+00 |
MultiScler | PRScs.PseudoVal | LDpred2.10FCVal | 0.103 | 0.112 | -0.009 | 0.0016224 | 0.101 | 0.101 | 0.000 | 9.66e-01 |
MultiScler | LDpred1.MultiPRS | LDpred2.10FCVal | 0.103 | 0.112 | -0.009 | 0.1969151 | 0.096 | 0.101 | -0.005 | 4.71e-01 |
MultiScler | pT+clump.10FCVal | LDpred2.10FCVal | 0.090 | 0.112 | -0.022 | 0.0000000 | 0.092 | 0.101 | -0.009 | 2.45e-01 |
MultiScler | All.MultiPRS | LDpred2.10FCVal | 0.138 | 0.112 | 0.026 | 0.0001720 | 0.123 | 0.101 | 0.022 | 2.06e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.129 | 0.112 | 0.017 | 0.0131547 | 0.118 | 0.101 | 0.017 | 4.02e-03 |
MultiScler | MegaPRS.10FCVal | LDpred2.10FCVal | 0.130 | 0.112 | 0.018 | 0.0000002 | 0.117 | 0.101 | 0.016 | 1.72e-02 |
MultiScler | pT+clump.MultiPRS | LDpred2.10FCVal | 0.114 | 0.112 | 0.003 | 0.7157785 | 0.116 | 0.101 | 0.015 | 7.21e-02 |
MultiScler | lassosum.MultiPRS | LDpred2.10FCVal | 0.126 | 0.112 | 0.014 | 0.0427938 | 0.124 | 0.101 | 0.023 | 2.36e-04 |
MultiScler | PRScs.MultiPRS | LDpred2.10FCVal | 0.118 | 0.112 | 0.006 | 0.3601952 | 0.108 | 0.101 | 0.007 | 2.87e-01 |
MultiScler | LDpred1.Inf | LDpred2.10FCVal | 0.089 | 0.112 | -0.023 | 0.0000033 | 0.081 | 0.101 | -0.020 | 3.93e-02 |
MultiScler | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.110 | 0.112 | -0.002 | 0.4528299 | 0.110 | 0.101 | 0.009 | 4.59e-02 |
MultiScler | SBLUP.Inf | LDpred2.10FCVal | 0.093 | 0.112 | -0.019 | 0.0011690 | 0.079 | 0.101 | -0.022 | 5.85e-02 |
MultiScler | lassosum.10FCVal | LDpred2.10FCVal | 0.115 | 0.112 | 0.003 | 0.4523826 | 0.102 | 0.101 | 0.001 | 9.02e-01 |
MultiScler | LDpred2.PseudoVal | LDpred2.10FCVal | 0.101 | 0.112 | -0.011 | 0.0467146 | 0.088 | 0.101 | -0.013 | 2.36e-01 |
MultiScler | LDpred1.10FCVal | LDpred2.10FCVal | 0.103 | 0.112 | -0.009 | 0.0074519 | 0.095 | 0.101 | -0.006 | 3.58e-01 |
MultiScler | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.090 | 0.112 | -0.022 | 0.0000000 | 0.085 | 0.101 | -0.016 | 6.56e-03 |
MultiScler | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.110 | 0.101 | 0.009 | 0.0891969 | 0.110 | 0.088 | 0.022 | 3.77e-02 |
MultiScler | PRScs.PseudoVal | LDpred2.PseudoVal | 0.103 | 0.101 | 0.002 | 0.6632396 | 0.101 | 0.088 | 0.013 | 1.77e-01 |
MultiScler | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.130 | 0.101 | 0.029 | 0.0000402 | 0.117 | 0.088 | 0.029 | 1.63e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.129 | 0.101 | 0.028 | 0.0000612 | 0.118 | 0.088 | 0.030 | 4.77e-04 |
MultiScler | PRScs.10FCVal | LDpred2.PseudoVal | 0.118 | 0.101 | 0.017 | 0.0000000 | 0.104 | 0.088 | 0.016 | 1.52e-03 |
MultiScler | All.MultiPRS | LDpred2.PseudoVal | 0.138 | 0.101 | 0.037 | 0.0000001 | 0.123 | 0.088 | 0.035 | 2.60e-05 |
MultiScler | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.090 | 0.101 | -0.011 | 0.0666964 | 0.085 | 0.088 | -0.003 | 7.77e-01 |
MultiScler | LDpred2.10FCVal | LDpred2.PseudoVal | 0.112 | 0.101 | 0.011 | 0.0467146 | 0.101 | 0.088 | 0.013 | 2.36e-01 |
MultiScler | LDpred1.Inf | LDpred2.PseudoVal | 0.089 | 0.101 | -0.012 | 0.0001532 | 0.081 | 0.088 | -0.008 | 2.53e-01 |
MultiScler | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.101 | -0.001 | 0.7848369 | 0.084 | 0.088 | -0.004 | 6.59e-01 |
MultiScler | lassosum.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.101 | -0.001 | 0.8774149 | 0.106 | 0.088 | 0.018 | 1.01e-01 |
MultiScler | LDpred2.Inf | LDpred2.PseudoVal | 0.092 | 0.101 | -0.009 | 0.0000000 | 0.078 | 0.088 | -0.010 | 9.82e-11 |
MultiScler | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.101 | 0.101 | 0.000 | 1.0000000 | 0.088 | 0.088 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.103 | 0.101 | 0.002 | 0.7992837 | 0.096 | 0.088 | 0.008 | 3.44e-01 |
MultiScler | pT+clump.10FCVal | LDpred2.PseudoVal | 0.090 | 0.101 | -0.011 | 0.0827134 | 0.092 | 0.088 | 0.003 | 7.84e-01 |
MultiScler | lassosum.MultiPRS | LDpred2.PseudoVal | 0.126 | 0.101 | 0.025 | 0.0003716 | 0.124 | 0.088 | 0.036 | 9.10e-07 |
MultiScler | PRScs.MultiPRS | LDpred2.PseudoVal | 0.118 | 0.101 | 0.017 | 0.0140784 | 0.108 | 0.088 | 0.020 | 7.88e-03 |
MultiScler | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.130 | 0.101 | 0.029 | 0.0000000 | 0.117 | 0.088 | 0.029 | 4.05e-04 |
MultiScler | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.114 | 0.101 | 0.013 | 0.0557574 | 0.116 | 0.088 | 0.027 | 2.40e-03 |
MultiScler | lassosum.10FCVal | LDpred2.PseudoVal | 0.115 | 0.101 | 0.014 | 0.0000051 | 0.102 | 0.088 | 0.014 | 2.54e-02 |
MultiScler | LDpred1.10FCVal | LDpred2.PseudoVal | 0.103 | 0.101 | 0.002 | 0.6852140 | 0.095 | 0.088 | 0.007 | 4.29e-01 |
MultiScler | SBLUP.Inf | LDpred2.PseudoVal | 0.093 | 0.101 | -0.008 | 0.0000000 | 0.079 | 0.088 | -0.009 | 1.32e-10 |
MultiScler | PRScs.10FCVal | LDpred2.Inf | 0.118 | 0.092 | 0.026 | 0.0000000 | 0.104 | 0.078 | 0.025 | 1.63e-05 |
MultiScler | pT+clump.MultiPRS | LDpred2.Inf | 0.114 | 0.092 | 0.022 | 0.0013561 | 0.116 | 0.078 | 0.037 | 9.97e-05 |
MultiScler | LDpred2.Inf | LDpred2.Inf | 0.092 | 0.092 | 0.000 | 1.0000000 | 0.078 | 0.078 | 0.000 | 1.00e+00 |
MultiScler | lassosum.PseudoVal | LDpred2.Inf | 0.100 | 0.092 | 0.008 | 0.1566420 | 0.106 | 0.078 | 0.027 | 1.88e-02 |
MultiScler | LDpred2.MultiPRS | LDpred2.Inf | 0.130 | 0.092 | 0.038 | 0.0000001 | 0.117 | 0.078 | 0.039 | 6.03e-06 |
MultiScler | SBayesR.PseudoVal | LDpred2.Inf | 0.100 | 0.092 | 0.008 | 0.1171749 | 0.084 | 0.078 | 0.005 | 5.81e-01 |
MultiScler | pT+clump.10FCVal | LDpred2.Inf | 0.090 | 0.092 | -0.002 | 0.7916232 | 0.092 | 0.078 | 0.013 | 3.10e-01 |
MultiScler | PRScs.PseudoVal | LDpred2.Inf | 0.103 | 0.092 | 0.011 | 0.0371713 | 0.101 | 0.078 | 0.023 | 3.27e-02 |
MultiScler | LDpred2.PseudoVal | LDpred2.Inf | 0.101 | 0.092 | 0.009 | 0.0000000 | 0.088 | 0.078 | 0.010 | 9.82e-11 |
MultiScler | All.MultiPRS | LDpred2.Inf | 0.138 | 0.092 | 0.046 | 0.0000000 | 0.123 | 0.078 | 0.045 | 8.25e-07 |
MultiScler | SBLUP.Inf | LDpred2.Inf | 0.093 | 0.092 | 0.001 | 0.0000000 | 0.079 | 0.078 | 0.001 | 2.41e-02 |
MultiScler | MegaPRS.MultiPRS | LDpred2.Inf | 0.129 | 0.092 | 0.037 | 0.0000001 | 0.118 | 0.078 | 0.040 | 2.95e-05 |
MultiScler | PRScs.MultiPRS | LDpred2.Inf | 0.118 | 0.092 | 0.026 | 0.0001826 | 0.108 | 0.078 | 0.030 | 5.67e-04 |
MultiScler | lassosum.MultiPRS | LDpred2.Inf | 0.126 | 0.092 | 0.034 | 0.0000013 | 0.124 | 0.078 | 0.046 | 3.23e-08 |
MultiScler | LDpred1.Inf | LDpred2.Inf | 0.089 | 0.092 | -0.003 | 0.3445716 | 0.081 | 0.078 | 0.002 | 7.47e-01 |
MultiScler | MegaPRS.10FCVal | LDpred2.Inf | 0.130 | 0.092 | 0.038 | 0.0000000 | 0.117 | 0.078 | 0.039 | 2.01e-05 |
MultiScler | MegaPRS.PseudoVal | LDpred2.Inf | 0.110 | 0.092 | 0.018 | 0.0016306 | 0.110 | 0.078 | 0.032 | 5.37e-03 |
MultiScler | lassosum.10FCVal | LDpred2.Inf | 0.115 | 0.092 | 0.023 | 0.0000000 | 0.102 | 0.078 | 0.024 | 8.32e-04 |
MultiScler | LDpred2.10FCVal | LDpred2.Inf | 0.112 | 0.092 | 0.020 | 0.0007233 | 0.101 | 0.078 | 0.023 | 5.37e-02 |
MultiScler | DBSLMM.PseudoVal | LDpred2.Inf | 0.090 | 0.092 | -0.002 | 0.7637687 | 0.085 | 0.078 | 0.006 | 6.18e-01 |
MultiScler | LDpred1.MultiPRS | LDpred2.Inf | 0.103 | 0.092 | 0.011 | 0.1231101 | 0.096 | 0.078 | 0.018 | 5.93e-02 |
MultiScler | LDpred1.10FCVal | LDpred2.Inf | 0.103 | 0.092 | 0.011 | 0.0239493 | 0.095 | 0.078 | 0.017 | 8.30e-02 |
MultiScler | PRScs.PseudoVal | PRScs.MultiPRS | 0.103 | 0.118 | -0.015 | 0.0310591 | 0.101 | 0.108 | -0.007 | 5.56e-02 |
MultiScler | LDpred2.MultiPRS | PRScs.MultiPRS | 0.130 | 0.118 | 0.012 | 0.0001144 | 0.117 | 0.108 | 0.009 | 1.24e-01 |
MultiScler | LDpred2.Inf | PRScs.MultiPRS | 0.092 | 0.118 | -0.026 | 0.0001826 | 0.078 | 0.108 | -0.030 | 5.67e-04 |
MultiScler | pT+clump.10FCVal | PRScs.MultiPRS | 0.090 | 0.118 | -0.028 | 0.0000670 | 0.092 | 0.108 | -0.016 | 8.26e-02 |
MultiScler | SBayesR.PseudoVal | PRScs.MultiPRS | 0.100 | 0.118 | -0.019 | 0.0078194 | 0.084 | 0.108 | -0.024 | 2.42e-02 |
MultiScler | LDpred2.PseudoVal | PRScs.MultiPRS | 0.101 | 0.118 | -0.017 | 0.0140784 | 0.088 | 0.108 | -0.020 | 7.88e-03 |
MultiScler | LDpred2.10FCVal | PRScs.MultiPRS | 0.112 | 0.118 | -0.006 | 0.3601952 | 0.101 | 0.108 | -0.007 | 2.87e-01 |
MultiScler | PRScs.MultiPRS | PRScs.MultiPRS | 0.118 | 0.118 | 0.000 | 1.0000000 | 0.108 | 0.108 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.MultiPRS | PRScs.MultiPRS | 0.103 | 0.118 | -0.015 | 0.0000000 | 0.096 | 0.108 | -0.012 | 1.43e-02 |
MultiScler | pT+clump.MultiPRS | PRScs.MultiPRS | 0.114 | 0.118 | -0.004 | 0.5817629 | 0.116 | 0.108 | 0.008 | 2.68e-01 |
MultiScler | All.MultiPRS | PRScs.MultiPRS | 0.138 | 0.118 | 0.020 | 0.0000000 | 0.123 | 0.108 | 0.015 | 1.14e-02 |
MultiScler | lassosum.PseudoVal | PRScs.MultiPRS | 0.100 | 0.118 | -0.018 | 0.0098967 | 0.106 | 0.108 | -0.002 | 6.47e-01 |
MultiScler | PRScs.10FCVal | PRScs.MultiPRS | 0.118 | 0.118 | -0.001 | 0.9354164 | 0.104 | 0.108 | -0.004 | 3.15e-01 |
MultiScler | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.110 | 0.118 | -0.008 | 0.2449863 | 0.110 | 0.108 | 0.002 | 7.36e-01 |
MultiScler | lassosum.MultiPRS | PRScs.MultiPRS | 0.126 | 0.118 | 0.008 | 0.0000413 | 0.124 | 0.108 | 0.016 | 1.70e-05 |
MultiScler | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.129 | 0.118 | 0.011 | 0.0000199 | 0.118 | 0.108 | 0.010 | 4.41e-02 |
MultiScler | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.090 | 0.118 | -0.028 | 0.0000580 | 0.085 | 0.108 | -0.023 | 4.38e-04 |
MultiScler | LDpred1.10FCVal | PRScs.MultiPRS | 0.103 | 0.118 | -0.015 | 0.0273217 | 0.095 | 0.108 | -0.013 | 3.72e-03 |
MultiScler | SBLUP.Inf | PRScs.MultiPRS | 0.093 | 0.118 | -0.025 | 0.0003003 | 0.079 | 0.108 | -0.029 | 6.11e-04 |
MultiScler | lassosum.10FCVal | PRScs.MultiPRS | 0.115 | 0.118 | -0.003 | 0.6664209 | 0.102 | 0.108 | -0.006 | 2.50e-01 |
MultiScler | LDpred1.Inf | PRScs.MultiPRS | 0.089 | 0.118 | -0.030 | 0.0000245 | 0.081 | 0.108 | -0.027 | 1.37e-04 |
MultiScler | MegaPRS.10FCVal | PRScs.MultiPRS | 0.130 | 0.118 | 0.012 | 0.0899066 | 0.117 | 0.108 | 0.009 | 8.91e-02 |
MultiScler | PRScs.10FCVal | PRScs.10FCVal | 0.118 | 0.118 | 0.000 | 1.0000000 | 0.104 | 0.104 | 0.000 | 1.00e+00 |
MultiScler | pT+clump.MultiPRS | PRScs.10FCVal | 0.114 | 0.118 | -0.003 | 0.6379100 | 0.116 | 0.104 | 0.012 | 1.09e-01 |
MultiScler | SBayesR.PseudoVal | PRScs.10FCVal | 0.100 | 0.118 | -0.018 | 0.0003422 | 0.084 | 0.104 | -0.020 | 4.69e-02 |
MultiScler | pT+clump.10FCVal | PRScs.10FCVal | 0.090 | 0.118 | -0.027 | 0.0000009 | 0.092 | 0.104 | -0.012 | 2.80e-01 |
MultiScler | LDpred2.MultiPRS | PRScs.10FCVal | 0.130 | 0.118 | 0.012 | 0.0838147 | 0.117 | 0.104 | 0.013 | 4.68e-02 |
MultiScler | LDpred2.10FCVal | PRScs.10FCVal | 0.112 | 0.118 | -0.006 | 0.2133675 | 0.101 | 0.104 | -0.003 | 7.70e-01 |
MultiScler | SBLUP.Inf | PRScs.10FCVal | 0.093 | 0.118 | -0.025 | 0.0000000 | 0.079 | 0.104 | -0.025 | 1.81e-05 |
MultiScler | PRScs.PseudoVal | PRScs.10FCVal | 0.103 | 0.118 | -0.015 | 0.0000911 | 0.101 | 0.104 | -0.002 | 7.39e-01 |
MultiScler | LDpred2.PseudoVal | PRScs.10FCVal | 0.101 | 0.118 | -0.017 | 0.0000000 | 0.088 | 0.104 | -0.016 | 1.52e-03 |
MultiScler | LDpred2.Inf | PRScs.10FCVal | 0.092 | 0.118 | -0.026 | 0.0000000 | 0.078 | 0.104 | -0.025 | 1.63e-05 |
MultiScler | LDpred1.Inf | PRScs.10FCVal | 0.089 | 0.118 | -0.029 | 0.0000000 | 0.081 | 0.104 | -0.023 | 3.46e-04 |
MultiScler | MegaPRS.MultiPRS | PRScs.10FCVal | 0.129 | 0.118 | 0.011 | 0.1014177 | 0.118 | 0.104 | 0.015 | 2.83e-02 |
MultiScler | PRScs.MultiPRS | PRScs.10FCVal | 0.118 | 0.118 | 0.001 | 0.9354164 | 0.108 | 0.104 | 0.004 | 3.15e-01 |
MultiScler | lassosum.MultiPRS | PRScs.10FCVal | 0.126 | 0.118 | 0.008 | 0.2358029 | 0.124 | 0.104 | 0.021 | 8.05e-05 |
MultiScler | DBSLMM.PseudoVal | PRScs.10FCVal | 0.090 | 0.118 | -0.028 | 0.0000000 | 0.085 | 0.104 | -0.019 | 5.58e-02 |
MultiScler | MegaPRS.10FCVal | PRScs.10FCVal | 0.130 | 0.118 | 0.012 | 0.0001923 | 0.117 | 0.104 | 0.014 | 3.45e-02 |
MultiScler | MegaPRS.PseudoVal | PRScs.10FCVal | 0.110 | 0.118 | -0.008 | 0.0893487 | 0.110 | 0.104 | 0.006 | 4.56e-01 |
MultiScler | lassosum.10FCVal | PRScs.10FCVal | 0.115 | 0.118 | -0.002 | 0.2180316 | 0.102 | 0.104 | -0.002 | 6.91e-01 |
MultiScler | All.MultiPRS | PRScs.10FCVal | 0.138 | 0.118 | 0.020 | 0.0036013 | 0.123 | 0.104 | 0.019 | 4.02e-03 |
MultiScler | lassosum.PseudoVal | PRScs.10FCVal | 0.100 | 0.118 | -0.017 | 0.0000341 | 0.106 | 0.104 | 0.002 | 8.12e-01 |
MultiScler | LDpred1.MultiPRS | PRScs.10FCVal | 0.103 | 0.118 | -0.015 | 0.0341456 | 0.096 | 0.104 | -0.008 | 2.57e-01 |
MultiScler | LDpred1.10FCVal | PRScs.10FCVal | 0.103 | 0.118 | -0.015 | 0.0000107 | 0.095 | 0.104 | -0.009 | 1.83e-01 |
MultiScler | LDpred2.MultiPRS | PRScs.PseudoVal | 0.130 | 0.103 | 0.027 | 0.0001409 | 0.117 | 0.101 | 0.016 | 1.94e-02 |
MultiScler | PRScs.10FCVal | PRScs.PseudoVal | 0.118 | 0.103 | 0.015 | 0.0000911 | 0.104 | 0.101 | 0.002 | 7.39e-01 |
MultiScler | pT+clump.10FCVal | PRScs.PseudoVal | 0.090 | 0.103 | -0.013 | 0.0022906 | 0.092 | 0.101 | -0.010 | 2.60e-01 |
MultiScler | LDpred2.PseudoVal | PRScs.PseudoVal | 0.101 | 0.103 | -0.002 | 0.6632396 | 0.088 | 0.101 | -0.013 | 1.77e-01 |
MultiScler | LDpred2.Inf | PRScs.PseudoVal | 0.092 | 0.103 | -0.011 | 0.0371713 | 0.078 | 0.101 | -0.023 | 3.27e-02 |
MultiScler | pT+clump.MultiPRS | PRScs.PseudoVal | 0.114 | 0.103 | 0.011 | 0.1068218 | 0.116 | 0.101 | 0.014 | 6.14e-02 |
MultiScler | PRScs.PseudoVal | PRScs.PseudoVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.101 | 0.101 | 0.000 | 1.00e+00 |
MultiScler | SBayesR.PseudoVal | PRScs.PseudoVal | 0.100 | 0.103 | -0.003 | 0.5496032 | 0.084 | 0.101 | -0.017 | 1.33e-01 |
MultiScler | lassosum.MultiPRS | PRScs.PseudoVal | 0.126 | 0.103 | 0.023 | 0.0011072 | 0.124 | 0.101 | 0.023 | 9.43e-06 |
MultiScler | LDpred2.10FCVal | PRScs.PseudoVal | 0.112 | 0.103 | 0.009 | 0.0016224 | 0.101 | 0.101 | 0.000 | 9.66e-01 |
MultiScler | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.129 | 0.103 | 0.026 | 0.0002022 | 0.118 | 0.101 | 0.017 | 3.50e-03 |
MultiScler | LDpred1.MultiPRS | PRScs.PseudoVal | 0.103 | 0.103 | 0.000 | 0.9634234 | 0.096 | 0.101 | -0.005 | 3.37e-01 |
MultiScler | SBLUP.Inf | PRScs.PseudoVal | 0.093 | 0.103 | -0.010 | 0.0528687 | 0.079 | 0.101 | -0.022 | 3.54e-02 |
MultiScler | All.MultiPRS | PRScs.PseudoVal | 0.138 | 0.103 | 0.035 | 0.0000006 | 0.123 | 0.101 | 0.022 | 1.71e-03 |
MultiScler | MegaPRS.10FCVal | PRScs.PseudoVal | 0.130 | 0.103 | 0.027 | 0.0000000 | 0.117 | 0.101 | 0.016 | 1.38e-02 |
MultiScler | LDpred1.10FCVal | PRScs.PseudoVal | 0.103 | 0.103 | 0.000 | 0.8819251 | 0.095 | 0.101 | -0.006 | 1.97e-01 |
MultiScler | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.110 | 0.103 | 0.007 | 0.0155506 | 0.110 | 0.101 | 0.009 | 1.14e-01 |
MultiScler | lassosum.10FCVal | PRScs.PseudoVal | 0.115 | 0.103 | 0.012 | 0.0011886 | 0.102 | 0.101 | 0.001 | 9.09e-01 |
MultiScler | PRScs.MultiPRS | PRScs.PseudoVal | 0.118 | 0.103 | 0.015 | 0.0310591 | 0.108 | 0.101 | 0.007 | 5.56e-02 |
MultiScler | LDpred1.Inf | PRScs.PseudoVal | 0.089 | 0.103 | -0.015 | 0.0008652 | 0.081 | 0.101 | -0.021 | 1.73e-02 |
MultiScler | lassosum.PseudoVal | PRScs.PseudoVal | 0.100 | 0.103 | -0.003 | 0.0912395 | 0.106 | 0.101 | 0.004 | 1.99e-01 |
MultiScler | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.090 | 0.103 | -0.013 | 0.0000000 | 0.085 | 0.101 | -0.017 | 1.79e-04 |
MultiScler | All.MultiPRS | pT+clump.MultiPRS | 0.138 | 0.114 | 0.024 | 0.0006880 | 0.123 | 0.116 | 0.007 | 2.03e-01 |
MultiScler | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.130 | 0.114 | 0.015 | 0.0275502 | 0.117 | 0.116 | 0.001 | 8.38e-01 |
MultiScler | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.103 | 0.114 | -0.012 | 0.0980858 | 0.096 | 0.116 | -0.019 | 1.80e-02 |
MultiScler | pT+clump.10FCVal | pT+clump.MultiPRS | 0.090 | 0.114 | -0.024 | 0.0005606 | 0.092 | 0.116 | -0.024 | 3.30e-04 |
MultiScler | lassosum.MultiPRS | pT+clump.MultiPRS | 0.126 | 0.114 | 0.012 | 0.0968718 | 0.124 | 0.116 | 0.009 | 1.30e-01 |
MultiScler | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.101 | 0.114 | -0.013 | 0.0557574 | 0.088 | 0.116 | -0.027 | 2.40e-03 |
MultiScler | LDpred1.10FCVal | pT+clump.MultiPRS | 0.103 | 0.114 | -0.012 | 0.0957901 | 0.095 | 0.116 | -0.021 | 1.16e-02 |
MultiScler | SBLUP.Inf | pT+clump.MultiPRS | 0.093 | 0.114 | -0.022 | 0.0020927 | 0.079 | 0.116 | -0.037 | 1.11e-04 |
MultiScler | lassosum.10FCVal | pT+clump.MultiPRS | 0.115 | 0.114 | 0.001 | 0.9052702 | 0.102 | 0.116 | -0.014 | 6.52e-02 |
MultiScler | PRScs.MultiPRS | pT+clump.MultiPRS | 0.118 | 0.114 | 0.004 | 0.5817629 | 0.108 | 0.116 | -0.008 | 2.68e-01 |
MultiScler | LDpred2.10FCVal | pT+clump.MultiPRS | 0.112 | 0.114 | -0.003 | 0.7157785 | 0.101 | 0.116 | -0.015 | 7.21e-02 |
MultiScler | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.110 | 0.114 | -0.004 | 0.5401179 | 0.110 | 0.116 | -0.005 | 4.72e-01 |
MultiScler | PRScs.PseudoVal | pT+clump.MultiPRS | 0.103 | 0.114 | -0.011 | 0.1068218 | 0.101 | 0.116 | -0.014 | 6.14e-02 |
MultiScler | lassosum.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.114 | -0.014 | 0.0423648 | 0.106 | 0.116 | -0.010 | 2.05e-01 |
MultiScler | LDpred2.Inf | pT+clump.MultiPRS | 0.092 | 0.114 | -0.022 | 0.0013561 | 0.078 | 0.116 | -0.037 | 9.97e-05 |
MultiScler | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.130 | 0.114 | 0.016 | 0.0245592 | 0.117 | 0.116 | 0.002 | 8.02e-01 |
MultiScler | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.129 | 0.114 | 0.015 | 0.0342971 | 0.118 | 0.116 | 0.003 | 7.11e-01 |
MultiScler | PRScs.10FCVal | pT+clump.MultiPRS | 0.118 | 0.114 | 0.003 | 0.6379100 | 0.104 | 0.116 | -0.012 | 1.09e-01 |
MultiScler | LDpred1.Inf | pT+clump.MultiPRS | 0.089 | 0.114 | -0.026 | 0.0002282 | 0.081 | 0.116 | -0.035 | 1.55e-04 |
MultiScler | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.114 | 0.114 | 0.000 | 1.0000000 | 0.116 | 0.116 | 0.000 | 1.00e+00 |
MultiScler | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.090 | 0.114 | -0.024 | 0.0005002 | 0.085 | 0.116 | -0.031 | 3.13e-04 |
MultiScler | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.114 | -0.015 | 0.0358171 | 0.084 | 0.116 | -0.032 | 1.82e-04 |
MultiScler | LDpred2.MultiPRS | pT+clump.10FCVal | 0.130 | 0.090 | 0.040 | 0.0000000 | 0.117 | 0.092 | 0.025 | 6.11e-03 |
MultiScler | LDpred2.PseudoVal | pT+clump.10FCVal | 0.101 | 0.090 | 0.011 | 0.0827134 | 0.088 | 0.092 | -0.003 | 7.84e-01 |
MultiScler | pT+clump.MultiPRS | pT+clump.10FCVal | 0.114 | 0.090 | 0.024 | 0.0005606 | 0.116 | 0.092 | 0.024 | 3.30e-04 |
MultiScler | SBLUP.Inf | pT+clump.10FCVal | 0.093 | 0.090 | 0.003 | 0.6858824 | 0.079 | 0.092 | -0.013 | 3.28e-01 |
MultiScler | PRScs.PseudoVal | pT+clump.10FCVal | 0.103 | 0.090 | 0.013 | 0.0022906 | 0.101 | 0.092 | 0.010 | 2.60e-01 |
MultiScler | PRScs.MultiPRS | pT+clump.10FCVal | 0.118 | 0.090 | 0.028 | 0.0000670 | 0.108 | 0.092 | 0.016 | 8.26e-02 |
MultiScler | LDpred2.Inf | pT+clump.10FCVal | 0.092 | 0.090 | 0.002 | 0.7916232 | 0.078 | 0.092 | -0.013 | 3.10e-01 |
MultiScler | SBayesR.PseudoVal | pT+clump.10FCVal | 0.100 | 0.090 | 0.009 | 0.0697384 | 0.084 | 0.092 | -0.008 | 4.68e-01 |
MultiScler | pT+clump.10FCVal | pT+clump.10FCVal | 0.090 | 0.090 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.110 | 0.090 | 0.020 | 0.0000015 | 0.110 | 0.092 | 0.019 | 2.90e-02 |
MultiScler | PRScs.10FCVal | pT+clump.10FCVal | 0.118 | 0.090 | 0.027 | 0.0000009 | 0.104 | 0.092 | 0.012 | 2.80e-01 |
MultiScler | LDpred2.10FCVal | pT+clump.10FCVal | 0.112 | 0.090 | 0.022 | 0.0000000 | 0.101 | 0.092 | 0.009 | 2.45e-01 |
MultiScler | MegaPRS.10FCVal | pT+clump.10FCVal | 0.130 | 0.090 | 0.040 | 0.0000000 | 0.117 | 0.092 | 0.026 | 9.65e-03 |
MultiScler | LDpred1.MultiPRS | pT+clump.10FCVal | 0.103 | 0.090 | 0.013 | 0.0750744 | 0.096 | 0.092 | 0.005 | 6.48e-01 |
MultiScler | lassosum.10FCVal | pT+clump.10FCVal | 0.115 | 0.090 | 0.025 | 0.0000056 | 0.102 | 0.092 | 0.011 | 3.44e-01 |
MultiScler | All.MultiPRS | pT+clump.10FCVal | 0.138 | 0.090 | 0.048 | 0.0000000 | 0.123 | 0.092 | 0.031 | 2.96e-04 |
MultiScler | LDpred1.Inf | pT+clump.10FCVal | 0.089 | 0.090 | -0.002 | 0.7761170 | 0.081 | 0.092 | -0.011 | 3.58e-01 |
MultiScler | LDpred1.10FCVal | pT+clump.10FCVal | 0.103 | 0.090 | 0.012 | 0.0102328 | 0.095 | 0.092 | 0.003 | 7.38e-01 |
MultiScler | lassosum.MultiPRS | pT+clump.10FCVal | 0.126 | 0.090 | 0.036 | 0.0000003 | 0.124 | 0.092 | 0.033 | 3.14e-04 |
MultiScler | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.090 | 0.090 | 0.000 | 0.9474964 | 0.085 | 0.092 | -0.007 | 3.21e-01 |
MultiScler | lassosum.PseudoVal | pT+clump.10FCVal | 0.100 | 0.090 | 0.010 | 0.0175439 | 0.106 | 0.092 | 0.014 | 9.87e-02 |
MultiScler | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.129 | 0.090 | 0.039 | 0.0000000 | 0.118 | 0.092 | 0.027 | 5.16e-03 |
MultiScler | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.084 | 0.084 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000159 | 0.117 | 0.084 | 0.033 | 9.98e-05 |
MultiScler | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.103 | 0.100 | 0.003 | 0.6548315 | 0.096 | 0.084 | 0.012 | 2.59e-01 |
MultiScler | PRScs.PseudoVal | SBayesR.PseudoVal | 0.103 | 0.100 | 0.003 | 0.5496032 | 0.101 | 0.084 | 0.017 | 1.33e-01 |
MultiScler | All.MultiPRS | SBayesR.PseudoVal | 0.138 | 0.100 | 0.038 | 0.0000000 | 0.123 | 0.084 | 0.039 | 9.58e-07 |
MultiScler | PRScs.MultiPRS | SBayesR.PseudoVal | 0.118 | 0.100 | 0.019 | 0.0078194 | 0.108 | 0.084 | 0.024 | 2.42e-02 |
MultiScler | LDpred2.10FCVal | SBayesR.PseudoVal | 0.112 | 0.100 | 0.012 | 0.0178914 | 0.101 | 0.084 | 0.017 | 9.64e-02 |
MultiScler | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.110 | 0.100 | 0.010 | 0.0386810 | 0.110 | 0.084 | 0.026 | 9.37e-03 |
MultiScler | pT+clump.10FCVal | SBayesR.PseudoVal | 0.090 | 0.100 | -0.009 | 0.0697384 | 0.092 | 0.084 | 0.008 | 4.68e-01 |
MultiScler | lassosum.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.100 | 0.001 | 0.9267456 | 0.106 | 0.084 | 0.022 | 5.37e-02 |
MultiScler | LDpred2.Inf | SBayesR.PseudoVal | 0.092 | 0.100 | -0.008 | 0.1171749 | 0.078 | 0.084 | -0.005 | 5.81e-01 |
MultiScler | PRScs.10FCVal | SBayesR.PseudoVal | 0.118 | 0.100 | 0.018 | 0.0003422 | 0.104 | 0.084 | 0.020 | 4.69e-02 |
MultiScler | SBLUP.Inf | SBayesR.PseudoVal | 0.093 | 0.100 | -0.007 | 0.1666629 | 0.079 | 0.084 | -0.005 | 6.20e-01 |
MultiScler | lassosum.MultiPRS | SBayesR.PseudoVal | 0.126 | 0.100 | 0.026 | 0.0001641 | 0.124 | 0.084 | 0.041 | 7.10e-06 |
MultiScler | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.101 | 0.100 | 0.001 | 0.7848369 | 0.088 | 0.084 | 0.004 | 6.59e-01 |
MultiScler | lassosum.10FCVal | SBayesR.PseudoVal | 0.115 | 0.100 | 0.016 | 0.0013479 | 0.102 | 0.084 | 0.018 | 5.88e-02 |
MultiScler | LDpred1.Inf | SBayesR.PseudoVal | 0.089 | 0.100 | -0.011 | 0.0306387 | 0.081 | 0.084 | -0.003 | 7.59e-01 |
MultiScler | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.114 | 0.100 | 0.015 | 0.0358171 | 0.116 | 0.084 | 0.032 | 1.82e-04 |
MultiScler | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.090 | 0.100 | -0.010 | 0.1223998 | 0.085 | 0.084 | 0.001 | 9.40e-01 |
MultiScler | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.129 | 0.100 | 0.029 | 0.0000245 | 0.118 | 0.084 | 0.034 | 3.91e-04 |
MultiScler | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.130 | 0.100 | 0.030 | 0.0000000 | 0.117 | 0.084 | 0.034 | 5.75e-04 |
MultiScler | LDpred1.10FCVal | SBayesR.PseudoVal | 0.103 | 0.100 | 0.003 | 0.5774700 | 0.095 | 0.084 | 0.011 | 3.17e-01 |
MultiScler | All.MultiPRS | SBLUP.Inf | 0.138 | 0.093 | 0.045 | 0.0000000 | 0.123 | 0.079 | 0.044 | 9.32e-07 |
MultiScler | LDpred2.MultiPRS | SBLUP.Inf | 0.130 | 0.093 | 0.037 | 0.0000001 | 0.117 | 0.079 | 0.038 | 7.07e-06 |
MultiScler | PRScs.PseudoVal | SBLUP.Inf | 0.103 | 0.093 | 0.010 | 0.0528687 | 0.101 | 0.079 | 0.022 | 3.54e-02 |
MultiScler | lassosum.PseudoVal | SBLUP.Inf | 0.100 | 0.093 | 0.007 | 0.2029738 | 0.106 | 0.079 | 0.027 | 2.03e-02 |
MultiScler | LDpred2.Inf | SBLUP.Inf | 0.092 | 0.093 | -0.001 | 0.0000000 | 0.078 | 0.079 | -0.001 | 2.41e-02 |
MultiScler | MegaPRS.PseudoVal | SBLUP.Inf | 0.110 | 0.093 | 0.017 | 0.0025812 | 0.110 | 0.079 | 0.031 | 5.93e-03 |
MultiScler | pT+clump.10FCVal | SBLUP.Inf | 0.090 | 0.093 | -0.003 | 0.6858824 | 0.092 | 0.079 | 0.013 | 3.28e-01 |
MultiScler | lassosum.MultiPRS | SBLUP.Inf | 0.126 | 0.093 | 0.033 | 0.0000024 | 0.124 | 0.079 | 0.045 | 3.28e-08 |
MultiScler | LDpred2.PseudoVal | SBLUP.Inf | 0.101 | 0.093 | 0.008 | 0.0000000 | 0.088 | 0.079 | 0.009 | 1.32e-10 |
MultiScler | LDpred1.MultiPRS | SBLUP.Inf | 0.103 | 0.093 | 0.010 | 0.1570323 | 0.096 | 0.079 | 0.017 | 6.52e-02 |
MultiScler | MegaPRS.10FCVal | SBLUP.Inf | 0.130 | 0.093 | 0.037 | 0.0000000 | 0.117 | 0.079 | 0.039 | 2.25e-05 |
MultiScler | pT+clump.MultiPRS | SBLUP.Inf | 0.114 | 0.093 | 0.022 | 0.0020927 | 0.116 | 0.079 | 0.037 | 1.11e-04 |
MultiScler | DBSLMM.PseudoVal | SBLUP.Inf | 0.090 | 0.093 | -0.003 | 0.6581726 | 0.085 | 0.079 | 0.006 | 6.47e-01 |
MultiScler | LDpred2.10FCVal | SBLUP.Inf | 0.112 | 0.093 | 0.019 | 0.0011690 | 0.101 | 0.079 | 0.022 | 5.85e-02 |
MultiScler | LDpred1.Inf | SBLUP.Inf | 0.089 | 0.093 | -0.004 | 0.2289823 | 0.081 | 0.079 | 0.002 | 8.05e-01 |
MultiScler | SBayesR.PseudoVal | SBLUP.Inf | 0.100 | 0.093 | 0.007 | 0.1666629 | 0.084 | 0.079 | 0.005 | 6.20e-01 |
MultiScler | SBLUP.Inf | SBLUP.Inf | 0.093 | 0.093 | 0.000 | 1.0000000 | 0.079 | 0.079 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.MultiPRS | SBLUP.Inf | 0.129 | 0.093 | 0.036 | 0.0000002 | 0.118 | 0.079 | 0.039 | 3.27e-05 |
MultiScler | PRScs.10FCVal | SBLUP.Inf | 0.118 | 0.093 | 0.025 | 0.0000000 | 0.104 | 0.079 | 0.025 | 1.81e-05 |
MultiScler | LDpred1.10FCVal | SBLUP.Inf | 0.103 | 0.093 | 0.010 | 0.0364770 | 0.095 | 0.079 | 0.016 | 9.09e-02 |
MultiScler | lassosum.10FCVal | SBLUP.Inf | 0.115 | 0.093 | 0.022 | 0.0000000 | 0.102 | 0.079 | 0.023 | 9.70e-04 |
MultiScler | PRScs.MultiPRS | SBLUP.Inf | 0.118 | 0.093 | 0.025 | 0.0003003 | 0.108 | 0.079 | 0.029 | 6.11e-04 |
RheuArth | DBSLMM.PseudoVal | All.MultiPRS | 0.142 | 0.196 | -0.054 | 0.0000000 | 0.111 | 0.178 | -0.067 | 1.13e-16 |
RheuArth | SBayesR.PseudoVal | All.MultiPRS | 0.124 | 0.196 | -0.072 | 0.0000000 | 0.119 | 0.178 | -0.059 | 2.06e-10 |
RheuArth | lassosum.PseudoVal | All.MultiPRS | 0.114 | 0.196 | -0.082 | 0.0000000 | 0.089 | 0.178 | -0.088 | 7.84e-20 |
RheuArth | LDpred2.10FCVal | All.MultiPRS | 0.151 | 0.196 | -0.045 | 0.0000000 | 0.128 | 0.178 | -0.049 | 2.04e-10 |
RheuArth | MegaPRS.MultiPRS | All.MultiPRS | 0.175 | 0.196 | -0.021 | 0.0022716 | 0.144 | 0.178 | -0.034 | 8.03e-09 |
RheuArth | PRScs.10FCVal | All.MultiPRS | 0.161 | 0.196 | -0.035 | 0.0000004 | 0.128 | 0.178 | -0.050 | 1.60e-12 |
RheuArth | LDpred2.Inf | All.MultiPRS | 0.085 | 0.196 | -0.111 | 0.0000000 | 0.072 | 0.178 | -0.106 | 3.13e-22 |
RheuArth | MegaPRS.PseudoVal | All.MultiPRS | 0.160 | 0.196 | -0.037 | 0.0000001 | 0.124 | 0.178 | -0.054 | 2.39e-14 |
RheuArth | pT+clump.MultiPRS | All.MultiPRS | 0.131 | 0.196 | -0.065 | 0.0000000 | 0.124 | 0.178 | -0.054 | 7.72e-10 |
RheuArth | lassosum.10FCVal | All.MultiPRS | 0.162 | 0.196 | -0.035 | 0.0000005 | 0.130 | 0.178 | -0.048 | 9.39e-12 |
RheuArth | PRScs.MultiPRS | All.MultiPRS | 0.166 | 0.196 | -0.031 | 0.0000089 | 0.133 | 0.178 | -0.045 | 4.93e-11 |
RheuArth | LDpred1.Inf | All.MultiPRS | 0.136 | 0.196 | -0.060 | 0.0000000 | 0.111 | 0.178 | -0.067 | 7.10e-15 |
RheuArth | MegaPRS.10FCVal | All.MultiPRS | 0.174 | 0.196 | -0.023 | 0.0010247 | 0.143 | 0.178 | -0.035 | 1.68e-08 |
RheuArth | PRScs.PseudoVal | All.MultiPRS | 0.162 | 0.196 | -0.034 | 0.0000009 | 0.129 | 0.178 | -0.049 | 3.07e-12 |
RheuArth | All.MultiPRS | All.MultiPRS | 0.196 | 0.196 | 0.000 | 1.0000000 | 0.178 | 0.178 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.MultiPRS | All.MultiPRS | 0.151 | 0.196 | -0.045 | 0.0000000 | 0.127 | 0.178 | -0.050 | 5.60e-11 |
RheuArth | LDpred1.MultiPRS | All.MultiPRS | 0.145 | 0.196 | -0.051 | 0.0000000 | 0.119 | 0.178 | -0.059 | 4.55e-13 |
RheuArth | pT+clump.10FCVal | All.MultiPRS | 0.111 | 0.196 | -0.085 | 0.0000000 | 0.103 | 0.178 | -0.074 | 2.19e-14 |
RheuArth | lassosum.MultiPRS | All.MultiPRS | 0.183 | 0.196 | -0.014 | 0.0000004 | 0.150 | 0.178 | -0.028 | 2.67e-06 |
RheuArth | LDpred2.PseudoVal | All.MultiPRS | 0.091 | 0.196 | -0.105 | 0.0000000 | 0.077 | 0.178 | -0.101 | 1.92e-21 |
RheuArth | LDpred1.10FCVal | All.MultiPRS | 0.136 | 0.196 | -0.060 | 0.0000000 | 0.112 | 0.178 | -0.066 | 1.16e-14 |
RheuArth | SBLUP.Inf | All.MultiPRS | 0.112 | 0.196 | -0.084 | 0.0000000 | 0.097 | 0.178 | -0.081 | 6.52e-17 |
RheuArth | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.162 | 0.142 | 0.020 | 0.0000000 | 0.129 | 0.111 | 0.018 | 2.45e-05 |
RheuArth | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.124 | 0.142 | -0.018 | 0.0007223 | 0.119 | 0.111 | 0.008 | 4.44e-01 |
RheuArth | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.151 | 0.142 | 0.009 | 0.2155819 | 0.127 | 0.111 | 0.017 | 3.37e-02 |
RheuArth | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.166 | 0.142 | 0.023 | 0.0007534 | 0.133 | 0.111 | 0.022 | 6.67e-06 |
RheuArth | LDpred1.Inf | DBSLMM.PseudoVal | 0.136 | 0.142 | -0.006 | 0.1564528 | 0.111 | 0.111 | 0.000 | 9.75e-01 |
RheuArth | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.131 | 0.142 | -0.011 | 0.1130633 | 0.124 | 0.111 | 0.013 | 2.00e-01 |
RheuArth | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.151 | 0.142 | 0.009 | 0.0177635 | 0.128 | 0.111 | 0.018 | 2.01e-02 |
RheuArth | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.114 | 0.142 | -0.028 | 0.0000000 | 0.089 | 0.111 | -0.021 | 3.52e-02 |
RheuArth | LDpred2.Inf | DBSLMM.PseudoVal | 0.085 | 0.142 | -0.057 | 0.0000000 | 0.072 | 0.111 | -0.039 | 1.03e-03 |
RheuArth | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.174 | 0.142 | 0.031 | 0.0000000 | 0.143 | 0.111 | 0.032 | 2.19e-06 |
RheuArth | All.MultiPRS | DBSLMM.PseudoVal | 0.196 | 0.142 | 0.054 | 0.0000000 | 0.178 | 0.111 | 0.067 | 1.13e-16 |
RheuArth | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.183 | 0.142 | 0.040 | 0.0000000 | 0.150 | 0.111 | 0.039 | 4.38e-11 |
RheuArth | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.091 | 0.142 | -0.051 | 0.0000000 | 0.077 | 0.111 | -0.034 | 2.97e-03 |
RheuArth | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.145 | 0.142 | 0.003 | 0.6473652 | 0.119 | 0.111 | 0.008 | 2.79e-01 |
RheuArth | SBLUP.Inf | DBSLMM.PseudoVal | 0.112 | 0.142 | -0.030 | 0.0000000 | 0.097 | 0.111 | -0.014 | 1.80e-01 |
RheuArth | lassosum.10FCVal | DBSLMM.PseudoVal | 0.162 | 0.142 | 0.019 | 0.0000000 | 0.130 | 0.111 | 0.019 | 7.03e-04 |
RheuArth | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.111 | 0.111 | 0.000 | 1.00e+00 |
RheuArth | PRScs.10FCVal | DBSLMM.PseudoVal | 0.161 | 0.142 | 0.019 | 0.0000000 | 0.128 | 0.111 | 0.017 | 8.66e-05 |
RheuArth | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.136 | 0.142 | -0.006 | 0.1600953 | 0.112 | 0.111 | 0.001 | 9.21e-01 |
RheuArth | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.111 | 0.142 | -0.031 | 0.0000000 | 0.103 | 0.111 | -0.007 | 4.95e-01 |
RheuArth | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.175 | 0.142 | 0.033 | 0.0000018 | 0.144 | 0.111 | 0.033 | 2.05e-07 |
RheuArth | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.160 | 0.142 | 0.017 | 0.0000001 | 0.124 | 0.111 | 0.013 | 4.13e-02 |
RheuArth | LDpred2.MultiPRS | lassosum.MultiPRS | 0.151 | 0.183 | -0.032 | 0.0000044 | 0.127 | 0.150 | -0.023 | 1.09e-03 |
RheuArth | LDpred2.PseudoVal | lassosum.MultiPRS | 0.091 | 0.183 | -0.091 | 0.0000000 | 0.077 | 0.150 | -0.074 | 3.15e-14 |
RheuArth | PRScs.MultiPRS | lassosum.MultiPRS | 0.166 | 0.183 | -0.017 | 0.0136847 | 0.133 | 0.150 | -0.017 | 1.07e-05 |
RheuArth | LDpred2.Inf | lassosum.MultiPRS | 0.085 | 0.183 | -0.098 | 0.0000000 | 0.072 | 0.150 | -0.078 | 4.72e-15 |
RheuArth | PRScs.PseudoVal | lassosum.MultiPRS | 0.162 | 0.183 | -0.020 | 0.0034698 | 0.129 | 0.150 | -0.021 | 7.80e-07 |
RheuArth | pT+clump.MultiPRS | lassosum.MultiPRS | 0.131 | 0.183 | -0.051 | 0.0000000 | 0.124 | 0.150 | -0.026 | 1.26e-03 |
RheuArth | PRScs.10FCVal | lassosum.MultiPRS | 0.161 | 0.183 | -0.022 | 0.0019405 | 0.128 | 0.150 | -0.022 | 4.05e-07 |
RheuArth | LDpred2.10FCVal | lassosum.MultiPRS | 0.151 | 0.183 | -0.031 | 0.0000058 | 0.128 | 0.150 | -0.022 | 2.24e-03 |
RheuArth | pT+clump.10FCVal | lassosum.MultiPRS | 0.111 | 0.183 | -0.071 | 0.0000000 | 0.103 | 0.150 | -0.047 | 1.39e-06 |
RheuArth | SBayesR.PseudoVal | lassosum.MultiPRS | 0.124 | 0.183 | -0.058 | 0.0000000 | 0.119 | 0.150 | -0.031 | 4.64e-04 |
RheuArth | lassosum.10FCVal | lassosum.MultiPRS | 0.162 | 0.183 | -0.021 | 0.0023546 | 0.130 | 0.150 | -0.020 | 1.55e-08 |
RheuArth | All.MultiPRS | lassosum.MultiPRS | 0.196 | 0.183 | 0.014 | 0.0000004 | 0.178 | 0.150 | 0.028 | 2.67e-06 |
RheuArth | SBLUP.Inf | lassosum.MultiPRS | 0.112 | 0.183 | -0.071 | 0.0000000 | 0.097 | 0.150 | -0.054 | 2.26e-10 |
RheuArth | LDpred1.MultiPRS | lassosum.MultiPRS | 0.145 | 0.183 | -0.037 | 0.0000001 | 0.119 | 0.150 | -0.031 | 7.91e-07 |
RheuArth | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.160 | 0.183 | -0.023 | 0.0008600 | 0.124 | 0.150 | -0.026 | 3.16e-06 |
RheuArth | lassosum.MultiPRS | lassosum.MultiPRS | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
RheuArth | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.142 | 0.183 | -0.040 | 0.0000000 | 0.111 | 0.150 | -0.039 | 4.38e-11 |
RheuArth | LDpred1.10FCVal | lassosum.MultiPRS | 0.136 | 0.183 | -0.046 | 0.0000000 | 0.112 | 0.150 | -0.039 | 1.72e-08 |
RheuArth | MegaPRS.10FCVal | lassosum.MultiPRS | 0.174 | 0.183 | -0.009 | 0.1933837 | 0.143 | 0.150 | -0.007 | 1.33e-01 |
RheuArth | LDpred1.Inf | lassosum.MultiPRS | 0.136 | 0.183 | -0.046 | 0.0000000 | 0.111 | 0.150 | -0.039 | 9.27e-09 |
RheuArth | lassosum.PseudoVal | lassosum.MultiPRS | 0.114 | 0.183 | -0.068 | 0.0000000 | 0.089 | 0.150 | -0.061 | 2.33e-13 |
RheuArth | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.175 | 0.183 | -0.007 | 0.2881645 | 0.144 | 0.150 | -0.006 | 1.51e-01 |
RheuArth | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.160 | 0.114 | 0.045 | 0.0000000 | 0.124 | 0.089 | 0.035 | 2.04e-04 |
RheuArth | PRScs.MultiPRS | lassosum.PseudoVal | 0.166 | 0.114 | 0.051 | 0.0000000 | 0.133 | 0.089 | 0.044 | 3.08e-08 |
RheuArth | LDpred1.Inf | lassosum.PseudoVal | 0.136 | 0.114 | 0.022 | 0.0000000 | 0.111 | 0.089 | 0.022 | 5.69e-03 |
RheuArth | pT+clump.MultiPRS | lassosum.PseudoVal | 0.131 | 0.114 | 0.017 | 0.0161140 | 0.124 | 0.089 | 0.035 | 4.18e-04 |
RheuArth | All.MultiPRS | lassosum.PseudoVal | 0.196 | 0.114 | 0.082 | 0.0000000 | 0.178 | 0.089 | 0.088 | 7.84e-20 |
RheuArth | LDpred2.MultiPRS | lassosum.PseudoVal | 0.151 | 0.114 | 0.036 | 0.0000002 | 0.127 | 0.089 | 0.038 | 7.30e-05 |
RheuArth | SBayesR.PseudoVal | lassosum.PseudoVal | 0.124 | 0.114 | 0.010 | 0.0427782 | 0.119 | 0.089 | 0.030 | 2.34e-03 |
RheuArth | lassosum.MultiPRS | lassosum.PseudoVal | 0.183 | 0.114 | 0.068 | 0.0000000 | 0.150 | 0.089 | 0.061 | 2.33e-13 |
RheuArth | LDpred2.PseudoVal | lassosum.PseudoVal | 0.091 | 0.114 | -0.023 | 0.0000000 | 0.077 | 0.089 | -0.013 | 1.32e-01 |
RheuArth | LDpred1.10FCVal | lassosum.PseudoVal | 0.136 | 0.114 | 0.022 | 0.0000000 | 0.112 | 0.089 | 0.022 | 4.24e-03 |
RheuArth | SBLUP.Inf | lassosum.PseudoVal | 0.112 | 0.114 | -0.002 | 0.5390726 | 0.097 | 0.089 | 0.007 | 3.37e-01 |
RheuArth | lassosum.10FCVal | lassosum.PseudoVal | 0.162 | 0.114 | 0.047 | 0.0000000 | 0.130 | 0.089 | 0.041 | 4.65e-06 |
RheuArth | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.142 | 0.114 | 0.028 | 0.0000000 | 0.111 | 0.089 | 0.021 | 3.52e-02 |
RheuArth | LDpred2.10FCVal | lassosum.PseudoVal | 0.151 | 0.114 | 0.037 | 0.0000000 | 0.128 | 0.089 | 0.039 | 9.95e-05 |
RheuArth | MegaPRS.10FCVal | lassosum.PseudoVal | 0.174 | 0.114 | 0.059 | 0.0000000 | 0.143 | 0.089 | 0.054 | 3.70e-10 |
RheuArth | PRScs.PseudoVal | lassosum.PseudoVal | 0.162 | 0.114 | 0.048 | 0.0000000 | 0.129 | 0.089 | 0.040 | 1.94e-05 |
RheuArth | lassosum.PseudoVal | lassosum.PseudoVal | 0.114 | 0.114 | 0.000 | 1.0000000 | 0.089 | 0.089 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.Inf | lassosum.PseudoVal | 0.085 | 0.114 | -0.029 | 0.0000000 | 0.072 | 0.089 | -0.017 | 4.76e-02 |
RheuArth | LDpred1.MultiPRS | lassosum.PseudoVal | 0.145 | 0.114 | 0.031 | 0.0000083 | 0.119 | 0.089 | 0.030 | 2.27e-04 |
RheuArth | pT+clump.10FCVal | lassosum.PseudoVal | 0.111 | 0.114 | -0.003 | 0.6136922 | 0.103 | 0.089 | 0.014 | 2.56e-01 |
RheuArth | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.175 | 0.114 | 0.061 | 0.0000000 | 0.144 | 0.089 | 0.054 | 1.75e-10 |
RheuArth | PRScs.10FCVal | lassosum.PseudoVal | 0.161 | 0.114 | 0.047 | 0.0000000 | 0.128 | 0.089 | 0.038 | 4.46e-05 |
RheuArth | MegaPRS.MultiPRS | lassosum.10FCVal | 0.175 | 0.162 | 0.014 | 0.0469934 | 0.144 | 0.130 | 0.014 | 3.04e-03 |
RheuArth | PRScs.10FCVal | lassosum.10FCVal | 0.161 | 0.162 | 0.000 | 0.8139068 | 0.128 | 0.130 | -0.002 | 5.84e-01 |
RheuArth | lassosum.MultiPRS | lassosum.10FCVal | 0.183 | 0.162 | 0.021 | 0.0023546 | 0.150 | 0.130 | 0.020 | 1.55e-08 |
RheuArth | LDpred2.PseudoVal | lassosum.10FCVal | 0.091 | 0.162 | -0.070 | 0.0000000 | 0.077 | 0.130 | -0.053 | 5.63e-07 |
RheuArth | MegaPRS.PseudoVal | lassosum.10FCVal | 0.160 | 0.162 | -0.002 | 0.4664924 | 0.124 | 0.130 | -0.006 | 2.96e-01 |
RheuArth | pT+clump.MultiPRS | lassosum.10FCVal | 0.131 | 0.162 | -0.030 | 0.0000125 | 0.124 | 0.130 | -0.006 | 5.22e-01 |
RheuArth | lassosum.10FCVal | lassosum.10FCVal | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.130 | 0.130 | 0.000 | 1.00e+00 |
RheuArth | PRScs.MultiPRS | lassosum.10FCVal | 0.166 | 0.162 | 0.004 | 0.5612076 | 0.133 | 0.130 | 0.003 | 3.74e-01 |
RheuArth | LDpred1.Inf | lassosum.10FCVal | 0.136 | 0.162 | -0.025 | 0.0000000 | 0.111 | 0.130 | -0.019 | 9.06e-03 |
RheuArth | SBayesR.PseudoVal | lassosum.10FCVal | 0.124 | 0.162 | -0.037 | 0.0000000 | 0.119 | 0.130 | -0.011 | 2.92e-01 |
RheuArth | PRScs.PseudoVal | lassosum.10FCVal | 0.162 | 0.162 | 0.001 | 0.6610961 | 0.129 | 0.130 | -0.001 | 8.17e-01 |
RheuArth | All.MultiPRS | lassosum.10FCVal | 0.196 | 0.162 | 0.035 | 0.0000005 | 0.178 | 0.130 | 0.048 | 9.39e-12 |
RheuArth | LDpred2.MultiPRS | lassosum.10FCVal | 0.151 | 0.162 | -0.011 | 0.1203267 | 0.127 | 0.130 | -0.002 | 7.25e-01 |
RheuArth | LDpred1.MultiPRS | lassosum.10FCVal | 0.145 | 0.162 | -0.016 | 0.0194456 | 0.119 | 0.130 | -0.011 | 1.02e-01 |
RheuArth | pT+clump.10FCVal | lassosum.10FCVal | 0.111 | 0.162 | -0.050 | 0.0000000 | 0.103 | 0.130 | -0.027 | 1.18e-02 |
RheuArth | DBSLMM.PseudoVal | lassosum.10FCVal | 0.142 | 0.162 | -0.019 | 0.0000000 | 0.111 | 0.130 | -0.019 | 7.03e-04 |
RheuArth | LDpred1.10FCVal | lassosum.10FCVal | 0.136 | 0.162 | -0.025 | 0.0000000 | 0.112 | 0.130 | -0.018 | 1.29e-02 |
RheuArth | SBLUP.Inf | lassosum.10FCVal | 0.112 | 0.162 | -0.050 | 0.0000000 | 0.097 | 0.130 | -0.033 | 4.26e-04 |
RheuArth | lassosum.PseudoVal | lassosum.10FCVal | 0.114 | 0.162 | -0.047 | 0.0000000 | 0.089 | 0.130 | -0.041 | 4.65e-06 |
RheuArth | LDpred2.10FCVal | lassosum.10FCVal | 0.151 | 0.162 | -0.010 | 0.0028135 | 0.128 | 0.130 | -0.002 | 8.33e-01 |
RheuArth | MegaPRS.10FCVal | lassosum.10FCVal | 0.174 | 0.162 | 0.012 | 0.0000019 | 0.143 | 0.130 | 0.013 | 1.10e-02 |
RheuArth | LDpred2.Inf | lassosum.10FCVal | 0.085 | 0.162 | -0.076 | 0.0000000 | 0.072 | 0.130 | -0.058 | 1.31e-07 |
RheuArth | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.124 | 0.175 | -0.051 | 0.0000000 | 0.119 | 0.144 | -0.025 | 3.79e-03 |
RheuArth | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.131 | 0.175 | -0.044 | 0.0000000 | 0.124 | 0.144 | -0.020 | 1.81e-02 |
RheuArth | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.151 | 0.175 | -0.024 | 0.0004959 | 0.128 | 0.144 | -0.015 | 4.08e-02 |
RheuArth | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.174 | 0.175 | -0.002 | 0.8092098 | 0.143 | 0.144 | -0.001 | 7.09e-01 |
RheuArth | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.162 | 0.175 | -0.013 | 0.0610972 | 0.129 | 0.144 | -0.015 | 1.98e-03 |
RheuArth | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.166 | 0.175 | -0.010 | 0.1583166 | 0.133 | 0.144 | -0.011 | 1.28e-02 |
RheuArth | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.151 | 0.175 | -0.025 | 0.0004057 | 0.127 | 0.144 | -0.016 | 2.57e-02 |
RheuArth | LDpred2.Inf | MegaPRS.MultiPRS | 0.085 | 0.175 | -0.090 | 0.0000000 | 0.072 | 0.144 | -0.072 | 1.19e-13 |
RheuArth | SBLUP.Inf | MegaPRS.MultiPRS | 0.112 | 0.175 | -0.063 | 0.0000000 | 0.097 | 0.144 | -0.047 | 2.05e-09 |
RheuArth | All.MultiPRS | MegaPRS.MultiPRS | 0.196 | 0.175 | 0.021 | 0.0022716 | 0.178 | 0.144 | 0.034 | 8.03e-09 |
RheuArth | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.091 | 0.175 | -0.084 | 0.0000000 | 0.077 | 0.144 | -0.067 | 8.70e-13 |
RheuArth | PRScs.10FCVal | MegaPRS.MultiPRS | 0.161 | 0.175 | -0.014 | 0.0403941 | 0.128 | 0.144 | -0.016 | 1.12e-03 |
RheuArth | LDpred1.Inf | MegaPRS.MultiPRS | 0.136 | 0.175 | -0.039 | 0.0000000 | 0.111 | 0.144 | -0.033 | 3.23e-08 |
RheuArth | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.111 | 0.175 | -0.064 | 0.0000000 | 0.103 | 0.144 | -0.041 | 4.21e-05 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.142 | 0.175 | -0.033 | 0.0000018 | 0.111 | 0.144 | -0.033 | 2.05e-07 |
RheuArth | lassosum.10FCVal | MegaPRS.MultiPRS | 0.162 | 0.175 | -0.014 | 0.0469934 | 0.130 | 0.144 | -0.014 | 3.04e-03 |
RheuArth | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.114 | 0.175 | -0.061 | 0.0000000 | 0.089 | 0.144 | -0.054 | 1.75e-10 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.160 | 0.175 | -0.016 | 0.0230230 | 0.124 | 0.144 | -0.020 | 3.21e-08 |
RheuArth | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.145 | 0.175 | -0.030 | 0.0000160 | 0.119 | 0.144 | -0.025 | 1.27e-05 |
RheuArth | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.183 | 0.175 | 0.007 | 0.2881645 | 0.150 | 0.144 | 0.006 | 1.51e-01 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.175 | 0.175 | 0.000 | 1.0000000 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.136 | 0.175 | -0.039 | 0.0000000 | 0.112 | 0.144 | -0.032 | 1.02e-07 |
RheuArth | LDpred2.Inf | MegaPRS.10FCVal | 0.085 | 0.174 | -0.089 | 0.0000000 | 0.072 | 0.143 | -0.071 | 1.75e-13 |
RheuArth | LDpred2.10FCVal | MegaPRS.10FCVal | 0.151 | 0.174 | -0.022 | 0.0000000 | 0.128 | 0.143 | -0.015 | 5.35e-02 |
RheuArth | PRScs.PseudoVal | MegaPRS.10FCVal | 0.162 | 0.174 | -0.011 | 0.0000195 | 0.129 | 0.143 | -0.014 | 9.05e-03 |
RheuArth | All.MultiPRS | MegaPRS.10FCVal | 0.196 | 0.174 | 0.023 | 0.0010247 | 0.178 | 0.143 | 0.035 | 1.68e-08 |
RheuArth | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.151 | 0.174 | -0.023 | 0.0009218 | 0.127 | 0.143 | -0.016 | 3.45e-02 |
RheuArth | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.124 | 0.174 | -0.049 | 0.0000000 | 0.119 | 0.143 | -0.024 | 5.87e-03 |
RheuArth | PRScs.10FCVal | MegaPRS.10FCVal | 0.161 | 0.174 | -0.013 | 0.0000034 | 0.128 | 0.143 | -0.015 | 5.67e-03 |
RheuArth | pT+clump.10FCVal | MegaPRS.10FCVal | 0.111 | 0.174 | -0.062 | 0.0000000 | 0.103 | 0.143 | -0.040 | 7.56e-05 |
RheuArth | PRScs.MultiPRS | MegaPRS.10FCVal | 0.166 | 0.174 | -0.008 | 0.2406230 | 0.133 | 0.143 | -0.010 | 4.19e-02 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.175 | 0.174 | 0.002 | 0.8092098 | 0.144 | 0.143 | 0.001 | 7.09e-01 |
RheuArth | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.131 | 0.174 | -0.042 | 0.0000000 | 0.124 | 0.143 | -0.019 | 2.50e-02 |
RheuArth | SBLUP.Inf | MegaPRS.10FCVal | 0.112 | 0.174 | -0.062 | 0.0000000 | 0.097 | 0.143 | -0.046 | 4.40e-09 |
RheuArth | lassosum.PseudoVal | MegaPRS.10FCVal | 0.114 | 0.174 | -0.059 | 0.0000000 | 0.089 | 0.143 | -0.054 | 3.70e-10 |
RheuArth | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.091 | 0.174 | -0.082 | 0.0000000 | 0.077 | 0.143 | -0.066 | 1.33e-12 |
RheuArth | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.174 | 0.174 | 0.000 | 1.0000000 | 0.143 | 0.143 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.Inf | MegaPRS.10FCVal | 0.136 | 0.174 | -0.037 | 0.0000000 | 0.111 | 0.143 | -0.032 | 2.81e-07 |
RheuArth | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.145 | 0.174 | -0.028 | 0.0000413 | 0.119 | 0.143 | -0.024 | 6.22e-05 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.142 | 0.174 | -0.031 | 0.0000000 | 0.111 | 0.143 | -0.032 | 2.19e-06 |
RheuArth | lassosum.MultiPRS | MegaPRS.10FCVal | 0.183 | 0.174 | 0.009 | 0.1933837 | 0.150 | 0.143 | 0.007 | 1.33e-01 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.160 | 0.174 | -0.014 | 0.0000000 | 0.124 | 0.143 | -0.019 | 7.12e-05 |
RheuArth | LDpred1.10FCVal | MegaPRS.10FCVal | 0.136 | 0.174 | -0.037 | 0.0000000 | 0.112 | 0.143 | -0.031 | 6.85e-07 |
RheuArth | lassosum.10FCVal | MegaPRS.10FCVal | 0.162 | 0.174 | -0.012 | 0.0000019 | 0.130 | 0.143 | -0.013 | 1.10e-02 |
RheuArth | PRScs.10FCVal | MegaPRS.PseudoVal | 0.161 | 0.160 | 0.002 | 0.5629583 | 0.128 | 0.124 | 0.004 | 5.03e-01 |
RheuArth | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.131 | 0.160 | -0.028 | 0.0000452 | 0.124 | 0.124 | 0.000 | 9.90e-01 |
RheuArth | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.151 | 0.160 | -0.008 | 0.0403571 | 0.128 | 0.124 | 0.004 | 6.15e-01 |
RheuArth | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.166 | 0.160 | 0.006 | 0.3842617 | 0.133 | 0.124 | 0.009 | 8.80e-02 |
RheuArth | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.151 | 0.160 | -0.009 | 0.2049786 | 0.127 | 0.124 | 0.003 | 6.98e-01 |
RheuArth | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.124 | 0.160 | -0.035 | 0.0000000 | 0.119 | 0.124 | -0.005 | 5.79e-01 |
RheuArth | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.111 | 0.160 | -0.048 | 0.0000000 | 0.103 | 0.124 | -0.021 | 3.98e-02 |
RheuArth | LDpred2.Inf | MegaPRS.PseudoVal | 0.085 | 0.160 | -0.074 | 0.0000000 | 0.072 | 0.124 | -0.052 | 7.96e-07 |
RheuArth | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.091 | 0.160 | -0.068 | 0.0000000 | 0.077 | 0.124 | -0.048 | 3.90e-06 |
RheuArth | All.MultiPRS | MegaPRS.PseudoVal | 0.196 | 0.160 | 0.037 | 0.0000001 | 0.178 | 0.124 | 0.054 | 2.39e-14 |
RheuArth | SBLUP.Inf | MegaPRS.PseudoVal | 0.112 | 0.160 | -0.048 | 0.0000000 | 0.097 | 0.124 | -0.028 | 2.08e-03 |
RheuArth | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.162 | 0.160 | 0.003 | 0.2966815 | 0.129 | 0.124 | 0.005 | 3.67e-01 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.142 | 0.160 | -0.017 | 0.0000001 | 0.111 | 0.124 | -0.013 | 4.13e-02 |
RheuArth | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.183 | 0.160 | 0.023 | 0.0008600 | 0.150 | 0.124 | 0.026 | 3.16e-06 |
RheuArth | LDpred1.Inf | MegaPRS.PseudoVal | 0.136 | 0.160 | -0.023 | 0.0000000 | 0.111 | 0.124 | -0.013 | 5.83e-02 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.175 | 0.160 | 0.016 | 0.0230230 | 0.144 | 0.124 | 0.020 | 3.21e-08 |
RheuArth | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.114 | 0.160 | -0.045 | 0.0000000 | 0.089 | 0.124 | -0.035 | 2.04e-04 |
RheuArth | lassosum.10FCVal | MegaPRS.PseudoVal | 0.162 | 0.160 | 0.002 | 0.4664924 | 0.130 | 0.124 | 0.006 | 2.96e-01 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.160 | 0.160 | 0.000 | 1.0000000 | 0.124 | 0.124 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.174 | 0.160 | 0.014 | 0.0000000 | 0.143 | 0.124 | 0.019 | 7.12e-05 |
RheuArth | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.145 | 0.160 | -0.014 | 0.0402318 | 0.119 | 0.124 | -0.005 | 4.35e-01 |
RheuArth | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.136 | 0.160 | -0.023 | 0.0000000 | 0.112 | 0.124 | -0.013 | 7.54e-02 |
RheuArth | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.151 | 0.145 | 0.005 | 0.1395241 | 0.127 | 0.119 | 0.008 | 2.68e-01 |
RheuArth | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.091 | 0.145 | -0.054 | 0.0000000 | 0.077 | 0.119 | -0.042 | 7.86e-08 |
RheuArth | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.124 | 0.145 | -0.021 | 0.0023143 | 0.119 | 0.119 | 0.000 | 9.95e-01 |
RheuArth | LDpred1.Inf | LDpred1.MultiPRS | 0.136 | 0.145 | -0.009 | 0.1928660 | 0.111 | 0.119 | -0.008 | 1.11e-02 |
RheuArth | PRScs.PseudoVal | LDpred1.MultiPRS | 0.162 | 0.145 | 0.017 | 0.0142540 | 0.129 | 0.119 | 0.010 | 9.98e-02 |
RheuArth | PRScs.MultiPRS | LDpred1.MultiPRS | 0.166 | 0.145 | 0.020 | 0.0000000 | 0.133 | 0.119 | 0.014 | 6.35e-03 |
RheuArth | LDpred2.Inf | LDpred1.MultiPRS | 0.085 | 0.145 | -0.060 | 0.0000000 | 0.072 | 0.119 | -0.047 | 9.38e-09 |
RheuArth | LDpred2.10FCVal | LDpred1.MultiPRS | 0.151 | 0.145 | 0.006 | 0.4044995 | 0.128 | 0.119 | 0.009 | 2.39e-01 |
RheuArth | pT+clump.10FCVal | LDpred1.MultiPRS | 0.111 | 0.145 | -0.034 | 0.0000010 | 0.103 | 0.119 | -0.016 | 1.69e-01 |
RheuArth | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.174 | 0.145 | 0.028 | 0.0000413 | 0.143 | 0.119 | 0.024 | 6.22e-05 |
RheuArth | PRScs.10FCVal | LDpred1.MultiPRS | 0.161 | 0.145 | 0.016 | 0.0229856 | 0.128 | 0.119 | 0.009 | 1.62e-01 |
RheuArth | All.MultiPRS | LDpred1.MultiPRS | 0.196 | 0.145 | 0.051 | 0.0000000 | 0.178 | 0.119 | 0.059 | 4.55e-13 |
RheuArth | SBLUP.Inf | LDpred1.MultiPRS | 0.112 | 0.145 | -0.033 | 0.0000015 | 0.097 | 0.119 | -0.022 | 5.58e-04 |
RheuArth | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.145 | 0.145 | 0.000 | 1.0000000 | 0.119 | 0.119 | 0.000 | 1.00e+00 |
RheuArth | lassosum.10FCVal | LDpred1.MultiPRS | 0.162 | 0.145 | 0.016 | 0.0194456 | 0.130 | 0.119 | 0.011 | 1.02e-01 |
RheuArth | lassosum.MultiPRS | LDpred1.MultiPRS | 0.183 | 0.145 | 0.037 | 0.0000001 | 0.150 | 0.119 | 0.031 | 7.91e-07 |
RheuArth | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.142 | 0.145 | -0.003 | 0.6473652 | 0.111 | 0.119 | -0.008 | 2.79e-01 |
RheuArth | LDpred1.10FCVal | LDpred1.MultiPRS | 0.136 | 0.145 | -0.009 | 0.1915045 | 0.112 | 0.119 | -0.007 | 1.54e-02 |
RheuArth | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.131 | 0.145 | -0.014 | 0.0416137 | 0.124 | 0.119 | 0.005 | 5.93e-01 |
RheuArth | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.160 | 0.145 | 0.014 | 0.0402318 | 0.124 | 0.119 | 0.005 | 4.35e-01 |
RheuArth | lassosum.PseudoVal | LDpred1.MultiPRS | 0.114 | 0.145 | -0.031 | 0.0000083 | 0.089 | 0.119 | -0.030 | 2.27e-04 |
RheuArth | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.175 | 0.145 | 0.030 | 0.0000160 | 0.144 | 0.119 | 0.025 | 1.27e-05 |
RheuArth | MegaPRS.MultiPRS | LDpred1.Inf | 0.175 | 0.136 | 0.039 | 0.0000000 | 0.144 | 0.111 | 0.033 | 3.23e-08 |
RheuArth | PRScs.10FCVal | LDpred1.Inf | 0.161 | 0.136 | 0.025 | 0.0000000 | 0.128 | 0.111 | 0.017 | 1.74e-02 |
RheuArth | LDpred2.MultiPRS | LDpred1.Inf | 0.151 | 0.136 | 0.014 | 0.0374385 | 0.127 | 0.111 | 0.016 | 3.76e-02 |
RheuArth | LDpred1.MultiPRS | LDpred1.Inf | 0.145 | 0.136 | 0.009 | 0.1928660 | 0.119 | 0.111 | 0.008 | 1.11e-02 |
RheuArth | pT+clump.10FCVal | LDpred1.Inf | 0.111 | 0.136 | -0.025 | 0.0000117 | 0.103 | 0.111 | -0.008 | 5.06e-01 |
RheuArth | All.MultiPRS | LDpred1.Inf | 0.196 | 0.136 | 0.060 | 0.0000000 | 0.178 | 0.111 | 0.067 | 7.10e-15 |
RheuArth | LDpred2.PseudoVal | LDpred1.Inf | 0.091 | 0.136 | -0.045 | 0.0000000 | 0.077 | 0.111 | -0.034 | 7.15e-07 |
RheuArth | MegaPRS.PseudoVal | LDpred1.Inf | 0.160 | 0.136 | 0.023 | 0.0000000 | 0.124 | 0.111 | 0.013 | 5.83e-02 |
RheuArth | pT+clump.MultiPRS | LDpred1.Inf | 0.131 | 0.136 | -0.005 | 0.4560847 | 0.124 | 0.111 | 0.013 | 1.63e-01 |
RheuArth | lassosum.MultiPRS | LDpred1.Inf | 0.183 | 0.136 | 0.046 | 0.0000000 | 0.150 | 0.111 | 0.039 | 9.27e-09 |
RheuArth | DBSLMM.PseudoVal | LDpred1.Inf | 0.142 | 0.136 | 0.006 | 0.1564528 | 0.111 | 0.111 | 0.000 | 9.75e-01 |
RheuArth | LDpred2.10FCVal | LDpred1.Inf | 0.151 | 0.136 | 0.015 | 0.0002940 | 0.128 | 0.111 | 0.017 | 3.88e-02 |
RheuArth | MegaPRS.10FCVal | LDpred1.Inf | 0.174 | 0.136 | 0.037 | 0.0000000 | 0.143 | 0.111 | 0.032 | 2.81e-07 |
RheuArth | PRScs.PseudoVal | LDpred1.Inf | 0.162 | 0.136 | 0.026 | 0.0000000 | 0.129 | 0.111 | 0.018 | 8.33e-03 |
RheuArth | lassosum.PseudoVal | LDpred1.Inf | 0.114 | 0.136 | -0.022 | 0.0000000 | 0.089 | 0.111 | -0.022 | 5.69e-03 |
RheuArth | LDpred2.Inf | LDpred1.Inf | 0.085 | 0.136 | -0.051 | 0.0000000 | 0.072 | 0.111 | -0.039 | 6.42e-08 |
RheuArth | PRScs.MultiPRS | LDpred1.Inf | 0.166 | 0.136 | 0.029 | 0.0000241 | 0.133 | 0.111 | 0.022 | 1.22e-04 |
RheuArth | LDpred1.10FCVal | LDpred1.Inf | 0.136 | 0.136 | 0.000 | 0.9765581 | 0.112 | 0.111 | 0.001 | 7.53e-01 |
RheuArth | SBLUP.Inf | LDpred1.Inf | 0.112 | 0.136 | -0.024 | 0.0000000 | 0.097 | 0.111 | -0.014 | 6.78e-03 |
RheuArth | lassosum.10FCVal | LDpred1.Inf | 0.162 | 0.136 | 0.025 | 0.0000000 | 0.130 | 0.111 | 0.019 | 9.06e-03 |
RheuArth | LDpred1.Inf | LDpred1.Inf | 0.136 | 0.136 | 0.000 | 1.0000000 | 0.111 | 0.111 | 0.000 | 1.00e+00 |
RheuArth | SBayesR.PseudoVal | LDpred1.Inf | 0.124 | 0.136 | -0.012 | 0.0051554 | 0.119 | 0.111 | 0.008 | 3.59e-01 |
RheuArth | LDpred2.Inf | LDpred1.10FCVal | 0.085 | 0.136 | -0.051 | 0.0000000 | 0.072 | 0.112 | -0.040 | 3.55e-08 |
RheuArth | PRScs.10FCVal | LDpred1.10FCVal | 0.161 | 0.136 | 0.025 | 0.0000000 | 0.128 | 0.112 | 0.016 | 2.36e-02 |
RheuArth | lassosum.MultiPRS | LDpred1.10FCVal | 0.183 | 0.136 | 0.046 | 0.0000000 | 0.150 | 0.112 | 0.039 | 1.72e-08 |
RheuArth | LDpred2.MultiPRS | LDpred1.10FCVal | 0.151 | 0.136 | 0.014 | 0.0371134 | 0.127 | 0.112 | 0.016 | 4.62e-02 |
RheuArth | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.175 | 0.136 | 0.039 | 0.0000000 | 0.144 | 0.112 | 0.032 | 1.02e-07 |
RheuArth | SBayesR.PseudoVal | LDpred1.10FCVal | 0.124 | 0.136 | -0.012 | 0.0051231 | 0.119 | 0.112 | 0.007 | 3.91e-01 |
RheuArth | PRScs.PseudoVal | LDpred1.10FCVal | 0.162 | 0.136 | 0.026 | 0.0000000 | 0.129 | 0.112 | 0.017 | 1.20e-02 |
RheuArth | All.MultiPRS | LDpred1.10FCVal | 0.196 | 0.136 | 0.060 | 0.0000000 | 0.178 | 0.112 | 0.066 | 1.16e-14 |
RheuArth | LDpred2.PseudoVal | LDpred1.10FCVal | 0.091 | 0.136 | -0.045 | 0.0000000 | 0.077 | 0.112 | -0.035 | 4.04e-07 |
RheuArth | LDpred1.MultiPRS | LDpred1.10FCVal | 0.145 | 0.136 | 0.009 | 0.1915045 | 0.119 | 0.112 | 0.007 | 1.54e-02 |
RheuArth | pT+clump.10FCVal | LDpred1.10FCVal | 0.111 | 0.136 | -0.025 | 0.0000125 | 0.103 | 0.112 | -0.008 | 4.74e-01 |
RheuArth | SBLUP.Inf | LDpred1.10FCVal | 0.112 | 0.136 | -0.024 | 0.0000000 | 0.097 | 0.112 | -0.015 | 4.75e-03 |
RheuArth | PRScs.MultiPRS | LDpred1.10FCVal | 0.166 | 0.136 | 0.029 | 0.0000237 | 0.133 | 0.112 | 0.022 | 2.28e-04 |
RheuArth | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.160 | 0.136 | 0.023 | 0.0000000 | 0.124 | 0.112 | 0.013 | 7.54e-02 |
RheuArth | pT+clump.MultiPRS | LDpred1.10FCVal | 0.131 | 0.136 | -0.005 | 0.4581233 | 0.124 | 0.112 | 0.012 | 1.81e-01 |
RheuArth | LDpred1.Inf | LDpred1.10FCVal | 0.136 | 0.136 | 0.000 | 0.9765581 | 0.111 | 0.112 | -0.001 | 7.53e-01 |
RheuArth | lassosum.PseudoVal | LDpred1.10FCVal | 0.114 | 0.136 | -0.022 | 0.0000000 | 0.089 | 0.112 | -0.022 | 4.24e-03 |
RheuArth | LDpred2.10FCVal | LDpred1.10FCVal | 0.151 | 0.136 | 0.015 | 0.0003092 | 0.128 | 0.112 | 0.017 | 4.70e-02 |
RheuArth | MegaPRS.10FCVal | LDpred1.10FCVal | 0.174 | 0.136 | 0.037 | 0.0000000 | 0.143 | 0.112 | 0.031 | 6.85e-07 |
RheuArth | LDpred1.10FCVal | LDpred1.10FCVal | 0.136 | 0.136 | 0.000 | 1.0000000 | 0.112 | 0.112 | 0.000 | 1.00e+00 |
RheuArth | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.142 | 0.136 | 0.006 | 0.1600953 | 0.111 | 0.112 | -0.001 | 9.21e-01 |
RheuArth | lassosum.10FCVal | LDpred1.10FCVal | 0.162 | 0.136 | 0.025 | 0.0000000 | 0.130 | 0.112 | 0.018 | 1.29e-02 |
RheuArth | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.142 | 0.151 | -0.009 | 0.2155819 | 0.111 | 0.127 | -0.017 | 3.37e-02 |
RheuArth | LDpred2.10FCVal | LDpred2.MultiPRS | 0.151 | 0.151 | 0.000 | 0.9586983 | 0.128 | 0.127 | 0.001 | 5.19e-01 |
RheuArth | PRScs.PseudoVal | LDpred2.MultiPRS | 0.162 | 0.151 | 0.012 | 0.0950219 | 0.129 | 0.127 | 0.002 | 8.07e-01 |
RheuArth | All.MultiPRS | LDpred2.MultiPRS | 0.196 | 0.151 | 0.045 | 0.0000000 | 0.178 | 0.127 | 0.050 | 5.60e-11 |
RheuArth | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.151 | 0.151 | 0.000 | 1.0000000 | 0.127 | 0.127 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.174 | 0.151 | 0.023 | 0.0009218 | 0.143 | 0.127 | 0.016 | 3.45e-02 |
RheuArth | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.160 | 0.151 | 0.009 | 0.2049786 | 0.124 | 0.127 | -0.003 | 6.98e-01 |
RheuArth | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.131 | 0.151 | -0.020 | 0.0047770 | 0.124 | 0.127 | -0.003 | 7.59e-01 |
RheuArth | lassosum.10FCVal | LDpred2.MultiPRS | 0.162 | 0.151 | 0.011 | 0.1203267 | 0.130 | 0.127 | 0.002 | 7.25e-01 |
RheuArth | PRScs.MultiPRS | LDpred2.MultiPRS | 0.166 | 0.151 | 0.015 | 0.0000026 | 0.133 | 0.127 | 0.006 | 3.67e-01 |
RheuArth | LDpred1.Inf | LDpred2.MultiPRS | 0.136 | 0.151 | -0.014 | 0.0374385 | 0.111 | 0.127 | -0.016 | 3.76e-02 |
RheuArth | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.124 | 0.151 | -0.027 | 0.0001307 | 0.119 | 0.127 | -0.008 | 4.55e-01 |
RheuArth | pT+clump.10FCVal | LDpred2.MultiPRS | 0.111 | 0.151 | -0.040 | 0.0000000 | 0.103 | 0.127 | -0.024 | 4.90e-02 |
RheuArth | lassosum.PseudoVal | LDpred2.MultiPRS | 0.114 | 0.151 | -0.036 | 0.0000002 | 0.089 | 0.127 | -0.038 | 7.30e-05 |
RheuArth | LDpred2.Inf | LDpred2.MultiPRS | 0.085 | 0.151 | -0.066 | 0.0000000 | 0.072 | 0.127 | -0.055 | 8.96e-10 |
RheuArth | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.145 | 0.151 | -0.005 | 0.1395241 | 0.119 | 0.127 | -0.008 | 2.68e-01 |
RheuArth | SBLUP.Inf | LDpred2.MultiPRS | 0.112 | 0.151 | -0.039 | 0.0000000 | 0.097 | 0.127 | -0.031 | 3.36e-04 |
RheuArth | lassosum.MultiPRS | LDpred2.MultiPRS | 0.183 | 0.151 | 0.032 | 0.0000044 | 0.150 | 0.127 | 0.023 | 1.09e-03 |
RheuArth | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.091 | 0.151 | -0.060 | 0.0000000 | 0.077 | 0.127 | -0.051 | 3.13e-09 |
RheuArth | LDpred1.10FCVal | LDpred2.MultiPRS | 0.136 | 0.151 | -0.014 | 0.0371134 | 0.112 | 0.127 | -0.016 | 4.62e-02 |
RheuArth | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.175 | 0.151 | 0.025 | 0.0004057 | 0.144 | 0.127 | 0.016 | 2.57e-02 |
RheuArth | PRScs.10FCVal | LDpred2.MultiPRS | 0.161 | 0.151 | 0.010 | 0.1355323 | 0.128 | 0.127 | 0.000 | 9.45e-01 |
RheuArth | LDpred2.MultiPRS | LDpred2.10FCVal | 0.151 | 0.151 | 0.000 | 0.9586983 | 0.127 | 0.128 | -0.001 | 5.19e-01 |
RheuArth | LDpred2.Inf | LDpred2.10FCVal | 0.085 | 0.151 | -0.066 | 0.0000000 | 0.072 | 0.128 | -0.056 | 1.22e-08 |
RheuArth | PRScs.10FCVal | LDpred2.10FCVal | 0.161 | 0.151 | 0.010 | 0.0021617 | 0.128 | 0.128 | -0.001 | 9.37e-01 |
RheuArth | SBayesR.PseudoVal | LDpred2.10FCVal | 0.124 | 0.151 | -0.027 | 0.0000023 | 0.119 | 0.128 | -0.009 | 4.23e-01 |
RheuArth | lassosum.PseudoVal | LDpred2.10FCVal | 0.114 | 0.151 | -0.037 | 0.0000000 | 0.089 | 0.128 | -0.039 | 9.95e-05 |
RheuArth | LDpred2.10FCVal | LDpred2.10FCVal | 0.151 | 0.151 | 0.000 | 1.0000000 | 0.128 | 0.128 | 0.000 | 1.00e+00 |
RheuArth | PRScs.PseudoVal | LDpred2.10FCVal | 0.162 | 0.151 | 0.011 | 0.0005788 | 0.129 | 0.128 | 0.001 | 9.20e-01 |
RheuArth | LDpred1.MultiPRS | LDpred2.10FCVal | 0.145 | 0.151 | -0.006 | 0.4044995 | 0.119 | 0.128 | -0.009 | 2.39e-01 |
RheuArth | pT+clump.10FCVal | LDpred2.10FCVal | 0.111 | 0.151 | -0.040 | 0.0000000 | 0.103 | 0.128 | -0.025 | 4.03e-02 |
RheuArth | All.MultiPRS | LDpred2.10FCVal | 0.196 | 0.151 | 0.045 | 0.0000000 | 0.178 | 0.128 | 0.049 | 2.04e-10 |
RheuArth | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.175 | 0.151 | 0.024 | 0.0004959 | 0.144 | 0.128 | 0.015 | 4.08e-02 |
RheuArth | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.160 | 0.151 | 0.008 | 0.0403571 | 0.124 | 0.128 | -0.004 | 6.15e-01 |
RheuArth | pT+clump.MultiPRS | LDpred2.10FCVal | 0.131 | 0.151 | -0.020 | 0.0041887 | 0.124 | 0.128 | -0.004 | 6.98e-01 |
RheuArth | lassosum.MultiPRS | LDpred2.10FCVal | 0.183 | 0.151 | 0.031 | 0.0000058 | 0.150 | 0.128 | 0.022 | 2.24e-03 |
RheuArth | PRScs.MultiPRS | LDpred2.10FCVal | 0.166 | 0.151 | 0.014 | 0.0370436 | 0.133 | 0.128 | 0.005 | 4.62e-01 |
RheuArth | LDpred1.Inf | LDpred2.10FCVal | 0.136 | 0.151 | -0.015 | 0.0002940 | 0.111 | 0.128 | -0.017 | 3.88e-02 |
RheuArth | MegaPRS.10FCVal | LDpred2.10FCVal | 0.174 | 0.151 | 0.022 | 0.0000000 | 0.143 | 0.128 | 0.015 | 5.35e-02 |
RheuArth | SBLUP.Inf | LDpred2.10FCVal | 0.112 | 0.151 | -0.039 | 0.0000000 | 0.097 | 0.128 | -0.032 | 7.23e-04 |
RheuArth | lassosum.10FCVal | LDpred2.10FCVal | 0.162 | 0.151 | 0.010 | 0.0028135 | 0.130 | 0.128 | 0.002 | 8.33e-01 |
RheuArth | LDpred2.PseudoVal | LDpred2.10FCVal | 0.091 | 0.151 | -0.060 | 0.0000000 | 0.077 | 0.128 | -0.052 | 4.18e-08 |
RheuArth | LDpred1.10FCVal | LDpred2.10FCVal | 0.136 | 0.151 | -0.015 | 0.0003092 | 0.112 | 0.128 | -0.017 | 4.70e-02 |
RheuArth | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.142 | 0.151 | -0.009 | 0.0177635 | 0.111 | 0.128 | -0.018 | 2.01e-02 |
RheuArth | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.174 | 0.091 | 0.082 | 0.0000000 | 0.143 | 0.077 | 0.066 | 1.33e-12 |
RheuArth | PRScs.PseudoVal | LDpred2.PseudoVal | 0.162 | 0.091 | 0.071 | 0.0000000 | 0.129 | 0.077 | 0.052 | 7.39e-07 |
RheuArth | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.151 | 0.091 | 0.060 | 0.0000000 | 0.127 | 0.077 | 0.051 | 3.13e-09 |
RheuArth | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.175 | 0.091 | 0.084 | 0.0000000 | 0.144 | 0.077 | 0.067 | 8.70e-13 |
RheuArth | PRScs.10FCVal | LDpred2.PseudoVal | 0.161 | 0.091 | 0.070 | 0.0000000 | 0.128 | 0.077 | 0.051 | 1.81e-06 |
RheuArth | All.MultiPRS | LDpred2.PseudoVal | 0.196 | 0.091 | 0.105 | 0.0000000 | 0.178 | 0.077 | 0.101 | 1.92e-21 |
RheuArth | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.142 | 0.091 | 0.051 | 0.0000000 | 0.111 | 0.077 | 0.034 | 2.97e-03 |
RheuArth | LDpred2.10FCVal | LDpred2.PseudoVal | 0.151 | 0.091 | 0.060 | 0.0000000 | 0.128 | 0.077 | 0.052 | 4.18e-08 |
RheuArth | LDpred1.Inf | LDpred2.PseudoVal | 0.136 | 0.091 | 0.045 | 0.0000000 | 0.111 | 0.077 | 0.034 | 7.15e-07 |
RheuArth | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.124 | 0.091 | 0.033 | 0.0000000 | 0.119 | 0.077 | 0.042 | 1.03e-06 |
RheuArth | lassosum.PseudoVal | LDpred2.PseudoVal | 0.114 | 0.091 | 0.023 | 0.0000000 | 0.089 | 0.077 | 0.013 | 1.32e-01 |
RheuArth | LDpred2.Inf | LDpred2.PseudoVal | 0.085 | 0.091 | -0.006 | 0.0000000 | 0.072 | 0.077 | -0.004 | 1.35e-10 |
RheuArth | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.091 | 0.091 | 0.000 | 1.0000000 | 0.077 | 0.077 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.145 | 0.091 | 0.054 | 0.0000000 | 0.119 | 0.077 | 0.042 | 7.86e-08 |
RheuArth | pT+clump.10FCVal | LDpred2.PseudoVal | 0.111 | 0.091 | 0.020 | 0.0022618 | 0.103 | 0.077 | 0.027 | 4.23e-02 |
RheuArth | lassosum.MultiPRS | LDpred2.PseudoVal | 0.183 | 0.091 | 0.091 | 0.0000000 | 0.150 | 0.077 | 0.074 | 3.15e-14 |
RheuArth | PRScs.MultiPRS | LDpred2.PseudoVal | 0.166 | 0.091 | 0.074 | 0.0000000 | 0.133 | 0.077 | 0.057 | 1.96e-09 |
RheuArth | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.160 | 0.091 | 0.068 | 0.0000000 | 0.124 | 0.077 | 0.048 | 3.90e-06 |
RheuArth | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.131 | 0.091 | 0.040 | 0.0000000 | 0.124 | 0.077 | 0.047 | 6.01e-06 |
RheuArth | lassosum.10FCVal | LDpred2.PseudoVal | 0.162 | 0.091 | 0.070 | 0.0000000 | 0.130 | 0.077 | 0.053 | 5.63e-07 |
RheuArth | LDpred1.10FCVal | LDpred2.PseudoVal | 0.136 | 0.091 | 0.045 | 0.0000000 | 0.112 | 0.077 | 0.035 | 4.04e-07 |
RheuArth | SBLUP.Inf | LDpred2.PseudoVal | 0.112 | 0.091 | 0.021 | 0.0000000 | 0.097 | 0.077 | 0.020 | 5.03e-12 |
RheuArth | PRScs.10FCVal | LDpred2.Inf | 0.161 | 0.085 | 0.076 | 0.0000000 | 0.128 | 0.072 | 0.056 | 4.44e-07 |
RheuArth | pT+clump.MultiPRS | LDpred2.Inf | 0.131 | 0.085 | 0.046 | 0.0000000 | 0.124 | 0.072 | 0.052 | 9.22e-07 |
RheuArth | LDpred2.Inf | LDpred2.Inf | 0.085 | 0.085 | 0.000 | 1.0000000 | 0.072 | 0.072 | 0.000 | 1.00e+00 |
RheuArth | lassosum.PseudoVal | LDpred2.Inf | 0.114 | 0.085 | 0.029 | 0.0000000 | 0.089 | 0.072 | 0.017 | 4.76e-02 |
RheuArth | LDpred2.MultiPRS | LDpred2.Inf | 0.151 | 0.085 | 0.066 | 0.0000000 | 0.127 | 0.072 | 0.055 | 8.96e-10 |
RheuArth | SBayesR.PseudoVal | LDpred2.Inf | 0.124 | 0.085 | 0.039 | 0.0000000 | 0.119 | 0.072 | 0.047 | 5.94e-08 |
RheuArth | pT+clump.10FCVal | LDpred2.Inf | 0.111 | 0.085 | 0.026 | 0.0000788 | 0.103 | 0.072 | 0.031 | 1.83e-02 |
RheuArth | PRScs.PseudoVal | LDpred2.Inf | 0.162 | 0.085 | 0.077 | 0.0000000 | 0.129 | 0.072 | 0.057 | 1.74e-07 |
RheuArth | LDpred2.PseudoVal | LDpred2.Inf | 0.091 | 0.085 | 0.006 | 0.0000000 | 0.077 | 0.072 | 0.004 | 1.35e-10 |
RheuArth | All.MultiPRS | LDpred2.Inf | 0.196 | 0.085 | 0.111 | 0.0000000 | 0.178 | 0.072 | 0.106 | 3.13e-22 |
RheuArth | SBLUP.Inf | LDpred2.Inf | 0.112 | 0.085 | 0.027 | 0.0000000 | 0.097 | 0.072 | 0.024 | 1.44e-15 |
RheuArth | MegaPRS.MultiPRS | LDpred2.Inf | 0.175 | 0.085 | 0.090 | 0.0000000 | 0.144 | 0.072 | 0.072 | 1.19e-13 |
RheuArth | PRScs.MultiPRS | LDpred2.Inf | 0.166 | 0.085 | 0.080 | 0.0000000 | 0.133 | 0.072 | 0.061 | 4.06e-10 |
RheuArth | lassosum.MultiPRS | LDpred2.Inf | 0.183 | 0.085 | 0.098 | 0.0000000 | 0.150 | 0.072 | 0.078 | 4.72e-15 |
RheuArth | LDpred1.Inf | LDpred2.Inf | 0.136 | 0.085 | 0.051 | 0.0000000 | 0.111 | 0.072 | 0.039 | 6.42e-08 |
RheuArth | MegaPRS.PseudoVal | LDpred2.Inf | 0.160 | 0.085 | 0.074 | 0.0000000 | 0.124 | 0.072 | 0.052 | 7.96e-07 |
RheuArth | MegaPRS.10FCVal | LDpred2.Inf | 0.174 | 0.085 | 0.089 | 0.0000000 | 0.143 | 0.072 | 0.071 | 1.75e-13 |
RheuArth | lassosum.10FCVal | LDpred2.Inf | 0.162 | 0.085 | 0.076 | 0.0000000 | 0.130 | 0.072 | 0.058 | 1.31e-07 |
RheuArth | LDpred2.10FCVal | LDpred2.Inf | 0.151 | 0.085 | 0.066 | 0.0000000 | 0.128 | 0.072 | 0.056 | 1.22e-08 |
RheuArth | DBSLMM.PseudoVal | LDpred2.Inf | 0.142 | 0.085 | 0.057 | 0.0000000 | 0.111 | 0.072 | 0.039 | 1.03e-03 |
RheuArth | LDpred1.MultiPRS | LDpred2.Inf | 0.145 | 0.085 | 0.060 | 0.0000000 | 0.119 | 0.072 | 0.047 | 9.38e-09 |
RheuArth | LDpred1.10FCVal | LDpred2.Inf | 0.136 | 0.085 | 0.051 | 0.0000000 | 0.112 | 0.072 | 0.040 | 3.55e-08 |
RheuArth | PRScs.PseudoVal | PRScs.MultiPRS | 0.162 | 0.166 | -0.003 | 0.6406034 | 0.129 | 0.133 | -0.004 | 4.66e-02 |
RheuArth | LDpred2.MultiPRS | PRScs.MultiPRS | 0.151 | 0.166 | -0.015 | 0.0000026 | 0.127 | 0.133 | -0.006 | 3.67e-01 |
RheuArth | LDpred2.Inf | PRScs.MultiPRS | 0.085 | 0.166 | -0.080 | 0.0000000 | 0.072 | 0.133 | -0.061 | 4.06e-10 |
RheuArth | pT+clump.10FCVal | PRScs.MultiPRS | 0.111 | 0.166 | -0.054 | 0.0000000 | 0.103 | 0.133 | -0.030 | 6.80e-03 |
RheuArth | SBayesR.PseudoVal | PRScs.MultiPRS | 0.124 | 0.166 | -0.041 | 0.0000000 | 0.119 | 0.133 | -0.014 | 1.57e-01 |
RheuArth | LDpred2.PseudoVal | PRScs.MultiPRS | 0.091 | 0.166 | -0.074 | 0.0000000 | 0.077 | 0.133 | -0.057 | 1.96e-09 |
RheuArth | LDpred2.10FCVal | PRScs.MultiPRS | 0.151 | 0.166 | -0.014 | 0.0370436 | 0.128 | 0.133 | -0.005 | 4.62e-01 |
RheuArth | PRScs.MultiPRS | PRScs.MultiPRS | 0.166 | 0.166 | 0.000 | 1.0000000 | 0.133 | 0.133 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.MultiPRS | PRScs.MultiPRS | 0.145 | 0.166 | -0.020 | 0.0000000 | 0.119 | 0.133 | -0.014 | 6.35e-03 |
RheuArth | pT+clump.MultiPRS | PRScs.MultiPRS | 0.131 | 0.166 | -0.034 | 0.0000008 | 0.124 | 0.133 | -0.009 | 3.36e-01 |
RheuArth | All.MultiPRS | PRScs.MultiPRS | 0.196 | 0.166 | 0.031 | 0.0000089 | 0.178 | 0.133 | 0.045 | 4.93e-11 |
RheuArth | lassosum.PseudoVal | PRScs.MultiPRS | 0.114 | 0.166 | -0.051 | 0.0000000 | 0.089 | 0.133 | -0.044 | 3.08e-08 |
RheuArth | PRScs.10FCVal | PRScs.MultiPRS | 0.161 | 0.166 | -0.004 | 0.5200026 | 0.128 | 0.133 | -0.005 | 2.00e-02 |
RheuArth | MegaPRS.10FCVal | PRScs.MultiPRS | 0.174 | 0.166 | 0.008 | 0.2406230 | 0.143 | 0.133 | 0.010 | 4.19e-02 |
RheuArth | lassosum.MultiPRS | PRScs.MultiPRS | 0.183 | 0.166 | 0.017 | 0.0136847 | 0.150 | 0.133 | 0.017 | 1.07e-05 |
RheuArth | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.175 | 0.166 | 0.010 | 0.1583166 | 0.144 | 0.133 | 0.011 | 1.28e-02 |
RheuArth | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.142 | 0.166 | -0.023 | 0.0007534 | 0.111 | 0.133 | -0.022 | 6.67e-06 |
RheuArth | LDpred1.10FCVal | PRScs.MultiPRS | 0.136 | 0.166 | -0.029 | 0.0000237 | 0.112 | 0.133 | -0.022 | 2.28e-04 |
RheuArth | SBLUP.Inf | PRScs.MultiPRS | 0.112 | 0.166 | -0.054 | 0.0000000 | 0.097 | 0.133 | -0.037 | 6.73e-06 |
RheuArth | lassosum.10FCVal | PRScs.MultiPRS | 0.162 | 0.166 | -0.004 | 0.5612076 | 0.130 | 0.133 | -0.003 | 3.74e-01 |
RheuArth | LDpred1.Inf | PRScs.MultiPRS | 0.136 | 0.166 | -0.029 | 0.0000241 | 0.111 | 0.133 | -0.022 | 1.22e-04 |
RheuArth | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.160 | 0.166 | -0.006 | 0.3842617 | 0.124 | 0.133 | -0.009 | 8.80e-02 |
RheuArth | PRScs.10FCVal | PRScs.10FCVal | 0.161 | 0.161 | 0.000 | 1.0000000 | 0.128 | 0.128 | 0.000 | 1.00e+00 |
RheuArth | pT+clump.MultiPRS | PRScs.10FCVal | 0.131 | 0.161 | -0.030 | 0.0000169 | 0.124 | 0.128 | -0.004 | 7.08e-01 |
RheuArth | SBayesR.PseudoVal | PRScs.10FCVal | 0.124 | 0.161 | -0.037 | 0.0000000 | 0.119 | 0.128 | -0.009 | 4.16e-01 |
RheuArth | pT+clump.10FCVal | PRScs.10FCVal | 0.111 | 0.161 | -0.050 | 0.0000000 | 0.103 | 0.128 | -0.024 | 2.54e-02 |
RheuArth | LDpred2.MultiPRS | PRScs.10FCVal | 0.151 | 0.161 | -0.010 | 0.1355323 | 0.127 | 0.128 | 0.000 | 9.45e-01 |
RheuArth | LDpred2.10FCVal | PRScs.10FCVal | 0.151 | 0.161 | -0.010 | 0.0021617 | 0.128 | 0.128 | 0.001 | 9.37e-01 |
RheuArth | SBLUP.Inf | PRScs.10FCVal | 0.112 | 0.161 | -0.049 | 0.0000000 | 0.097 | 0.128 | -0.031 | 1.14e-03 |
RheuArth | PRScs.PseudoVal | PRScs.10FCVal | 0.162 | 0.161 | 0.001 | 0.0933181 | 0.129 | 0.128 | 0.001 | 4.34e-01 |
RheuArth | LDpred2.PseudoVal | PRScs.10FCVal | 0.091 | 0.161 | -0.070 | 0.0000000 | 0.077 | 0.128 | -0.051 | 1.81e-06 |
RheuArth | LDpred2.Inf | PRScs.10FCVal | 0.085 | 0.161 | -0.076 | 0.0000000 | 0.072 | 0.128 | -0.056 | 4.44e-07 |
RheuArth | LDpred1.Inf | PRScs.10FCVal | 0.136 | 0.161 | -0.025 | 0.0000000 | 0.111 | 0.128 | -0.017 | 1.74e-02 |
RheuArth | MegaPRS.MultiPRS | PRScs.10FCVal | 0.175 | 0.161 | 0.014 | 0.0403941 | 0.144 | 0.128 | 0.016 | 1.12e-03 |
RheuArth | PRScs.MultiPRS | PRScs.10FCVal | 0.166 | 0.161 | 0.004 | 0.5200026 | 0.133 | 0.128 | 0.005 | 2.00e-02 |
RheuArth | lassosum.MultiPRS | PRScs.10FCVal | 0.183 | 0.161 | 0.022 | 0.0019405 | 0.150 | 0.128 | 0.022 | 4.05e-07 |
RheuArth | DBSLMM.PseudoVal | PRScs.10FCVal | 0.142 | 0.161 | -0.019 | 0.0000000 | 0.111 | 0.128 | -0.017 | 8.66e-05 |
RheuArth | MegaPRS.PseudoVal | PRScs.10FCVal | 0.160 | 0.161 | -0.002 | 0.5629583 | 0.124 | 0.128 | -0.004 | 5.03e-01 |
RheuArth | MegaPRS.10FCVal | PRScs.10FCVal | 0.174 | 0.161 | 0.013 | 0.0000034 | 0.143 | 0.128 | 0.015 | 5.67e-03 |
RheuArth | lassosum.10FCVal | PRScs.10FCVal | 0.162 | 0.161 | 0.000 | 0.8139068 | 0.130 | 0.128 | 0.002 | 5.84e-01 |
RheuArth | All.MultiPRS | PRScs.10FCVal | 0.196 | 0.161 | 0.035 | 0.0000004 | 0.178 | 0.128 | 0.050 | 1.60e-12 |
RheuArth | lassosum.PseudoVal | PRScs.10FCVal | 0.114 | 0.161 | -0.047 | 0.0000000 | 0.089 | 0.128 | -0.038 | 4.46e-05 |
RheuArth | LDpred1.MultiPRS | PRScs.10FCVal | 0.145 | 0.161 | -0.016 | 0.0229856 | 0.119 | 0.128 | -0.009 | 1.62e-01 |
RheuArth | LDpred1.10FCVal | PRScs.10FCVal | 0.136 | 0.161 | -0.025 | 0.0000000 | 0.112 | 0.128 | -0.016 | 2.36e-02 |
RheuArth | LDpred2.MultiPRS | PRScs.PseudoVal | 0.151 | 0.162 | -0.012 | 0.0950219 | 0.127 | 0.129 | -0.002 | 8.07e-01 |
RheuArth | PRScs.10FCVal | PRScs.PseudoVal | 0.161 | 0.162 | -0.001 | 0.0933181 | 0.128 | 0.129 | -0.001 | 4.34e-01 |
RheuArth | pT+clump.10FCVal | PRScs.PseudoVal | 0.111 | 0.162 | -0.051 | 0.0000000 | 0.103 | 0.129 | -0.026 | 1.89e-02 |
RheuArth | LDpred2.PseudoVal | PRScs.PseudoVal | 0.091 | 0.162 | -0.071 | 0.0000000 | 0.077 | 0.129 | -0.052 | 7.39e-07 |
RheuArth | LDpred2.Inf | PRScs.PseudoVal | 0.085 | 0.162 | -0.077 | 0.0000000 | 0.072 | 0.129 | -0.057 | 1.74e-07 |
RheuArth | pT+clump.MultiPRS | PRScs.PseudoVal | 0.131 | 0.162 | -0.031 | 0.0000076 | 0.124 | 0.129 | -0.005 | 6.19e-01 |
RheuArth | PRScs.PseudoVal | PRScs.PseudoVal | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.129 | 0.129 | 0.000 | 1.00e+00 |
RheuArth | SBayesR.PseudoVal | PRScs.PseudoVal | 0.124 | 0.162 | -0.038 | 0.0000000 | 0.119 | 0.129 | -0.010 | 3.50e-01 |
RheuArth | lassosum.MultiPRS | PRScs.PseudoVal | 0.183 | 0.162 | 0.020 | 0.0034698 | 0.150 | 0.129 | 0.021 | 7.80e-07 |
RheuArth | LDpred2.10FCVal | PRScs.PseudoVal | 0.151 | 0.162 | -0.011 | 0.0005788 | 0.128 | 0.129 | -0.001 | 9.20e-01 |
RheuArth | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.175 | 0.162 | 0.013 | 0.0610972 | 0.144 | 0.129 | 0.015 | 1.98e-03 |
RheuArth | LDpred1.MultiPRS | PRScs.PseudoVal | 0.145 | 0.162 | -0.017 | 0.0142540 | 0.119 | 0.129 | -0.010 | 9.98e-02 |
RheuArth | SBLUP.Inf | PRScs.PseudoVal | 0.112 | 0.162 | -0.050 | 0.0000000 | 0.097 | 0.129 | -0.032 | 5.86e-04 |
RheuArth | All.MultiPRS | PRScs.PseudoVal | 0.196 | 0.162 | 0.034 | 0.0000009 | 0.178 | 0.129 | 0.049 | 3.07e-12 |
RheuArth | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.160 | 0.162 | -0.003 | 0.2966815 | 0.124 | 0.129 | -0.005 | 3.67e-01 |
RheuArth | LDpred1.10FCVal | PRScs.PseudoVal | 0.136 | 0.162 | -0.026 | 0.0000000 | 0.112 | 0.129 | -0.017 | 1.20e-02 |
RheuArth | MegaPRS.10FCVal | PRScs.PseudoVal | 0.174 | 0.162 | 0.011 | 0.0000195 | 0.143 | 0.129 | 0.014 | 9.05e-03 |
RheuArth | lassosum.10FCVal | PRScs.PseudoVal | 0.162 | 0.162 | -0.001 | 0.6610961 | 0.130 | 0.129 | 0.001 | 8.17e-01 |
RheuArth | PRScs.MultiPRS | PRScs.PseudoVal | 0.166 | 0.162 | 0.003 | 0.6406034 | 0.133 | 0.129 | 0.004 | 4.66e-02 |
RheuArth | LDpred1.Inf | PRScs.PseudoVal | 0.136 | 0.162 | -0.026 | 0.0000000 | 0.111 | 0.129 | -0.018 | 8.33e-03 |
RheuArth | lassosum.PseudoVal | PRScs.PseudoVal | 0.114 | 0.162 | -0.048 | 0.0000000 | 0.089 | 0.129 | -0.040 | 1.94e-05 |
RheuArth | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.142 | 0.162 | -0.020 | 0.0000000 | 0.111 | 0.129 | -0.018 | 2.45e-05 |
RheuArth | All.MultiPRS | pT+clump.MultiPRS | 0.196 | 0.131 | 0.065 | 0.0000000 | 0.178 | 0.124 | 0.054 | 7.72e-10 |
RheuArth | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.151 | 0.131 | 0.020 | 0.0047770 | 0.127 | 0.124 | 0.003 | 7.59e-01 |
RheuArth | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.145 | 0.131 | 0.014 | 0.0416137 | 0.119 | 0.124 | -0.005 | 5.93e-01 |
RheuArth | pT+clump.10FCVal | pT+clump.MultiPRS | 0.111 | 0.131 | -0.020 | 0.0043561 | 0.103 | 0.124 | -0.021 | 2.56e-04 |
RheuArth | lassosum.MultiPRS | pT+clump.MultiPRS | 0.183 | 0.131 | 0.051 | 0.0000000 | 0.150 | 0.124 | 0.026 | 1.26e-03 |
RheuArth | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.091 | 0.131 | -0.040 | 0.0000000 | 0.077 | 0.124 | -0.047 | 6.01e-06 |
RheuArth | LDpred1.10FCVal | pT+clump.MultiPRS | 0.136 | 0.131 | 0.005 | 0.4581233 | 0.112 | 0.124 | -0.012 | 1.81e-01 |
RheuArth | SBLUP.Inf | pT+clump.MultiPRS | 0.112 | 0.131 | -0.019 | 0.0062762 | 0.097 | 0.124 | -0.027 | 3.57e-03 |
RheuArth | lassosum.10FCVal | pT+clump.MultiPRS | 0.162 | 0.131 | 0.030 | 0.0000125 | 0.130 | 0.124 | 0.006 | 5.22e-01 |
RheuArth | PRScs.MultiPRS | pT+clump.MultiPRS | 0.166 | 0.131 | 0.034 | 0.0000008 | 0.133 | 0.124 | 0.009 | 3.36e-01 |
RheuArth | LDpred2.10FCVal | pT+clump.MultiPRS | 0.151 | 0.131 | 0.020 | 0.0041887 | 0.128 | 0.124 | 0.004 | 6.98e-01 |
RheuArth | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.174 | 0.131 | 0.042 | 0.0000000 | 0.143 | 0.124 | 0.019 | 2.50e-02 |
RheuArth | PRScs.PseudoVal | pT+clump.MultiPRS | 0.162 | 0.131 | 0.031 | 0.0000076 | 0.129 | 0.124 | 0.005 | 6.19e-01 |
RheuArth | lassosum.PseudoVal | pT+clump.MultiPRS | 0.114 | 0.131 | -0.017 | 0.0161140 | 0.089 | 0.124 | -0.035 | 4.18e-04 |
RheuArth | LDpred2.Inf | pT+clump.MultiPRS | 0.085 | 0.131 | -0.046 | 0.0000000 | 0.072 | 0.124 | -0.052 | 9.22e-07 |
RheuArth | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.160 | 0.131 | 0.028 | 0.0000452 | 0.124 | 0.124 | 0.000 | 9.90e-01 |
RheuArth | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.175 | 0.131 | 0.044 | 0.0000000 | 0.144 | 0.124 | 0.020 | 1.81e-02 |
RheuArth | PRScs.10FCVal | pT+clump.MultiPRS | 0.161 | 0.131 | 0.030 | 0.0000169 | 0.128 | 0.124 | 0.004 | 7.08e-01 |
RheuArth | LDpred1.Inf | pT+clump.MultiPRS | 0.136 | 0.131 | 0.005 | 0.4560847 | 0.111 | 0.124 | -0.013 | 1.63e-01 |
RheuArth | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.131 | 0.131 | 0.000 | 1.0000000 | 0.124 | 0.124 | 0.000 | 1.00e+00 |
RheuArth | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.142 | 0.131 | 0.011 | 0.1130633 | 0.111 | 0.124 | -0.013 | 2.00e-01 |
RheuArth | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.124 | 0.131 | -0.007 | 0.3206151 | 0.119 | 0.124 | -0.005 | 4.74e-01 |
RheuArth | LDpred2.MultiPRS | pT+clump.10FCVal | 0.151 | 0.111 | 0.040 | 0.0000000 | 0.127 | 0.103 | 0.024 | 4.90e-02 |
RheuArth | LDpred2.PseudoVal | pT+clump.10FCVal | 0.091 | 0.111 | -0.020 | 0.0022618 | 0.077 | 0.103 | -0.027 | 4.23e-02 |
RheuArth | pT+clump.MultiPRS | pT+clump.10FCVal | 0.131 | 0.111 | 0.020 | 0.0043561 | 0.124 | 0.103 | 0.021 | 2.56e-04 |
RheuArth | SBLUP.Inf | pT+clump.10FCVal | 0.112 | 0.111 | 0.001 | 0.8970697 | 0.097 | 0.103 | -0.007 | 5.84e-01 |
RheuArth | PRScs.PseudoVal | pT+clump.10FCVal | 0.162 | 0.111 | 0.051 | 0.0000000 | 0.129 | 0.103 | 0.026 | 1.89e-02 |
RheuArth | PRScs.MultiPRS | pT+clump.10FCVal | 0.166 | 0.111 | 0.054 | 0.0000000 | 0.133 | 0.103 | 0.030 | 6.80e-03 |
RheuArth | LDpred2.Inf | pT+clump.10FCVal | 0.085 | 0.111 | -0.026 | 0.0000788 | 0.072 | 0.103 | -0.031 | 1.83e-02 |
RheuArth | SBayesR.PseudoVal | pT+clump.10FCVal | 0.124 | 0.111 | 0.013 | 0.0044700 | 0.119 | 0.103 | 0.016 | 8.06e-02 |
RheuArth | pT+clump.10FCVal | pT+clump.10FCVal | 0.111 | 0.111 | 0.000 | 1.0000000 | 0.103 | 0.103 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.10FCVal | pT+clump.10FCVal | 0.174 | 0.111 | 0.062 | 0.0000000 | 0.143 | 0.103 | 0.040 | 7.56e-05 |
RheuArth | PRScs.10FCVal | pT+clump.10FCVal | 0.161 | 0.111 | 0.050 | 0.0000000 | 0.128 | 0.103 | 0.024 | 2.54e-02 |
RheuArth | LDpred2.10FCVal | pT+clump.10FCVal | 0.151 | 0.111 | 0.040 | 0.0000000 | 0.128 | 0.103 | 0.025 | 4.03e-02 |
RheuArth | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.160 | 0.111 | 0.048 | 0.0000000 | 0.124 | 0.103 | 0.021 | 3.98e-02 |
RheuArth | LDpred1.MultiPRS | pT+clump.10FCVal | 0.145 | 0.111 | 0.034 | 0.0000010 | 0.119 | 0.103 | 0.016 | 1.69e-01 |
RheuArth | lassosum.10FCVal | pT+clump.10FCVal | 0.162 | 0.111 | 0.050 | 0.0000000 | 0.130 | 0.103 | 0.027 | 1.18e-02 |
RheuArth | All.MultiPRS | pT+clump.10FCVal | 0.196 | 0.111 | 0.085 | 0.0000000 | 0.178 | 0.103 | 0.074 | 2.19e-14 |
RheuArth | LDpred1.Inf | pT+clump.10FCVal | 0.136 | 0.111 | 0.025 | 0.0000117 | 0.111 | 0.103 | 0.008 | 5.06e-01 |
RheuArth | LDpred1.10FCVal | pT+clump.10FCVal | 0.136 | 0.111 | 0.025 | 0.0000125 | 0.112 | 0.103 | 0.008 | 4.74e-01 |
RheuArth | lassosum.MultiPRS | pT+clump.10FCVal | 0.183 | 0.111 | 0.071 | 0.0000000 | 0.150 | 0.103 | 0.047 | 1.39e-06 |
RheuArth | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.142 | 0.111 | 0.031 | 0.0000000 | 0.111 | 0.103 | 0.007 | 4.95e-01 |
RheuArth | lassosum.PseudoVal | pT+clump.10FCVal | 0.114 | 0.111 | 0.003 | 0.6136922 | 0.089 | 0.103 | -0.014 | 2.56e-01 |
RheuArth | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.175 | 0.111 | 0.064 | 0.0000000 | 0.144 | 0.103 | 0.041 | 4.21e-05 |
RheuArth | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.124 | 0.124 | 0.000 | 1.0000000 | 0.119 | 0.119 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.151 | 0.124 | 0.027 | 0.0001307 | 0.127 | 0.119 | 0.008 | 4.55e-01 |
RheuArth | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.145 | 0.124 | 0.021 | 0.0023143 | 0.119 | 0.119 | 0.000 | 9.95e-01 |
RheuArth | PRScs.PseudoVal | SBayesR.PseudoVal | 0.162 | 0.124 | 0.038 | 0.0000000 | 0.129 | 0.119 | 0.010 | 3.50e-01 |
RheuArth | All.MultiPRS | SBayesR.PseudoVal | 0.196 | 0.124 | 0.072 | 0.0000000 | 0.178 | 0.119 | 0.059 | 2.06e-10 |
RheuArth | PRScs.MultiPRS | SBayesR.PseudoVal | 0.166 | 0.124 | 0.041 | 0.0000000 | 0.133 | 0.119 | 0.014 | 1.57e-01 |
RheuArth | LDpred2.10FCVal | SBayesR.PseudoVal | 0.151 | 0.124 | 0.027 | 0.0000023 | 0.128 | 0.119 | 0.009 | 4.23e-01 |
RheuArth | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.174 | 0.124 | 0.049 | 0.0000000 | 0.143 | 0.119 | 0.024 | 5.87e-03 |
RheuArth | pT+clump.10FCVal | SBayesR.PseudoVal | 0.111 | 0.124 | -0.013 | 0.0044700 | 0.103 | 0.119 | -0.016 | 8.06e-02 |
RheuArth | lassosum.PseudoVal | SBayesR.PseudoVal | 0.114 | 0.124 | -0.010 | 0.0427782 | 0.089 | 0.119 | -0.030 | 2.34e-03 |
RheuArth | LDpred2.Inf | SBayesR.PseudoVal | 0.085 | 0.124 | -0.039 | 0.0000000 | 0.072 | 0.119 | -0.047 | 5.94e-08 |
RheuArth | PRScs.10FCVal | SBayesR.PseudoVal | 0.161 | 0.124 | 0.037 | 0.0000000 | 0.128 | 0.119 | 0.009 | 4.16e-01 |
RheuArth | SBLUP.Inf | SBayesR.PseudoVal | 0.112 | 0.124 | -0.012 | 0.0013628 | 0.097 | 0.119 | -0.022 | 3.49e-03 |
RheuArth | lassosum.MultiPRS | SBayesR.PseudoVal | 0.183 | 0.124 | 0.058 | 0.0000000 | 0.150 | 0.119 | 0.031 | 4.64e-04 |
RheuArth | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.091 | 0.124 | -0.033 | 0.0000000 | 0.077 | 0.119 | -0.042 | 1.03e-06 |
RheuArth | lassosum.10FCVal | SBayesR.PseudoVal | 0.162 | 0.124 | 0.037 | 0.0000000 | 0.130 | 0.119 | 0.011 | 2.92e-01 |
RheuArth | LDpred1.Inf | SBayesR.PseudoVal | 0.136 | 0.124 | 0.012 | 0.0051554 | 0.111 | 0.119 | -0.008 | 3.59e-01 |
RheuArth | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.131 | 0.124 | 0.007 | 0.3206151 | 0.124 | 0.119 | 0.005 | 4.74e-01 |
RheuArth | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.142 | 0.124 | 0.018 | 0.0007223 | 0.111 | 0.119 | -0.008 | 4.44e-01 |
RheuArth | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.175 | 0.124 | 0.051 | 0.0000000 | 0.144 | 0.119 | 0.025 | 3.79e-03 |
RheuArth | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.160 | 0.124 | 0.035 | 0.0000000 | 0.124 | 0.119 | 0.005 | 5.79e-01 |
RheuArth | LDpred1.10FCVal | SBayesR.PseudoVal | 0.136 | 0.124 | 0.012 | 0.0051231 | 0.112 | 0.119 | -0.007 | 3.91e-01 |
RheuArth | All.MultiPRS | SBLUP.Inf | 0.196 | 0.112 | 0.084 | 0.0000000 | 0.178 | 0.097 | 0.081 | 6.52e-17 |
RheuArth | LDpred2.MultiPRS | SBLUP.Inf | 0.151 | 0.112 | 0.039 | 0.0000000 | 0.127 | 0.097 | 0.031 | 3.36e-04 |
RheuArth | PRScs.PseudoVal | SBLUP.Inf | 0.162 | 0.112 | 0.050 | 0.0000000 | 0.129 | 0.097 | 0.032 | 5.86e-04 |
RheuArth | lassosum.PseudoVal | SBLUP.Inf | 0.114 | 0.112 | 0.002 | 0.5390726 | 0.089 | 0.097 | -0.007 | 3.37e-01 |
RheuArth | LDpred2.Inf | SBLUP.Inf | 0.085 | 0.112 | -0.027 | 0.0000000 | 0.072 | 0.097 | -0.024 | 1.44e-15 |
RheuArth | MegaPRS.10FCVal | SBLUP.Inf | 0.174 | 0.112 | 0.062 | 0.0000000 | 0.143 | 0.097 | 0.046 | 4.40e-09 |
RheuArth | pT+clump.10FCVal | SBLUP.Inf | 0.111 | 0.112 | -0.001 | 0.8970697 | 0.103 | 0.097 | 0.007 | 5.84e-01 |
RheuArth | lassosum.MultiPRS | SBLUP.Inf | 0.183 | 0.112 | 0.071 | 0.0000000 | 0.150 | 0.097 | 0.054 | 2.26e-10 |
RheuArth | LDpred2.PseudoVal | SBLUP.Inf | 0.091 | 0.112 | -0.021 | 0.0000000 | 0.077 | 0.097 | -0.020 | 5.03e-12 |
RheuArth | LDpred1.MultiPRS | SBLUP.Inf | 0.145 | 0.112 | 0.033 | 0.0000015 | 0.119 | 0.097 | 0.022 | 5.58e-04 |
RheuArth | MegaPRS.PseudoVal | SBLUP.Inf | 0.160 | 0.112 | 0.048 | 0.0000000 | 0.124 | 0.097 | 0.028 | 2.08e-03 |
RheuArth | pT+clump.MultiPRS | SBLUP.Inf | 0.131 | 0.112 | 0.019 | 0.0062762 | 0.124 | 0.097 | 0.027 | 3.57e-03 |
RheuArth | DBSLMM.PseudoVal | SBLUP.Inf | 0.142 | 0.112 | 0.030 | 0.0000000 | 0.111 | 0.097 | 0.014 | 1.80e-01 |
RheuArth | LDpred2.10FCVal | SBLUP.Inf | 0.151 | 0.112 | 0.039 | 0.0000000 | 0.128 | 0.097 | 0.032 | 7.23e-04 |
RheuArth | LDpred1.Inf | SBLUP.Inf | 0.136 | 0.112 | 0.024 | 0.0000000 | 0.111 | 0.097 | 0.014 | 6.78e-03 |
RheuArth | SBayesR.PseudoVal | SBLUP.Inf | 0.124 | 0.112 | 0.012 | 0.0013628 | 0.119 | 0.097 | 0.022 | 3.49e-03 |
RheuArth | SBLUP.Inf | SBLUP.Inf | 0.112 | 0.112 | 0.000 | 1.0000000 | 0.097 | 0.097 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.MultiPRS | SBLUP.Inf | 0.175 | 0.112 | 0.063 | 0.0000000 | 0.144 | 0.097 | 0.047 | 2.05e-09 |
RheuArth | PRScs.10FCVal | SBLUP.Inf | 0.161 | 0.112 | 0.049 | 0.0000000 | 0.128 | 0.097 | 0.031 | 1.14e-03 |
RheuArth | LDpred1.10FCVal | SBLUP.Inf | 0.136 | 0.112 | 0.024 | 0.0000000 | 0.112 | 0.097 | 0.015 | 4.75e-03 |
RheuArth | lassosum.10FCVal | SBLUP.Inf | 0.162 | 0.112 | 0.050 | 0.0000000 | 0.130 | 0.097 | 0.033 | 4.26e-04 |
RheuArth | PRScs.MultiPRS | SBLUP.Inf | 0.166 | 0.112 | 0.054 | 0.0000000 | 0.133 | 0.097 | 0.037 | 6.73e-06 |
Prostate_Cancer | DBSLMM.PseudoVal | All.MultiPRS | 0.176 | 0.192 | -0.015 | 0.0255610 | 0.166 | 0.184 | -0.018 | 1.20e-06 |
Prostate_Cancer | SBayesR.PseudoVal | All.MultiPRS | 0.176 | 0.192 | -0.015 | 0.0252725 | 0.171 | 0.184 | -0.013 | 1.71e-03 |
Prostate_Cancer | lassosum.PseudoVal | All.MultiPRS | 0.168 | 0.192 | -0.024 | 0.0006757 | 0.164 | 0.184 | -0.020 | 3.75e-05 |
Prostate_Cancer | LDpred2.10FCVal | All.MultiPRS | 0.183 | 0.192 | -0.009 | 0.2075811 | 0.173 | 0.184 | -0.011 | 4.77e-05 |
Prostate_Cancer | MegaPRS.MultiPRS | All.MultiPRS | 0.188 | 0.192 | -0.004 | 0.5787068 | 0.180 | 0.184 | -0.004 | 2.99e-02 |
Prostate_Cancer | PRScs.10FCVal | All.MultiPRS | 0.181 | 0.192 | -0.011 | 0.1098076 | 0.176 | 0.184 | -0.008 | 1.00e-02 |
Prostate_Cancer | LDpred2.Inf | All.MultiPRS | 0.135 | 0.192 | -0.056 | 0.0000000 | 0.129 | 0.184 | -0.055 | 4.86e-13 |
Prostate_Cancer | MegaPRS.10FCVal | All.MultiPRS | 0.188 | 0.192 | -0.004 | 0.5388171 | 0.185 | 0.184 | 0.001 | 8.13e-01 |
Prostate_Cancer | pT+clump.MultiPRS | All.MultiPRS | 0.168 | 0.192 | -0.024 | 0.0005942 | 0.175 | 0.184 | -0.010 | 5.42e-02 |
Prostate_Cancer | lassosum.10FCVal | All.MultiPRS | 0.180 | 0.192 | -0.012 | 0.0873693 | 0.177 | 0.184 | -0.007 | 6.19e-02 |
Prostate_Cancer | PRScs.MultiPRS | All.MultiPRS | 0.184 | 0.192 | -0.008 | 0.2472070 | 0.173 | 0.184 | -0.011 | 5.25e-05 |
Prostate_Cancer | LDpred1.Inf | All.MultiPRS | 0.143 | 0.192 | -0.049 | 0.0000000 | 0.133 | 0.184 | -0.051 | 5.59e-13 |
Prostate_Cancer | MegaPRS.PseudoVal | All.MultiPRS | 0.183 | 0.192 | -0.009 | 0.1913038 | 0.175 | 0.184 | -0.009 | 8.19e-04 |
Prostate_Cancer | PRScs.PseudoVal | All.MultiPRS | 0.183 | 0.192 | -0.009 | 0.1784370 | 0.172 | 0.184 | -0.012 | 2.84e-05 |
Prostate_Cancer | All.MultiPRS | All.MultiPRS | 0.192 | 0.192 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.MultiPRS | All.MultiPRS | 0.183 | 0.192 | -0.009 | 0.0000000 | 0.175 | 0.184 | -0.009 | 5.04e-04 |
Prostate_Cancer | LDpred1.MultiPRS | All.MultiPRS | 0.164 | 0.192 | -0.027 | 0.0000752 | 0.149 | 0.184 | -0.035 | 1.89e-11 |
Prostate_Cancer | pT+clump.10FCVal | All.MultiPRS | 0.152 | 0.192 | -0.040 | 0.0000000 | 0.166 | 0.184 | -0.018 | 4.53e-03 |
Prostate_Cancer | lassosum.MultiPRS | All.MultiPRS | 0.187 | 0.192 | -0.005 | 0.4835449 | 0.181 | 0.184 | -0.003 | 3.57e-01 |
Prostate_Cancer | LDpred2.PseudoVal | All.MultiPRS | 0.139 | 0.192 | -0.053 | 0.0000000 | 0.133 | 0.184 | -0.051 | 2.54e-12 |
Prostate_Cancer | LDpred1.10FCVal | All.MultiPRS | 0.165 | 0.192 | -0.027 | 0.0001200 | 0.152 | 0.184 | -0.032 | 3.34e-10 |
Prostate_Cancer | SBLUP.Inf | All.MultiPRS | 0.137 | 0.192 | -0.055 | 0.0000000 | 0.128 | 0.184 | -0.056 | 2.16e-13 |
Prostate_Cancer | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.183 | 0.176 | 0.006 | 0.0005432 | 0.172 | 0.166 | 0.006 | 8.06e-02 |
Prostate_Cancer | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.176 | 0.176 | 0.000 | 0.9914600 | 0.171 | 0.166 | 0.005 | 3.65e-01 |
Prostate_Cancer | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.183 | 0.176 | 0.007 | 0.3456502 | 0.175 | 0.166 | 0.009 | 2.19e-02 |
Prostate_Cancer | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.184 | 0.176 | 0.007 | 0.2836710 | 0.173 | 0.166 | 0.007 | 2.83e-02 |
Prostate_Cancer | LDpred1.Inf | DBSLMM.PseudoVal | 0.143 | 0.176 | -0.033 | 0.0000000 | 0.133 | 0.166 | -0.033 | 1.87e-07 |
Prostate_Cancer | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.168 | 0.176 | -0.008 | 0.2332599 | 0.175 | 0.166 | 0.009 | 1.02e-01 |
Prostate_Cancer | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.183 | 0.176 | 0.007 | 0.0013886 | 0.173 | 0.166 | 0.008 | 7.03e-02 |
Prostate_Cancer | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.168 | 0.176 | -0.008 | 0.0121030 | 0.164 | 0.166 | -0.002 | 7.63e-01 |
Prostate_Cancer | LDpred2.Inf | DBSLMM.PseudoVal | 0.135 | 0.176 | -0.041 | 0.0000000 | 0.129 | 0.166 | -0.037 | 4.57e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.183 | 0.176 | 0.006 | 0.0115803 | 0.175 | 0.166 | 0.009 | 6.91e-02 |
Prostate_Cancer | All.MultiPRS | DBSLMM.PseudoVal | 0.192 | 0.176 | 0.015 | 0.0255610 | 0.184 | 0.166 | 0.018 | 1.20e-06 |
Prostate_Cancer | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.187 | 0.176 | 0.011 | 0.1264189 | 0.181 | 0.166 | 0.016 | 1.88e-04 |
Prostate_Cancer | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.139 | 0.176 | -0.037 | 0.0000000 | 0.133 | 0.166 | -0.033 | 3.58e-07 |
Prostate_Cancer | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.164 | 0.176 | -0.012 | 0.0852292 | 0.149 | 0.166 | -0.016 | 8.68e-04 |
Prostate_Cancer | SBLUP.Inf | DBSLMM.PseudoVal | 0.137 | 0.176 | -0.040 | 0.0000000 | 0.128 | 0.166 | -0.038 | 1.26e-08 |
Prostate_Cancer | lassosum.10FCVal | DBSLMM.PseudoVal | 0.180 | 0.176 | 0.004 | 0.1636781 | 0.177 | 0.166 | 0.012 | 2.45e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.176 | 0.176 | 0.000 | 1.0000000 | 0.166 | 0.166 | 0.000 | 1.00e+00 |
Prostate_Cancer | PRScs.10FCVal | DBSLMM.PseudoVal | 0.181 | 0.176 | 0.004 | 0.0161550 | 0.176 | 0.166 | 0.011 | 3.19e-03 |
Prostate_Cancer | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.165 | 0.176 | -0.011 | 0.0000079 | 0.152 | 0.166 | -0.014 | 4.95e-03 |
Prostate_Cancer | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.152 | 0.176 | -0.024 | 0.0000000 | 0.166 | 0.166 | 0.001 | 9.45e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.188 | 0.176 | 0.012 | 0.0935865 | 0.180 | 0.166 | 0.015 | 1.16e-03 |
Prostate_Cancer | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.188 | 0.176 | 0.011 | 0.0000012 | 0.185 | 0.166 | 0.019 | 4.44e-05 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5563511 | 0.175 | 0.181 | -0.007 | 4.75e-02 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.MultiPRS | 0.139 | 0.187 | -0.048 | 0.0000000 | 0.133 | 0.181 | -0.048 | 1.32e-11 |
Prostate_Cancer | PRScs.MultiPRS | lassosum.MultiPRS | 0.184 | 0.187 | -0.003 | 0.0426405 | 0.173 | 0.181 | -0.008 | 6.54e-03 |
Prostate_Cancer | LDpred2.Inf | lassosum.MultiPRS | 0.135 | 0.187 | -0.052 | 0.0000000 | 0.129 | 0.181 | -0.052 | 2.18e-12 |
Prostate_Cancer | PRScs.PseudoVal | lassosum.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5209536 | 0.172 | 0.181 | -0.009 | 4.79e-03 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.MultiPRS | 0.168 | 0.187 | -0.019 | 0.0064640 | 0.175 | 0.181 | -0.007 | 1.86e-01 |
Prostate_Cancer | PRScs.10FCVal | lassosum.MultiPRS | 0.181 | 0.187 | -0.006 | 0.3715658 | 0.176 | 0.181 | -0.005 | 1.58e-01 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5773107 | 0.173 | 0.181 | -0.008 | 1.60e-02 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.MultiPRS | 0.152 | 0.187 | -0.035 | 0.0000006 | 0.166 | 0.181 | -0.015 | 2.26e-02 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.MultiPRS | 0.176 | 0.187 | -0.011 | 0.1256305 | 0.171 | 0.181 | -0.010 | 5.96e-02 |
Prostate_Cancer | lassosum.10FCVal | lassosum.MultiPRS | 0.180 | 0.187 | -0.007 | 0.3142853 | 0.177 | 0.181 | -0.004 | 9.85e-02 |
Prostate_Cancer | All.MultiPRS | lassosum.MultiPRS | 0.192 | 0.187 | 0.005 | 0.4835449 | 0.184 | 0.181 | 0.003 | 3.57e-01 |
Prostate_Cancer | SBLUP.Inf | lassosum.MultiPRS | 0.137 | 0.187 | -0.050 | 0.0000000 | 0.128 | 0.181 | -0.053 | 6.18e-13 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.MultiPRS | 0.164 | 0.187 | -0.023 | 0.0000000 | 0.149 | 0.181 | -0.032 | 8.09e-10 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.MultiPRS | 0.188 | 0.187 | 0.001 | 0.9309111 | 0.185 | 0.181 | 0.003 | 4.08e-01 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.MultiPRS | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.176 | 0.187 | -0.011 | 0.1264189 | 0.166 | 0.181 | -0.016 | 1.88e-04 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.MultiPRS | 0.165 | 0.187 | -0.022 | 0.0017262 | 0.152 | 0.181 | -0.029 | 1.16e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.183 | 0.187 | -0.004 | 0.5478943 | 0.175 | 0.181 | -0.006 | 1.36e-01 |
Prostate_Cancer | LDpred1.Inf | lassosum.MultiPRS | 0.143 | 0.187 | -0.044 | 0.0000000 | 0.133 | 0.181 | -0.048 | 2.52e-12 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.MultiPRS | 0.168 | 0.187 | -0.019 | 0.0070605 | 0.164 | 0.181 | -0.018 | 1.66e-04 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.188 | 0.187 | 0.001 | 0.8822080 | 0.180 | 0.181 | -0.001 | 8.18e-01 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.PseudoVal | 0.188 | 0.168 | 0.019 | 0.0000000 | 0.185 | 0.164 | 0.021 | 7.24e-04 |
Prostate_Cancer | PRScs.MultiPRS | lassosum.PseudoVal | 0.184 | 0.168 | 0.016 | 0.0252157 | 0.173 | 0.164 | 0.009 | 7.34e-02 |
Prostate_Cancer | LDpred1.Inf | lassosum.PseudoVal | 0.143 | 0.168 | -0.025 | 0.0000005 | 0.133 | 0.164 | -0.031 | 2.09e-03 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.PseudoVal | 0.168 | 0.168 | 0.000 | 0.9876572 | 0.175 | 0.164 | 0.011 | 9.03e-02 |
Prostate_Cancer | All.MultiPRS | lassosum.PseudoVal | 0.192 | 0.168 | 0.024 | 0.0006757 | 0.184 | 0.164 | 0.020 | 3.75e-05 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.PseudoVal | 0.183 | 0.168 | 0.015 | 0.0346180 | 0.175 | 0.164 | 0.011 | 3.85e-02 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.PseudoVal | 0.176 | 0.168 | 0.008 | 0.0003418 | 0.171 | 0.164 | 0.007 | 9.86e-02 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.PseudoVal | 0.187 | 0.168 | 0.019 | 0.0070605 | 0.181 | 0.164 | 0.018 | 1.66e-04 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.PseudoVal | 0.139 | 0.168 | -0.029 | 0.0000000 | 0.133 | 0.164 | -0.031 | 2.83e-03 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.PseudoVal | 0.165 | 0.168 | -0.003 | 0.4368934 | 0.152 | 0.164 | -0.012 | 1.26e-01 |
Prostate_Cancer | SBLUP.Inf | lassosum.PseudoVal | 0.137 | 0.168 | -0.031 | 0.0000000 | 0.128 | 0.164 | -0.036 | 8.48e-04 |
Prostate_Cancer | lassosum.10FCVal | lassosum.PseudoVal | 0.180 | 0.168 | 0.012 | 0.0000004 | 0.177 | 0.164 | 0.014 | 3.45e-03 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.176 | 0.168 | 0.008 | 0.0121030 | 0.166 | 0.164 | 0.002 | 7.63e-01 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.PseudoVal | 0.183 | 0.168 | 0.015 | 0.0000000 | 0.173 | 0.164 | 0.010 | 5.28e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.183 | 0.168 | 0.015 | 0.0000025 | 0.175 | 0.164 | 0.011 | 6.40e-02 |
Prostate_Cancer | PRScs.PseudoVal | lassosum.PseudoVal | 0.183 | 0.168 | 0.014 | 0.0000001 | 0.172 | 0.164 | 0.008 | 1.26e-01 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.PseudoVal | 0.168 | 0.168 | 0.000 | 1.0000000 | 0.164 | 0.164 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.Inf | lassosum.PseudoVal | 0.135 | 0.168 | -0.033 | 0.0000000 | 0.129 | 0.164 | -0.035 | 1.11e-03 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.PseudoVal | 0.164 | 0.168 | -0.004 | 0.5822345 | 0.149 | 0.164 | -0.014 | 6.69e-02 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.PseudoVal | 0.152 | 0.168 | -0.016 | 0.0000001 | 0.166 | 0.164 | 0.002 | 6.78e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.188 | 0.168 | 0.020 | 0.0043557 | 0.180 | 0.164 | 0.017 | 3.64e-03 |
Prostate_Cancer | PRScs.10FCVal | lassosum.PseudoVal | 0.181 | 0.168 | 0.013 | 0.0000015 | 0.176 | 0.164 | 0.013 | 1.27e-02 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.10FCVal | 0.188 | 0.180 | 0.008 | 0.2477965 | 0.180 | 0.177 | 0.003 | 5.03e-01 |
Prostate_Cancer | PRScs.10FCVal | lassosum.10FCVal | 0.181 | 0.180 | 0.001 | 0.6911257 | 0.176 | 0.177 | -0.001 | 8.38e-01 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.10FCVal | 0.187 | 0.180 | 0.007 | 0.3142853 | 0.181 | 0.177 | 0.004 | 9.85e-02 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.10FCVal | 0.139 | 0.180 | -0.041 | 0.0000000 | 0.133 | 0.177 | -0.044 | 4.07e-08 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.10FCVal | 0.188 | 0.180 | 0.008 | 0.0017105 | 0.185 | 0.177 | 0.007 | 1.15e-01 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.10FCVal | 0.168 | 0.180 | -0.012 | 0.0864151 | 0.175 | 0.177 | -0.003 | 6.21e-01 |
Prostate_Cancer | lassosum.10FCVal | lassosum.10FCVal | 0.180 | 0.180 | 0.000 | 1.0000000 | 0.177 | 0.177 | 0.000 | 1.00e+00 |
Prostate_Cancer | PRScs.MultiPRS | lassosum.10FCVal | 0.184 | 0.180 | 0.004 | 0.5815541 | 0.173 | 0.177 | -0.004 | 2.73e-01 |
Prostate_Cancer | LDpred1.Inf | lassosum.10FCVal | 0.143 | 0.180 | -0.037 | 0.0000000 | 0.133 | 0.177 | -0.044 | 1.48e-08 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.10FCVal | 0.176 | 0.180 | -0.004 | 0.1959677 | 0.171 | 0.177 | -0.006 | 2.58e-01 |
Prostate_Cancer | PRScs.PseudoVal | lassosum.10FCVal | 0.183 | 0.180 | 0.003 | 0.2050172 | 0.172 | 0.177 | -0.005 | 1.70e-01 |
Prostate_Cancer | All.MultiPRS | lassosum.10FCVal | 0.192 | 0.180 | 0.012 | 0.0873693 | 0.184 | 0.177 | 0.007 | 6.19e-02 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.10FCVal | 0.183 | 0.180 | 0.003 | 0.6735084 | 0.175 | 0.177 | -0.003 | 4.95e-01 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.10FCVal | 0.164 | 0.180 | -0.016 | 0.0251961 | 0.149 | 0.177 | -0.028 | 3.52e-06 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.10FCVal | 0.152 | 0.180 | -0.028 | 0.0000000 | 0.166 | 0.177 | -0.011 | 8.84e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.10FCVal | 0.176 | 0.180 | -0.004 | 0.1636781 | 0.166 | 0.177 | -0.012 | 2.45e-02 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.10FCVal | 0.165 | 0.180 | -0.015 | 0.0000010 | 0.152 | 0.177 | -0.025 | 2.16e-05 |
Prostate_Cancer | SBLUP.Inf | lassosum.10FCVal | 0.137 | 0.180 | -0.043 | 0.0000000 | 0.128 | 0.177 | -0.049 | 4.50e-09 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.10FCVal | 0.168 | 0.180 | -0.012 | 0.0000004 | 0.164 | 0.177 | -0.014 | 3.45e-03 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.10FCVal | 0.183 | 0.180 | 0.003 | 0.0850766 | 0.173 | 0.177 | -0.004 | 2.60e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.10FCVal | 0.183 | 0.180 | 0.003 | 0.2372879 | 0.175 | 0.177 | -0.002 | 5.84e-01 |
Prostate_Cancer | LDpred2.Inf | lassosum.10FCVal | 0.135 | 0.180 | -0.045 | 0.0000000 | 0.129 | 0.177 | -0.048 | 8.90e-09 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.176 | 0.188 | -0.012 | 0.0922856 | 0.171 | 0.180 | -0.009 | 7.41e-02 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.168 | 0.188 | -0.020 | 0.0039897 | 0.175 | 0.180 | -0.006 | 2.84e-01 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4798743 | 0.173 | 0.180 | -0.007 | 6.96e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4530323 | 0.175 | 0.180 | -0.006 | 1.42e-02 |
Prostate_Cancer | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4293608 | 0.172 | 0.180 | -0.009 | 3.33e-02 |
Prostate_Cancer | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.184 | 0.188 | -0.004 | 0.5440464 | 0.173 | 0.180 | -0.007 | 5.60e-02 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4613234 | 0.175 | 0.180 | -0.006 | 1.45e-01 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.MultiPRS | 0.135 | 0.188 | -0.053 | 0.0000000 | 0.129 | 0.180 | -0.051 | 4.07e-11 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.MultiPRS | 0.137 | 0.188 | -0.051 | 0.0000000 | 0.128 | 0.180 | -0.052 | 1.74e-11 |
Prostate_Cancer | All.MultiPRS | MegaPRS.MultiPRS | 0.192 | 0.188 | 0.004 | 0.5787068 | 0.184 | 0.180 | 0.004 | 2.99e-02 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.139 | 0.188 | -0.049 | 0.0000000 | 0.133 | 0.180 | -0.047 | 2.52e-10 |
Prostate_Cancer | PRScs.10FCVal | MegaPRS.MultiPRS | 0.181 | 0.188 | -0.007 | 0.2975981 | 0.176 | 0.180 | -0.004 | 3.38e-01 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.MultiPRS | 0.143 | 0.188 | -0.045 | 0.0000000 | 0.133 | 0.180 | -0.047 | 6.20e-11 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.152 | 0.188 | -0.036 | 0.0000003 | 0.166 | 0.180 | -0.014 | 3.30e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.176 | 0.188 | -0.012 | 0.0935865 | 0.166 | 0.180 | -0.015 | 1.16e-03 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.MultiPRS | 0.180 | 0.188 | -0.008 | 0.2477965 | 0.177 | 0.180 | -0.003 | 5.03e-01 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.168 | 0.188 | -0.020 | 0.0043557 | 0.164 | 0.180 | -0.017 | 3.64e-03 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.188 | 0.188 | 0.000 | 0.9518931 | 0.185 | 0.180 | 0.004 | 3.97e-02 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.164 | 0.188 | -0.024 | 0.0006307 | 0.149 | 0.180 | -0.031 | 2.97e-08 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.187 | 0.188 | -0.001 | 0.8822080 | 0.181 | 0.180 | 0.001 | 8.18e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.180 | 0.180 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.165 | 0.188 | -0.023 | 0.0010499 | 0.152 | 0.180 | -0.028 | 3.52e-07 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.PseudoVal | 0.135 | 0.183 | -0.047 | 0.0000000 | 0.129 | 0.175 | -0.046 | 1.07e-08 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.183 | 0.183 | 0.000 | 0.8925677 | 0.173 | 0.175 | -0.002 | 7.24e-01 |
Prostate_Cancer | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.183 | 0.183 | 0.000 | 0.9081796 | 0.172 | 0.175 | -0.003 | 5.17e-01 |
Prostate_Cancer | All.MultiPRS | MegaPRS.PseudoVal | 0.192 | 0.183 | 0.009 | 0.1913038 | 0.184 | 0.175 | 0.009 | 8.19e-04 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.183 | 0.183 | 0.000 | 0.9875371 | 0.175 | 0.175 | 0.000 | 9.91e-01 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.176 | 0.183 | -0.006 | 0.0325225 | 0.171 | 0.175 | -0.004 | 5.15e-01 |
Prostate_Cancer | PRScs.10FCVal | MegaPRS.PseudoVal | 0.181 | 0.183 | -0.002 | 0.3990203 | 0.176 | 0.175 | 0.002 | 7.13e-01 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.152 | 0.183 | -0.031 | 0.0000000 | 0.166 | 0.175 | -0.009 | 1.97e-01 |
Prostate_Cancer | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.184 | 0.183 | 0.001 | 0.8835943 | 0.173 | 0.175 | -0.002 | 6.74e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.188 | 0.183 | 0.005 | 0.4530323 | 0.180 | 0.175 | 0.006 | 1.42e-02 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.168 | 0.183 | -0.015 | 0.0338973 | 0.175 | 0.175 | 0.000 | 9.73e-01 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.PseudoVal | 0.137 | 0.183 | -0.046 | 0.0000000 | 0.128 | 0.175 | -0.047 | 5.19e-09 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.168 | 0.183 | -0.015 | 0.0000025 | 0.164 | 0.175 | -0.011 | 6.40e-02 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.139 | 0.183 | -0.044 | 0.0000000 | 0.133 | 0.175 | -0.042 | 6.21e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.175 | 0.175 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.PseudoVal | 0.143 | 0.183 | -0.040 | 0.0000000 | 0.133 | 0.175 | -0.042 | 2.47e-08 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.164 | 0.183 | -0.018 | 0.0083196 | 0.149 | 0.175 | -0.025 | 2.04e-05 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.176 | 0.183 | -0.006 | 0.0115803 | 0.166 | 0.175 | -0.009 | 6.91e-02 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.187 | 0.183 | 0.004 | 0.5478943 | 0.181 | 0.175 | 0.006 | 1.36e-01 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0008204 | 0.185 | 0.175 | 0.010 | 3.96e-04 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.165 | 0.183 | -0.018 | 0.0000000 | 0.152 | 0.175 | -0.023 | 1.26e-04 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.PseudoVal | 0.180 | 0.183 | -0.003 | 0.2372879 | 0.177 | 0.175 | 0.002 | 5.84e-01 |
Prostate_Cancer | PRScs.10FCVal | MegaPRS.10FCVal | 0.181 | 0.188 | -0.007 | 0.0017671 | 0.176 | 0.185 | -0.008 | 5.36e-02 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.168 | 0.188 | -0.019 | 0.0048824 | 0.175 | 0.185 | -0.010 | 6.76e-02 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.10FCVal | 0.183 | 0.188 | -0.004 | 0.0403231 | 0.173 | 0.185 | -0.011 | 6.63e-03 |
Prostate_Cancer | PRScs.MultiPRS | MegaPRS.10FCVal | 0.184 | 0.188 | -0.004 | 0.5884411 | 0.173 | 0.185 | -0.012 | 4.34e-03 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.183 | 0.188 | -0.005 | 0.4991495 | 0.175 | 0.185 | -0.010 | 1.57e-02 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.176 | 0.188 | -0.011 | 0.0001817 | 0.171 | 0.185 | -0.014 | 1.74e-02 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.10FCVal | 0.152 | 0.188 | -0.035 | 0.0000000 | 0.166 | 0.185 | -0.019 | 8.98e-03 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.10FCVal | 0.135 | 0.188 | -0.052 | 0.0000000 | 0.129 | 0.185 | -0.056 | 1.05e-13 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.139 | 0.188 | -0.049 | 0.0000000 | 0.133 | 0.185 | -0.052 | 7.75e-13 |
Prostate_Cancer | All.MultiPRS | MegaPRS.10FCVal | 0.192 | 0.188 | 0.004 | 0.5388171 | 0.184 | 0.185 | -0.001 | 8.13e-01 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.10FCVal | 0.137 | 0.188 | -0.051 | 0.0000000 | 0.128 | 0.185 | -0.057 | 3.35e-14 |
Prostate_Cancer | PRScs.PseudoVal | MegaPRS.10FCVal | 0.183 | 0.188 | -0.005 | 0.0196144 | 0.172 | 0.185 | -0.013 | 2.38e-03 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.176 | 0.188 | -0.011 | 0.0000012 | 0.166 | 0.185 | -0.019 | 4.44e-05 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.10FCVal | 0.187 | 0.188 | -0.001 | 0.9309111 | 0.181 | 0.185 | -0.003 | 4.08e-01 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.10FCVal | 0.143 | 0.188 | -0.045 | 0.0000000 | 0.133 | 0.185 | -0.052 | 1.32e-13 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.188 | 0.188 | 0.000 | 0.9518931 | 0.180 | 0.185 | -0.004 | 3.97e-02 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.10FCVal | 0.168 | 0.188 | -0.019 | 0.0000000 | 0.164 | 0.185 | -0.021 | 7.24e-04 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.10FCVal | 0.180 | 0.188 | -0.008 | 0.0017105 | 0.177 | 0.185 | -0.007 | 1.15e-01 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.185 | 0.185 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.183 | 0.188 | -0.005 | 0.0008204 | 0.175 | 0.185 | -0.010 | 3.96e-04 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.164 | 0.188 | -0.023 | 0.0008789 | 0.149 | 0.185 | -0.035 | 1.44e-10 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.10FCVal | 0.165 | 0.188 | -0.022 | 0.0000000 | 0.152 | 0.185 | -0.033 | 2.50e-09 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.183 | 0.164 | 0.018 | 0.0075274 | 0.175 | 0.149 | 0.025 | 4.97e-08 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.139 | 0.164 | -0.025 | 0.0002593 | 0.133 | 0.149 | -0.016 | 2.07e-03 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.176 | 0.164 | 0.012 | 0.0864627 | 0.171 | 0.149 | 0.022 | 4.60e-03 |
Prostate_Cancer | LDpred1.Inf | LDpred1.MultiPRS | 0.143 | 0.164 | -0.021 | 0.0020874 | 0.133 | 0.149 | -0.016 | 1.67e-04 |
Prostate_Cancer | PRScs.PseudoVal | LDpred1.MultiPRS | 0.183 | 0.164 | 0.018 | 0.0091727 | 0.172 | 0.149 | 0.022 | 9.32e-07 |
Prostate_Cancer | PRScs.MultiPRS | LDpred1.MultiPRS | 0.184 | 0.164 | 0.019 | 0.0000000 | 0.173 | 0.149 | 0.023 | 1.75e-07 |
Prostate_Cancer | LDpred2.Inf | LDpred1.MultiPRS | 0.135 | 0.164 | -0.029 | 0.0000283 | 0.129 | 0.149 | -0.020 | 3.15e-04 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.MultiPRS | 0.183 | 0.164 | 0.019 | 0.0071851 | 0.173 | 0.149 | 0.024 | 2.11e-06 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.MultiPRS | 0.152 | 0.164 | -0.012 | 0.0812877 | 0.166 | 0.149 | 0.017 | 5.06e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.183 | 0.164 | 0.018 | 0.0083196 | 0.175 | 0.149 | 0.025 | 2.04e-05 |
Prostate_Cancer | PRScs.10FCVal | LDpred1.MultiPRS | 0.181 | 0.164 | 0.016 | 0.0186297 | 0.176 | 0.149 | 0.027 | 1.05e-08 |
Prostate_Cancer | All.MultiPRS | LDpred1.MultiPRS | 0.192 | 0.164 | 0.027 | 0.0000752 | 0.184 | 0.149 | 0.035 | 1.89e-11 |
Prostate_Cancer | SBLUP.Inf | LDpred1.MultiPRS | 0.137 | 0.164 | -0.028 | 0.0000705 | 0.128 | 0.149 | -0.021 | 1.20e-04 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.164 | 0.164 | 0.000 | 1.0000000 | 0.149 | 0.149 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.MultiPRS | 0.180 | 0.164 | 0.016 | 0.0251961 | 0.177 | 0.149 | 0.028 | 3.52e-06 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.MultiPRS | 0.187 | 0.164 | 0.023 | 0.0000000 | 0.181 | 0.149 | 0.032 | 8.09e-10 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.176 | 0.164 | 0.012 | 0.0852292 | 0.166 | 0.149 | 0.016 | 8.68e-04 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.MultiPRS | 0.165 | 0.164 | 0.001 | 0.9090313 | 0.152 | 0.149 | 0.003 | 1.50e-01 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.168 | 0.164 | 0.004 | 0.5906666 | 0.175 | 0.149 | 0.025 | 1.19e-04 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.188 | 0.164 | 0.023 | 0.0008789 | 0.185 | 0.149 | 0.035 | 1.44e-10 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.MultiPRS | 0.168 | 0.164 | 0.004 | 0.5822345 | 0.164 | 0.149 | 0.014 | 6.69e-02 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.188 | 0.164 | 0.024 | 0.0006307 | 0.180 | 0.149 | 0.031 | 2.97e-08 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.Inf | 0.188 | 0.143 | 0.045 | 0.0000000 | 0.180 | 0.133 | 0.047 | 6.20e-11 |
Prostate_Cancer | PRScs.10FCVal | LDpred1.Inf | 0.181 | 0.143 | 0.038 | 0.0000000 | 0.176 | 0.133 | 0.043 | 1.26e-10 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.Inf | 0.183 | 0.143 | 0.040 | 0.0000000 | 0.175 | 0.133 | 0.042 | 2.45e-10 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.Inf | 0.164 | 0.143 | 0.021 | 0.0020874 | 0.149 | 0.133 | 0.016 | 1.67e-04 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.Inf | 0.152 | 0.143 | 0.009 | 0.0659545 | 0.166 | 0.133 | 0.033 | 8.73e-04 |
Prostate_Cancer | All.MultiPRS | LDpred1.Inf | 0.192 | 0.143 | 0.049 | 0.0000000 | 0.184 | 0.133 | 0.051 | 5.59e-13 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.Inf | 0.139 | 0.143 | -0.004 | 0.0079346 | 0.133 | 0.133 | 0.000 | 9.64e-01 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.Inf | 0.188 | 0.143 | 0.045 | 0.0000000 | 0.185 | 0.133 | 0.052 | 1.32e-13 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.Inf | 0.168 | 0.143 | 0.025 | 0.0002878 | 0.175 | 0.133 | 0.042 | 7.25e-08 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.Inf | 0.187 | 0.143 | 0.044 | 0.0000000 | 0.181 | 0.133 | 0.048 | 2.52e-12 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.Inf | 0.176 | 0.143 | 0.033 | 0.0000000 | 0.166 | 0.133 | 0.033 | 1.87e-07 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.Inf | 0.183 | 0.143 | 0.040 | 0.0000000 | 0.173 | 0.133 | 0.040 | 1.43e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.Inf | 0.183 | 0.143 | 0.040 | 0.0000000 | 0.175 | 0.133 | 0.042 | 2.47e-08 |
Prostate_Cancer | PRScs.PseudoVal | LDpred1.Inf | 0.183 | 0.143 | 0.039 | 0.0000000 | 0.172 | 0.133 | 0.039 | 2.91e-09 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.Inf | 0.168 | 0.143 | 0.025 | 0.0000005 | 0.164 | 0.133 | 0.031 | 2.09e-03 |
Prostate_Cancer | LDpred2.Inf | LDpred1.Inf | 0.135 | 0.143 | -0.008 | 0.0000013 | 0.129 | 0.133 | -0.004 | 2.10e-01 |
Prostate_Cancer | PRScs.MultiPRS | LDpred1.Inf | 0.184 | 0.143 | 0.041 | 0.0000000 | 0.173 | 0.133 | 0.040 | 1.23e-09 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.Inf | 0.165 | 0.143 | 0.022 | 0.0000000 | 0.152 | 0.133 | 0.019 | 4.30e-05 |
Prostate_Cancer | SBLUP.Inf | LDpred1.Inf | 0.137 | 0.143 | -0.006 | 0.0000510 | 0.128 | 0.133 | -0.005 | 1.15e-01 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.Inf | 0.180 | 0.143 | 0.037 | 0.0000000 | 0.177 | 0.133 | 0.044 | 1.48e-08 |
Prostate_Cancer | LDpred1.Inf | LDpred1.Inf | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.133 | 0.133 | 0.000 | 1.00e+00 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.Inf | 0.176 | 0.143 | 0.033 | 0.0000000 | 0.171 | 0.133 | 0.038 | 7.33e-05 |
Prostate_Cancer | LDpred2.Inf | LDpred1.10FCVal | 0.135 | 0.165 | -0.030 | 0.0000000 | 0.129 | 0.152 | -0.023 | 1.11e-04 |
Prostate_Cancer | PRScs.10FCVal | LDpred1.10FCVal | 0.181 | 0.165 | 0.016 | 0.0000000 | 0.176 | 0.152 | 0.024 | 1.06e-07 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.10FCVal | 0.187 | 0.165 | 0.022 | 0.0017262 | 0.181 | 0.152 | 0.029 | 1.16e-08 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.10FCVal | 0.183 | 0.165 | 0.018 | 0.0105798 | 0.175 | 0.152 | 0.023 | 6.83e-07 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.188 | 0.165 | 0.023 | 0.0010499 | 0.180 | 0.152 | 0.028 | 3.52e-07 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.10FCVal | 0.176 | 0.165 | 0.011 | 0.0039754 | 0.171 | 0.152 | 0.019 | 1.14e-02 |
Prostate_Cancer | PRScs.PseudoVal | LDpred1.10FCVal | 0.183 | 0.165 | 0.017 | 0.0000000 | 0.172 | 0.152 | 0.020 | 8.30e-06 |
Prostate_Cancer | All.MultiPRS | LDpred1.10FCVal | 0.192 | 0.165 | 0.027 | 0.0001200 | 0.184 | 0.152 | 0.032 | 3.34e-10 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.10FCVal | 0.139 | 0.165 | -0.026 | 0.0000000 | 0.133 | 0.152 | -0.019 | 7.06e-04 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.10FCVal | 0.164 | 0.165 | -0.001 | 0.9090313 | 0.149 | 0.152 | -0.003 | 1.50e-01 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.10FCVal | 0.152 | 0.165 | -0.013 | 0.0029730 | 0.166 | 0.152 | 0.014 | 9.75e-02 |
Prostate_Cancer | SBLUP.Inf | LDpred1.10FCVal | 0.137 | 0.165 | -0.028 | 0.0000000 | 0.128 | 0.152 | -0.024 | 4.07e-05 |
Prostate_Cancer | PRScs.MultiPRS | LDpred1.10FCVal | 0.184 | 0.165 | 0.019 | 0.0074207 | 0.173 | 0.152 | 0.021 | 1.77e-06 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.10FCVal | 0.188 | 0.165 | 0.022 | 0.0000000 | 0.185 | 0.152 | 0.033 | 2.50e-09 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.10FCVal | 0.168 | 0.165 | 0.003 | 0.6718860 | 0.175 | 0.152 | 0.023 | 5.77e-04 |
Prostate_Cancer | LDpred1.Inf | LDpred1.10FCVal | 0.143 | 0.165 | -0.022 | 0.0000000 | 0.133 | 0.152 | -0.019 | 4.30e-05 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.10FCVal | 0.168 | 0.165 | 0.003 | 0.4368934 | 0.164 | 0.152 | 0.012 | 1.26e-01 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.10FCVal | 0.183 | 0.165 | 0.018 | 0.0000000 | 0.173 | 0.152 | 0.021 | 1.59e-05 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.183 | 0.165 | 0.018 | 0.0000000 | 0.175 | 0.152 | 0.023 | 1.26e-04 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.10FCVal | 0.165 | 0.165 | 0.000 | 1.0000000 | 0.152 | 0.152 | 0.000 | 1.00e+00 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.176 | 0.165 | 0.011 | 0.0000079 | 0.166 | 0.152 | 0.014 | 4.95e-03 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.10FCVal | 0.180 | 0.165 | 0.015 | 0.0000010 | 0.177 | 0.152 | 0.025 | 2.16e-05 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.176 | 0.183 | -0.007 | 0.3456502 | 0.166 | 0.175 | -0.009 | 2.19e-02 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.MultiPRS | 0.183 | 0.183 | 0.000 | 0.9764976 | 0.173 | 0.175 | -0.001 | 9.07e-02 |
Prostate_Cancer | PRScs.PseudoVal | LDpred2.MultiPRS | 0.183 | 0.183 | 0.000 | 0.9558498 | 0.172 | 0.175 | -0.003 | 2.51e-01 |
Prostate_Cancer | All.MultiPRS | LDpred2.MultiPRS | 0.192 | 0.183 | 0.009 | 0.0000000 | 0.184 | 0.175 | 0.009 | 5.04e-04 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.175 | 0.175 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.183 | 0.183 | 0.000 | 0.9875371 | 0.175 | 0.175 | 0.000 | 9.91e-01 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.188 | 0.183 | 0.005 | 0.4991495 | 0.185 | 0.175 | 0.010 | 1.57e-02 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.168 | 0.183 | -0.015 | 0.0324671 | 0.175 | 0.175 | 0.000 | 9.80e-01 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.MultiPRS | 0.180 | 0.183 | -0.003 | 0.6735084 | 0.177 | 0.175 | 0.003 | 4.95e-01 |
Prostate_Cancer | PRScs.MultiPRS | LDpred2.MultiPRS | 0.184 | 0.183 | 0.001 | 0.8952503 | 0.173 | 0.175 | -0.002 | 4.40e-01 |
Prostate_Cancer | LDpred1.Inf | LDpred2.MultiPRS | 0.143 | 0.183 | -0.040 | 0.0000000 | 0.133 | 0.175 | -0.042 | 2.45e-10 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.176 | 0.183 | -0.007 | 0.3433089 | 0.171 | 0.175 | -0.004 | 4.72e-01 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.MultiPRS | 0.152 | 0.183 | -0.031 | 0.0000101 | 0.166 | 0.175 | -0.009 | 2.16e-01 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.MultiPRS | 0.168 | 0.183 | -0.015 | 0.0346180 | 0.164 | 0.175 | -0.011 | 3.85e-02 |
Prostate_Cancer | LDpred2.Inf | LDpred2.MultiPRS | 0.135 | 0.183 | -0.048 | 0.0000000 | 0.129 | 0.175 | -0.046 | 8.86e-11 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.164 | 0.183 | -0.018 | 0.0075274 | 0.149 | 0.175 | -0.025 | 4.97e-08 |
Prostate_Cancer | SBLUP.Inf | LDpred2.MultiPRS | 0.137 | 0.183 | -0.046 | 0.0000000 | 0.128 | 0.175 | -0.047 | 7.53e-11 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.MultiPRS | 0.187 | 0.183 | 0.004 | 0.5563511 | 0.181 | 0.175 | 0.007 | 4.75e-02 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.139 | 0.183 | -0.044 | 0.0000000 | 0.133 | 0.175 | -0.042 | 4.58e-10 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.MultiPRS | 0.165 | 0.183 | -0.018 | 0.0105798 | 0.152 | 0.175 | -0.023 | 6.83e-07 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.188 | 0.183 | 0.005 | 0.4613234 | 0.180 | 0.175 | 0.006 | 1.45e-01 |
Prostate_Cancer | PRScs.10FCVal | LDpred2.MultiPRS | 0.181 | 0.183 | -0.002 | 0.7580234 | 0.176 | 0.175 | 0.002 | 4.86e-01 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.10FCVal | 0.183 | 0.183 | 0.000 | 0.9764976 | 0.175 | 0.173 | 0.001 | 9.07e-02 |
Prostate_Cancer | LDpred2.Inf | LDpred2.10FCVal | 0.135 | 0.183 | -0.048 | 0.0000000 | 0.129 | 0.173 | -0.044 | 6.30e-09 |
Prostate_Cancer | PRScs.10FCVal | LDpred2.10FCVal | 0.181 | 0.183 | -0.002 | 0.0677765 | 0.176 | 0.173 | 0.003 | 1.97e-01 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.10FCVal | 0.176 | 0.183 | -0.007 | 0.0078504 | 0.171 | 0.173 | -0.002 | 6.45e-01 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.10FCVal | 0.168 | 0.183 | -0.015 | 0.0000000 | 0.164 | 0.173 | -0.010 | 5.28e-02 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.10FCVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
Prostate_Cancer | PRScs.PseudoVal | LDpred2.10FCVal | 0.183 | 0.183 | -0.001 | 0.6502130 | 0.172 | 0.173 | -0.001 | 5.88e-01 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.10FCVal | 0.164 | 0.183 | -0.019 | 0.0071851 | 0.149 | 0.173 | -0.024 | 2.11e-06 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.10FCVal | 0.152 | 0.183 | -0.031 | 0.0000000 | 0.166 | 0.173 | -0.007 | 2.94e-01 |
Prostate_Cancer | All.MultiPRS | LDpred2.10FCVal | 0.192 | 0.183 | 0.009 | 0.2075811 | 0.184 | 0.173 | 0.011 | 4.77e-05 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.188 | 0.183 | 0.005 | 0.4798743 | 0.180 | 0.173 | 0.007 | 6.96e-02 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.10FCVal | 0.188 | 0.183 | 0.004 | 0.0403231 | 0.185 | 0.173 | 0.011 | 6.63e-03 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.10FCVal | 0.168 | 0.183 | -0.015 | 0.0302451 | 0.175 | 0.173 | 0.001 | 8.03e-01 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.10FCVal | 0.187 | 0.183 | 0.004 | 0.5773107 | 0.181 | 0.173 | 0.008 | 1.60e-02 |
Prostate_Cancer | PRScs.MultiPRS | LDpred2.10FCVal | 0.184 | 0.183 | 0.001 | 0.9188755 | 0.173 | 0.173 | 0.000 | 8.89e-01 |
Prostate_Cancer | LDpred1.Inf | LDpred2.10FCVal | 0.143 | 0.183 | -0.040 | 0.0000000 | 0.133 | 0.173 | -0.040 | 1.43e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.183 | 0.183 | 0.000 | 0.8925677 | 0.175 | 0.173 | 0.002 | 7.24e-01 |
Prostate_Cancer | SBLUP.Inf | LDpred2.10FCVal | 0.137 | 0.183 | -0.046 | 0.0000000 | 0.128 | 0.173 | -0.045 | 5.06e-09 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.10FCVal | 0.180 | 0.183 | -0.003 | 0.0850766 | 0.177 | 0.173 | 0.004 | 2.60e-01 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.10FCVal | 0.139 | 0.183 | -0.044 | 0.0000000 | 0.133 | 0.173 | -0.040 | 2.79e-08 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.10FCVal | 0.165 | 0.183 | -0.018 | 0.0000000 | 0.152 | 0.173 | -0.021 | 1.59e-05 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.176 | 0.183 | -0.007 | 0.0013886 | 0.166 | 0.173 | -0.008 | 7.03e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.183 | 0.139 | 0.044 | 0.0000000 | 0.175 | 0.133 | 0.042 | 6.21e-08 |
Prostate_Cancer | PRScs.PseudoVal | LDpred2.PseudoVal | 0.183 | 0.139 | 0.044 | 0.0000000 | 0.172 | 0.133 | 0.039 | 1.26e-08 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.183 | 0.139 | 0.044 | 0.0000000 | 0.175 | 0.133 | 0.042 | 4.58e-10 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.188 | 0.139 | 0.049 | 0.0000000 | 0.180 | 0.133 | 0.047 | 2.52e-10 |
Prostate_Cancer | PRScs.10FCVal | LDpred2.PseudoVal | 0.181 | 0.139 | 0.042 | 0.0000000 | 0.176 | 0.133 | 0.044 | 6.22e-10 |
Prostate_Cancer | All.MultiPRS | LDpred2.PseudoVal | 0.192 | 0.139 | 0.053 | 0.0000000 | 0.184 | 0.133 | 0.051 | 2.54e-12 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.176 | 0.139 | 0.037 | 0.0000000 | 0.166 | 0.133 | 0.033 | 3.58e-07 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.PseudoVal | 0.183 | 0.139 | 0.044 | 0.0000000 | 0.173 | 0.133 | 0.040 | 2.79e-08 |
Prostate_Cancer | LDpred1.Inf | LDpred2.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0079346 | 0.133 | 0.133 | 0.000 | 9.64e-01 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.176 | 0.139 | 0.037 | 0.0000000 | 0.171 | 0.133 | 0.038 | 9.49e-05 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.PseudoVal | 0.168 | 0.139 | 0.029 | 0.0000000 | 0.164 | 0.133 | 0.031 | 2.83e-03 |
Prostate_Cancer | LDpred2.Inf | LDpred2.PseudoVal | 0.135 | 0.139 | -0.004 | 0.0000000 | 0.129 | 0.133 | -0.004 | 1.43e-09 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.139 | 0.139 | 0.000 | 1.0000000 | 0.133 | 0.133 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.164 | 0.139 | 0.025 | 0.0002593 | 0.149 | 0.133 | 0.016 | 2.07e-03 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.PseudoVal | 0.152 | 0.139 | 0.013 | 0.0102651 | 0.166 | 0.133 | 0.033 | 1.11e-03 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.PseudoVal | 0.187 | 0.139 | 0.048 | 0.0000000 | 0.181 | 0.133 | 0.048 | 1.32e-11 |
Prostate_Cancer | PRScs.MultiPRS | LDpred2.PseudoVal | 0.184 | 0.139 | 0.045 | 0.0000000 | 0.173 | 0.133 | 0.040 | 6.15e-09 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.188 | 0.139 | 0.049 | 0.0000000 | 0.185 | 0.133 | 0.052 | 7.75e-13 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.168 | 0.139 | 0.029 | 0.0000264 | 0.175 | 0.133 | 0.042 | 1.48e-07 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.PseudoVal | 0.180 | 0.139 | 0.041 | 0.0000000 | 0.177 | 0.133 | 0.044 | 4.07e-08 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.PseudoVal | 0.165 | 0.139 | 0.026 | 0.0000000 | 0.152 | 0.133 | 0.019 | 7.06e-04 |
Prostate_Cancer | SBLUP.Inf | LDpred2.PseudoVal | 0.137 | 0.139 | -0.002 | 0.0105347 | 0.128 | 0.133 | -0.005 | 6.91e-03 |
Prostate_Cancer | PRScs.10FCVal | LDpred2.Inf | 0.181 | 0.135 | 0.045 | 0.0000000 | 0.176 | 0.129 | 0.047 | 1.46e-10 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.Inf | 0.168 | 0.135 | 0.033 | 0.0000022 | 0.175 | 0.129 | 0.045 | 2.43e-08 |
Prostate_Cancer | LDpred2.Inf | LDpred2.Inf | 0.135 | 0.135 | 0.000 | 1.0000000 | 0.129 | 0.129 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.Inf | 0.168 | 0.135 | 0.033 | 0.0000000 | 0.164 | 0.129 | 0.035 | 1.11e-03 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.Inf | 0.183 | 0.135 | 0.048 | 0.0000000 | 0.175 | 0.129 | 0.046 | 8.86e-11 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.Inf | 0.176 | 0.135 | 0.041 | 0.0000000 | 0.171 | 0.129 | 0.042 | 2.97e-05 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.Inf | 0.152 | 0.135 | 0.017 | 0.0013097 | 0.166 | 0.129 | 0.037 | 3.82e-04 |
Prostate_Cancer | PRScs.PseudoVal | LDpred2.Inf | 0.183 | 0.135 | 0.047 | 0.0000000 | 0.172 | 0.129 | 0.043 | 2.77e-09 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.Inf | 0.139 | 0.135 | 0.004 | 0.0000000 | 0.133 | 0.129 | 0.004 | 1.43e-09 |
Prostate_Cancer | All.MultiPRS | LDpred2.Inf | 0.192 | 0.135 | 0.056 | 0.0000000 | 0.184 | 0.129 | 0.055 | 4.86e-13 |
Prostate_Cancer | SBLUP.Inf | LDpred2.Inf | 0.137 | 0.135 | 0.001 | 0.0549594 | 0.128 | 0.129 | -0.001 | 5.42e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.Inf | 0.188 | 0.135 | 0.053 | 0.0000000 | 0.180 | 0.129 | 0.051 | 4.07e-11 |
Prostate_Cancer | PRScs.MultiPRS | LDpred2.Inf | 0.184 | 0.135 | 0.049 | 0.0000000 | 0.173 | 0.129 | 0.044 | 1.17e-09 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.Inf | 0.187 | 0.135 | 0.052 | 0.0000000 | 0.181 | 0.129 | 0.052 | 2.18e-12 |
Prostate_Cancer | LDpred1.Inf | LDpred2.Inf | 0.143 | 0.135 | 0.008 | 0.0000013 | 0.133 | 0.129 | 0.004 | 2.10e-01 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.Inf | 0.188 | 0.135 | 0.052 | 0.0000000 | 0.185 | 0.129 | 0.056 | 1.05e-13 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.Inf | 0.183 | 0.135 | 0.047 | 0.0000000 | 0.175 | 0.129 | 0.046 | 1.07e-08 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.Inf | 0.180 | 0.135 | 0.045 | 0.0000000 | 0.177 | 0.129 | 0.048 | 8.90e-09 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.Inf | 0.183 | 0.135 | 0.048 | 0.0000000 | 0.173 | 0.129 | 0.044 | 6.30e-09 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.Inf | 0.176 | 0.135 | 0.041 | 0.0000000 | 0.166 | 0.129 | 0.037 | 4.57e-08 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.Inf | 0.164 | 0.135 | 0.029 | 0.0000283 | 0.149 | 0.129 | 0.020 | 3.15e-04 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.Inf | 0.165 | 0.135 | 0.030 | 0.0000000 | 0.152 | 0.129 | 0.023 | 1.11e-04 |
Prostate_Cancer | PRScs.PseudoVal | PRScs.MultiPRS | 0.183 | 0.184 | -0.001 | 0.8521428 | 0.172 | 0.173 | -0.001 | 5.01e-01 |
Prostate_Cancer | LDpred2.MultiPRS | PRScs.MultiPRS | 0.183 | 0.184 | -0.001 | 0.8952503 | 0.175 | 0.173 | 0.002 | 4.40e-01 |
Prostate_Cancer | LDpred2.Inf | PRScs.MultiPRS | 0.135 | 0.184 | -0.049 | 0.0000000 | 0.129 | 0.173 | -0.044 | 1.17e-09 |
Prostate_Cancer | pT+clump.10FCVal | PRScs.MultiPRS | 0.152 | 0.184 | -0.032 | 0.0000058 | 0.166 | 0.173 | -0.007 | 3.38e-01 |
Prostate_Cancer | SBayesR.PseudoVal | PRScs.MultiPRS | 0.176 | 0.184 | -0.007 | 0.2819402 | 0.171 | 0.173 | -0.002 | 7.10e-01 |
Prostate_Cancer | LDpred2.PseudoVal | PRScs.MultiPRS | 0.139 | 0.184 | -0.045 | 0.0000000 | 0.133 | 0.173 | -0.040 | 6.15e-09 |
Prostate_Cancer | LDpred2.10FCVal | PRScs.MultiPRS | 0.183 | 0.184 | -0.001 | 0.9188755 | 0.173 | 0.173 | 0.000 | 8.89e-01 |
Prostate_Cancer | PRScs.MultiPRS | PRScs.MultiPRS | 0.184 | 0.184 | 0.000 | 1.0000000 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.MultiPRS | PRScs.MultiPRS | 0.164 | 0.184 | -0.019 | 0.0000000 | 0.149 | 0.173 | -0.023 | 1.75e-07 |
Prostate_Cancer | pT+clump.MultiPRS | PRScs.MultiPRS | 0.168 | 0.184 | -0.016 | 0.0233699 | 0.175 | 0.173 | 0.002 | 7.50e-01 |
Prostate_Cancer | All.MultiPRS | PRScs.MultiPRS | 0.192 | 0.184 | 0.008 | 0.2472070 | 0.184 | 0.173 | 0.011 | 5.25e-05 |
Prostate_Cancer | lassosum.PseudoVal | PRScs.MultiPRS | 0.168 | 0.184 | -0.016 | 0.0252157 | 0.164 | 0.173 | -0.009 | 7.34e-02 |
Prostate_Cancer | PRScs.10FCVal | PRScs.MultiPRS | 0.181 | 0.184 | -0.003 | 0.6613330 | 0.176 | 0.173 | 0.004 | 3.09e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.183 | 0.184 | -0.001 | 0.8835943 | 0.175 | 0.173 | 0.002 | 6.74e-01 |
Prostate_Cancer | lassosum.MultiPRS | PRScs.MultiPRS | 0.187 | 0.184 | 0.003 | 0.0426405 | 0.181 | 0.173 | 0.008 | 6.54e-03 |
Prostate_Cancer | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.188 | 0.184 | 0.004 | 0.5440464 | 0.180 | 0.173 | 0.007 | 5.60e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.176 | 0.184 | -0.007 | 0.2836710 | 0.166 | 0.173 | -0.007 | 2.83e-02 |
Prostate_Cancer | LDpred1.10FCVal | PRScs.MultiPRS | 0.165 | 0.184 | -0.019 | 0.0074207 | 0.152 | 0.173 | -0.021 | 1.77e-06 |
Prostate_Cancer | SBLUP.Inf | PRScs.MultiPRS | 0.137 | 0.184 | -0.047 | 0.0000000 | 0.128 | 0.173 | -0.045 | 3.50e-10 |
Prostate_Cancer | lassosum.10FCVal | PRScs.MultiPRS | 0.180 | 0.184 | -0.004 | 0.5815541 | 0.177 | 0.173 | 0.004 | 2.73e-01 |
Prostate_Cancer | LDpred1.Inf | PRScs.MultiPRS | 0.143 | 0.184 | -0.041 | 0.0000000 | 0.133 | 0.173 | -0.040 | 1.23e-09 |
Prostate_Cancer | MegaPRS.10FCVal | PRScs.MultiPRS | 0.188 | 0.184 | 0.004 | 0.5884411 | 0.185 | 0.173 | 0.012 | 4.34e-03 |
Prostate_Cancer | PRScs.10FCVal | PRScs.10FCVal | 0.181 | 0.181 | 0.000 | 1.0000000 | 0.176 | 0.176 | 0.000 | 1.00e+00 |
Prostate_Cancer | pT+clump.MultiPRS | PRScs.10FCVal | 0.168 | 0.181 | -0.013 | 0.0676941 | 0.175 | 0.176 | -0.002 | 7.36e-01 |
Prostate_Cancer | SBayesR.PseudoVal | PRScs.10FCVal | 0.176 | 0.181 | -0.004 | 0.0927781 | 0.171 | 0.176 | -0.006 | 2.80e-01 |
Prostate_Cancer | pT+clump.10FCVal | PRScs.10FCVal | 0.152 | 0.181 | -0.028 | 0.0000000 | 0.166 | 0.176 | -0.010 | 1.38e-01 |
Prostate_Cancer | LDpred2.MultiPRS | PRScs.10FCVal | 0.183 | 0.181 | 0.002 | 0.7580234 | 0.175 | 0.176 | -0.002 | 4.86e-01 |
Prostate_Cancer | LDpred2.10FCVal | PRScs.10FCVal | 0.183 | 0.181 | 0.002 | 0.0677765 | 0.173 | 0.176 | -0.003 | 1.97e-01 |
Prostate_Cancer | SBLUP.Inf | PRScs.10FCVal | 0.137 | 0.181 | -0.044 | 0.0000000 | 0.128 | 0.176 | -0.048 | 6.50e-11 |
Prostate_Cancer | PRScs.PseudoVal | PRScs.10FCVal | 0.183 | 0.181 | 0.002 | 0.0872306 | 0.172 | 0.176 | -0.005 | 2.11e-02 |
Prostate_Cancer | LDpred2.PseudoVal | PRScs.10FCVal | 0.139 | 0.181 | -0.042 | 0.0000000 | 0.133 | 0.176 | -0.044 | 6.22e-10 |
Prostate_Cancer | LDpred2.Inf | PRScs.10FCVal | 0.135 | 0.181 | -0.045 | 0.0000000 | 0.129 | 0.176 | -0.047 | 1.46e-10 |
Prostate_Cancer | LDpred1.Inf | PRScs.10FCVal | 0.143 | 0.181 | -0.038 | 0.0000000 | 0.133 | 0.176 | -0.043 | 1.26e-10 |
Prostate_Cancer | MegaPRS.MultiPRS | PRScs.10FCVal | 0.188 | 0.181 | 0.007 | 0.2975981 | 0.180 | 0.176 | 0.004 | 3.38e-01 |
Prostate_Cancer | PRScs.MultiPRS | PRScs.10FCVal | 0.184 | 0.181 | 0.003 | 0.6613330 | 0.173 | 0.176 | -0.004 | 3.09e-02 |
Prostate_Cancer | lassosum.MultiPRS | PRScs.10FCVal | 0.187 | 0.181 | 0.006 | 0.3715658 | 0.181 | 0.176 | 0.005 | 1.58e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | PRScs.10FCVal | 0.176 | 0.181 | -0.004 | 0.0161550 | 0.166 | 0.176 | -0.011 | 3.19e-03 |
Prostate_Cancer | MegaPRS.10FCVal | PRScs.10FCVal | 0.188 | 0.181 | 0.007 | 0.0017671 | 0.185 | 0.176 | 0.008 | 5.36e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | PRScs.10FCVal | 0.183 | 0.181 | 0.002 | 0.3990203 | 0.175 | 0.176 | -0.002 | 7.13e-01 |
Prostate_Cancer | lassosum.10FCVal | PRScs.10FCVal | 0.180 | 0.181 | -0.001 | 0.6911257 | 0.177 | 0.176 | 0.001 | 8.38e-01 |
Prostate_Cancer | All.MultiPRS | PRScs.10FCVal | 0.192 | 0.181 | 0.011 | 0.1098076 | 0.184 | 0.176 | 0.008 | 1.00e-02 |
Prostate_Cancer | lassosum.PseudoVal | PRScs.10FCVal | 0.168 | 0.181 | -0.013 | 0.0000015 | 0.164 | 0.176 | -0.013 | 1.27e-02 |
Prostate_Cancer | LDpred1.MultiPRS | PRScs.10FCVal | 0.164 | 0.181 | -0.016 | 0.0186297 | 0.149 | 0.176 | -0.027 | 1.05e-08 |
Prostate_Cancer | LDpred1.10FCVal | PRScs.10FCVal | 0.165 | 0.181 | -0.016 | 0.0000000 | 0.152 | 0.176 | -0.024 | 1.06e-07 |
Prostate_Cancer | LDpred2.MultiPRS | PRScs.PseudoVal | 0.183 | 0.183 | 0.000 | 0.9558498 | 0.175 | 0.172 | 0.003 | 2.51e-01 |
Prostate_Cancer | PRScs.10FCVal | PRScs.PseudoVal | 0.181 | 0.183 | -0.002 | 0.0872306 | 0.176 | 0.172 | 0.005 | 2.11e-02 |
Prostate_Cancer | pT+clump.10FCVal | PRScs.PseudoVal | 0.152 | 0.183 | -0.030 | 0.0000000 | 0.166 | 0.172 | -0.006 | 4.21e-01 |
Prostate_Cancer | LDpred2.PseudoVal | PRScs.PseudoVal | 0.139 | 0.183 | -0.044 | 0.0000000 | 0.133 | 0.172 | -0.039 | 1.26e-08 |
Prostate_Cancer | LDpred2.Inf | PRScs.PseudoVal | 0.135 | 0.183 | -0.047 | 0.0000000 | 0.129 | 0.172 | -0.043 | 2.77e-09 |
Prostate_Cancer | pT+clump.MultiPRS | PRScs.PseudoVal | 0.168 | 0.183 | -0.014 | 0.0374665 | 0.175 | 0.172 | 0.003 | 6.19e-01 |
Prostate_Cancer | PRScs.PseudoVal | PRScs.PseudoVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.172 | 0.172 | 0.000 | 1.00e+00 |
Prostate_Cancer | SBayesR.PseudoVal | PRScs.PseudoVal | 0.176 | 0.183 | -0.006 | 0.0228425 | 0.171 | 0.172 | -0.001 | 8.70e-01 |
Prostate_Cancer | lassosum.MultiPRS | PRScs.PseudoVal | 0.187 | 0.183 | 0.004 | 0.5209536 | 0.181 | 0.172 | 0.009 | 4.79e-03 |
Prostate_Cancer | LDpred2.10FCVal | PRScs.PseudoVal | 0.183 | 0.183 | 0.001 | 0.6502130 | 0.173 | 0.172 | 0.001 | 5.88e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.188 | 0.183 | 0.005 | 0.4293608 | 0.180 | 0.172 | 0.009 | 3.33e-02 |
Prostate_Cancer | LDpred1.MultiPRS | PRScs.PseudoVal | 0.164 | 0.183 | -0.018 | 0.0091727 | 0.149 | 0.172 | -0.022 | 9.32e-07 |
Prostate_Cancer | SBLUP.Inf | PRScs.PseudoVal | 0.137 | 0.183 | -0.046 | 0.0000000 | 0.128 | 0.172 | -0.044 | 1.18e-09 |
Prostate_Cancer | All.MultiPRS | PRScs.PseudoVal | 0.192 | 0.183 | 0.009 | 0.1784370 | 0.184 | 0.172 | 0.012 | 2.84e-05 |
Prostate_Cancer | MegaPRS.10FCVal | PRScs.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0196144 | 0.185 | 0.172 | 0.013 | 2.38e-03 |
Prostate_Cancer | LDpred1.10FCVal | PRScs.PseudoVal | 0.165 | 0.183 | -0.017 | 0.0000000 | 0.152 | 0.172 | -0.020 | 8.30e-06 |
Prostate_Cancer | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.183 | 0.183 | 0.000 | 0.9081796 | 0.175 | 0.172 | 0.003 | 5.17e-01 |
Prostate_Cancer | lassosum.10FCVal | PRScs.PseudoVal | 0.180 | 0.183 | -0.003 | 0.2050172 | 0.177 | 0.172 | 0.005 | 1.70e-01 |
Prostate_Cancer | PRScs.MultiPRS | PRScs.PseudoVal | 0.184 | 0.183 | 0.001 | 0.8521428 | 0.173 | 0.172 | 0.001 | 5.01e-01 |
Prostate_Cancer | LDpred1.Inf | PRScs.PseudoVal | 0.143 | 0.183 | -0.039 | 0.0000000 | 0.133 | 0.172 | -0.039 | 2.91e-09 |
Prostate_Cancer | lassosum.PseudoVal | PRScs.PseudoVal | 0.168 | 0.183 | -0.014 | 0.0000001 | 0.164 | 0.172 | -0.008 | 1.26e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.176 | 0.183 | -0.006 | 0.0005432 | 0.166 | 0.172 | -0.006 | 8.06e-02 |
Prostate_Cancer | All.MultiPRS | pT+clump.MultiPRS | 0.192 | 0.168 | 0.024 | 0.0005942 | 0.184 | 0.175 | 0.010 | 5.42e-02 |
Prostate_Cancer | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.183 | 0.168 | 0.015 | 0.0324671 | 0.175 | 0.175 | 0.000 | 9.80e-01 |
Prostate_Cancer | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.164 | 0.168 | -0.004 | 0.5906666 | 0.149 | 0.175 | -0.025 | 1.19e-04 |
Prostate_Cancer | pT+clump.10FCVal | pT+clump.MultiPRS | 0.152 | 0.168 | -0.016 | 0.0219417 | 0.166 | 0.175 | -0.008 | 5.70e-02 |
Prostate_Cancer | lassosum.MultiPRS | pT+clump.MultiPRS | 0.187 | 0.168 | 0.019 | 0.0064640 | 0.181 | 0.175 | 0.007 | 1.86e-01 |
Prostate_Cancer | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.139 | 0.168 | -0.029 | 0.0000264 | 0.133 | 0.175 | -0.042 | 1.48e-07 |
Prostate_Cancer | LDpred1.10FCVal | pT+clump.MultiPRS | 0.165 | 0.168 | -0.003 | 0.6718860 | 0.152 | 0.175 | -0.023 | 5.77e-04 |
Prostate_Cancer | SBLUP.Inf | pT+clump.MultiPRS | 0.137 | 0.168 | -0.031 | 0.0000060 | 0.128 | 0.175 | -0.046 | 1.05e-08 |
Prostate_Cancer | lassosum.10FCVal | pT+clump.MultiPRS | 0.180 | 0.168 | 0.012 | 0.0864151 | 0.177 | 0.175 | 0.003 | 6.21e-01 |
Prostate_Cancer | PRScs.MultiPRS | pT+clump.MultiPRS | 0.184 | 0.168 | 0.016 | 0.0233699 | 0.173 | 0.175 | -0.002 | 7.50e-01 |
Prostate_Cancer | LDpred2.10FCVal | pT+clump.MultiPRS | 0.183 | 0.168 | 0.015 | 0.0302451 | 0.173 | 0.175 | -0.001 | 8.03e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.183 | 0.168 | 0.015 | 0.0338973 | 0.175 | 0.175 | 0.000 | 9.73e-01 |
Prostate_Cancer | PRScs.PseudoVal | pT+clump.MultiPRS | 0.183 | 0.168 | 0.014 | 0.0374665 | 0.172 | 0.175 | -0.003 | 6.19e-01 |
Prostate_Cancer | lassosum.PseudoVal | pT+clump.MultiPRS | 0.168 | 0.168 | 0.000 | 0.9876572 | 0.164 | 0.175 | -0.011 | 9.03e-02 |
Prostate_Cancer | LDpred2.Inf | pT+clump.MultiPRS | 0.135 | 0.168 | -0.033 | 0.0000022 | 0.129 | 0.175 | -0.045 | 2.43e-08 |
Prostate_Cancer | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.188 | 0.168 | 0.019 | 0.0048824 | 0.185 | 0.175 | 0.010 | 6.76e-02 |
Prostate_Cancer | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.188 | 0.168 | 0.020 | 0.0039897 | 0.180 | 0.175 | 0.006 | 2.84e-01 |
Prostate_Cancer | PRScs.10FCVal | pT+clump.MultiPRS | 0.181 | 0.168 | 0.013 | 0.0676941 | 0.176 | 0.175 | 0.002 | 7.36e-01 |
Prostate_Cancer | LDpred1.Inf | pT+clump.MultiPRS | 0.143 | 0.168 | -0.025 | 0.0002878 | 0.133 | 0.175 | -0.042 | 7.25e-08 |
Prostate_Cancer | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.168 | 0.168 | 0.000 | 1.0000000 | 0.175 | 0.175 | 0.000 | 1.00e+00 |
Prostate_Cancer | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.176 | 0.168 | 0.008 | 0.2332599 | 0.166 | 0.175 | -0.009 | 1.02e-01 |
Prostate_Cancer | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.176 | 0.168 | 0.008 | 0.2358665 | 0.171 | 0.175 | -0.004 | 5.68e-01 |
Prostate_Cancer | LDpred2.MultiPRS | pT+clump.10FCVal | 0.183 | 0.152 | 0.031 | 0.0000101 | 0.175 | 0.166 | 0.009 | 2.16e-01 |
Prostate_Cancer | LDpred2.PseudoVal | pT+clump.10FCVal | 0.139 | 0.152 | -0.013 | 0.0102651 | 0.133 | 0.166 | -0.033 | 1.11e-03 |
Prostate_Cancer | pT+clump.MultiPRS | pT+clump.10FCVal | 0.168 | 0.152 | 0.016 | 0.0219417 | 0.175 | 0.166 | 0.008 | 5.70e-02 |
Prostate_Cancer | SBLUP.Inf | pT+clump.10FCVal | 0.137 | 0.152 | -0.015 | 0.0035730 | 0.128 | 0.166 | -0.038 | 3.00e-04 |
Prostate_Cancer | PRScs.PseudoVal | pT+clump.10FCVal | 0.183 | 0.152 | 0.030 | 0.0000000 | 0.172 | 0.166 | 0.006 | 4.21e-01 |
Prostate_Cancer | PRScs.MultiPRS | pT+clump.10FCVal | 0.184 | 0.152 | 0.032 | 0.0000058 | 0.173 | 0.166 | 0.007 | 3.38e-01 |
Prostate_Cancer | LDpred2.Inf | pT+clump.10FCVal | 0.135 | 0.152 | -0.017 | 0.0013097 | 0.129 | 0.166 | -0.037 | 3.82e-04 |
Prostate_Cancer | SBayesR.PseudoVal | pT+clump.10FCVal | 0.176 | 0.152 | 0.024 | 0.0000000 | 0.171 | 0.166 | 0.005 | 4.40e-01 |
Prostate_Cancer | pT+clump.10FCVal | pT+clump.10FCVal | 0.152 | 0.152 | 0.000 | 1.0000000 | 0.166 | 0.166 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.183 | 0.152 | 0.031 | 0.0000000 | 0.175 | 0.166 | 0.009 | 1.97e-01 |
Prostate_Cancer | PRScs.10FCVal | pT+clump.10FCVal | 0.181 | 0.152 | 0.028 | 0.0000000 | 0.176 | 0.166 | 0.010 | 1.38e-01 |
Prostate_Cancer | LDpred2.10FCVal | pT+clump.10FCVal | 0.183 | 0.152 | 0.031 | 0.0000000 | 0.173 | 0.166 | 0.007 | 2.94e-01 |
Prostate_Cancer | MegaPRS.10FCVal | pT+clump.10FCVal | 0.188 | 0.152 | 0.035 | 0.0000000 | 0.185 | 0.166 | 0.019 | 8.98e-03 |
Prostate_Cancer | LDpred1.MultiPRS | pT+clump.10FCVal | 0.164 | 0.152 | 0.012 | 0.0812877 | 0.149 | 0.166 | -0.017 | 5.06e-02 |
Prostate_Cancer | lassosum.10FCVal | pT+clump.10FCVal | 0.180 | 0.152 | 0.028 | 0.0000000 | 0.177 | 0.166 | 0.011 | 8.84e-02 |
Prostate_Cancer | All.MultiPRS | pT+clump.10FCVal | 0.192 | 0.152 | 0.040 | 0.0000000 | 0.184 | 0.166 | 0.018 | 4.53e-03 |
Prostate_Cancer | LDpred1.Inf | pT+clump.10FCVal | 0.143 | 0.152 | -0.009 | 0.0659545 | 0.133 | 0.166 | -0.033 | 8.73e-04 |
Prostate_Cancer | LDpred1.10FCVal | pT+clump.10FCVal | 0.165 | 0.152 | 0.013 | 0.0029730 | 0.152 | 0.166 | -0.014 | 9.75e-02 |
Prostate_Cancer | lassosum.MultiPRS | pT+clump.10FCVal | 0.187 | 0.152 | 0.035 | 0.0000006 | 0.181 | 0.166 | 0.015 | 2.26e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.176 | 0.152 | 0.024 | 0.0000000 | 0.166 | 0.166 | -0.001 | 9.45e-01 |
Prostate_Cancer | lassosum.PseudoVal | pT+clump.10FCVal | 0.168 | 0.152 | 0.016 | 0.0000001 | 0.164 | 0.166 | -0.002 | 6.78e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.188 | 0.152 | 0.036 | 0.0000003 | 0.180 | 0.166 | 0.014 | 3.30e-02 |
Prostate_Cancer | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.176 | 0.176 | 0.000 | 1.0000000 | 0.171 | 0.171 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.183 | 0.176 | 0.007 | 0.3433089 | 0.175 | 0.171 | 0.004 | 4.72e-01 |
Prostate_Cancer | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.164 | 0.176 | -0.012 | 0.0864627 | 0.149 | 0.171 | -0.022 | 4.60e-03 |
Prostate_Cancer | PRScs.PseudoVal | SBayesR.PseudoVal | 0.183 | 0.176 | 0.006 | 0.0228425 | 0.172 | 0.171 | 0.001 | 8.70e-01 |
Prostate_Cancer | All.MultiPRS | SBayesR.PseudoVal | 0.192 | 0.176 | 0.015 | 0.0252725 | 0.184 | 0.171 | 0.013 | 1.71e-03 |
Prostate_Cancer | PRScs.MultiPRS | SBayesR.PseudoVal | 0.184 | 0.176 | 0.007 | 0.2819402 | 0.173 | 0.171 | 0.002 | 7.10e-01 |
Prostate_Cancer | LDpred2.10FCVal | SBayesR.PseudoVal | 0.183 | 0.176 | 0.007 | 0.0078504 | 0.173 | 0.171 | 0.002 | 6.45e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.183 | 0.176 | 0.006 | 0.0325225 | 0.175 | 0.171 | 0.004 | 5.15e-01 |
Prostate_Cancer | pT+clump.10FCVal | SBayesR.PseudoVal | 0.152 | 0.176 | -0.024 | 0.0000000 | 0.166 | 0.171 | -0.005 | 4.40e-01 |
Prostate_Cancer | lassosum.PseudoVal | SBayesR.PseudoVal | 0.168 | 0.176 | -0.008 | 0.0003418 | 0.164 | 0.171 | -0.007 | 9.86e-02 |
Prostate_Cancer | LDpred2.Inf | SBayesR.PseudoVal | 0.135 | 0.176 | -0.041 | 0.0000000 | 0.129 | 0.171 | -0.042 | 2.97e-05 |
Prostate_Cancer | PRScs.10FCVal | SBayesR.PseudoVal | 0.181 | 0.176 | 0.004 | 0.0927781 | 0.176 | 0.171 | 0.006 | 2.80e-01 |
Prostate_Cancer | SBLUP.Inf | SBayesR.PseudoVal | 0.137 | 0.176 | -0.040 | 0.0000000 | 0.128 | 0.171 | -0.043 | 2.19e-05 |
Prostate_Cancer | lassosum.MultiPRS | SBayesR.PseudoVal | 0.187 | 0.176 | 0.011 | 0.1256305 | 0.181 | 0.171 | 0.010 | 5.96e-02 |
Prostate_Cancer | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.139 | 0.176 | -0.037 | 0.0000000 | 0.133 | 0.171 | -0.038 | 9.49e-05 |
Prostate_Cancer | lassosum.10FCVal | SBayesR.PseudoVal | 0.180 | 0.176 | 0.004 | 0.1959677 | 0.177 | 0.171 | 0.006 | 2.58e-01 |
Prostate_Cancer | LDpred1.Inf | SBayesR.PseudoVal | 0.143 | 0.176 | -0.033 | 0.0000000 | 0.133 | 0.171 | -0.038 | 7.33e-05 |
Prostate_Cancer | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.168 | 0.176 | -0.008 | 0.2358665 | 0.175 | 0.171 | 0.004 | 5.68e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.176 | 0.176 | 0.000 | 0.9914600 | 0.166 | 0.171 | -0.005 | 3.65e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.188 | 0.176 | 0.012 | 0.0922856 | 0.180 | 0.171 | 0.009 | 7.41e-02 |
Prostate_Cancer | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.188 | 0.176 | 0.011 | 0.0001817 | 0.185 | 0.171 | 0.014 | 1.74e-02 |
Prostate_Cancer | LDpred1.10FCVal | SBayesR.PseudoVal | 0.165 | 0.176 | -0.011 | 0.0039754 | 0.152 | 0.171 | -0.019 | 1.14e-02 |
Prostate_Cancer | All.MultiPRS | SBLUP.Inf | 0.192 | 0.137 | 0.055 | 0.0000000 | 0.184 | 0.128 | 0.056 | 2.16e-13 |
Prostate_Cancer | LDpred2.MultiPRS | SBLUP.Inf | 0.183 | 0.137 | 0.046 | 0.0000000 | 0.175 | 0.128 | 0.047 | 7.53e-11 |
Prostate_Cancer | PRScs.PseudoVal | SBLUP.Inf | 0.183 | 0.137 | 0.046 | 0.0000000 | 0.172 | 0.128 | 0.044 | 1.18e-09 |
Prostate_Cancer | lassosum.PseudoVal | SBLUP.Inf | 0.168 | 0.137 | 0.031 | 0.0000000 | 0.164 | 0.128 | 0.036 | 8.48e-04 |
Prostate_Cancer | LDpred2.Inf | SBLUP.Inf | 0.135 | 0.137 | -0.001 | 0.0549594 | 0.129 | 0.128 | 0.001 | 5.42e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | SBLUP.Inf | 0.183 | 0.137 | 0.046 | 0.0000000 | 0.175 | 0.128 | 0.047 | 5.19e-09 |
Prostate_Cancer | pT+clump.10FCVal | SBLUP.Inf | 0.152 | 0.137 | 0.015 | 0.0035730 | 0.166 | 0.128 | 0.038 | 3.00e-04 |
Prostate_Cancer | lassosum.MultiPRS | SBLUP.Inf | 0.187 | 0.137 | 0.050 | 0.0000000 | 0.181 | 0.128 | 0.053 | 6.18e-13 |
Prostate_Cancer | LDpred2.PseudoVal | SBLUP.Inf | 0.139 | 0.137 | 0.002 | 0.0105347 | 0.133 | 0.128 | 0.005 | 6.91e-03 |
Prostate_Cancer | LDpred1.MultiPRS | SBLUP.Inf | 0.164 | 0.137 | 0.028 | 0.0000705 | 0.149 | 0.128 | 0.021 | 1.20e-04 |
Prostate_Cancer | MegaPRS.10FCVal | SBLUP.Inf | 0.188 | 0.137 | 0.051 | 0.0000000 | 0.185 | 0.128 | 0.057 | 3.35e-14 |
Prostate_Cancer | pT+clump.MultiPRS | SBLUP.Inf | 0.168 | 0.137 | 0.031 | 0.0000060 | 0.175 | 0.128 | 0.046 | 1.05e-08 |
Prostate_Cancer | DBSLMM.PseudoVal | SBLUP.Inf | 0.176 | 0.137 | 0.040 | 0.0000000 | 0.166 | 0.128 | 0.038 | 1.26e-08 |
Prostate_Cancer | LDpred2.10FCVal | SBLUP.Inf | 0.183 | 0.137 | 0.046 | 0.0000000 | 0.173 | 0.128 | 0.045 | 5.06e-09 |
Prostate_Cancer | LDpred1.Inf | SBLUP.Inf | 0.143 | 0.137 | 0.006 | 0.0000510 | 0.133 | 0.128 | 0.005 | 1.15e-01 |
Prostate_Cancer | SBayesR.PseudoVal | SBLUP.Inf | 0.176 | 0.137 | 0.040 | 0.0000000 | 0.171 | 0.128 | 0.043 | 2.19e-05 |
Prostate_Cancer | SBLUP.Inf | SBLUP.Inf | 0.137 | 0.137 | 0.000 | 1.0000000 | 0.128 | 0.128 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.MultiPRS | SBLUP.Inf | 0.188 | 0.137 | 0.051 | 0.0000000 | 0.180 | 0.128 | 0.052 | 1.74e-11 |
Prostate_Cancer | PRScs.10FCVal | SBLUP.Inf | 0.181 | 0.137 | 0.044 | 0.0000000 | 0.176 | 0.128 | 0.048 | 6.50e-11 |
Prostate_Cancer | LDpred1.10FCVal | SBLUP.Inf | 0.165 | 0.137 | 0.028 | 0.0000000 | 0.152 | 0.128 | 0.024 | 4.07e-05 |
Prostate_Cancer | lassosum.10FCVal | SBLUP.Inf | 0.180 | 0.137 | 0.043 | 0.0000000 | 0.177 | 0.128 | 0.049 | 4.50e-09 |
Prostate_Cancer | PRScs.MultiPRS | SBLUP.Inf | 0.184 | 0.137 | 0.047 | 0.0000000 | 0.173 | 0.128 | 0.045 | 3.50e-10 |
Breast_Cancer | DBSLMM.PseudoVal | All.MultiPRS | 0.217 | 0.229 | -0.011 | 0.0930465 | 0.211 | 0.218 | -0.007 | 2.85e-02 |
Breast_Cancer | SBayesR.PseudoVal | All.MultiPRS | 0.221 | 0.229 | -0.008 | 0.2362003 | 0.205 | 0.218 | -0.013 | 3.21e-05 |
Breast_Cancer | lassosum.PseudoVal | All.MultiPRS | 0.217 | 0.229 | -0.012 | 0.0815902 | 0.199 | 0.218 | -0.019 | 1.48e-07 |
Breast_Cancer | LDpred2.10FCVal | All.MultiPRS | 0.223 | 0.229 | -0.005 | 0.4229091 | 0.211 | 0.218 | -0.007 | 3.17e-03 |
Breast_Cancer | MegaPRS.MultiPRS | All.MultiPRS | 0.225 | 0.229 | -0.004 | 0.5954335 | 0.211 | 0.218 | -0.007 | 2.60e-03 |
Breast_Cancer | PRScs.10FCVal | All.MultiPRS | 0.220 | 0.229 | -0.009 | 0.1753553 | 0.207 | 0.218 | -0.011 | 6.08e-05 |
Breast_Cancer | LDpred2.Inf | All.MultiPRS | 0.168 | 0.229 | -0.061 | 0.0000000 | 0.160 | 0.218 | -0.058 | 1.64e-16 |
Breast_Cancer | MegaPRS.10FCVal | All.MultiPRS | 0.220 | 0.229 | -0.009 | 0.1974268 | 0.213 | 0.218 | -0.005 | 9.05e-02 |
Breast_Cancer | pT+clump.MultiPRS | All.MultiPRS | 0.200 | 0.229 | -0.029 | 0.0000239 | 0.188 | 0.218 | -0.030 | 1.54e-10 |
Breast_Cancer | lassosum.10FCVal | All.MultiPRS | 0.219 | 0.229 | -0.010 | 0.1492550 | 0.199 | 0.218 | -0.019 | 1.15e-08 |
Breast_Cancer | PRScs.MultiPRS | All.MultiPRS | 0.222 | 0.229 | -0.007 | 0.3051487 | 0.210 | 0.218 | -0.008 | 1.75e-03 |
Breast_Cancer | LDpred1.Inf | All.MultiPRS | 0.172 | 0.229 | -0.057 | 0.0000000 | 0.162 | 0.218 | -0.056 | 1.97e-16 |
Breast_Cancer | MegaPRS.PseudoVal | All.MultiPRS | 0.217 | 0.229 | -0.011 | 0.0943326 | 0.212 | 0.218 | -0.006 | 4.91e-02 |
Breast_Cancer | PRScs.PseudoVal | All.MultiPRS | 0.220 | 0.229 | -0.009 | 0.2101604 | 0.208 | 0.218 | -0.010 | 1.89e-04 |
Breast_Cancer | All.MultiPRS | All.MultiPRS | 0.229 | 0.229 | 0.000 | 1.0000000 | 0.218 | 0.218 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.MultiPRS | All.MultiPRS | 0.224 | 0.229 | -0.005 | 0.4897678 | 0.211 | 0.218 | -0.007 | 1.42e-03 |
Breast_Cancer | LDpred1.MultiPRS | All.MultiPRS | 0.211 | 0.229 | -0.018 | 0.0089268 | 0.195 | 0.218 | -0.024 | 5.39e-09 |
Breast_Cancer | pT+clump.10FCVal | All.MultiPRS | 0.179 | 0.229 | -0.050 | 0.0000000 | 0.167 | 0.218 | -0.051 | 5.09e-15 |
Breast_Cancer | lassosum.MultiPRS | All.MultiPRS | 0.225 | 0.229 | -0.004 | 0.5795138 | 0.212 | 0.218 | -0.006 | 7.06e-03 |
Breast_Cancer | LDpred2.PseudoVal | All.MultiPRS | 0.169 | 0.229 | -0.060 | 0.0000000 | 0.161 | 0.218 | -0.057 | 1.58e-16 |
Breast_Cancer | LDpred1.10FCVal | All.MultiPRS | 0.201 | 0.229 | -0.028 | 0.0000394 | 0.186 | 0.218 | -0.032 | 7.65e-11 |
Breast_Cancer | SBLUP.Inf | All.MultiPRS | 0.168 | 0.229 | -0.061 | 0.0000000 | 0.158 | 0.218 | -0.060 | 2.61e-17 |
Breast_Cancer | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.220 | 0.217 | 0.003 | 0.0835361 | 0.208 | 0.211 | -0.003 | 3.66e-01 |
Breast_Cancer | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.221 | 0.217 | 0.003 | 0.1866117 | 0.205 | 0.211 | -0.006 | 2.63e-01 |
Breast_Cancer | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.224 | 0.217 | 0.007 | 0.3190381 | 0.211 | 0.211 | 0.000 | 9.77e-01 |
Breast_Cancer | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.222 | 0.217 | 0.005 | 0.5063466 | 0.210 | 0.211 | 0.000 | 9.39e-01 |
Breast_Cancer | LDpred1.Inf | DBSLMM.PseudoVal | 0.172 | 0.217 | -0.046 | 0.0000000 | 0.162 | 0.211 | -0.049 | 4.73e-17 |
Breast_Cancer | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.200 | 0.217 | -0.017 | 0.0109532 | 0.188 | 0.211 | -0.023 | 3.20e-06 |
Breast_Cancer | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.223 | 0.217 | 0.006 | 0.0027916 | 0.211 | 0.211 | 0.000 | 9.43e-01 |
Breast_Cancer | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.217 | 0.217 | 0.000 | 0.8853385 | 0.199 | 0.211 | -0.012 | 4.09e-02 |
Breast_Cancer | LDpred2.Inf | DBSLMM.PseudoVal | 0.168 | 0.217 | -0.050 | 0.0000000 | 0.160 | 0.211 | -0.051 | 2.59e-17 |
Breast_Cancer | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.217 | 0.217 | 0.000 | 0.9887269 | 0.212 | 0.211 | 0.001 | 8.04e-01 |
Breast_Cancer | All.MultiPRS | DBSLMM.PseudoVal | 0.229 | 0.217 | 0.011 | 0.0930465 | 0.218 | 0.211 | 0.007 | 2.85e-02 |
Breast_Cancer | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2570200 | 0.212 | 0.211 | 0.001 | 7.62e-01 |
Breast_Cancer | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.169 | 0.217 | -0.049 | 0.0000000 | 0.161 | 0.211 | -0.050 | 2.83e-17 |
Breast_Cancer | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.211 | 0.217 | -0.006 | 0.3301681 | 0.195 | 0.211 | -0.016 | 4.98e-04 |
Breast_Cancer | SBLUP.Inf | DBSLMM.PseudoVal | 0.168 | 0.217 | -0.050 | 0.0000000 | 0.158 | 0.211 | -0.052 | 6.94e-19 |
Breast_Cancer | lassosum.10FCVal | DBSLMM.PseudoVal | 0.219 | 0.217 | 0.002 | 0.5123791 | 0.199 | 0.211 | -0.012 | 2.03e-02 |
Breast_Cancer | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.217 | 0.217 | 0.000 | 1.0000000 | 0.211 | 0.211 | 0.000 | 1.00e+00 |
Breast_Cancer | PRScs.10FCVal | DBSLMM.PseudoVal | 0.220 | 0.217 | 0.002 | 0.2021814 | 0.207 | 0.211 | -0.004 | 2.99e-01 |
Breast_Cancer | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.201 | 0.217 | -0.017 | 0.0000000 | 0.186 | 0.211 | -0.025 | 5.79e-08 |
Breast_Cancer | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.179 | 0.217 | -0.039 | 0.0000000 | 0.167 | 0.211 | -0.044 | 1.63e-09 |
Breast_Cancer | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2473882 | 0.211 | 0.211 | 0.000 | 9.85e-01 |
Breast_Cancer | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.220 | 0.217 | 0.003 | 0.2096157 | 0.213 | 0.211 | 0.002 | 6.17e-01 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.MultiPRS | 0.224 | 0.225 | -0.001 | 0.5615230 | 0.211 | 0.212 | -0.001 | 6.85e-01 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.MultiPRS | 0.169 | 0.225 | -0.056 | 0.0000000 | 0.161 | 0.212 | -0.051 | 2.04e-12 |
Breast_Cancer | PRScs.MultiPRS | lassosum.MultiPRS | 0.222 | 0.225 | -0.003 | 0.6403412 | 0.210 | 0.212 | -0.001 | 6.00e-01 |
Breast_Cancer | LDpred2.Inf | lassosum.MultiPRS | 0.168 | 0.225 | -0.057 | 0.0000000 | 0.160 | 0.212 | -0.052 | 1.88e-12 |
Breast_Cancer | PRScs.PseudoVal | lassosum.MultiPRS | 0.220 | 0.225 | -0.005 | 0.4811311 | 0.208 | 0.212 | -0.004 | 1.76e-01 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.MultiPRS | 0.200 | 0.225 | -0.025 | 0.0002438 | 0.188 | 0.212 | -0.024 | 7.15e-07 |
Breast_Cancer | PRScs.10FCVal | lassosum.MultiPRS | 0.220 | 0.225 | -0.005 | 0.4202154 | 0.207 | 0.212 | -0.005 | 1.14e-01 |
Breast_Cancer | LDpred2.10FCVal | lassosum.MultiPRS | 0.223 | 0.225 | -0.002 | 0.8020026 | 0.211 | 0.212 | -0.001 | 7.83e-01 |
Breast_Cancer | pT+clump.10FCVal | lassosum.MultiPRS | 0.179 | 0.225 | -0.047 | 0.0000000 | 0.167 | 0.212 | -0.045 | 3.14e-12 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.MultiPRS | 0.221 | 0.225 | -0.004 | 0.5268258 | 0.205 | 0.212 | -0.007 | 6.17e-02 |
Breast_Cancer | lassosum.10FCVal | lassosum.MultiPRS | 0.219 | 0.225 | -0.006 | 0.3707215 | 0.199 | 0.212 | -0.013 | 4.75e-06 |
Breast_Cancer | All.MultiPRS | lassosum.MultiPRS | 0.229 | 0.225 | 0.004 | 0.5795138 | 0.218 | 0.212 | 0.006 | 7.06e-03 |
Breast_Cancer | SBLUP.Inf | lassosum.MultiPRS | 0.168 | 0.225 | -0.057 | 0.0000000 | 0.158 | 0.212 | -0.054 | 2.59e-13 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.MultiPRS | 0.211 | 0.225 | -0.014 | 0.0387272 | 0.195 | 0.212 | -0.017 | 1.49e-04 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.MultiPRS | 0.220 | 0.225 | -0.005 | 0.4584915 | 0.213 | 0.212 | 0.001 | 8.04e-01 |
Breast_Cancer | lassosum.MultiPRS | lassosum.MultiPRS | 0.225 | 0.225 | 0.000 | 1.0000000 | 0.212 | 0.212 | 0.000 | 1.00e+00 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2570200 | 0.211 | 0.212 | -0.001 | 7.62e-01 |
Breast_Cancer | LDpred1.10FCVal | lassosum.MultiPRS | 0.201 | 0.225 | -0.024 | 0.0003389 | 0.186 | 0.212 | -0.026 | 1.03e-06 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2584595 | 0.212 | 0.212 | 0.000 | 9.79e-01 |
Breast_Cancer | LDpred1.Inf | lassosum.MultiPRS | 0.172 | 0.225 | -0.053 | 0.0000000 | 0.162 | 0.212 | -0.050 | 2.69e-12 |
Breast_Cancer | lassosum.PseudoVal | lassosum.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2323777 | 0.199 | 0.212 | -0.013 | 4.60e-05 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.225 | 0.225 | 0.000 | 0.9254612 | 0.211 | 0.212 | -0.001 | 7.13e-01 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.PseudoVal | 0.220 | 0.217 | 0.003 | 0.2238959 | 0.213 | 0.199 | 0.014 | 7.54e-03 |
Breast_Cancer | PRScs.MultiPRS | lassosum.PseudoVal | 0.222 | 0.217 | 0.005 | 0.4689926 | 0.210 | 0.199 | 0.011 | 3.74e-03 |
Breast_Cancer | LDpred1.Inf | lassosum.PseudoVal | 0.172 | 0.217 | -0.045 | 0.0000000 | 0.162 | 0.199 | -0.037 | 2.34e-05 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.PseudoVal | 0.200 | 0.217 | -0.017 | 0.0130856 | 0.188 | 0.199 | -0.012 | 3.21e-02 |
Breast_Cancer | All.MultiPRS | lassosum.PseudoVal | 0.229 | 0.217 | 0.012 | 0.0815902 | 0.218 | 0.199 | 0.019 | 1.48e-07 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.PseudoVal | 0.224 | 0.217 | 0.007 | 0.2902537 | 0.211 | 0.199 | 0.011 | 4.64e-03 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.PseudoVal | 0.221 | 0.217 | 0.004 | 0.0356760 | 0.205 | 0.199 | 0.006 | 1.10e-01 |
Breast_Cancer | lassosum.MultiPRS | lassosum.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2323777 | 0.212 | 0.199 | 0.013 | 4.60e-05 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.PseudoVal | 0.169 | 0.217 | -0.048 | 0.0000000 | 0.161 | 0.199 | -0.039 | 2.02e-05 |
Breast_Cancer | LDpred1.10FCVal | lassosum.PseudoVal | 0.201 | 0.217 | -0.016 | 0.0000018 | 0.186 | 0.199 | -0.013 | 5.42e-02 |
Breast_Cancer | SBLUP.Inf | lassosum.PseudoVal | 0.168 | 0.217 | -0.049 | 0.0000000 | 0.158 | 0.199 | -0.041 | 7.57e-06 |
Breast_Cancer | lassosum.10FCVal | lassosum.PseudoVal | 0.219 | 0.217 | 0.002 | 0.1142546 | 0.199 | 0.199 | 0.000 | 9.41e-01 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.217 | 0.217 | 0.000 | 0.8853385 | 0.211 | 0.199 | 0.012 | 4.09e-02 |
Breast_Cancer | LDpred2.10FCVal | lassosum.PseudoVal | 0.223 | 0.217 | 0.006 | 0.0022138 | 0.211 | 0.199 | 0.012 | 4.64e-03 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.217 | 0.217 | 0.000 | 0.8664434 | 0.212 | 0.199 | 0.013 | 1.58e-02 |
Breast_Cancer | PRScs.PseudoVal | lassosum.PseudoVal | 0.220 | 0.217 | 0.003 | 0.1323242 | 0.208 | 0.199 | 0.008 | 5.69e-02 |
Breast_Cancer | lassosum.PseudoVal | lassosum.PseudoVal | 0.217 | 0.217 | 0.000 | 1.0000000 | 0.199 | 0.199 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.Inf | lassosum.PseudoVal | 0.168 | 0.217 | -0.049 | 0.0000000 | 0.160 | 0.199 | -0.039 | 1.85e-05 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.PseudoVal | 0.211 | 0.217 | -0.006 | 0.3637468 | 0.195 | 0.199 | -0.005 | 4.05e-01 |
Breast_Cancer | pT+clump.10FCVal | lassosum.PseudoVal | 0.179 | 0.217 | -0.038 | 0.0000000 | 0.167 | 0.199 | -0.032 | 7.03e-08 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2233220 | 0.211 | 0.199 | 0.011 | 8.00e-03 |
Breast_Cancer | PRScs.10FCVal | lassosum.PseudoVal | 0.220 | 0.217 | 0.003 | 0.2112085 | 0.207 | 0.199 | 0.008 | 6.16e-02 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.10FCVal | 0.225 | 0.219 | 0.006 | 0.3584349 | 0.211 | 0.199 | 0.012 | 4.37e-03 |
Breast_Cancer | PRScs.10FCVal | lassosum.10FCVal | 0.220 | 0.219 | 0.001 | 0.7415636 | 0.207 | 0.199 | 0.008 | 2.54e-02 |
Breast_Cancer | lassosum.MultiPRS | lassosum.10FCVal | 0.225 | 0.219 | 0.006 | 0.3707215 | 0.212 | 0.199 | 0.013 | 4.75e-06 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.10FCVal | 0.169 | 0.219 | -0.050 | 0.0000000 | 0.161 | 0.199 | -0.038 | 5.08e-07 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.10FCVal | 0.220 | 0.219 | 0.001 | 0.6345292 | 0.213 | 0.199 | 0.014 | 1.81e-03 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.10FCVal | 0.200 | 0.219 | -0.019 | 0.0054035 | 0.188 | 0.199 | -0.011 | 2.53e-02 |
Breast_Cancer | lassosum.10FCVal | lassosum.10FCVal | 0.219 | 0.219 | 0.000 | 1.0000000 | 0.199 | 0.199 | 0.000 | 1.00e+00 |
Breast_Cancer | PRScs.MultiPRS | lassosum.10FCVal | 0.222 | 0.219 | 0.003 | 0.6707162 | 0.210 | 0.199 | 0.011 | 9.27e-04 |
Breast_Cancer | LDpred1.Inf | lassosum.10FCVal | 0.172 | 0.219 | -0.047 | 0.0000000 | 0.162 | 0.199 | -0.037 | 6.56e-07 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.10FCVal | 0.221 | 0.219 | 0.002 | 0.4322928 | 0.205 | 0.199 | 0.006 | 1.88e-01 |
Breast_Cancer | PRScs.PseudoVal | lassosum.10FCVal | 0.220 | 0.219 | 0.001 | 0.4824807 | 0.208 | 0.199 | 0.009 | 1.94e-02 |
Breast_Cancer | All.MultiPRS | lassosum.10FCVal | 0.229 | 0.219 | 0.010 | 0.1492550 | 0.218 | 0.199 | 0.019 | 1.15e-08 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.10FCVal | 0.224 | 0.219 | 0.005 | 0.4483790 | 0.211 | 0.199 | 0.012 | 1.56e-03 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.10FCVal | 0.211 | 0.219 | -0.008 | 0.2209963 | 0.195 | 0.199 | -0.004 | 3.53e-01 |
Breast_Cancer | pT+clump.10FCVal | lassosum.10FCVal | 0.179 | 0.219 | -0.040 | 0.0000000 | 0.167 | 0.199 | -0.032 | 1.31e-06 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.10FCVal | 0.217 | 0.219 | -0.002 | 0.5123791 | 0.211 | 0.199 | 0.012 | 2.03e-02 |
Breast_Cancer | LDpred1.10FCVal | lassosum.10FCVal | 0.201 | 0.219 | -0.018 | 0.0000000 | 0.186 | 0.199 | -0.013 | 2.09e-02 |
Breast_Cancer | SBLUP.Inf | lassosum.10FCVal | 0.168 | 0.219 | -0.051 | 0.0000000 | 0.158 | 0.199 | -0.041 | 1.27e-07 |
Breast_Cancer | lassosum.PseudoVal | lassosum.10FCVal | 0.217 | 0.219 | -0.002 | 0.1142546 | 0.199 | 0.199 | 0.000 | 9.41e-01 |
Breast_Cancer | LDpred2.10FCVal | lassosum.10FCVal | 0.223 | 0.219 | 0.004 | 0.0076176 | 0.211 | 0.199 | 0.012 | 2.39e-04 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.10FCVal | 0.217 | 0.219 | -0.002 | 0.4779992 | 0.212 | 0.199 | 0.013 | 5.66e-03 |
Breast_Cancer | LDpred2.Inf | lassosum.10FCVal | 0.168 | 0.219 | -0.051 | 0.0000000 | 0.160 | 0.199 | -0.039 | 4.70e-07 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.221 | 0.225 | -0.004 | 0.5116461 | 0.205 | 0.211 | -0.006 | 1.71e-01 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.200 | 0.225 | -0.025 | 0.0002215 | 0.188 | 0.211 | -0.023 | 7.50e-06 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.223 | 0.225 | -0.002 | 0.7840860 | 0.211 | 0.211 | 0.000 | 9.14e-01 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2486059 | 0.212 | 0.211 | 0.001 | 7.02e-01 |
Breast_Cancer | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.220 | 0.225 | -0.005 | 0.4666671 | 0.208 | 0.211 | -0.003 | 4.06e-01 |
Breast_Cancer | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.222 | 0.225 | -0.003 | 0.6235624 | 0.210 | 0.211 | 0.000 | 9.57e-01 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.224 | 0.225 | -0.001 | 0.5406238 | 0.211 | 0.211 | 0.000 | 9.91e-01 |
Breast_Cancer | LDpred2.Inf | MegaPRS.MultiPRS | 0.168 | 0.225 | -0.058 | 0.0000000 | 0.160 | 0.211 | -0.051 | 2.83e-12 |
Breast_Cancer | SBLUP.Inf | MegaPRS.MultiPRS | 0.168 | 0.225 | -0.058 | 0.0000000 | 0.158 | 0.211 | -0.052 | 5.49e-13 |
Breast_Cancer | All.MultiPRS | MegaPRS.MultiPRS | 0.229 | 0.225 | 0.004 | 0.5954335 | 0.218 | 0.211 | 0.007 | 2.60e-03 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.169 | 0.225 | -0.057 | 0.0000000 | 0.161 | 0.211 | -0.050 | 2.77e-12 |
Breast_Cancer | PRScs.10FCVal | MegaPRS.MultiPRS | 0.220 | 0.225 | -0.006 | 0.4068572 | 0.207 | 0.211 | -0.004 | 3.21e-01 |
Breast_Cancer | LDpred1.Inf | MegaPRS.MultiPRS | 0.172 | 0.225 | -0.054 | 0.0000000 | 0.162 | 0.211 | -0.049 | 2.66e-12 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.179 | 0.225 | -0.047 | 0.0000000 | 0.167 | 0.211 | -0.044 | 2.19e-10 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2473882 | 0.211 | 0.211 | 0.000 | 9.85e-01 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.MultiPRS | 0.219 | 0.225 | -0.006 | 0.3584349 | 0.199 | 0.211 | -0.012 | 4.37e-03 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2233220 | 0.199 | 0.211 | -0.011 | 8.00e-03 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.220 | 0.225 | -0.005 | 0.4443203 | 0.213 | 0.211 | 0.002 | 4.06e-01 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.211 | 0.225 | -0.014 | 0.0367910 | 0.195 | 0.211 | -0.016 | 4.22e-04 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.225 | 0.225 | 0.000 | 0.9254612 | 0.212 | 0.211 | 0.001 | 7.13e-01 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.225 | 0.225 | 0.000 | 1.0000000 | 0.211 | 0.211 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.201 | 0.225 | -0.025 | 0.0003086 | 0.186 | 0.211 | -0.025 | 2.38e-06 |
Breast_Cancer | LDpred2.Inf | MegaPRS.PseudoVal | 0.168 | 0.217 | -0.050 | 0.0000000 | 0.160 | 0.212 | -0.052 | 1.79e-14 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.223 | 0.217 | 0.006 | 0.0021495 | 0.211 | 0.212 | -0.001 | 8.44e-01 |
Breast_Cancer | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.220 | 0.217 | 0.003 | 0.1458626 | 0.208 | 0.212 | -0.004 | 3.05e-01 |
Breast_Cancer | All.MultiPRS | MegaPRS.PseudoVal | 0.229 | 0.217 | 0.011 | 0.0943326 | 0.218 | 0.212 | 0.006 | 4.91e-02 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.224 | 0.217 | 0.007 | 0.3206105 | 0.211 | 0.212 | -0.001 | 7.76e-01 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.221 | 0.217 | 0.003 | 0.1759892 | 0.205 | 0.212 | -0.007 | 1.76e-01 |
Breast_Cancer | PRScs.10FCVal | MegaPRS.PseudoVal | 0.220 | 0.217 | 0.002 | 0.2791495 | 0.207 | 0.212 | -0.005 | 2.56e-01 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.179 | 0.217 | -0.039 | 0.0000000 | 0.167 | 0.212 | -0.045 | 5.59e-10 |
Breast_Cancer | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.222 | 0.217 | 0.004 | 0.5084198 | 0.210 | 0.212 | -0.001 | 7.42e-01 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2486059 | 0.211 | 0.212 | -0.001 | 7.02e-01 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.200 | 0.217 | -0.017 | 0.0108067 | 0.188 | 0.212 | -0.024 | 4.90e-06 |
Breast_Cancer | SBLUP.Inf | MegaPRS.PseudoVal | 0.168 | 0.217 | -0.050 | 0.0000000 | 0.158 | 0.212 | -0.054 | 2.34e-15 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.217 | 0.217 | 0.000 | 0.8664434 | 0.199 | 0.212 | -0.013 | 1.58e-02 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.169 | 0.217 | -0.049 | 0.0000000 | 0.161 | 0.212 | -0.051 | 2.24e-14 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.217 | 0.217 | 0.000 | 1.0000000 | 0.212 | 0.212 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.Inf | MegaPRS.PseudoVal | 0.172 | 0.217 | -0.046 | 0.0000000 | 0.162 | 0.212 | -0.050 | 2.07e-14 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.211 | 0.217 | -0.006 | 0.3282908 | 0.195 | 0.212 | -0.017 | 4.25e-04 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.217 | 0.217 | 0.000 | 0.9887269 | 0.211 | 0.212 | -0.001 | 8.04e-01 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.225 | 0.217 | 0.008 | 0.2584595 | 0.212 | 0.212 | 0.000 | 9.79e-01 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.220 | 0.217 | 0.003 | 0.0082444 | 0.213 | 0.212 | 0.001 | 5.79e-01 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.201 | 0.217 | -0.017 | 0.0000000 | 0.186 | 0.212 | -0.026 | 4.02e-07 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.PseudoVal | 0.219 | 0.217 | 0.002 | 0.4779992 | 0.199 | 0.212 | -0.013 | 5.66e-03 |
Breast_Cancer | PRScs.10FCVal | MegaPRS.10FCVal | 0.220 | 0.220 | 0.000 | 0.8230865 | 0.207 | 0.213 | -0.006 | 1.50e-01 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.200 | 0.220 | -0.020 | 0.0033032 | 0.188 | 0.213 | -0.025 | 1.51e-06 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.10FCVal | 0.223 | 0.220 | 0.003 | 0.0728175 | 0.211 | 0.213 | -0.002 | 6.18e-01 |
Breast_Cancer | PRScs.MultiPRS | MegaPRS.10FCVal | 0.222 | 0.220 | 0.002 | 0.7843146 | 0.210 | 0.213 | -0.002 | 5.38e-01 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.224 | 0.220 | 0.004 | 0.5453697 | 0.211 | 0.213 | -0.002 | 5.71e-01 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.221 | 0.220 | 0.001 | 0.7674232 | 0.205 | 0.213 | -0.008 | 1.16e-01 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.10FCVal | 0.179 | 0.220 | -0.041 | 0.0000000 | 0.167 | 0.213 | -0.046 | 2.20e-10 |
Breast_Cancer | LDpred2.Inf | MegaPRS.10FCVal | 0.168 | 0.220 | -0.052 | 0.0000000 | 0.160 | 0.213 | -0.053 | 1.20e-15 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.169 | 0.220 | -0.051 | 0.0000000 | 0.161 | 0.213 | -0.052 | 1.53e-15 |
Breast_Cancer | All.MultiPRS | MegaPRS.10FCVal | 0.229 | 0.220 | 0.009 | 0.1974268 | 0.218 | 0.213 | 0.005 | 9.05e-02 |
Breast_Cancer | SBLUP.Inf | MegaPRS.10FCVal | 0.168 | 0.220 | -0.052 | 0.0000000 | 0.158 | 0.213 | -0.055 | 1.29e-16 |
Breast_Cancer | PRScs.PseudoVal | MegaPRS.10FCVal | 0.220 | 0.220 | 0.000 | 0.8964891 | 0.208 | 0.213 | -0.005 | 1.84e-01 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.217 | 0.220 | -0.003 | 0.2096157 | 0.211 | 0.213 | -0.002 | 6.17e-01 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.10FCVal | 0.225 | 0.220 | 0.005 | 0.4584915 | 0.212 | 0.213 | -0.001 | 8.04e-01 |
Breast_Cancer | LDpred1.Inf | MegaPRS.10FCVal | 0.172 | 0.220 | -0.048 | 0.0000000 | 0.162 | 0.213 | -0.051 | 1.59e-15 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.225 | 0.220 | 0.005 | 0.4443203 | 0.211 | 0.213 | -0.002 | 4.06e-01 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.10FCVal | 0.217 | 0.220 | -0.003 | 0.2238959 | 0.199 | 0.213 | -0.014 | 7.54e-03 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.10FCVal | 0.219 | 0.220 | -0.001 | 0.6345292 | 0.199 | 0.213 | -0.014 | 1.81e-03 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.220 | 0.220 | 0.000 | 1.0000000 | 0.213 | 0.213 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.217 | 0.220 | -0.003 | 0.0082444 | 0.212 | 0.213 | -0.001 | 5.79e-01 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.211 | 0.220 | -0.009 | 0.1664136 | 0.195 | 0.213 | -0.018 | 1.50e-04 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.10FCVal | 0.201 | 0.220 | -0.019 | 0.0000000 | 0.186 | 0.213 | -0.027 | 6.40e-08 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.224 | 0.211 | 0.013 | 0.0535614 | 0.211 | 0.195 | 0.016 | 1.43e-04 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.169 | 0.211 | -0.042 | 0.0000000 | 0.161 | 0.195 | -0.034 | 5.76e-08 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.221 | 0.211 | 0.010 | 0.1358480 | 0.205 | 0.195 | 0.010 | 7.84e-02 |
Breast_Cancer | LDpred1.Inf | LDpred1.MultiPRS | 0.172 | 0.211 | -0.039 | 0.0000000 | 0.162 | 0.195 | -0.033 | 1.30e-08 |
Breast_Cancer | PRScs.PseudoVal | LDpred1.MultiPRS | 0.220 | 0.211 | 0.009 | 0.1540842 | 0.208 | 0.195 | 0.013 | 5.03e-04 |
Breast_Cancer | PRScs.MultiPRS | LDpred1.MultiPRS | 0.222 | 0.211 | 0.011 | 0.1117665 | 0.210 | 0.195 | 0.016 | 2.31e-05 |
Breast_Cancer | LDpred2.Inf | LDpred1.MultiPRS | 0.168 | 0.211 | -0.043 | 0.0000000 | 0.160 | 0.195 | -0.034 | 4.42e-08 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.MultiPRS | 0.223 | 0.211 | 0.012 | 0.0572298 | 0.211 | 0.195 | 0.017 | 1.03e-05 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.MultiPRS | 0.179 | 0.211 | -0.032 | 0.0000009 | 0.167 | 0.195 | -0.027 | 5.69e-04 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.217 | 0.211 | 0.006 | 0.3282908 | 0.212 | 0.195 | 0.017 | 4.25e-04 |
Breast_Cancer | PRScs.10FCVal | LDpred1.MultiPRS | 0.220 | 0.211 | 0.009 | 0.1876380 | 0.207 | 0.195 | 0.013 | 1.30e-03 |
Breast_Cancer | All.MultiPRS | LDpred1.MultiPRS | 0.229 | 0.211 | 0.018 | 0.0089268 | 0.218 | 0.195 | 0.024 | 5.39e-09 |
Breast_Cancer | SBLUP.Inf | LDpred1.MultiPRS | 0.168 | 0.211 | -0.043 | 0.0000000 | 0.158 | 0.195 | -0.036 | 6.15e-09 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.211 | 0.211 | 0.000 | 1.0000000 | 0.195 | 0.195 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.10FCVal | LDpred1.MultiPRS | 0.219 | 0.211 | 0.008 | 0.2209963 | 0.199 | 0.195 | 0.004 | 3.53e-01 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.MultiPRS | 0.225 | 0.211 | 0.014 | 0.0387272 | 0.212 | 0.195 | 0.017 | 1.49e-04 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.217 | 0.211 | 0.006 | 0.3301681 | 0.211 | 0.195 | 0.016 | 4.98e-04 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.MultiPRS | 0.201 | 0.211 | -0.010 | 0.1105923 | 0.186 | 0.195 | -0.009 | 2.74e-03 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.200 | 0.211 | -0.011 | 0.1058037 | 0.188 | 0.195 | -0.007 | 2.46e-01 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.220 | 0.211 | 0.009 | 0.1664136 | 0.213 | 0.195 | 0.018 | 1.50e-04 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.MultiPRS | 0.217 | 0.211 | 0.006 | 0.3637468 | 0.199 | 0.195 | 0.005 | 4.05e-01 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.225 | 0.211 | 0.014 | 0.0367910 | 0.211 | 0.195 | 0.016 | 4.22e-04 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.Inf | 0.225 | 0.172 | 0.054 | 0.0000000 | 0.211 | 0.162 | 0.049 | 2.66e-12 |
Breast_Cancer | PRScs.10FCVal | LDpred1.Inf | 0.220 | 0.172 | 0.048 | 0.0000000 | 0.207 | 0.162 | 0.045 | 1.32e-13 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.Inf | 0.224 | 0.172 | 0.052 | 0.0000000 | 0.211 | 0.162 | 0.049 | 3.19e-12 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.Inf | 0.211 | 0.172 | 0.039 | 0.0000000 | 0.195 | 0.162 | 0.033 | 1.30e-08 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.Inf | 0.179 | 0.172 | 0.007 | 0.1609807 | 0.167 | 0.162 | 0.005 | 5.92e-01 |
Breast_Cancer | All.MultiPRS | LDpred1.Inf | 0.229 | 0.172 | 0.057 | 0.0000000 | 0.218 | 0.162 | 0.056 | 1.97e-16 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.Inf | 0.169 | 0.172 | -0.003 | 0.0111046 | 0.161 | 0.162 | -0.001 | 6.44e-01 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.Inf | 0.220 | 0.172 | 0.048 | 0.0000000 | 0.213 | 0.162 | 0.051 | 1.59e-15 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.Inf | 0.200 | 0.172 | 0.028 | 0.0000378 | 0.188 | 0.162 | 0.026 | 5.36e-04 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.Inf | 0.225 | 0.172 | 0.053 | 0.0000000 | 0.212 | 0.162 | 0.050 | 2.69e-12 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.Inf | 0.217 | 0.172 | 0.046 | 0.0000000 | 0.211 | 0.162 | 0.049 | 4.73e-17 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.Inf | 0.223 | 0.172 | 0.052 | 0.0000000 | 0.211 | 0.162 | 0.049 | 4.56e-15 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.Inf | 0.217 | 0.172 | 0.046 | 0.0000000 | 0.212 | 0.162 | 0.050 | 2.07e-14 |
Breast_Cancer | PRScs.PseudoVal | LDpred1.Inf | 0.220 | 0.172 | 0.049 | 0.0000000 | 0.208 | 0.162 | 0.046 | 4.13e-15 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.Inf | 0.217 | 0.172 | 0.045 | 0.0000000 | 0.199 | 0.162 | 0.037 | 2.34e-05 |
Breast_Cancer | LDpred2.Inf | LDpred1.Inf | 0.168 | 0.172 | -0.004 | 0.0010063 | 0.160 | 0.162 | -0.002 | 4.89e-01 |
Breast_Cancer | PRScs.MultiPRS | LDpred1.Inf | 0.222 | 0.172 | 0.050 | 0.0000000 | 0.210 | 0.162 | 0.049 | 1.62e-14 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.Inf | 0.201 | 0.172 | 0.029 | 0.0000000 | 0.186 | 0.162 | 0.024 | 1.58e-11 |
Breast_Cancer | SBLUP.Inf | LDpred1.Inf | 0.168 | 0.172 | -0.004 | 0.0003484 | 0.158 | 0.162 | -0.004 | 1.23e-01 |
Breast_Cancer | lassosum.10FCVal | LDpred1.Inf | 0.219 | 0.172 | 0.047 | 0.0000000 | 0.199 | 0.162 | 0.037 | 6.56e-07 |
Breast_Cancer | LDpred1.Inf | LDpred1.Inf | 0.172 | 0.172 | 0.000 | 1.0000000 | 0.162 | 0.162 | 0.000 | 1.00e+00 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.Inf | 0.221 | 0.172 | 0.049 | 0.0000000 | 0.205 | 0.162 | 0.043 | 1.16e-06 |
Breast_Cancer | LDpred2.Inf | LDpred1.10FCVal | 0.168 | 0.201 | -0.033 | 0.0000000 | 0.160 | 0.186 | -0.026 | 1.66e-09 |
Breast_Cancer | PRScs.10FCVal | LDpred1.10FCVal | 0.220 | 0.201 | 0.019 | 0.0000000 | 0.207 | 0.186 | 0.021 | 1.49e-06 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.10FCVal | 0.225 | 0.201 | 0.024 | 0.0003389 | 0.212 | 0.186 | 0.026 | 1.03e-06 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.10FCVal | 0.224 | 0.201 | 0.023 | 0.0005723 | 0.211 | 0.186 | 0.025 | 1.18e-06 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.225 | 0.201 | 0.025 | 0.0003086 | 0.211 | 0.186 | 0.025 | 2.38e-06 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.10FCVal | 0.221 | 0.201 | 0.020 | 0.0000000 | 0.205 | 0.186 | 0.019 | 6.82e-03 |
Breast_Cancer | PRScs.PseudoVal | LDpred1.10FCVal | 0.220 | 0.201 | 0.020 | 0.0000000 | 0.208 | 0.186 | 0.022 | 1.50e-07 |
Breast_Cancer | All.MultiPRS | LDpred1.10FCVal | 0.229 | 0.201 | 0.028 | 0.0000394 | 0.218 | 0.186 | 0.032 | 7.65e-11 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.10FCVal | 0.169 | 0.201 | -0.032 | 0.0000000 | 0.161 | 0.186 | -0.025 | 2.63e-09 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.10FCVal | 0.211 | 0.201 | 0.010 | 0.1105923 | 0.195 | 0.186 | 0.009 | 2.74e-03 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.10FCVal | 0.179 | 0.201 | -0.022 | 0.0000003 | 0.167 | 0.186 | -0.019 | 2.75e-02 |
Breast_Cancer | SBLUP.Inf | LDpred1.10FCVal | 0.168 | 0.201 | -0.033 | 0.0000000 | 0.158 | 0.186 | -0.028 | 3.98e-11 |
Breast_Cancer | PRScs.MultiPRS | LDpred1.10FCVal | 0.222 | 0.201 | 0.021 | 0.0018940 | 0.210 | 0.186 | 0.025 | 4.14e-08 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.10FCVal | 0.220 | 0.201 | 0.019 | 0.0000000 | 0.213 | 0.186 | 0.027 | 6.40e-08 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.10FCVal | 0.200 | 0.201 | -0.001 | 0.9207868 | 0.188 | 0.186 | 0.002 | 7.90e-01 |
Breast_Cancer | LDpred1.Inf | LDpred1.10FCVal | 0.172 | 0.201 | -0.029 | 0.0000000 | 0.162 | 0.186 | -0.024 | 1.58e-11 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.10FCVal | 0.217 | 0.201 | 0.016 | 0.0000018 | 0.199 | 0.186 | 0.013 | 5.42e-02 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.10FCVal | 0.223 | 0.201 | 0.023 | 0.0000000 | 0.211 | 0.186 | 0.025 | 9.83e-09 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.217 | 0.201 | 0.017 | 0.0000000 | 0.212 | 0.186 | 0.026 | 4.02e-07 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.10FCVal | 0.201 | 0.201 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.217 | 0.201 | 0.017 | 0.0000000 | 0.211 | 0.186 | 0.025 | 5.79e-08 |
Breast_Cancer | lassosum.10FCVal | LDpred1.10FCVal | 0.219 | 0.201 | 0.018 | 0.0000000 | 0.199 | 0.186 | 0.013 | 2.09e-02 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.217 | 0.224 | -0.007 | 0.3190381 | 0.211 | 0.211 | 0.000 | 9.77e-01 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.MultiPRS | 0.223 | 0.224 | -0.001 | 0.9093878 | 0.211 | 0.211 | 0.000 | 8.35e-01 |
Breast_Cancer | PRScs.PseudoVal | LDpred2.MultiPRS | 0.220 | 0.224 | -0.004 | 0.5703639 | 0.208 | 0.211 | -0.003 | 3.58e-01 |
Breast_Cancer | All.MultiPRS | LDpred2.MultiPRS | 0.229 | 0.224 | 0.005 | 0.4897678 | 0.218 | 0.211 | 0.007 | 1.42e-03 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.224 | 0.224 | 0.000 | 1.0000000 | 0.211 | 0.211 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.217 | 0.224 | -0.007 | 0.3206105 | 0.212 | 0.211 | 0.001 | 7.76e-01 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.220 | 0.224 | -0.004 | 0.5453697 | 0.213 | 0.211 | 0.002 | 5.71e-01 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.200 | 0.224 | -0.024 | 0.0004029 | 0.188 | 0.211 | -0.023 | 2.14e-05 |
Breast_Cancer | lassosum.10FCVal | LDpred2.MultiPRS | 0.219 | 0.224 | -0.005 | 0.4483790 | 0.199 | 0.211 | -0.012 | 1.56e-03 |
Breast_Cancer | PRScs.MultiPRS | LDpred2.MultiPRS | 0.222 | 0.224 | -0.002 | 0.7407705 | 0.210 | 0.211 | 0.000 | 9.62e-01 |
Breast_Cancer | LDpred1.Inf | LDpred2.MultiPRS | 0.172 | 0.224 | -0.052 | 0.0000000 | 0.162 | 0.211 | -0.049 | 3.19e-12 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.221 | 0.224 | -0.003 | 0.6196671 | 0.205 | 0.211 | -0.006 | 1.61e-01 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.MultiPRS | 0.179 | 0.224 | -0.046 | 0.0000000 | 0.167 | 0.211 | -0.044 | 2.71e-10 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.MultiPRS | 0.217 | 0.224 | -0.007 | 0.2902537 | 0.199 | 0.211 | -0.011 | 4.64e-03 |
Breast_Cancer | LDpred2.Inf | LDpred2.MultiPRS | 0.168 | 0.224 | -0.056 | 0.0000000 | 0.160 | 0.211 | -0.051 | 1.28e-12 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.211 | 0.224 | -0.013 | 0.0535614 | 0.195 | 0.211 | -0.016 | 1.43e-04 |
Breast_Cancer | SBLUP.Inf | LDpred2.MultiPRS | 0.168 | 0.224 | -0.057 | 0.0000000 | 0.158 | 0.211 | -0.052 | 5.15e-13 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.MultiPRS | 0.225 | 0.224 | 0.001 | 0.5615230 | 0.212 | 0.211 | 0.001 | 6.85e-01 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.169 | 0.224 | -0.056 | 0.0000000 | 0.161 | 0.211 | -0.050 | 1.46e-12 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.MultiPRS | 0.201 | 0.224 | -0.023 | 0.0005723 | 0.186 | 0.211 | -0.025 | 1.18e-06 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.225 | 0.224 | 0.001 | 0.5406238 | 0.211 | 0.211 | 0.000 | 9.91e-01 |
Breast_Cancer | PRScs.10FCVal | LDpred2.MultiPRS | 0.220 | 0.224 | -0.005 | 0.5033536 | 0.207 | 0.211 | -0.003 | 2.72e-01 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.10FCVal | 0.224 | 0.223 | 0.001 | 0.9093878 | 0.211 | 0.211 | 0.000 | 8.35e-01 |
Breast_Cancer | LDpred2.Inf | LDpred2.10FCVal | 0.168 | 0.223 | -0.056 | 0.0000000 | 0.160 | 0.211 | -0.051 | 1.57e-15 |
Breast_Cancer | PRScs.10FCVal | LDpred2.10FCVal | 0.220 | 0.223 | -0.004 | 0.0080040 | 0.207 | 0.211 | -0.004 | 1.69e-01 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.10FCVal | 0.221 | 0.223 | -0.003 | 0.2436459 | 0.205 | 0.211 | -0.006 | 1.76e-01 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.10FCVal | 0.217 | 0.223 | -0.006 | 0.0022138 | 0.199 | 0.211 | -0.012 | 4.64e-03 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.10FCVal | 0.223 | 0.223 | 0.000 | 1.0000000 | 0.211 | 0.211 | 0.000 | 1.00e+00 |
Breast_Cancer | PRScs.PseudoVal | LDpred2.10FCVal | 0.220 | 0.223 | -0.003 | 0.0271120 | 0.208 | 0.211 | -0.003 | 2.28e-01 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.10FCVal | 0.211 | 0.223 | -0.012 | 0.0572298 | 0.195 | 0.211 | -0.017 | 1.03e-05 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.10FCVal | 0.179 | 0.223 | -0.045 | 0.0000000 | 0.167 | 0.211 | -0.044 | 4.14e-10 |
Breast_Cancer | All.MultiPRS | LDpred2.10FCVal | 0.229 | 0.223 | 0.005 | 0.4229091 | 0.218 | 0.211 | 0.007 | 3.17e-03 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.225 | 0.223 | 0.002 | 0.7840860 | 0.211 | 0.211 | 0.000 | 9.14e-01 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.10FCVal | 0.220 | 0.223 | -0.003 | 0.0728175 | 0.213 | 0.211 | 0.002 | 6.18e-01 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.10FCVal | 0.200 | 0.223 | -0.023 | 0.0006079 | 0.188 | 0.211 | -0.023 | 6.41e-06 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.10FCVal | 0.225 | 0.223 | 0.002 | 0.8020026 | 0.212 | 0.211 | 0.001 | 7.83e-01 |
Breast_Cancer | PRScs.MultiPRS | LDpred2.10FCVal | 0.222 | 0.223 | -0.001 | 0.8285234 | 0.210 | 0.211 | -0.001 | 8.37e-01 |
Breast_Cancer | LDpred1.Inf | LDpred2.10FCVal | 0.172 | 0.223 | -0.052 | 0.0000000 | 0.162 | 0.211 | -0.049 | 4.56e-15 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.217 | 0.223 | -0.006 | 0.0021495 | 0.212 | 0.211 | 0.001 | 8.44e-01 |
Breast_Cancer | SBLUP.Inf | LDpred2.10FCVal | 0.168 | 0.223 | -0.056 | 0.0000000 | 0.158 | 0.211 | -0.053 | 7.01e-16 |
Breast_Cancer | lassosum.10FCVal | LDpred2.10FCVal | 0.219 | 0.223 | -0.004 | 0.0076176 | 0.199 | 0.211 | -0.012 | 2.39e-04 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.10FCVal | 0.169 | 0.223 | -0.055 | 0.0000000 | 0.161 | 0.211 | -0.050 | 1.61e-15 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.10FCVal | 0.201 | 0.223 | -0.023 | 0.0000000 | 0.186 | 0.211 | -0.025 | 9.83e-09 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.217 | 0.223 | -0.006 | 0.0027916 | 0.211 | 0.211 | 0.000 | 9.43e-01 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.217 | 0.169 | 0.049 | 0.0000000 | 0.212 | 0.161 | 0.051 | 2.24e-14 |
Breast_Cancer | PRScs.PseudoVal | LDpred2.PseudoVal | 0.220 | 0.169 | 0.052 | 0.0000000 | 0.208 | 0.161 | 0.047 | 5.51e-15 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.224 | 0.169 | 0.056 | 0.0000000 | 0.211 | 0.161 | 0.050 | 1.46e-12 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.225 | 0.169 | 0.057 | 0.0000000 | 0.211 | 0.161 | 0.050 | 2.77e-12 |
Breast_Cancer | PRScs.10FCVal | LDpred2.PseudoVal | 0.220 | 0.169 | 0.051 | 0.0000000 | 0.207 | 0.161 | 0.046 | 1.15e-13 |
Breast_Cancer | All.MultiPRS | LDpred2.PseudoVal | 0.229 | 0.169 | 0.060 | 0.0000000 | 0.218 | 0.161 | 0.057 | 1.58e-16 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.217 | 0.169 | 0.049 | 0.0000000 | 0.211 | 0.161 | 0.050 | 2.83e-17 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.PseudoVal | 0.223 | 0.169 | 0.055 | 0.0000000 | 0.211 | 0.161 | 0.050 | 1.61e-15 |
Breast_Cancer | LDpred1.Inf | LDpred2.PseudoVal | 0.172 | 0.169 | 0.003 | 0.0111046 | 0.162 | 0.161 | 0.001 | 6.44e-01 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.221 | 0.169 | 0.052 | 0.0000000 | 0.205 | 0.161 | 0.044 | 7.91e-07 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.PseudoVal | 0.217 | 0.169 | 0.048 | 0.0000000 | 0.199 | 0.161 | 0.039 | 2.02e-05 |
Breast_Cancer | LDpred2.Inf | LDpred2.PseudoVal | 0.168 | 0.169 | -0.001 | 0.0000298 | 0.160 | 0.161 | -0.001 | 2.09e-01 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.169 | 0.169 | 0.000 | 1.0000000 | 0.161 | 0.161 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.211 | 0.169 | 0.042 | 0.0000000 | 0.195 | 0.161 | 0.034 | 5.76e-08 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.PseudoVal | 0.179 | 0.169 | 0.010 | 0.0474357 | 0.167 | 0.161 | 0.006 | 5.26e-01 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.PseudoVal | 0.225 | 0.169 | 0.056 | 0.0000000 | 0.212 | 0.161 | 0.051 | 2.04e-12 |
Breast_Cancer | PRScs.MultiPRS | LDpred2.PseudoVal | 0.222 | 0.169 | 0.053 | 0.0000000 | 0.210 | 0.161 | 0.050 | 2.45e-14 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.220 | 0.169 | 0.051 | 0.0000000 | 0.213 | 0.161 | 0.052 | 1.53e-15 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.200 | 0.169 | 0.031 | 0.0000051 | 0.188 | 0.161 | 0.027 | 5.11e-04 |
Breast_Cancer | lassosum.10FCVal | LDpred2.PseudoVal | 0.219 | 0.169 | 0.050 | 0.0000000 | 0.199 | 0.161 | 0.038 | 5.08e-07 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.PseudoVal | 0.201 | 0.169 | 0.032 | 0.0000000 | 0.186 | 0.161 | 0.025 | 2.63e-09 |
Breast_Cancer | SBLUP.Inf | LDpred2.PseudoVal | 0.168 | 0.169 | -0.001 | 0.1601193 | 0.158 | 0.161 | -0.002 | 1.04e-01 |
Breast_Cancer | PRScs.10FCVal | LDpred2.Inf | 0.220 | 0.168 | 0.052 | 0.0000000 | 0.207 | 0.160 | 0.047 | 1.76e-13 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.Inf | 0.200 | 0.168 | 0.032 | 0.0000026 | 0.188 | 0.160 | 0.028 | 4.44e-04 |
Breast_Cancer | LDpred2.Inf | LDpred2.Inf | 0.168 | 0.168 | 0.000 | 1.0000000 | 0.160 | 0.160 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.Inf | 0.217 | 0.168 | 0.049 | 0.0000000 | 0.199 | 0.160 | 0.039 | 1.85e-05 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.Inf | 0.224 | 0.168 | 0.056 | 0.0000000 | 0.211 | 0.160 | 0.051 | 1.28e-12 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.Inf | 0.221 | 0.168 | 0.053 | 0.0000000 | 0.205 | 0.160 | 0.045 | 7.43e-07 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.Inf | 0.179 | 0.168 | 0.011 | 0.0311920 | 0.167 | 0.160 | 0.007 | 4.94e-01 |
Breast_Cancer | PRScs.PseudoVal | LDpred2.Inf | 0.220 | 0.168 | 0.053 | 0.0000000 | 0.208 | 0.160 | 0.048 | 8.61e-15 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.Inf | 0.169 | 0.168 | 0.001 | 0.0000298 | 0.161 | 0.160 | 0.001 | 2.09e-01 |
Breast_Cancer | All.MultiPRS | LDpred2.Inf | 0.229 | 0.168 | 0.061 | 0.0000000 | 0.218 | 0.160 | 0.058 | 1.64e-16 |
Breast_Cancer | SBLUP.Inf | LDpred2.Inf | 0.168 | 0.168 | 0.000 | 0.9241242 | 0.158 | 0.160 | -0.002 | 2.14e-01 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.Inf | 0.225 | 0.168 | 0.058 | 0.0000000 | 0.211 | 0.160 | 0.051 | 2.83e-12 |
Breast_Cancer | PRScs.MultiPRS | LDpred2.Inf | 0.222 | 0.168 | 0.054 | 0.0000000 | 0.210 | 0.160 | 0.050 | 3.38e-14 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.Inf | 0.225 | 0.168 | 0.057 | 0.0000000 | 0.212 | 0.160 | 0.052 | 1.88e-12 |
Breast_Cancer | LDpred1.Inf | LDpred2.Inf | 0.172 | 0.168 | 0.004 | 0.0010063 | 0.162 | 0.160 | 0.002 | 4.89e-01 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.Inf | 0.220 | 0.168 | 0.052 | 0.0000000 | 0.213 | 0.160 | 0.053 | 1.20e-15 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.Inf | 0.217 | 0.168 | 0.050 | 0.0000000 | 0.212 | 0.160 | 0.052 | 1.79e-14 |
Breast_Cancer | lassosum.10FCVal | LDpred2.Inf | 0.219 | 0.168 | 0.051 | 0.0000000 | 0.199 | 0.160 | 0.039 | 4.70e-07 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.Inf | 0.223 | 0.168 | 0.056 | 0.0000000 | 0.211 | 0.160 | 0.051 | 1.57e-15 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.Inf | 0.217 | 0.168 | 0.050 | 0.0000000 | 0.211 | 0.160 | 0.051 | 2.59e-17 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.Inf | 0.211 | 0.168 | 0.043 | 0.0000000 | 0.195 | 0.160 | 0.034 | 4.42e-08 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.Inf | 0.201 | 0.168 | 0.033 | 0.0000000 | 0.186 | 0.160 | 0.026 | 1.66e-09 |
Breast_Cancer | PRScs.PseudoVal | PRScs.MultiPRS | 0.220 | 0.222 | -0.002 | 0.8130973 | 0.208 | 0.210 | -0.003 | 3.31e-02 |
Breast_Cancer | LDpred2.MultiPRS | PRScs.MultiPRS | 0.224 | 0.222 | 0.002 | 0.7407705 | 0.211 | 0.210 | 0.000 | 9.62e-01 |
Breast_Cancer | LDpred2.Inf | PRScs.MultiPRS | 0.168 | 0.222 | -0.054 | 0.0000000 | 0.160 | 0.210 | -0.050 | 3.38e-14 |
Breast_Cancer | pT+clump.10FCVal | PRScs.MultiPRS | 0.179 | 0.222 | -0.043 | 0.0000000 | 0.167 | 0.210 | -0.043 | 6.33e-11 |
Breast_Cancer | SBayesR.PseudoVal | PRScs.MultiPRS | 0.221 | 0.222 | -0.001 | 0.8687079 | 0.205 | 0.210 | -0.006 | 1.68e-01 |
Breast_Cancer | LDpred2.PseudoVal | PRScs.MultiPRS | 0.169 | 0.222 | -0.053 | 0.0000000 | 0.161 | 0.210 | -0.050 | 2.45e-14 |
Breast_Cancer | LDpred2.10FCVal | PRScs.MultiPRS | 0.223 | 0.222 | 0.001 | 0.8285234 | 0.211 | 0.210 | 0.001 | 8.37e-01 |
Breast_Cancer | PRScs.MultiPRS | PRScs.MultiPRS | 0.222 | 0.222 | 0.000 | 1.0000000 | 0.210 | 0.210 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.MultiPRS | PRScs.MultiPRS | 0.211 | 0.222 | -0.011 | 0.1117665 | 0.195 | 0.210 | -0.016 | 2.31e-05 |
Breast_Cancer | pT+clump.MultiPRS | PRScs.MultiPRS | 0.200 | 0.222 | -0.022 | 0.0013395 | 0.188 | 0.210 | -0.023 | 1.31e-06 |
Breast_Cancer | All.MultiPRS | PRScs.MultiPRS | 0.229 | 0.222 | 0.007 | 0.3051487 | 0.218 | 0.210 | 0.008 | 1.75e-03 |
Breast_Cancer | lassosum.PseudoVal | PRScs.MultiPRS | 0.217 | 0.222 | -0.005 | 0.4689926 | 0.199 | 0.210 | -0.011 | 3.74e-03 |
Breast_Cancer | PRScs.10FCVal | PRScs.MultiPRS | 0.220 | 0.222 | -0.002 | 0.7352538 | 0.207 | 0.210 | -0.003 | 2.17e-02 |
Breast_Cancer | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.217 | 0.222 | -0.004 | 0.5084198 | 0.212 | 0.210 | 0.001 | 7.42e-01 |
Breast_Cancer | lassosum.MultiPRS | PRScs.MultiPRS | 0.225 | 0.222 | 0.003 | 0.6403412 | 0.212 | 0.210 | 0.001 | 6.00e-01 |
Breast_Cancer | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.225 | 0.222 | 0.003 | 0.6235624 | 0.211 | 0.210 | 0.000 | 9.57e-01 |
Breast_Cancer | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.217 | 0.222 | -0.005 | 0.5063466 | 0.211 | 0.210 | 0.000 | 9.39e-01 |
Breast_Cancer | LDpred1.10FCVal | PRScs.MultiPRS | 0.201 | 0.222 | -0.021 | 0.0018940 | 0.186 | 0.210 | -0.025 | 4.14e-08 |
Breast_Cancer | SBLUP.Inf | PRScs.MultiPRS | 0.168 | 0.222 | -0.054 | 0.0000000 | 0.158 | 0.210 | -0.052 | 3.63e-15 |
Breast_Cancer | lassosum.10FCVal | PRScs.MultiPRS | 0.219 | 0.222 | -0.003 | 0.6707162 | 0.199 | 0.210 | -0.011 | 9.27e-04 |
Breast_Cancer | LDpred1.Inf | PRScs.MultiPRS | 0.172 | 0.222 | -0.050 | 0.0000000 | 0.162 | 0.210 | -0.049 | 1.62e-14 |
Breast_Cancer | MegaPRS.10FCVal | PRScs.MultiPRS | 0.220 | 0.222 | -0.002 | 0.7843146 | 0.213 | 0.210 | 0.002 | 5.38e-01 |
Breast_Cancer | PRScs.10FCVal | PRScs.10FCVal | 0.220 | 0.220 | 0.000 | 1.0000000 | 0.207 | 0.207 | 0.000 | 1.00e+00 |
Breast_Cancer | pT+clump.MultiPRS | PRScs.10FCVal | 0.200 | 0.220 | -0.020 | 0.0041104 | 0.188 | 0.207 | -0.020 | 7.77e-05 |
Breast_Cancer | SBayesR.PseudoVal | PRScs.10FCVal | 0.221 | 0.220 | 0.001 | 0.5855319 | 0.205 | 0.207 | -0.002 | 6.20e-01 |
Breast_Cancer | pT+clump.10FCVal | PRScs.10FCVal | 0.179 | 0.220 | -0.041 | 0.0000000 | 0.167 | 0.207 | -0.040 | 4.65e-09 |
Breast_Cancer | LDpred2.MultiPRS | PRScs.10FCVal | 0.224 | 0.220 | 0.005 | 0.5033536 | 0.211 | 0.207 | 0.003 | 2.72e-01 |
Breast_Cancer | LDpred2.10FCVal | PRScs.10FCVal | 0.223 | 0.220 | 0.004 | 0.0080040 | 0.211 | 0.207 | 0.004 | 1.69e-01 |
Breast_Cancer | SBLUP.Inf | PRScs.10FCVal | 0.168 | 0.220 | -0.052 | 0.0000000 | 0.158 | 0.207 | -0.049 | 1.77e-14 |
Breast_Cancer | PRScs.PseudoVal | PRScs.10FCVal | 0.220 | 0.220 | 0.001 | 0.4962905 | 0.208 | 0.207 | 0.001 | 7.91e-01 |
Breast_Cancer | LDpred2.PseudoVal | PRScs.10FCVal | 0.169 | 0.220 | -0.051 | 0.0000000 | 0.161 | 0.207 | -0.046 | 1.15e-13 |
Breast_Cancer | LDpred2.Inf | PRScs.10FCVal | 0.168 | 0.220 | -0.052 | 0.0000000 | 0.160 | 0.207 | -0.047 | 1.76e-13 |
Breast_Cancer | LDpred1.Inf | PRScs.10FCVal | 0.172 | 0.220 | -0.048 | 0.0000000 | 0.162 | 0.207 | -0.045 | 1.32e-13 |
Breast_Cancer | MegaPRS.MultiPRS | PRScs.10FCVal | 0.225 | 0.220 | 0.006 | 0.4068572 | 0.211 | 0.207 | 0.004 | 3.21e-01 |
Breast_Cancer | PRScs.MultiPRS | PRScs.10FCVal | 0.222 | 0.220 | 0.002 | 0.7352538 | 0.210 | 0.207 | 0.003 | 2.17e-02 |
Breast_Cancer | lassosum.MultiPRS | PRScs.10FCVal | 0.225 | 0.220 | 0.005 | 0.4202154 | 0.212 | 0.207 | 0.005 | 1.14e-01 |
Breast_Cancer | DBSLMM.PseudoVal | PRScs.10FCVal | 0.217 | 0.220 | -0.002 | 0.2021814 | 0.211 | 0.207 | 0.004 | 2.99e-01 |
Breast_Cancer | MegaPRS.10FCVal | PRScs.10FCVal | 0.220 | 0.220 | 0.000 | 0.8230865 | 0.213 | 0.207 | 0.006 | 1.50e-01 |
Breast_Cancer | MegaPRS.PseudoVal | PRScs.10FCVal | 0.217 | 0.220 | -0.002 | 0.2791495 | 0.212 | 0.207 | 0.005 | 2.56e-01 |
Breast_Cancer | lassosum.10FCVal | PRScs.10FCVal | 0.219 | 0.220 | -0.001 | 0.7415636 | 0.199 | 0.207 | -0.008 | 2.54e-02 |
Breast_Cancer | All.MultiPRS | PRScs.10FCVal | 0.229 | 0.220 | 0.009 | 0.1753553 | 0.218 | 0.207 | 0.011 | 6.08e-05 |
Breast_Cancer | lassosum.PseudoVal | PRScs.10FCVal | 0.217 | 0.220 | -0.003 | 0.2112085 | 0.199 | 0.207 | -0.008 | 6.16e-02 |
Breast_Cancer | LDpred1.MultiPRS | PRScs.10FCVal | 0.211 | 0.220 | -0.009 | 0.1876380 | 0.195 | 0.207 | -0.013 | 1.30e-03 |
Breast_Cancer | LDpred1.10FCVal | PRScs.10FCVal | 0.201 | 0.220 | -0.019 | 0.0000000 | 0.186 | 0.207 | -0.021 | 1.49e-06 |
Breast_Cancer | LDpred2.MultiPRS | PRScs.PseudoVal | 0.224 | 0.220 | 0.004 | 0.5703639 | 0.211 | 0.208 | 0.003 | 3.58e-01 |
Breast_Cancer | PRScs.10FCVal | PRScs.PseudoVal | 0.220 | 0.220 | -0.001 | 0.4962905 | 0.207 | 0.208 | -0.001 | 7.91e-01 |
Breast_Cancer | pT+clump.10FCVal | PRScs.PseudoVal | 0.179 | 0.220 | -0.042 | 0.0000000 | 0.167 | 0.208 | -0.041 | 4.21e-09 |
Breast_Cancer | LDpred2.PseudoVal | PRScs.PseudoVal | 0.169 | 0.220 | -0.052 | 0.0000000 | 0.161 | 0.208 | -0.047 | 5.51e-15 |
Breast_Cancer | LDpred2.Inf | PRScs.PseudoVal | 0.168 | 0.220 | -0.053 | 0.0000000 | 0.160 | 0.208 | -0.048 | 8.61e-15 |
Breast_Cancer | pT+clump.MultiPRS | PRScs.PseudoVal | 0.200 | 0.220 | -0.020 | 0.0029587 | 0.188 | 0.208 | -0.020 | 4.61e-05 |
Breast_Cancer | PRScs.PseudoVal | PRScs.PseudoVal | 0.220 | 0.220 | 0.000 | 1.0000000 | 0.208 | 0.208 | 0.000 | 1.00e+00 |
Breast_Cancer | SBayesR.PseudoVal | PRScs.PseudoVal | 0.221 | 0.220 | 0.000 | 0.8317042 | 0.205 | 0.208 | -0.003 | 5.56e-01 |
Breast_Cancer | lassosum.MultiPRS | PRScs.PseudoVal | 0.225 | 0.220 | 0.005 | 0.4811311 | 0.212 | 0.208 | 0.004 | 1.76e-01 |
Breast_Cancer | LDpred2.10FCVal | PRScs.PseudoVal | 0.223 | 0.220 | 0.003 | 0.0271120 | 0.211 | 0.208 | 0.003 | 2.28e-01 |
Breast_Cancer | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.225 | 0.220 | 0.005 | 0.4666671 | 0.211 | 0.208 | 0.003 | 4.06e-01 |
Breast_Cancer | LDpred1.MultiPRS | PRScs.PseudoVal | 0.211 | 0.220 | -0.009 | 0.1540842 | 0.195 | 0.208 | -0.013 | 5.03e-04 |
Breast_Cancer | SBLUP.Inf | PRScs.PseudoVal | 0.168 | 0.220 | -0.053 | 0.0000000 | 0.158 | 0.208 | -0.049 | 6.60e-16 |
Breast_Cancer | All.MultiPRS | PRScs.PseudoVal | 0.229 | 0.220 | 0.009 | 0.2101604 | 0.218 | 0.208 | 0.010 | 1.89e-04 |
Breast_Cancer | MegaPRS.10FCVal | PRScs.PseudoVal | 0.220 | 0.220 | 0.000 | 0.8964891 | 0.213 | 0.208 | 0.005 | 1.84e-01 |
Breast_Cancer | LDpred1.10FCVal | PRScs.PseudoVal | 0.201 | 0.220 | -0.020 | 0.0000000 | 0.186 | 0.208 | -0.022 | 1.50e-07 |
Breast_Cancer | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.217 | 0.220 | -0.003 | 0.1458626 | 0.212 | 0.208 | 0.004 | 3.05e-01 |
Breast_Cancer | lassosum.10FCVal | PRScs.PseudoVal | 0.219 | 0.220 | -0.001 | 0.4824807 | 0.199 | 0.208 | -0.009 | 1.94e-02 |
Breast_Cancer | PRScs.MultiPRS | PRScs.PseudoVal | 0.222 | 0.220 | 0.002 | 0.8130973 | 0.210 | 0.208 | 0.003 | 3.31e-02 |
Breast_Cancer | LDpred1.Inf | PRScs.PseudoVal | 0.172 | 0.220 | -0.049 | 0.0000000 | 0.162 | 0.208 | -0.046 | 4.13e-15 |
Breast_Cancer | lassosum.PseudoVal | PRScs.PseudoVal | 0.217 | 0.220 | -0.003 | 0.1323242 | 0.199 | 0.208 | -0.008 | 5.69e-02 |
Breast_Cancer | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.217 | 0.220 | -0.003 | 0.0835361 | 0.211 | 0.208 | 0.003 | 3.66e-01 |
Breast_Cancer | All.MultiPRS | pT+clump.MultiPRS | 0.229 | 0.200 | 0.029 | 0.0000239 | 0.218 | 0.188 | 0.030 | 1.54e-10 |
Breast_Cancer | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.224 | 0.200 | 0.024 | 0.0004029 | 0.211 | 0.188 | 0.023 | 2.14e-05 |
Breast_Cancer | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.211 | 0.200 | 0.011 | 0.1058037 | 0.195 | 0.188 | 0.007 | 2.46e-01 |
Breast_Cancer | pT+clump.10FCVal | pT+clump.MultiPRS | 0.179 | 0.200 | -0.021 | 0.0018932 | 0.167 | 0.188 | -0.021 | 1.49e-05 |
Breast_Cancer | lassosum.MultiPRS | pT+clump.MultiPRS | 0.225 | 0.200 | 0.025 | 0.0002438 | 0.212 | 0.188 | 0.024 | 7.15e-07 |
Breast_Cancer | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.169 | 0.200 | -0.031 | 0.0000051 | 0.161 | 0.188 | -0.027 | 5.11e-04 |
Breast_Cancer | LDpred1.10FCVal | pT+clump.MultiPRS | 0.201 | 0.200 | 0.001 | 0.9207868 | 0.186 | 0.188 | -0.002 | 7.90e-01 |
Breast_Cancer | SBLUP.Inf | pT+clump.MultiPRS | 0.168 | 0.200 | -0.032 | 0.0000025 | 0.158 | 0.188 | -0.029 | 1.42e-04 |
Breast_Cancer | lassosum.10FCVal | pT+clump.MultiPRS | 0.219 | 0.200 | 0.019 | 0.0054035 | 0.199 | 0.188 | 0.011 | 2.53e-02 |
Breast_Cancer | PRScs.MultiPRS | pT+clump.MultiPRS | 0.222 | 0.200 | 0.022 | 0.0013395 | 0.210 | 0.188 | 0.023 | 1.31e-06 |
Breast_Cancer | LDpred2.10FCVal | pT+clump.MultiPRS | 0.223 | 0.200 | 0.023 | 0.0006079 | 0.211 | 0.188 | 0.023 | 6.41e-06 |
Breast_Cancer | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.217 | 0.200 | 0.017 | 0.0108067 | 0.212 | 0.188 | 0.024 | 4.90e-06 |
Breast_Cancer | PRScs.PseudoVal | pT+clump.MultiPRS | 0.220 | 0.200 | 0.020 | 0.0029587 | 0.208 | 0.188 | 0.020 | 4.61e-05 |
Breast_Cancer | lassosum.PseudoVal | pT+clump.MultiPRS | 0.217 | 0.200 | 0.017 | 0.0130856 | 0.199 | 0.188 | 0.012 | 3.21e-02 |
Breast_Cancer | LDpred2.Inf | pT+clump.MultiPRS | 0.168 | 0.200 | -0.032 | 0.0000026 | 0.160 | 0.188 | -0.028 | 4.44e-04 |
Breast_Cancer | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.220 | 0.200 | 0.020 | 0.0033032 | 0.213 | 0.188 | 0.025 | 1.51e-06 |
Breast_Cancer | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.225 | 0.200 | 0.025 | 0.0002215 | 0.211 | 0.188 | 0.023 | 7.50e-06 |
Breast_Cancer | PRScs.10FCVal | pT+clump.MultiPRS | 0.220 | 0.200 | 0.020 | 0.0041104 | 0.207 | 0.188 | 0.020 | 7.77e-05 |
Breast_Cancer | LDpred1.Inf | pT+clump.MultiPRS | 0.172 | 0.200 | -0.028 | 0.0000378 | 0.162 | 0.188 | -0.026 | 5.36e-04 |
Breast_Cancer | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.200 | 0.200 | 0.000 | 1.0000000 | 0.188 | 0.188 | 0.000 | 1.00e+00 |
Breast_Cancer | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.217 | 0.200 | 0.017 | 0.0109532 | 0.211 | 0.188 | 0.023 | 3.20e-06 |
Breast_Cancer | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.221 | 0.200 | 0.021 | 0.0023377 | 0.205 | 0.188 | 0.017 | 1.95e-03 |
Breast_Cancer | LDpred2.MultiPRS | pT+clump.10FCVal | 0.224 | 0.179 | 0.046 | 0.0000000 | 0.211 | 0.167 | 0.044 | 2.71e-10 |
Breast_Cancer | LDpred2.PseudoVal | pT+clump.10FCVal | 0.169 | 0.179 | -0.010 | 0.0474357 | 0.161 | 0.167 | -0.006 | 5.26e-01 |
Breast_Cancer | pT+clump.MultiPRS | pT+clump.10FCVal | 0.200 | 0.179 | 0.021 | 0.0018932 | 0.188 | 0.167 | 0.021 | 1.49e-05 |
Breast_Cancer | SBLUP.Inf | pT+clump.10FCVal | 0.168 | 0.179 | -0.011 | 0.0297637 | 0.158 | 0.167 | -0.009 | 3.86e-01 |
Breast_Cancer | PRScs.PseudoVal | pT+clump.10FCVal | 0.220 | 0.179 | 0.042 | 0.0000000 | 0.208 | 0.167 | 0.041 | 4.21e-09 |
Breast_Cancer | PRScs.MultiPRS | pT+clump.10FCVal | 0.222 | 0.179 | 0.043 | 0.0000000 | 0.210 | 0.167 | 0.043 | 6.33e-11 |
Breast_Cancer | LDpred2.Inf | pT+clump.10FCVal | 0.168 | 0.179 | -0.011 | 0.0311920 | 0.160 | 0.167 | -0.007 | 4.94e-01 |
Breast_Cancer | SBayesR.PseudoVal | pT+clump.10FCVal | 0.221 | 0.179 | 0.042 | 0.0000000 | 0.205 | 0.167 | 0.038 | 1.01e-09 |
Breast_Cancer | pT+clump.10FCVal | pT+clump.10FCVal | 0.179 | 0.179 | 0.000 | 1.0000000 | 0.167 | 0.167 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.217 | 0.179 | 0.039 | 0.0000000 | 0.212 | 0.167 | 0.045 | 5.59e-10 |
Breast_Cancer | PRScs.10FCVal | pT+clump.10FCVal | 0.220 | 0.179 | 0.041 | 0.0000000 | 0.207 | 0.167 | 0.040 | 4.65e-09 |
Breast_Cancer | LDpred2.10FCVal | pT+clump.10FCVal | 0.223 | 0.179 | 0.045 | 0.0000000 | 0.211 | 0.167 | 0.044 | 4.14e-10 |
Breast_Cancer | MegaPRS.10FCVal | pT+clump.10FCVal | 0.220 | 0.179 | 0.041 | 0.0000000 | 0.213 | 0.167 | 0.046 | 2.20e-10 |
Breast_Cancer | LDpred1.MultiPRS | pT+clump.10FCVal | 0.211 | 0.179 | 0.032 | 0.0000009 | 0.195 | 0.167 | 0.027 | 5.69e-04 |
Breast_Cancer | lassosum.10FCVal | pT+clump.10FCVal | 0.219 | 0.179 | 0.040 | 0.0000000 | 0.199 | 0.167 | 0.032 | 1.31e-06 |
Breast_Cancer | All.MultiPRS | pT+clump.10FCVal | 0.229 | 0.179 | 0.050 | 0.0000000 | 0.218 | 0.167 | 0.051 | 5.09e-15 |
Breast_Cancer | LDpred1.Inf | pT+clump.10FCVal | 0.172 | 0.179 | -0.007 | 0.1609807 | 0.162 | 0.167 | -0.005 | 5.92e-01 |
Breast_Cancer | LDpred1.10FCVal | pT+clump.10FCVal | 0.201 | 0.179 | 0.022 | 0.0000003 | 0.186 | 0.167 | 0.019 | 2.75e-02 |
Breast_Cancer | lassosum.MultiPRS | pT+clump.10FCVal | 0.225 | 0.179 | 0.047 | 0.0000000 | 0.212 | 0.167 | 0.045 | 3.14e-12 |
Breast_Cancer | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.217 | 0.179 | 0.039 | 0.0000000 | 0.211 | 0.167 | 0.044 | 1.63e-09 |
Breast_Cancer | lassosum.PseudoVal | pT+clump.10FCVal | 0.217 | 0.179 | 0.038 | 0.0000000 | 0.199 | 0.167 | 0.032 | 7.03e-08 |
Breast_Cancer | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.225 | 0.179 | 0.047 | 0.0000000 | 0.211 | 0.167 | 0.044 | 2.19e-10 |
Breast_Cancer | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.221 | 0.221 | 0.000 | 1.0000000 | 0.205 | 0.205 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.224 | 0.221 | 0.003 | 0.6196671 | 0.211 | 0.205 | 0.006 | 1.61e-01 |
Breast_Cancer | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.211 | 0.221 | -0.010 | 0.1358480 | 0.195 | 0.205 | -0.010 | 7.84e-02 |
Breast_Cancer | PRScs.PseudoVal | SBayesR.PseudoVal | 0.220 | 0.221 | 0.000 | 0.8317042 | 0.208 | 0.205 | 0.003 | 5.56e-01 |
Breast_Cancer | All.MultiPRS | SBayesR.PseudoVal | 0.229 | 0.221 | 0.008 | 0.2362003 | 0.218 | 0.205 | 0.013 | 3.21e-05 |
Breast_Cancer | PRScs.MultiPRS | SBayesR.PseudoVal | 0.222 | 0.221 | 0.001 | 0.8687079 | 0.210 | 0.205 | 0.006 | 1.68e-01 |
Breast_Cancer | LDpred2.10FCVal | SBayesR.PseudoVal | 0.223 | 0.221 | 0.003 | 0.2436459 | 0.211 | 0.205 | 0.006 | 1.76e-01 |
Breast_Cancer | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.217 | 0.221 | -0.003 | 0.1759892 | 0.212 | 0.205 | 0.007 | 1.76e-01 |
Breast_Cancer | pT+clump.10FCVal | SBayesR.PseudoVal | 0.179 | 0.221 | -0.042 | 0.0000000 | 0.167 | 0.205 | -0.038 | 1.01e-09 |
Breast_Cancer | lassosum.PseudoVal | SBayesR.PseudoVal | 0.217 | 0.221 | -0.004 | 0.0356760 | 0.199 | 0.205 | -0.006 | 1.10e-01 |
Breast_Cancer | LDpred2.Inf | SBayesR.PseudoVal | 0.168 | 0.221 | -0.053 | 0.0000000 | 0.160 | 0.205 | -0.045 | 7.43e-07 |
Breast_Cancer | PRScs.10FCVal | SBayesR.PseudoVal | 0.220 | 0.221 | -0.001 | 0.5855319 | 0.207 | 0.205 | 0.002 | 6.20e-01 |
Breast_Cancer | SBLUP.Inf | SBayesR.PseudoVal | 0.168 | 0.221 | -0.053 | 0.0000000 | 0.158 | 0.205 | -0.047 | 2.98e-07 |
Breast_Cancer | lassosum.MultiPRS | SBayesR.PseudoVal | 0.225 | 0.221 | 0.004 | 0.5268258 | 0.212 | 0.205 | 0.007 | 6.17e-02 |
Breast_Cancer | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.169 | 0.221 | -0.052 | 0.0000000 | 0.161 | 0.205 | -0.044 | 7.91e-07 |
Breast_Cancer | lassosum.10FCVal | SBayesR.PseudoVal | 0.219 | 0.221 | -0.002 | 0.4322928 | 0.199 | 0.205 | -0.006 | 1.88e-01 |
Breast_Cancer | LDpred1.Inf | SBayesR.PseudoVal | 0.172 | 0.221 | -0.049 | 0.0000000 | 0.162 | 0.205 | -0.043 | 1.16e-06 |
Breast_Cancer | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.200 | 0.221 | -0.021 | 0.0023377 | 0.188 | 0.205 | -0.017 | 1.95e-03 |
Breast_Cancer | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.217 | 0.221 | -0.003 | 0.1866117 | 0.211 | 0.205 | 0.006 | 2.63e-01 |
Breast_Cancer | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.225 | 0.221 | 0.004 | 0.5116461 | 0.211 | 0.205 | 0.006 | 1.71e-01 |
Breast_Cancer | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.220 | 0.221 | -0.001 | 0.7674232 | 0.213 | 0.205 | 0.008 | 1.16e-01 |
Breast_Cancer | LDpred1.10FCVal | SBayesR.PseudoVal | 0.201 | 0.221 | -0.020 | 0.0000000 | 0.186 | 0.205 | -0.019 | 6.82e-03 |
Breast_Cancer | All.MultiPRS | SBLUP.Inf | 0.229 | 0.168 | 0.061 | 0.0000000 | 0.218 | 0.158 | 0.060 | 2.61e-17 |
Breast_Cancer | LDpred2.MultiPRS | SBLUP.Inf | 0.224 | 0.168 | 0.057 | 0.0000000 | 0.211 | 0.158 | 0.052 | 5.15e-13 |
Breast_Cancer | PRScs.PseudoVal | SBLUP.Inf | 0.220 | 0.168 | 0.053 | 0.0000000 | 0.208 | 0.158 | 0.049 | 6.60e-16 |
Breast_Cancer | lassosum.PseudoVal | SBLUP.Inf | 0.217 | 0.168 | 0.049 | 0.0000000 | 0.199 | 0.158 | 0.041 | 7.57e-06 |
Breast_Cancer | LDpred2.Inf | SBLUP.Inf | 0.168 | 0.168 | 0.000 | 0.9241242 | 0.160 | 0.158 | 0.002 | 2.14e-01 |
Breast_Cancer | MegaPRS.PseudoVal | SBLUP.Inf | 0.217 | 0.168 | 0.050 | 0.0000000 | 0.212 | 0.158 | 0.054 | 2.34e-15 |
Breast_Cancer | pT+clump.10FCVal | SBLUP.Inf | 0.179 | 0.168 | 0.011 | 0.0297637 | 0.167 | 0.158 | 0.009 | 3.86e-01 |
Breast_Cancer | lassosum.MultiPRS | SBLUP.Inf | 0.225 | 0.168 | 0.057 | 0.0000000 | 0.212 | 0.158 | 0.054 | 2.59e-13 |
Breast_Cancer | LDpred2.PseudoVal | SBLUP.Inf | 0.169 | 0.168 | 0.001 | 0.1601193 | 0.161 | 0.158 | 0.002 | 1.04e-01 |
Breast_Cancer | LDpred1.MultiPRS | SBLUP.Inf | 0.211 | 0.168 | 0.043 | 0.0000000 | 0.195 | 0.158 | 0.036 | 6.15e-09 |
Breast_Cancer | MegaPRS.10FCVal | SBLUP.Inf | 0.220 | 0.168 | 0.052 | 0.0000000 | 0.213 | 0.158 | 0.055 | 1.29e-16 |
Breast_Cancer | pT+clump.MultiPRS | SBLUP.Inf | 0.200 | 0.168 | 0.032 | 0.0000025 | 0.188 | 0.158 | 0.029 | 1.42e-04 |
Breast_Cancer | DBSLMM.PseudoVal | SBLUP.Inf | 0.217 | 0.168 | 0.050 | 0.0000000 | 0.211 | 0.158 | 0.052 | 6.94e-19 |
Breast_Cancer | LDpred2.10FCVal | SBLUP.Inf | 0.223 | 0.168 | 0.056 | 0.0000000 | 0.211 | 0.158 | 0.053 | 7.01e-16 |
Breast_Cancer | LDpred1.Inf | SBLUP.Inf | 0.172 | 0.168 | 0.004 | 0.0003484 | 0.162 | 0.158 | 0.004 | 1.23e-01 |
Breast_Cancer | SBayesR.PseudoVal | SBLUP.Inf | 0.221 | 0.168 | 0.053 | 0.0000000 | 0.205 | 0.158 | 0.047 | 2.98e-07 |
Breast_Cancer | SBLUP.Inf | SBLUP.Inf | 0.168 | 0.168 | 0.000 | 1.0000000 | 0.158 | 0.158 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.MultiPRS | SBLUP.Inf | 0.225 | 0.168 | 0.058 | 0.0000000 | 0.211 | 0.158 | 0.052 | 5.49e-13 |
Breast_Cancer | PRScs.10FCVal | SBLUP.Inf | 0.220 | 0.168 | 0.052 | 0.0000000 | 0.207 | 0.158 | 0.049 | 1.77e-14 |
Breast_Cancer | LDpred1.10FCVal | SBLUP.Inf | 0.201 | 0.168 | 0.033 | 0.0000000 | 0.186 | 0.158 | 0.028 | 3.98e-11 |
Breast_Cancer | lassosum.10FCVal | SBLUP.Inf | 0.219 | 0.168 | 0.051 | 0.0000000 | 0.199 | 0.158 | 0.041 | 1.27e-07 |
Breast_Cancer | PRScs.MultiPRS | SBLUP.Inf | 0.222 | 0.168 | 0.054 | 0.0000000 | 0.210 | 0.158 | 0.052 | 3.63e-15 |
Show differences between methods
Show results
Show TEDS results table
Phenotype | Method | Model | IndepVal_R | IndepVal_R_SE | IndepVal_pval |
---|---|---|---|---|---|
Height21 | All | MultiPRS | 0.441 | 0.027 | 3.34e-53 |
Height21 | DBSLMM | PseudoVal | 0.428 | 0.027 | 6.01e-50 |
Height21 | lassosum | MultiPRS | 0.431 | 0.027 | 1.88e-50 |
Height21 | lassosum | 10FCVal | 0.425 | 0.027 | 4.36e-49 |
Height21 | lassosum | PseudoVal | 0.354 | 0.028 | 1.63e-33 |
Height21 | MegaPRS | MultiPRS | 0.429 | 0.027 | 5.65e-50 |
Height21 | MegaPRS | PseudoVal | 0.385 | 0.028 | 8.49e-40 |
Height21 | MegaPRS | 10FCVal | 0.427 | 0.027 | 1.11e-49 |
Height21 | LDpred1 | MultiPRS | 0.397 | 0.028 | 1.88e-42 |
Height21 | LDpred1 | Inf | 0.390 | 0.028 | 6.17e-41 |
Height21 | LDpred1 | 10FCVal | 0.383 | 0.028 | 2.33e-39 |
Height21 | LDpred2 | MultiPRS | 0.432 | 0.027 | 7.46e-51 |
Height21 | LDpred2 | 10FCVal | 0.445 | 0.027 | 2.71e-54 |
Height21 | LDpred2 | PseudoVal | 0.394 | 0.028 | 6.43e-42 |
Height21 | LDpred2 | Inf | 0.395 | 0.028 | 5.92e-42 |
Height21 | PRScs | MultiPRS | 0.437 | 0.027 | 4.40e-52 |
Height21 | PRScs | 10FCVal | 0.434 | 0.027 | 2.21e-51 |
Height21 | PRScs | PseudoVal | 0.435 | 0.027 | 1.53e-51 |
Height21 | pT+clump | MultiPRS | 0.389 | 0.028 | 1.01e-40 |
Height21 | pT+clump | 10FCVal | 0.353 | 0.028 | 1.90e-33 |
Height21 | SBayesR | PseudoVal | 0.434 | 0.027 | 2.34e-51 |
Height21 | SBLUP | Inf | 0.387 | 0.028 | 2.32e-40 |
BMI21 | All | MultiPRS | 0.338 | 0.029 | 2.94e-29 |
BMI21 | DBSLMM | PseudoVal | 0.303 | 0.030 | 1.47e-23 |
BMI21 | lassosum | MultiPRS | 0.334 | 0.029 | 1.21e-28 |
BMI21 | lassosum | 10FCVal | 0.332 | 0.029 | 2.79e-28 |
BMI21 | lassosum | PseudoVal | 0.231 | 0.030 | 4.64e-14 |
BMI21 | MegaPRS | MultiPRS | 0.343 | 0.029 | 3.13e-30 |
BMI21 | MegaPRS | 10FCVal | 0.353 | 0.029 | 5.47e-32 |
BMI21 | MegaPRS | PseudoVal | 0.353 | 0.029 | 5.47e-32 |
BMI21 | LDpred1 | MultiPRS | 0.306 | 0.029 | 4.85e-24 |
BMI21 | LDpred1 | Inf | 0.298 | 0.030 | 8.50e-23 |
BMI21 | LDpred1 | 10FCVal | 0.306 | 0.029 | 5.09e-24 |
BMI21 | LDpred2 | MultiPRS | 0.308 | 0.029 | 2.00e-24 |
BMI21 | LDpred2 | 10FCVal | 0.315 | 0.029 | 1.84e-25 |
BMI21 | LDpred2 | PseudoVal | 0.290 | 0.030 | 9.52e-22 |
BMI21 | LDpred2 | Inf | 0.290 | 0.030 | 9.80e-22 |
BMI21 | PRScs | MultiPRS | 0.325 | 0.029 | 4.41e-27 |
BMI21 | PRScs | 10FCVal | 0.326 | 0.029 | 2.69e-27 |
BMI21 | PRScs | PseudoVal | 0.302 | 0.030 | 2.10e-23 |
BMI21 | pT+clump | MultiPRS | 0.295 | 0.030 | 2.36e-22 |
BMI21 | pT+clump | 10FCVal | 0.301 | 0.030 | 2.84e-23 |
BMI21 | SBayesR | PseudoVal | 0.290 | 0.030 | 1.09e-21 |
BMI21 | SBLUP | Inf | 0.299 | 0.030 | 6.00e-23 |
GCSE | All | MultiPRS | 0.357 | 0.024 | 2.98e-45 |
GCSE | DBSLMM | PseudoVal | 0.337 | 0.025 | 4.74e-40 |
GCSE | lassosum | MultiPRS | 0.347 | 0.025 | 1.61e-42 |
GCSE | lassosum | 10FCVal | 0.348 | 0.025 | 9.42e-43 |
GCSE | lassosum | PseudoVal | 0.276 | 0.025 | 6.05e-27 |
GCSE | MegaPRS | MultiPRS | 0.362 | 0.024 | 1.43e-46 |
GCSE | MegaPRS | PseudoVal | 0.359 | 0.024 | 1.46e-45 |
GCSE | MegaPRS | 10FCVal | 0.362 | 0.024 | 2.50e-46 |
GCSE | LDpred1 | MultiPRS | 0.340 | 0.025 | 9.04e-41 |
GCSE | LDpred1 | Inf | 0.341 | 0.025 | 4.43e-41 |
GCSE | LDpred1 | 10FCVal | 0.330 | 0.025 | 1.55e-38 |
GCSE | LDpred2 | MultiPRS | 0.339 | 0.025 | 1.49e-40 |
GCSE | LDpred2 | 10FCVal | 0.342 | 0.025 | 2.45e-41 |
GCSE | LDpred2 | PseudoVal | 0.332 | 0.025 | 5.58e-39 |
GCSE | LDpred2 | Inf | 0.331 | 0.025 | 1.34e-38 |
GCSE | PRScs | MultiPRS | 0.346 | 0.025 | 2.86e-42 |
GCSE | PRScs | 10FCVal | 0.341 | 0.025 | 5.82e-41 |
GCSE | PRScs | PseudoVal | 0.351 | 0.025 | 1.34e-43 |
GCSE | pT+clump | MultiPRS | 0.328 | 0.025 | 5.13e-38 |
GCSE | pT+clump | 10FCVal | 0.311 | 0.025 | 3.63e-34 |
GCSE | SBayesR | PseudoVal | 0.331 | 0.025 | 1.23e-38 |
GCSE | SBLUP | Inf | 0.335 | 0.025 | 1.61e-39 |
ADHD | All | MultiPRS | 0.173 | 0.025 | 4.87e-12 |
ADHD | DBSLMM | PseudoVal | 0.184 | 0.025 | 2.11e-13 |
ADHD | lassosum | MultiPRS | 0.199 | 0.025 | 1.69e-15 |
ADHD | lassosum | PseudoVal | 0.118 | 0.025 | 2.58e-06 |
ADHD | lassosum | 10FCVal | 0.194 | 0.025 | 8.52e-15 |
ADHD | MegaPRS | MultiPRS | 0.177 | 0.025 | 1.33e-12 |
ADHD | MegaPRS | PseudoVal | 0.182 | 0.025 | 3.09e-13 |
ADHD | MegaPRS | 10FCVal | 0.181 | 0.025 | 4.81e-13 |
ADHD | LDpred1 | MultiPRS | 0.191 | 0.025 | 1.83e-14 |
ADHD | LDpred1 | Inf | 0.191 | 0.025 | 1.77e-14 |
ADHD | LDpred1 | 10FCVal | 0.190 | 0.025 | 2.60e-14 |
ADHD | LDpred2 | MultiPRS | 0.199 | 0.025 | 1.81e-15 |
ADHD | LDpred2 | 10FCVal | 0.198 | 0.025 | 1.97e-15 |
ADHD | LDpred2 | PseudoVal | 0.195 | 0.025 | 6.11e-15 |
ADHD | LDpred2 | Inf | 0.194 | 0.025 | 6.97e-15 |
ADHD | PRScs | MultiPRS | 0.203 | 0.025 | 4.72e-16 |
ADHD | PRScs | 10FCVal | 0.207 | 0.025 | 9.33e-17 |
ADHD | PRScs | PseudoVal | 0.189 | 0.025 | 3.84e-14 |
ADHD | pT+clump | MultiPRS | 0.162 | 0.025 | 1.09e-10 |
ADHD | pT+clump | 10FCVal | 0.150 | 0.025 | 2.46e-09 |
ADHD | SBayesR | PseudoVal | 0.155 | 0.025 | 5.89e-10 |
ADHD | SBLUP | Inf | 0.193 | 0.025 | 1.06e-14 |
Show results compared to pT+clump
Show difference results table
Phenotype | Model 1 Test | Model 2 Test | Model 1 IndepVal R | Model 2 IndepVal R | IndepVal R Diff | IndepVal R Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|---|
Height21 | DBSLMM.PseudoVal | All.MultiPRS | 0.417 | 0.453 | -0.036 | 4.79e-02 | 0.428 | 0.441 | -0.013 | 2.30e-01 |
Height21 | SBayesR.PseudoVal | All.MultiPRS | 0.428 | 0.453 | -0.024 | 1.81e-01 | 0.434 | 0.441 | -0.007 | 4.64e-01 |
Height21 | lassosum.10FCVal | All.MultiPRS | 0.435 | 0.453 | -0.018 | 3.26e-01 | 0.425 | 0.441 | -0.016 | 6.21e-02 |
Height21 | LDpred2.10FCVal | All.MultiPRS | 0.431 | 0.453 | -0.021 | 2.40e-01 | 0.445 | 0.441 | 0.004 | 6.50e-01 |
Height21 | MegaPRS.MultiPRS | All.MultiPRS | 0.442 | 0.453 | -0.010 | 5.62e-01 | 0.429 | 0.441 | -0.013 | 5.42e-02 |
Height21 | PRScs.10FCVal | All.MultiPRS | 0.429 | 0.453 | -0.023 | 1.95e-01 | 0.434 | 0.441 | -0.007 | 4.14e-01 |
Height21 | LDpred2.Inf | All.MultiPRS | 0.379 | 0.453 | -0.074 | 6.15e-05 | 0.395 | 0.441 | -0.047 | 1.93e-03 |
Height21 | MegaPRS.10FCVal | All.MultiPRS | 0.426 | 0.453 | -0.027 | 1.41e-01 | 0.427 | 0.441 | -0.014 | 1.58e-01 |
Height21 | pT+clump.MultiPRS | All.MultiPRS | 0.399 | 0.453 | -0.054 | 3.08e-03 | 0.389 | 0.441 | -0.052 | 3.95e-05 |
Height21 | lassosum.PseudoVal | All.MultiPRS | 0.357 | 0.453 | -0.095 | 2.80e-07 | 0.354 | 0.441 | -0.087 | 3.92e-07 |
Height21 | PRScs.MultiPRS | All.MultiPRS | 0.435 | 0.453 | -0.017 | 2.35e-05 | 0.437 | 0.441 | -0.004 | 5.82e-01 |
Height21 | LDpred1.Inf | All.MultiPRS | 0.378 | 0.453 | -0.075 | 4.72e-05 | 0.390 | 0.441 | -0.051 | 5.45e-04 |
Height21 | MegaPRS.PseudoVal | All.MultiPRS | 0.406 | 0.453 | -0.046 | 1.09e-02 | 0.385 | 0.441 | -0.057 | 5.67e-06 |
Height21 | PRScs.PseudoVal | All.MultiPRS | 0.436 | 0.453 | -0.017 | 3.41e-01 | 0.435 | 0.441 | -0.006 | 4.35e-01 |
Height21 | All.MultiPRS | All.MultiPRS | 0.453 | 0.453 | 0.000 | 1.00e+00 | 0.441 | 0.441 | 0.000 | 1.00e+00 |
Height21 | LDpred2.MultiPRS | All.MultiPRS | 0.440 | 0.453 | -0.012 | 4.92e-01 | 0.432 | 0.441 | -0.009 | 2.96e-01 |
Height21 | LDpred1.MultiPRS | All.MultiPRS | 0.384 | 0.453 | -0.069 | 1.73e-04 | 0.397 | 0.441 | -0.045 | 1.90e-03 |
Height21 | pT+clump.10FCVal | All.MultiPRS | 0.387 | 0.453 | -0.065 | 4.20e-04 | 0.353 | 0.441 | -0.088 | 9.87e-09 |
Height21 | lassosum.MultiPRS | All.MultiPRS | 0.440 | 0.453 | -0.013 | 4.72e-01 | 0.431 | 0.441 | -0.011 | 1.41e-01 |
Height21 | LDpred2.PseudoVal | All.MultiPRS | 0.378 | 0.453 | -0.074 | 5.31e-05 | 0.394 | 0.441 | -0.047 | 2.02e-03 |
Height21 | LDpred1.10FCVal | All.MultiPRS | 0.380 | 0.453 | -0.073 | 7.65e-05 | 0.383 | 0.441 | -0.059 | 1.51e-04 |
Height21 | SBLUP.Inf | All.MultiPRS | 0.378 | 0.453 | -0.075 | 4.63e-05 | 0.387 | 0.441 | -0.054 | 5.14e-04 |
Height21 | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.436 | 0.417 | 0.019 | 1.39e-04 | 0.435 | 0.428 | 0.006 | 5.00e-01 |
Height21 | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.428 | 0.417 | 0.012 | 1.08e-01 | 0.434 | 0.428 | 0.006 | 6.83e-01 |
Height21 | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.440 | 0.417 | 0.024 | 1.97e-01 | 0.432 | 0.428 | 0.004 | 7.74e-01 |
Height21 | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.435 | 0.417 | 0.018 | 3.13e-01 | 0.437 | 0.428 | 0.008 | 3.43e-01 |
Height21 | LDpred1.Inf | DBSLMM.PseudoVal | 0.378 | 0.417 | -0.039 | 4.36e-10 | 0.390 | 0.428 | -0.039 | 1.86e-03 |
Height21 | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.399 | 0.417 | -0.018 | 3.30e-01 | 0.389 | 0.428 | -0.040 | 3.94e-03 |
Height21 | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.431 | 0.417 | 0.015 | 6.35e-03 | 0.445 | 0.428 | 0.017 | 1.08e-01 |
Height21 | lassosum.10FCVal | DBSLMM.PseudoVal | 0.435 | 0.417 | 0.018 | 5.36e-03 | 0.425 | 0.428 | -0.003 | 7.82e-01 |
Height21 | LDpred2.Inf | DBSLMM.PseudoVal | 0.379 | 0.417 | -0.038 | 1.96e-09 | 0.395 | 0.428 | -0.034 | 8.97e-03 |
Height21 | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.406 | 0.417 | -0.010 | 2.44e-01 | 0.385 | 0.428 | -0.044 | 7.96e-03 |
Height21 | All.MultiPRS | DBSLMM.PseudoVal | 0.453 | 0.417 | 0.036 | 4.79e-02 | 0.441 | 0.428 | 0.013 | 2.30e-01 |
Height21 | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.440 | 0.417 | 0.023 | 2.06e-01 | 0.431 | 0.428 | 0.002 | 8.45e-01 |
Height21 | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.378 | 0.417 | -0.038 | 1.30e-09 | 0.394 | 0.428 | -0.034 | 8.94e-03 |
Height21 | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.384 | 0.417 | -0.033 | 7.50e-02 | 0.397 | 0.428 | -0.032 | 1.13e-02 |
Height21 | SBLUP.Inf | DBSLMM.PseudoVal | 0.378 | 0.417 | -0.039 | 3.12e-10 | 0.387 | 0.428 | -0.041 | 1.27e-03 |
Height21 | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.357 | 0.417 | -0.059 | 6.20e-08 | 0.354 | 0.428 | -0.075 | 3.14e-04 |
Height21 | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.417 | 0.417 | 0.000 | 1.00e+00 | 0.428 | 0.428 | 0.000 | 1.00e+00 |
Height21 | PRScs.10FCVal | DBSLMM.PseudoVal | 0.429 | 0.417 | 0.013 | 2.65e-02 | 0.434 | 0.428 | 0.006 | 5.88e-01 |
Height21 | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.380 | 0.417 | -0.037 | 8.68e-08 | 0.383 | 0.428 | -0.046 | 1.34e-03 |
Height21 | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.387 | 0.417 | -0.029 | 1.69e-03 | 0.353 | 0.428 | -0.075 | 5.64e-05 |
Height21 | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.442 | 0.417 | 0.026 | 1.60e-01 | 0.429 | 0.428 | 0.000 | 9.92e-01 |
Height21 | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.426 | 0.417 | 0.009 | 1.42e-01 | 0.427 | 0.428 | -0.001 | 9.31e-01 |
Height21 | LDpred2.MultiPRS | lassosum.MultiPRS | 0.440 | 0.440 | 0.001 | 9.75e-01 | 0.432 | 0.431 | 0.002 | 8.71e-01 |
Height21 | LDpred2.PseudoVal | lassosum.MultiPRS | 0.378 | 0.440 | -0.061 | 9.49e-04 | 0.394 | 0.431 | -0.036 | 1.92e-02 |
Height21 | PRScs.MultiPRS | lassosum.MultiPRS | 0.435 | 0.440 | -0.005 | 7.98e-01 | 0.437 | 0.431 | 0.006 | 3.51e-01 |
Height21 | LDpred2.Inf | lassosum.MultiPRS | 0.379 | 0.440 | -0.061 | 1.07e-03 | 0.395 | 0.431 | -0.036 | 1.88e-02 |
Height21 | PRScs.PseudoVal | lassosum.MultiPRS | 0.436 | 0.440 | -0.004 | 8.16e-01 | 0.435 | 0.431 | 0.004 | 5.60e-01 |
Height21 | pT+clump.MultiPRS | lassosum.MultiPRS | 0.399 | 0.440 | -0.041 | 2.69e-02 | 0.389 | 0.431 | -0.042 | 1.31e-03 |
Height21 | PRScs.10FCVal | lassosum.MultiPRS | 0.429 | 0.440 | -0.011 | 5.61e-01 | 0.434 | 0.431 | 0.004 | 6.32e-01 |
Height21 | LDpred2.10FCVal | lassosum.MultiPRS | 0.431 | 0.440 | -0.008 | 6.49e-01 | 0.445 | 0.431 | 0.015 | 1.25e-01 |
Height21 | pT+clump.10FCVal | lassosum.MultiPRS | 0.387 | 0.440 | -0.052 | 4.46e-03 | 0.353 | 0.431 | -0.077 | 2.15e-06 |
Height21 | SBayesR.PseudoVal | lassosum.MultiPRS | 0.428 | 0.440 | -0.011 | 5.35e-01 | 0.434 | 0.431 | 0.004 | 7.46e-01 |
Height21 | lassosum.PseudoVal | lassosum.MultiPRS | 0.357 | 0.440 | -0.083 | 9.39e-06 | 0.354 | 0.431 | -0.077 | 1.98e-06 |
Height21 | All.MultiPRS | lassosum.MultiPRS | 0.453 | 0.440 | 0.013 | 4.72e-01 | 0.441 | 0.431 | 0.011 | 1.41e-01 |
Height21 | SBLUP.Inf | lassosum.MultiPRS | 0.378 | 0.440 | -0.062 | 8.41e-04 | 0.387 | 0.431 | -0.043 | 5.74e-03 |
Height21 | LDpred1.MultiPRS | lassosum.MultiPRS | 0.384 | 0.440 | -0.056 | 2.53e-03 | 0.397 | 0.431 | -0.034 | 2.33e-02 |
Height21 | MegaPRS.10FCVal | lassosum.MultiPRS | 0.426 | 0.440 | -0.014 | 4.52e-01 | 0.427 | 0.431 | -0.003 | 8.06e-01 |
Height21 | lassosum.MultiPRS | lassosum.MultiPRS | 0.440 | 0.440 | 0.000 | 1.00e+00 | 0.431 | 0.431 | 0.000 | 1.00e+00 |
Height21 | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.417 | 0.440 | -0.023 | 2.06e-01 | 0.428 | 0.431 | -0.002 | 8.45e-01 |
Height21 | LDpred1.10FCVal | lassosum.MultiPRS | 0.380 | 0.440 | -0.060 | 1.23e-03 | 0.383 | 0.431 | -0.048 | 2.96e-03 |
Height21 | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.406 | 0.440 | -0.033 | 6.94e-02 | 0.385 | 0.431 | -0.046 | 1.31e-03 |
Height21 | LDpred1.Inf | lassosum.MultiPRS | 0.378 | 0.440 | -0.062 | 8.53e-04 | 0.390 | 0.431 | -0.041 | 7.00e-03 |
Height21 | lassosum.10FCVal | lassosum.MultiPRS | 0.435 | 0.440 | -0.005 | 7.90e-01 | 0.425 | 0.431 | -0.005 | 2.83e-01 |
Height21 | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.442 | 0.440 | 0.002 | 8.91e-01 | 0.429 | 0.431 | -0.002 | 8.44e-01 |
Height21 | MegaPRS.10FCVal | lassosum.10FCVal | 0.426 | 0.435 | -0.009 | 2.06e-01 | 0.427 | 0.425 | 0.002 | 8.63e-01 |
Height21 | PRScs.MultiPRS | lassosum.10FCVal | 0.435 | 0.435 | 0.000 | 9.92e-01 | 0.437 | 0.425 | 0.012 | 1.15e-01 |
Height21 | LDpred1.Inf | lassosum.10FCVal | 0.378 | 0.435 | -0.057 | 2.80e-11 | 0.390 | 0.425 | -0.035 | 3.47e-02 |
Height21 | pT+clump.MultiPRS | lassosum.10FCVal | 0.399 | 0.435 | -0.036 | 4.78e-02 | 0.389 | 0.425 | -0.036 | 6.07e-03 |
Height21 | All.MultiPRS | lassosum.10FCVal | 0.453 | 0.435 | 0.018 | 3.26e-01 | 0.441 | 0.425 | 0.016 | 6.21e-02 |
Height21 | LDpred2.MultiPRS | lassosum.10FCVal | 0.440 | 0.435 | 0.005 | 7.67e-01 | 0.432 | 0.425 | 0.007 | 4.63e-01 |
Height21 | SBayesR.PseudoVal | lassosum.10FCVal | 0.428 | 0.435 | -0.006 | 2.47e-01 | 0.434 | 0.425 | 0.009 | 4.12e-01 |
Height21 | lassosum.MultiPRS | lassosum.10FCVal | 0.440 | 0.435 | 0.005 | 7.90e-01 | 0.431 | 0.425 | 0.005 | 2.83e-01 |
Height21 | LDpred2.PseudoVal | lassosum.10FCVal | 0.378 | 0.435 | -0.057 | 3.18e-11 | 0.394 | 0.425 | -0.031 | 6.83e-02 |
Height21 | LDpred1.10FCVal | lassosum.10FCVal | 0.380 | 0.435 | -0.055 | 3.22e-10 | 0.383 | 0.425 | -0.042 | 1.60e-02 |
Height21 | SBLUP.Inf | lassosum.10FCVal | 0.378 | 0.435 | -0.057 | 1.04e-10 | 0.387 | 0.425 | -0.038 | 2.97e-02 |
Height21 | lassosum.PseudoVal | lassosum.10FCVal | 0.357 | 0.435 | -0.078 | 3.45e-24 | 0.354 | 0.425 | -0.071 | 1.41e-06 |
Height21 | DBSLMM.PseudoVal | lassosum.10FCVal | 0.417 | 0.435 | -0.018 | 5.36e-03 | 0.428 | 0.425 | 0.003 | 7.82e-01 |
Height21 | LDpred2.10FCVal | lassosum.10FCVal | 0.431 | 0.435 | -0.003 | 5.20e-01 | 0.445 | 0.425 | 0.020 | 5.12e-02 |
Height21 | MegaPRS.PseudoVal | lassosum.10FCVal | 0.406 | 0.435 | -0.028 | 1.57e-04 | 0.385 | 0.425 | -0.040 | 6.07e-03 |
Height21 | PRScs.PseudoVal | lassosum.10FCVal | 0.436 | 0.435 | 0.001 | 8.87e-01 | 0.435 | 0.425 | 0.010 | 2.06e-01 |
Height21 | lassosum.10FCVal | lassosum.10FCVal | 0.435 | 0.435 | 0.000 | 1.00e+00 | 0.425 | 0.425 | 0.000 | 1.00e+00 |
Height21 | LDpred2.Inf | lassosum.10FCVal | 0.379 | 0.435 | -0.056 | 2.98e-11 | 0.395 | 0.425 | -0.030 | 6.61e-02 |
Height21 | LDpred1.MultiPRS | lassosum.10FCVal | 0.384 | 0.435 | -0.051 | 5.47e-03 | 0.397 | 0.425 | -0.028 | 8.65e-02 |
Height21 | pT+clump.10FCVal | lassosum.10FCVal | 0.387 | 0.435 | -0.048 | 7.29e-09 | 0.353 | 0.425 | -0.072 | 8.44e-06 |
Height21 | MegaPRS.MultiPRS | lassosum.10FCVal | 0.442 | 0.435 | 0.007 | 6.88e-01 | 0.429 | 0.425 | 0.004 | 7.46e-01 |
Height21 | PRScs.10FCVal | lassosum.10FCVal | 0.429 | 0.435 | -0.006 | 1.40e-01 | 0.434 | 0.425 | 0.009 | 2.25e-01 |
Height21 | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.442 | 0.357 | 0.085 | 4.67e-06 | 0.429 | 0.354 | 0.075 | 1.84e-04 |
Height21 | PRScs.10FCVal | lassosum.PseudoVal | 0.429 | 0.357 | 0.072 | 2.39e-20 | 0.434 | 0.354 | 0.080 | 1.34e-07 |
Height21 | lassosum.MultiPRS | lassosum.PseudoVal | 0.440 | 0.357 | 0.083 | 9.39e-06 | 0.431 | 0.354 | 0.077 | 1.98e-06 |
Height21 | LDpred2.PseudoVal | lassosum.PseudoVal | 0.378 | 0.357 | 0.021 | 1.13e-01 | 0.394 | 0.354 | 0.041 | 1.11e-01 |
Height21 | MegaPRS.10FCVal | lassosum.PseudoVal | 0.426 | 0.357 | 0.069 | 1.07e-09 | 0.427 | 0.354 | 0.074 | 6.49e-04 |
Height21 | pT+clump.MultiPRS | lassosum.PseudoVal | 0.399 | 0.357 | 0.041 | 2.80e-02 | 0.389 | 0.354 | 0.035 | 7.68e-02 |
Height21 | lassosum.PseudoVal | lassosum.PseudoVal | 0.357 | 0.357 | 0.000 | 1.00e+00 | 0.354 | 0.354 | 0.000 | 1.00e+00 |
Height21 | PRScs.MultiPRS | lassosum.PseudoVal | 0.435 | 0.357 | 0.078 | 3.06e-05 | 0.437 | 0.354 | 0.083 | 4.73e-07 |
Height21 | LDpred1.Inf | lassosum.PseudoVal | 0.378 | 0.357 | 0.021 | 1.22e-01 | 0.390 | 0.354 | 0.036 | 1.56e-01 |
Height21 | SBayesR.PseudoVal | lassosum.PseudoVal | 0.428 | 0.357 | 0.071 | 1.23e-20 | 0.434 | 0.354 | 0.080 | 1.23e-07 |
Height21 | PRScs.PseudoVal | lassosum.PseudoVal | 0.436 | 0.357 | 0.078 | 4.38e-19 | 0.435 | 0.354 | 0.081 | 1.75e-06 |
Height21 | All.MultiPRS | lassosum.PseudoVal | 0.453 | 0.357 | 0.095 | 2.80e-07 | 0.441 | 0.354 | 0.087 | 3.92e-07 |
Height21 | LDpred2.MultiPRS | lassosum.PseudoVal | 0.440 | 0.357 | 0.083 | 8.31e-06 | 0.432 | 0.354 | 0.078 | 9.14e-06 |
Height21 | LDpred1.MultiPRS | lassosum.PseudoVal | 0.384 | 0.357 | 0.027 | 1.58e-01 | 0.397 | 0.354 | 0.043 | 8.58e-02 |
Height21 | pT+clump.10FCVal | lassosum.PseudoVal | 0.387 | 0.357 | 0.030 | 4.48e-03 | 0.353 | 0.354 | 0.000 | 9.86e-01 |
Height21 | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.417 | 0.357 | 0.059 | 6.20e-08 | 0.428 | 0.354 | 0.075 | 3.14e-04 |
Height21 | LDpred1.10FCVal | lassosum.PseudoVal | 0.380 | 0.357 | 0.023 | 8.22e-02 | 0.383 | 0.354 | 0.029 | 2.57e-01 |
Height21 | SBLUP.Inf | lassosum.PseudoVal | 0.378 | 0.357 | 0.020 | 1.32e-01 | 0.387 | 0.354 | 0.033 | 2.01e-01 |
Height21 | lassosum.10FCVal | lassosum.PseudoVal | 0.435 | 0.357 | 0.078 | 3.45e-24 | 0.425 | 0.354 | 0.071 | 1.41e-06 |
Height21 | LDpred2.10FCVal | lassosum.PseudoVal | 0.431 | 0.357 | 0.074 | 6.73e-13 | 0.445 | 0.354 | 0.092 | 4.02e-06 |
Height21 | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.406 | 0.357 | 0.049 | 4.26e-06 | 0.385 | 0.354 | 0.031 | 1.34e-01 |
Height21 | LDpred2.Inf | lassosum.PseudoVal | 0.379 | 0.357 | 0.022 | 1.00e-01 | 0.395 | 0.354 | 0.041 | 1.07e-01 |
Height21 | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.428 | 0.442 | -0.014 | 4.47e-01 | 0.434 | 0.429 | 0.005 | 6.68e-01 |
Height21 | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.399 | 0.442 | -0.043 | 1.90e-02 | 0.389 | 0.429 | -0.040 | 3.26e-03 |
Height21 | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.431 | 0.442 | -0.011 | 5.52e-01 | 0.445 | 0.429 | 0.017 | 7.65e-02 |
Height21 | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.406 | 0.442 | -0.036 | 5.08e-02 | 0.385 | 0.429 | -0.044 | 7.00e-05 |
Height21 | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.436 | 0.442 | -0.007 | 7.10e-01 | 0.435 | 0.429 | 0.006 | 5.08e-01 |
Height21 | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.435 | 0.442 | -0.007 | 6.95e-01 | 0.437 | 0.429 | 0.008 | 3.62e-01 |
Height21 | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.440 | 0.442 | -0.002 | 9.16e-01 | 0.432 | 0.429 | 0.004 | 7.50e-01 |
Height21 | LDpred2.Inf | MegaPRS.MultiPRS | 0.379 | 0.442 | -0.063 | 6.03e-04 | 0.395 | 0.429 | -0.034 | 1.11e-02 |
Height21 | SBLUP.Inf | MegaPRS.MultiPRS | 0.378 | 0.442 | -0.064 | 4.81e-04 | 0.387 | 0.429 | -0.041 | 2.28e-03 |
Height21 | All.MultiPRS | MegaPRS.MultiPRS | 0.453 | 0.442 | 0.010 | 5.62e-01 | 0.441 | 0.429 | 0.013 | 5.42e-02 |
Height21 | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.378 | 0.442 | -0.064 | 5.34e-04 | 0.394 | 0.429 | -0.034 | 1.15e-02 |
Height21 | PRScs.10FCVal | MegaPRS.MultiPRS | 0.429 | 0.442 | -0.013 | 4.72e-01 | 0.434 | 0.429 | 0.006 | 5.99e-01 |
Height21 | LDpred1.Inf | MegaPRS.MultiPRS | 0.378 | 0.442 | -0.064 | 4.98e-04 | 0.390 | 0.429 | -0.039 | 3.05e-03 |
Height21 | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.387 | 0.442 | -0.055 | 2.86e-03 | 0.353 | 0.429 | -0.075 | 2.45e-05 |
Height21 | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.417 | 0.442 | -0.026 | 1.60e-01 | 0.428 | 0.429 | 0.000 | 9.92e-01 |
Height21 | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.357 | 0.442 | -0.085 | 4.67e-06 | 0.354 | 0.429 | -0.075 | 1.84e-04 |
Height21 | lassosum.10FCVal | MegaPRS.MultiPRS | 0.435 | 0.442 | -0.007 | 6.88e-01 | 0.425 | 0.429 | -0.004 | 7.46e-01 |
Height21 | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.426 | 0.442 | -0.016 | 3.70e-01 | 0.427 | 0.429 | -0.001 | 8.73e-01 |
Height21 | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.384 | 0.442 | -0.058 | 1.58e-03 | 0.397 | 0.429 | -0.032 | 1.34e-02 |
Height21 | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.440 | 0.442 | -0.002 | 8.91e-01 | 0.431 | 0.429 | 0.002 | 8.44e-01 |
Height21 | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.442 | 0.442 | 0.000 | 1.00e+00 | 0.429 | 0.429 | 0.000 | 1.00e+00 |
Height21 | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.380 | 0.442 | -0.062 | 7.46e-04 | 0.383 | 0.429 | -0.046 | 1.33e-03 |
Height21 | PRScs.10FCVal | MegaPRS.PseudoVal | 0.429 | 0.406 | 0.023 | 3.95e-03 | 0.434 | 0.385 | 0.050 | 1.15e-03 |
Height21 | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.399 | 0.406 | -0.008 | 6.76e-01 | 0.389 | 0.385 | 0.004 | 7.96e-01 |
Height21 | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.431 | 0.406 | 0.025 | 2.29e-03 | 0.445 | 0.385 | 0.061 | 1.59e-04 |
Height21 | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.435 | 0.406 | 0.029 | 1.16e-01 | 0.437 | 0.385 | 0.052 | 5.28e-04 |
Height21 | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.440 | 0.406 | 0.034 | 6.59e-02 | 0.432 | 0.385 | 0.047 | 2.08e-03 |
Height21 | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.428 | 0.406 | 0.022 | 4.26e-03 | 0.434 | 0.385 | 0.049 | 6.68e-04 |
Height21 | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.387 | 0.406 | -0.019 | 3.79e-02 | 0.353 | 0.385 | -0.031 | 8.24e-02 |
Height21 | LDpred2.Inf | MegaPRS.PseudoVal | 0.379 | 0.406 | -0.028 | 9.18e-03 | 0.395 | 0.385 | 0.010 | 6.37e-01 |
Height21 | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.378 | 0.406 | -0.028 | 7.97e-03 | 0.394 | 0.385 | 0.010 | 6.44e-01 |
Height21 | All.MultiPRS | MegaPRS.PseudoVal | 0.453 | 0.406 | 0.046 | 1.09e-02 | 0.441 | 0.385 | 0.057 | 5.67e-06 |
Height21 | SBLUP.Inf | MegaPRS.PseudoVal | 0.378 | 0.406 | -0.029 | 7.79e-03 | 0.387 | 0.385 | 0.003 | 9.02e-01 |
Height21 | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.436 | 0.406 | 0.029 | 2.24e-04 | 0.435 | 0.385 | 0.050 | 1.02e-03 |
Height21 | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.417 | 0.406 | 0.010 | 2.44e-01 | 0.428 | 0.385 | 0.044 | 7.96e-03 |
Height21 | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.440 | 0.406 | 0.033 | 6.94e-02 | 0.431 | 0.385 | 0.046 | 1.31e-03 |
Height21 | LDpred1.Inf | MegaPRS.PseudoVal | 0.378 | 0.406 | -0.029 | 7.15e-03 | 0.390 | 0.385 | 0.005 | 8.00e-01 |
Height21 | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.442 | 0.406 | 0.036 | 5.08e-02 | 0.429 | 0.385 | 0.044 | 7.00e-05 |
Height21 | lassosum.10FCVal | MegaPRS.PseudoVal | 0.435 | 0.406 | 0.028 | 1.57e-04 | 0.425 | 0.385 | 0.040 | 6.07e-03 |
Height21 | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.357 | 0.406 | -0.049 | 4.26e-06 | 0.354 | 0.385 | -0.031 | 1.34e-01 |
Height21 | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.426 | 0.406 | 0.020 | 8.06e-03 | 0.427 | 0.385 | 0.043 | 3.61e-03 |
Height21 | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.406 | 0.406 | 0.000 | 1.00e+00 | 0.385 | 0.385 | 0.000 | 1.00e+00 |
Height21 | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.384 | 0.406 | -0.023 | 2.23e-01 | 0.397 | 0.385 | 0.012 | 5.50e-01 |
Height21 | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.380 | 0.406 | -0.027 | 1.28e-02 | 0.383 | 0.385 | -0.002 | 9.22e-01 |
Height21 | LDpred2.Inf | MegaPRS.10FCVal | 0.379 | 0.426 | -0.047 | 7.38e-10 | 0.395 | 0.427 | -0.033 | 2.79e-02 |
Height21 | LDpred2.10FCVal | MegaPRS.10FCVal | 0.431 | 0.426 | 0.005 | 3.76e-01 | 0.445 | 0.427 | 0.018 | 1.29e-01 |
Height21 | PRScs.PseudoVal | MegaPRS.10FCVal | 0.436 | 0.426 | 0.009 | 1.27e-01 | 0.435 | 0.427 | 0.007 | 5.33e-01 |
Height21 | All.MultiPRS | MegaPRS.10FCVal | 0.453 | 0.426 | 0.027 | 1.41e-01 | 0.441 | 0.427 | 0.014 | 1.58e-01 |
Height21 | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.440 | 0.426 | 0.014 | 4.34e-01 | 0.432 | 0.427 | 0.005 | 7.22e-01 |
Height21 | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.428 | 0.426 | 0.002 | 7.52e-01 | 0.434 | 0.427 | 0.007 | 6.55e-01 |
Height21 | PRScs.10FCVal | MegaPRS.10FCVal | 0.429 | 0.426 | 0.003 | 6.37e-01 | 0.434 | 0.427 | 0.007 | 6.07e-01 |
Height21 | pT+clump.10FCVal | MegaPRS.10FCVal | 0.387 | 0.426 | -0.039 | 8.88e-05 | 0.353 | 0.427 | -0.074 | 1.77e-04 |
Height21 | PRScs.MultiPRS | MegaPRS.10FCVal | 0.435 | 0.426 | 0.009 | 6.16e-01 | 0.437 | 0.427 | 0.010 | 4.16e-01 |
Height21 | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.442 | 0.426 | 0.016 | 3.70e-01 | 0.429 | 0.427 | 0.001 | 8.73e-01 |
Height21 | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.399 | 0.426 | -0.027 | 1.39e-01 | 0.389 | 0.427 | -0.038 | 1.31e-02 |
Height21 | SBLUP.Inf | MegaPRS.10FCVal | 0.378 | 0.426 | -0.048 | 3.09e-10 | 0.387 | 0.427 | -0.040 | 6.69e-03 |
Height21 | lassosum.10FCVal | MegaPRS.10FCVal | 0.435 | 0.426 | 0.009 | 2.06e-01 | 0.425 | 0.427 | -0.002 | 8.63e-01 |
Height21 | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.378 | 0.426 | -0.048 | 5.23e-10 | 0.394 | 0.427 | -0.033 | 2.80e-02 |
Height21 | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.406 | 0.426 | -0.020 | 8.06e-03 | 0.385 | 0.427 | -0.043 | 3.61e-03 |
Height21 | LDpred1.Inf | MegaPRS.10FCVal | 0.378 | 0.426 | -0.048 | 2.17e-10 | 0.390 | 0.427 | -0.037 | 9.73e-03 |
Height21 | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.384 | 0.426 | -0.042 | 2.21e-02 | 0.397 | 0.427 | -0.031 | 3.16e-02 |
Height21 | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.417 | 0.426 | -0.009 | 1.42e-01 | 0.428 | 0.427 | 0.001 | 9.31e-01 |
Height21 | lassosum.MultiPRS | MegaPRS.10FCVal | 0.440 | 0.426 | 0.014 | 4.52e-01 | 0.431 | 0.427 | 0.003 | 8.06e-01 |
Height21 | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.426 | 0.426 | 0.000 | 1.00e+00 | 0.427 | 0.427 | 0.000 | 1.00e+00 |
Height21 | LDpred1.10FCVal | MegaPRS.10FCVal | 0.380 | 0.426 | -0.046 | 8.45e-09 | 0.383 | 0.427 | -0.045 | 3.96e-03 |
Height21 | lassosum.PseudoVal | MegaPRS.10FCVal | 0.357 | 0.426 | -0.069 | 1.07e-09 | 0.354 | 0.427 | -0.074 | 6.49e-04 |
Height21 | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.440 | 0.384 | 0.056 | 2.61e-03 | 0.432 | 0.397 | 0.035 | 1.90e-02 |
Height21 | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.378 | 0.384 | -0.006 | 7.63e-01 | 0.394 | 0.397 | -0.002 | 7.80e-01 |
Height21 | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.428 | 0.384 | 0.045 | 1.57e-02 | 0.434 | 0.397 | 0.037 | 5.29e-02 |
Height21 | LDpred1.Inf | LDpred1.MultiPRS | 0.378 | 0.384 | -0.006 | 7.45e-01 | 0.390 | 0.397 | -0.007 | 2.65e-01 |
Height21 | PRScs.PseudoVal | LDpred1.MultiPRS | 0.436 | 0.384 | 0.052 | 4.89e-03 | 0.435 | 0.397 | 0.038 | 3.68e-03 |
Height21 | PRScs.MultiPRS | LDpred1.MultiPRS | 0.435 | 0.384 | 0.051 | 5.49e-03 | 0.437 | 0.397 | 0.040 | 1.83e-03 |
Height21 | LDpred2.Inf | LDpred1.MultiPRS | 0.379 | 0.384 | -0.005 | 7.89e-01 | 0.395 | 0.397 | -0.002 | 7.95e-01 |
Height21 | LDpred2.10FCVal | LDpred1.MultiPRS | 0.431 | 0.384 | 0.048 | 9.75e-03 | 0.445 | 0.397 | 0.049 | 1.38e-05 |
Height21 | pT+clump.10FCVal | LDpred1.MultiPRS | 0.387 | 0.384 | 0.003 | 8.59e-01 | 0.353 | 0.397 | -0.043 | 6.22e-02 |
Height21 | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.406 | 0.384 | 0.023 | 2.23e-01 | 0.385 | 0.397 | -0.012 | 5.50e-01 |
Height21 | PRScs.10FCVal | LDpred1.MultiPRS | 0.429 | 0.384 | 0.045 | 1.38e-02 | 0.434 | 0.397 | 0.037 | 1.33e-02 |
Height21 | All.MultiPRS | LDpred1.MultiPRS | 0.453 | 0.384 | 0.069 | 1.73e-04 | 0.441 | 0.397 | 0.045 | 1.90e-03 |
Height21 | SBLUP.Inf | LDpred1.MultiPRS | 0.378 | 0.384 | -0.006 | 7.42e-01 | 0.387 | 0.397 | -0.009 | 2.18e-01 |
Height21 | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.384 | 0.384 | 0.000 | 1.00e+00 | 0.397 | 0.397 | 0.000 | 1.00e+00 |
Height21 | lassosum.PseudoVal | LDpred1.MultiPRS | 0.357 | 0.384 | -0.027 | 1.58e-01 | 0.354 | 0.397 | -0.043 | 8.58e-02 |
Height21 | lassosum.MultiPRS | LDpred1.MultiPRS | 0.440 | 0.384 | 0.056 | 2.53e-03 | 0.431 | 0.397 | 0.034 | 2.33e-02 |
Height21 | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.417 | 0.384 | 0.033 | 7.50e-02 | 0.428 | 0.397 | 0.032 | 1.13e-02 |
Height21 | LDpred1.10FCVal | LDpred1.MultiPRS | 0.380 | 0.384 | -0.004 | 8.34e-01 | 0.383 | 0.397 | -0.014 | 1.69e-02 |
Height21 | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.399 | 0.384 | 0.015 | 4.29e-01 | 0.389 | 0.397 | -0.008 | 6.69e-01 |
Height21 | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.426 | 0.384 | 0.042 | 2.21e-02 | 0.427 | 0.397 | 0.031 | 3.16e-02 |
Height21 | lassosum.10FCVal | LDpred1.MultiPRS | 0.435 | 0.384 | 0.051 | 5.47e-03 | 0.425 | 0.397 | 0.028 | 8.65e-02 |
Height21 | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.442 | 0.384 | 0.058 | 1.58e-03 | 0.429 | 0.397 | 0.032 | 1.34e-02 |
Height21 | MegaPRS.MultiPRS | LDpred1.Inf | 0.442 | 0.378 | 0.064 | 4.98e-04 | 0.429 | 0.390 | 0.039 | 3.05e-03 |
Height21 | PRScs.10FCVal | LDpred1.Inf | 0.429 | 0.378 | 0.051 | 1.03e-10 | 0.434 | 0.390 | 0.044 | 3.69e-03 |
Height21 | LDpred2.MultiPRS | LDpred1.Inf | 0.440 | 0.378 | 0.062 | 7.58e-04 | 0.432 | 0.390 | 0.042 | 6.15e-03 |
Height21 | LDpred1.MultiPRS | LDpred1.Inf | 0.384 | 0.378 | 0.006 | 7.45e-01 | 0.397 | 0.390 | 0.007 | 2.65e-01 |
Height21 | pT+clump.10FCVal | LDpred1.Inf | 0.387 | 0.378 | 0.009 | 4.14e-01 | 0.353 | 0.390 | -0.036 | 1.15e-01 |
Height21 | All.MultiPRS | LDpred1.Inf | 0.453 | 0.378 | 0.075 | 4.72e-05 | 0.441 | 0.390 | 0.051 | 5.45e-04 |
Height21 | LDpred2.PseudoVal | LDpred1.Inf | 0.378 | 0.378 | 0.000 | 9.06e-01 | 0.394 | 0.390 | 0.004 | 5.36e-01 |
Height21 | MegaPRS.10FCVal | LDpred1.Inf | 0.426 | 0.378 | 0.048 | 2.17e-10 | 0.427 | 0.390 | 0.037 | 9.73e-03 |
Height21 | pT+clump.MultiPRS | LDpred1.Inf | 0.399 | 0.378 | 0.021 | 2.63e-01 | 0.389 | 0.390 | -0.001 | 9.56e-01 |
Height21 | lassosum.MultiPRS | LDpred1.Inf | 0.440 | 0.378 | 0.062 | 8.53e-04 | 0.431 | 0.390 | 0.041 | 7.00e-03 |
Height21 | DBSLMM.PseudoVal | LDpred1.Inf | 0.417 | 0.378 | 0.039 | 4.36e-10 | 0.428 | 0.390 | 0.039 | 1.86e-03 |
Height21 | LDpred2.10FCVal | LDpred1.Inf | 0.431 | 0.378 | 0.054 | 4.13e-19 | 0.445 | 0.390 | 0.056 | 9.40e-07 |
Height21 | MegaPRS.PseudoVal | LDpred1.Inf | 0.406 | 0.378 | 0.029 | 7.15e-03 | 0.385 | 0.390 | -0.005 | 8.00e-01 |
Height21 | PRScs.PseudoVal | LDpred1.Inf | 0.436 | 0.378 | 0.058 | 2.65e-17 | 0.435 | 0.390 | 0.045 | 6.45e-04 |
Height21 | lassosum.10FCVal | LDpred1.Inf | 0.435 | 0.378 | 0.057 | 2.80e-11 | 0.425 | 0.390 | 0.035 | 3.47e-02 |
Height21 | LDpred2.Inf | LDpred1.Inf | 0.379 | 0.378 | 0.001 | 7.67e-01 | 0.395 | 0.390 | 0.005 | 5.15e-01 |
Height21 | PRScs.MultiPRS | LDpred1.Inf | 0.435 | 0.378 | 0.057 | 1.97e-03 | 0.437 | 0.390 | 0.047 | 3.01e-04 |
Height21 | LDpred1.10FCVal | LDpred1.Inf | 0.380 | 0.378 | 0.002 | 6.74e-01 | 0.383 | 0.390 | -0.007 | 4.93e-01 |
Height21 | SBLUP.Inf | LDpred1.Inf | 0.378 | 0.378 | 0.000 | 9.82e-01 | 0.387 | 0.390 | -0.003 | 6.93e-01 |
Height21 | lassosum.PseudoVal | LDpred1.Inf | 0.357 | 0.378 | -0.021 | 1.22e-01 | 0.354 | 0.390 | -0.036 | 1.56e-01 |
Height21 | LDpred1.Inf | LDpred1.Inf | 0.378 | 0.378 | 0.000 | 1.00e+00 | 0.390 | 0.390 | 0.000 | 1.00e+00 |
Height21 | SBayesR.PseudoVal | LDpred1.Inf | 0.428 | 0.378 | 0.051 | 7.00e-07 | 0.434 | 0.390 | 0.044 | 2.50e-02 |
Height21 | LDpred2.Inf | LDpred1.10FCVal | 0.379 | 0.380 | -0.001 | 8.49e-01 | 0.395 | 0.383 | 0.012 | 3.15e-01 |
Height21 | PRScs.10FCVal | LDpred1.10FCVal | 0.429 | 0.380 | 0.049 | 1.78e-09 | 0.434 | 0.383 | 0.052 | 1.73e-03 |
Height21 | lassosum.MultiPRS | LDpred1.10FCVal | 0.440 | 0.380 | 0.060 | 1.23e-03 | 0.431 | 0.383 | 0.048 | 2.96e-03 |
Height21 | LDpred2.MultiPRS | LDpred1.10FCVal | 0.440 | 0.380 | 0.060 | 1.20e-03 | 0.432 | 0.383 | 0.049 | 2.21e-03 |
Height21 | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.442 | 0.380 | 0.062 | 7.46e-04 | 0.429 | 0.383 | 0.046 | 1.33e-03 |
Height21 | SBayesR.PseudoVal | LDpred1.10FCVal | 0.428 | 0.380 | 0.048 | 1.66e-06 | 0.434 | 0.383 | 0.051 | 1.04e-02 |
Height21 | PRScs.PseudoVal | LDpred1.10FCVal | 0.436 | 0.380 | 0.056 | 1.75e-14 | 0.435 | 0.383 | 0.052 | 4.02e-04 |
Height21 | All.MultiPRS | LDpred1.10FCVal | 0.453 | 0.380 | 0.073 | 7.65e-05 | 0.441 | 0.383 | 0.059 | 1.51e-04 |
Height21 | LDpred2.PseudoVal | LDpred1.10FCVal | 0.378 | 0.380 | -0.002 | 7.64e-01 | 0.394 | 0.383 | 0.012 | 3.19e-01 |
Height21 | LDpred1.MultiPRS | LDpred1.10FCVal | 0.384 | 0.380 | 0.004 | 8.34e-01 | 0.397 | 0.383 | 0.014 | 1.69e-02 |
Height21 | pT+clump.10FCVal | LDpred1.10FCVal | 0.387 | 0.380 | 0.007 | 5.35e-01 | 0.353 | 0.383 | -0.029 | 2.26e-01 |
Height21 | SBLUP.Inf | LDpred1.10FCVal | 0.378 | 0.380 | -0.002 | 6.70e-01 | 0.387 | 0.383 | 0.005 | 6.67e-01 |
Height21 | PRScs.MultiPRS | LDpred1.10FCVal | 0.435 | 0.380 | 0.055 | 2.85e-03 | 0.437 | 0.383 | 0.054 | 1.84e-04 |
Height21 | MegaPRS.10FCVal | LDpred1.10FCVal | 0.426 | 0.380 | 0.046 | 8.45e-09 | 0.427 | 0.383 | 0.045 | 3.96e-03 |
Height21 | pT+clump.MultiPRS | LDpred1.10FCVal | 0.399 | 0.380 | 0.019 | 3.16e-01 | 0.389 | 0.383 | 0.006 | 7.48e-01 |
Height21 | LDpred1.Inf | LDpred1.10FCVal | 0.378 | 0.380 | -0.002 | 6.74e-01 | 0.390 | 0.383 | 0.007 | 4.93e-01 |
Height21 | lassosum.10FCVal | LDpred1.10FCVal | 0.435 | 0.380 | 0.055 | 3.22e-10 | 0.425 | 0.383 | 0.042 | 1.60e-02 |
Height21 | LDpred2.10FCVal | LDpred1.10FCVal | 0.431 | 0.380 | 0.051 | 7.60e-15 | 0.445 | 0.383 | 0.063 | 1.48e-06 |
Height21 | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.406 | 0.380 | 0.027 | 1.28e-02 | 0.385 | 0.383 | 0.002 | 9.22e-01 |
Height21 | LDpred1.10FCVal | LDpred1.10FCVal | 0.380 | 0.380 | 0.000 | 1.00e+00 | 0.383 | 0.383 | 0.000 | 1.00e+00 |
Height21 | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.417 | 0.380 | 0.037 | 8.68e-08 | 0.428 | 0.383 | 0.046 | 1.34e-03 |
Height21 | lassosum.PseudoVal | LDpred1.10FCVal | 0.357 | 0.380 | -0.023 | 8.22e-02 | 0.354 | 0.383 | -0.029 | 2.57e-01 |
Height21 | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.417 | 0.440 | -0.024 | 1.97e-01 | 0.428 | 0.432 | -0.004 | 7.74e-01 |
Height21 | LDpred2.10FCVal | LDpred2.MultiPRS | 0.431 | 0.440 | -0.009 | 6.26e-01 | 0.445 | 0.432 | 0.013 | 6.92e-02 |
Height21 | PRScs.PseudoVal | LDpred2.MultiPRS | 0.436 | 0.440 | -0.005 | 7.92e-01 | 0.435 | 0.432 | 0.003 | 7.59e-01 |
Height21 | All.MultiPRS | LDpred2.MultiPRS | 0.453 | 0.440 | 0.012 | 4.92e-01 | 0.441 | 0.432 | 0.009 | 2.96e-01 |
Height21 | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.440 | 0.440 | 0.000 | 1.00e+00 | 0.432 | 0.432 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.406 | 0.440 | -0.034 | 6.59e-02 | 0.385 | 0.432 | -0.047 | 2.08e-03 |
Height21 | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.426 | 0.440 | -0.014 | 4.34e-01 | 0.427 | 0.432 | -0.005 | 7.22e-01 |
Height21 | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.399 | 0.440 | -0.042 | 2.41e-02 | 0.389 | 0.432 | -0.043 | 3.36e-03 |
Height21 | lassosum.PseudoVal | LDpred2.MultiPRS | 0.357 | 0.440 | -0.083 | 8.31e-06 | 0.354 | 0.432 | -0.078 | 9.14e-06 |
Height21 | PRScs.MultiPRS | LDpred2.MultiPRS | 0.435 | 0.440 | -0.005 | 7.75e-01 | 0.437 | 0.432 | 0.005 | 5.78e-01 |
Height21 | LDpred1.Inf | LDpred2.MultiPRS | 0.378 | 0.440 | -0.062 | 7.58e-04 | 0.390 | 0.432 | -0.042 | 6.15e-03 |
Height21 | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.428 | 0.440 | -0.012 | 5.15e-01 | 0.434 | 0.432 | 0.002 | 8.66e-01 |
Height21 | pT+clump.10FCVal | LDpred2.MultiPRS | 0.387 | 0.440 | -0.053 | 3.99e-03 | 0.353 | 0.432 | -0.079 | 1.04e-05 |
Height21 | lassosum.10FCVal | LDpred2.MultiPRS | 0.435 | 0.440 | -0.005 | 7.67e-01 | 0.425 | 0.432 | -0.007 | 4.63e-01 |
Height21 | LDpred2.Inf | LDpred2.MultiPRS | 0.379 | 0.440 | -0.061 | 9.20e-04 | 0.395 | 0.432 | -0.038 | 1.11e-02 |
Height21 | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.384 | 0.440 | -0.056 | 2.61e-03 | 0.397 | 0.432 | -0.035 | 1.90e-02 |
Height21 | SBLUP.Inf | LDpred2.MultiPRS | 0.378 | 0.440 | -0.063 | 7.43e-04 | 0.387 | 0.432 | -0.045 | 4.87e-03 |
Height21 | lassosum.MultiPRS | LDpred2.MultiPRS | 0.440 | 0.440 | -0.001 | 9.75e-01 | 0.431 | 0.432 | -0.002 | 8.71e-01 |
Height21 | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.378 | 0.440 | -0.062 | 8.14e-04 | 0.394 | 0.432 | -0.038 | 1.14e-02 |
Height21 | LDpred1.10FCVal | LDpred2.MultiPRS | 0.380 | 0.440 | -0.060 | 1.20e-03 | 0.383 | 0.432 | -0.049 | 2.21e-03 |
Height21 | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.442 | 0.440 | 0.002 | 9.16e-01 | 0.429 | 0.432 | -0.004 | 7.50e-01 |
Height21 | PRScs.10FCVal | LDpred2.MultiPRS | 0.429 | 0.440 | -0.011 | 5.42e-01 | 0.434 | 0.432 | 0.002 | 8.22e-01 |
Height21 | LDpred2.MultiPRS | LDpred2.10FCVal | 0.440 | 0.431 | 0.009 | 6.26e-01 | 0.432 | 0.445 | -0.013 | 6.92e-02 |
Height21 | LDpred2.Inf | LDpred2.10FCVal | 0.379 | 0.431 | -0.053 | 2.14e-25 | 0.395 | 0.445 | -0.051 | 2.47e-07 |
Height21 | PRScs.10FCVal | LDpred2.10FCVal | 0.429 | 0.431 | -0.002 | 6.60e-01 | 0.434 | 0.445 | -0.011 | 2.54e-01 |
Height21 | SBayesR.PseudoVal | LDpred2.10FCVal | 0.428 | 0.431 | -0.003 | 6.71e-01 | 0.434 | 0.445 | -0.011 | 4.04e-01 |
Height21 | lassosum.10FCVal | LDpred2.10FCVal | 0.435 | 0.431 | 0.003 | 5.20e-01 | 0.425 | 0.445 | -0.020 | 5.12e-02 |
Height21 | LDpred2.10FCVal | LDpred2.10FCVal | 0.431 | 0.431 | 0.000 | 1.00e+00 | 0.445 | 0.445 | 0.000 | 1.00e+00 |
Height21 | PRScs.PseudoVal | LDpred2.10FCVal | 0.436 | 0.431 | 0.004 | 3.49e-01 | 0.435 | 0.445 | -0.011 | 2.04e-01 |
Height21 | LDpred1.MultiPRS | LDpred2.10FCVal | 0.384 | 0.431 | -0.048 | 9.75e-03 | 0.397 | 0.445 | -0.049 | 1.38e-05 |
Height21 | pT+clump.10FCVal | LDpred2.10FCVal | 0.387 | 0.431 | -0.044 | 3.65e-06 | 0.353 | 0.445 | -0.092 | 1.17e-06 |
Height21 | All.MultiPRS | LDpred2.10FCVal | 0.453 | 0.431 | 0.021 | 2.40e-01 | 0.441 | 0.445 | -0.004 | 6.50e-01 |
Height21 | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.442 | 0.431 | 0.011 | 5.52e-01 | 0.429 | 0.445 | -0.017 | 7.65e-02 |
Height21 | MegaPRS.10FCVal | LDpred2.10FCVal | 0.426 | 0.431 | -0.005 | 3.76e-01 | 0.427 | 0.445 | -0.018 | 1.29e-01 |
Height21 | pT+clump.MultiPRS | LDpred2.10FCVal | 0.399 | 0.431 | -0.033 | 7.43e-02 | 0.389 | 0.445 | -0.057 | 1.04e-04 |
Height21 | lassosum.MultiPRS | LDpred2.10FCVal | 0.440 | 0.431 | 0.008 | 6.49e-01 | 0.431 | 0.445 | -0.015 | 1.25e-01 |
Height21 | PRScs.MultiPRS | LDpred2.10FCVal | 0.435 | 0.431 | 0.004 | 8.40e-01 | 0.437 | 0.445 | -0.008 | 2.96e-01 |
Height21 | LDpred1.Inf | LDpred2.10FCVal | 0.378 | 0.431 | -0.054 | 4.13e-19 | 0.390 | 0.445 | -0.056 | 9.40e-07 |
Height21 | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.406 | 0.431 | -0.025 | 2.29e-03 | 0.385 | 0.445 | -0.061 | 1.59e-04 |
Height21 | SBLUP.Inf | LDpred2.10FCVal | 0.378 | 0.431 | -0.054 | 4.70e-18 | 0.387 | 0.445 | -0.058 | 6.59e-07 |
Height21 | lassosum.PseudoVal | LDpred2.10FCVal | 0.357 | 0.431 | -0.074 | 6.73e-13 | 0.354 | 0.445 | -0.092 | 4.02e-06 |
Height21 | LDpred2.PseudoVal | LDpred2.10FCVal | 0.378 | 0.431 | -0.053 | 6.53e-26 | 0.394 | 0.445 | -0.051 | 2.50e-07 |
Height21 | LDpred1.10FCVal | LDpred2.10FCVal | 0.380 | 0.431 | -0.051 | 7.60e-15 | 0.383 | 0.445 | -0.063 | 1.48e-06 |
Height21 | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.417 | 0.431 | -0.015 | 6.35e-03 | 0.428 | 0.445 | -0.017 | 1.08e-01 |
Height21 | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.406 | 0.378 | 0.028 | 7.97e-03 | 0.385 | 0.394 | -0.010 | 6.44e-01 |
Height21 | PRScs.PseudoVal | LDpred2.PseudoVal | 0.436 | 0.378 | 0.057 | 6.26e-17 | 0.435 | 0.394 | 0.040 | 2.91e-03 |
Height21 | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.440 | 0.378 | 0.062 | 8.14e-04 | 0.432 | 0.394 | 0.038 | 1.14e-02 |
Height21 | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.442 | 0.378 | 0.064 | 5.34e-04 | 0.429 | 0.394 | 0.034 | 1.15e-02 |
Height21 | PRScs.10FCVal | LDpred2.PseudoVal | 0.429 | 0.378 | 0.051 | 1.04e-10 | 0.434 | 0.394 | 0.040 | 1.04e-02 |
Height21 | All.MultiPRS | LDpred2.PseudoVal | 0.453 | 0.378 | 0.074 | 5.31e-05 | 0.441 | 0.394 | 0.047 | 2.02e-03 |
Height21 | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.417 | 0.378 | 0.038 | 1.30e-09 | 0.428 | 0.394 | 0.034 | 8.94e-03 |
Height21 | LDpred2.10FCVal | LDpred2.PseudoVal | 0.431 | 0.378 | 0.053 | 6.53e-26 | 0.445 | 0.394 | 0.051 | 2.50e-07 |
Height21 | LDpred1.Inf | LDpred2.PseudoVal | 0.378 | 0.378 | 0.000 | 9.06e-01 | 0.390 | 0.394 | -0.004 | 5.36e-01 |
Height21 | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.428 | 0.378 | 0.050 | 7.66e-07 | 0.434 | 0.394 | 0.040 | 4.63e-02 |
Height21 | lassosum.10FCVal | LDpred2.PseudoVal | 0.435 | 0.378 | 0.057 | 3.18e-11 | 0.425 | 0.394 | 0.031 | 6.83e-02 |
Height21 | LDpred2.Inf | LDpred2.PseudoVal | 0.379 | 0.378 | 0.001 | 1.63e-01 | 0.395 | 0.394 | 0.000 | 8.52e-01 |
Height21 | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.378 | 0.378 | 0.000 | 1.00e+00 | 0.394 | 0.394 | 0.000 | 1.00e+00 |
Height21 | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.384 | 0.378 | 0.006 | 7.63e-01 | 0.397 | 0.394 | 0.002 | 7.80e-01 |
Height21 | pT+clump.10FCVal | LDpred2.PseudoVal | 0.387 | 0.378 | 0.009 | 4.38e-01 | 0.353 | 0.394 | -0.041 | 8.21e-02 |
Height21 | lassosum.MultiPRS | LDpred2.PseudoVal | 0.440 | 0.378 | 0.061 | 9.49e-04 | 0.431 | 0.394 | 0.036 | 1.92e-02 |
Height21 | PRScs.MultiPRS | LDpred2.PseudoVal | 0.435 | 0.378 | 0.057 | 2.14e-03 | 0.437 | 0.394 | 0.043 | 1.55e-03 |
Height21 | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.426 | 0.378 | 0.048 | 5.23e-10 | 0.427 | 0.394 | 0.033 | 2.80e-02 |
Height21 | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.399 | 0.378 | 0.020 | 2.73e-01 | 0.389 | 0.394 | -0.005 | 7.70e-01 |
Height21 | lassosum.PseudoVal | LDpred2.PseudoVal | 0.357 | 0.378 | -0.021 | 1.13e-01 | 0.354 | 0.394 | -0.041 | 1.11e-01 |
Height21 | LDpred1.10FCVal | LDpred2.PseudoVal | 0.380 | 0.378 | 0.002 | 7.64e-01 | 0.383 | 0.394 | -0.012 | 3.19e-01 |
Height21 | SBLUP.Inf | LDpred2.PseudoVal | 0.378 | 0.378 | -0.001 | 8.87e-01 | 0.387 | 0.394 | -0.007 | 3.14e-01 |
Height21 | PRScs.10FCVal | LDpred2.Inf | 0.429 | 0.379 | 0.050 | 8.68e-11 | 0.434 | 0.395 | 0.040 | 9.54e-03 |
Height21 | pT+clump.MultiPRS | LDpred2.Inf | 0.399 | 0.379 | 0.020 | 2.88e-01 | 0.389 | 0.395 | -0.006 | 7.61e-01 |
Height21 | LDpred2.Inf | LDpred2.Inf | 0.379 | 0.379 | 0.000 | 1.00e+00 | 0.395 | 0.395 | 0.000 | 1.00e+00 |
Height21 | lassosum.10FCVal | LDpred2.Inf | 0.435 | 0.379 | 0.056 | 2.98e-11 | 0.425 | 0.395 | 0.030 | 6.61e-02 |
Height21 | LDpred2.MultiPRS | LDpred2.Inf | 0.440 | 0.379 | 0.061 | 9.20e-04 | 0.432 | 0.395 | 0.038 | 1.11e-02 |
Height21 | SBayesR.PseudoVal | LDpred2.Inf | 0.428 | 0.379 | 0.050 | 8.46e-07 | 0.434 | 0.395 | 0.040 | 4.52e-02 |
Height21 | pT+clump.10FCVal | LDpred2.Inf | 0.387 | 0.379 | 0.008 | 4.67e-01 | 0.353 | 0.395 | -0.041 | 7.81e-02 |
Height21 | PRScs.PseudoVal | LDpred2.Inf | 0.436 | 0.379 | 0.057 | 3.36e-17 | 0.435 | 0.395 | 0.040 | 2.52e-03 |
Height21 | LDpred2.PseudoVal | LDpred2.Inf | 0.378 | 0.379 | -0.001 | 1.63e-01 | 0.394 | 0.395 | 0.000 | 8.52e-01 |
Height21 | All.MultiPRS | LDpred2.Inf | 0.453 | 0.379 | 0.074 | 6.15e-05 | 0.441 | 0.395 | 0.047 | 1.93e-03 |
Height21 | SBLUP.Inf | LDpred2.Inf | 0.378 | 0.379 | -0.001 | 7.48e-01 | 0.387 | 0.395 | -0.007 | 3.05e-01 |
Height21 | MegaPRS.MultiPRS | LDpred2.Inf | 0.442 | 0.379 | 0.063 | 6.03e-04 | 0.429 | 0.395 | 0.034 | 1.11e-02 |
Height21 | PRScs.MultiPRS | LDpred2.Inf | 0.435 | 0.379 | 0.056 | 2.40e-03 | 0.437 | 0.395 | 0.042 | 1.35e-03 |
Height21 | lassosum.MultiPRS | LDpred2.Inf | 0.440 | 0.379 | 0.061 | 1.07e-03 | 0.431 | 0.395 | 0.036 | 1.88e-02 |
Height21 | LDpred1.Inf | LDpred2.Inf | 0.378 | 0.379 | -0.001 | 7.67e-01 | 0.390 | 0.395 | -0.005 | 5.15e-01 |
Height21 | MegaPRS.10FCVal | LDpred2.Inf | 0.426 | 0.379 | 0.047 | 7.38e-10 | 0.427 | 0.395 | 0.033 | 2.79e-02 |
Height21 | MegaPRS.PseudoVal | LDpred2.Inf | 0.406 | 0.379 | 0.028 | 9.18e-03 | 0.385 | 0.395 | -0.010 | 6.37e-01 |
Height21 | lassosum.PseudoVal | LDpred2.Inf | 0.357 | 0.379 | -0.022 | 1.00e-01 | 0.354 | 0.395 | -0.041 | 1.07e-01 |
Height21 | LDpred2.10FCVal | LDpred2.Inf | 0.431 | 0.379 | 0.053 | 2.14e-25 | 0.445 | 0.395 | 0.051 | 2.47e-07 |
Height21 | DBSLMM.PseudoVal | LDpred2.Inf | 0.417 | 0.379 | 0.038 | 1.96e-09 | 0.428 | 0.395 | 0.034 | 8.97e-03 |
Height21 | LDpred1.MultiPRS | LDpred2.Inf | 0.384 | 0.379 | 0.005 | 7.89e-01 | 0.397 | 0.395 | 0.002 | 7.95e-01 |
Height21 | LDpred1.10FCVal | LDpred2.Inf | 0.380 | 0.379 | 0.001 | 8.49e-01 | 0.383 | 0.395 | -0.012 | 3.15e-01 |
Height21 | PRScs.PseudoVal | PRScs.MultiPRS | 0.436 | 0.435 | 0.000 | 9.83e-01 | 0.435 | 0.437 | -0.002 | 1.88e-01 |
Height21 | LDpred2.MultiPRS | PRScs.MultiPRS | 0.440 | 0.435 | 0.005 | 7.75e-01 | 0.432 | 0.437 | -0.005 | 5.78e-01 |
Height21 | LDpred2.Inf | PRScs.MultiPRS | 0.379 | 0.435 | -0.056 | 2.40e-03 | 0.395 | 0.437 | -0.042 | 1.35e-03 |
Height21 | pT+clump.10FCVal | PRScs.MultiPRS | 0.387 | 0.435 | -0.048 | 1.02e-02 | 0.353 | 0.437 | -0.084 | 9.07e-07 |
Height21 | SBayesR.PseudoVal | PRScs.MultiPRS | 0.428 | 0.435 | -0.007 | 7.14e-01 | 0.434 | 0.437 | -0.003 | 7.93e-01 |
Height21 | LDpred2.PseudoVal | PRScs.MultiPRS | 0.378 | 0.435 | -0.057 | 2.14e-03 | 0.394 | 0.437 | -0.043 | 1.55e-03 |
Height21 | LDpred2.10FCVal | PRScs.MultiPRS | 0.431 | 0.435 | -0.004 | 8.40e-01 | 0.445 | 0.437 | 0.008 | 2.96e-01 |
Height21 | PRScs.MultiPRS | PRScs.MultiPRS | 0.435 | 0.435 | 0.000 | 1.00e+00 | 0.437 | 0.437 | 0.000 | 1.00e+00 |
Height21 | LDpred1.MultiPRS | PRScs.MultiPRS | 0.384 | 0.435 | -0.051 | 5.49e-03 | 0.397 | 0.437 | -0.040 | 1.83e-03 |
Height21 | pT+clump.MultiPRS | PRScs.MultiPRS | 0.399 | 0.435 | -0.036 | 4.75e-02 | 0.389 | 0.437 | -0.048 | 2.06e-04 |
Height21 | All.MultiPRS | PRScs.MultiPRS | 0.453 | 0.435 | 0.017 | 2.35e-05 | 0.441 | 0.437 | 0.004 | 5.82e-01 |
Height21 | lassosum.10FCVal | PRScs.MultiPRS | 0.435 | 0.435 | 0.000 | 9.92e-01 | 0.425 | 0.437 | -0.012 | 1.15e-01 |
Height21 | PRScs.10FCVal | PRScs.MultiPRS | 0.429 | 0.435 | -0.006 | 7.45e-01 | 0.434 | 0.437 | -0.003 | 5.47e-01 |
Height21 | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.406 | 0.435 | -0.029 | 1.16e-01 | 0.385 | 0.437 | -0.052 | 5.28e-04 |
Height21 | lassosum.MultiPRS | PRScs.MultiPRS | 0.440 | 0.435 | 0.005 | 7.98e-01 | 0.431 | 0.437 | -0.006 | 3.51e-01 |
Height21 | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.442 | 0.435 | 0.007 | 6.95e-01 | 0.429 | 0.437 | -0.008 | 3.62e-01 |
Height21 | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.417 | 0.435 | -0.018 | 3.13e-01 | 0.428 | 0.437 | -0.008 | 3.43e-01 |
Height21 | LDpred1.10FCVal | PRScs.MultiPRS | 0.380 | 0.435 | -0.055 | 2.85e-03 | 0.383 | 0.437 | -0.054 | 1.84e-04 |
Height21 | SBLUP.Inf | PRScs.MultiPRS | 0.378 | 0.435 | -0.057 | 1.94e-03 | 0.387 | 0.437 | -0.050 | 3.14e-04 |
Height21 | lassosum.PseudoVal | PRScs.MultiPRS | 0.357 | 0.435 | -0.078 | 3.06e-05 | 0.354 | 0.437 | -0.083 | 4.73e-07 |
Height21 | LDpred1.Inf | PRScs.MultiPRS | 0.378 | 0.435 | -0.057 | 1.97e-03 | 0.390 | 0.437 | -0.047 | 3.01e-04 |
Height21 | MegaPRS.10FCVal | PRScs.MultiPRS | 0.426 | 0.435 | -0.009 | 6.16e-01 | 0.427 | 0.437 | -0.010 | 4.16e-01 |
Height21 | PRScs.10FCVal | PRScs.10FCVal | 0.429 | 0.429 | 0.000 | 1.00e+00 | 0.434 | 0.434 | 0.000 | 1.00e+00 |
Height21 | pT+clump.MultiPRS | PRScs.10FCVal | 0.399 | 0.429 | -0.030 | 9.68e-02 | 0.389 | 0.434 | -0.045 | 6.26e-04 |
Height21 | SBayesR.PseudoVal | PRScs.10FCVal | 0.428 | 0.429 | -0.001 | 8.87e-01 | 0.434 | 0.434 | 0.000 | 9.92e-01 |
Height21 | pT+clump.10FCVal | PRScs.10FCVal | 0.387 | 0.429 | -0.042 | 4.48e-07 | 0.353 | 0.434 | -0.081 | 9.12e-07 |
Height21 | LDpred2.MultiPRS | PRScs.10FCVal | 0.440 | 0.429 | 0.011 | 5.42e-01 | 0.432 | 0.434 | -0.002 | 8.22e-01 |
Height21 | LDpred2.10FCVal | PRScs.10FCVal | 0.431 | 0.429 | 0.002 | 6.60e-01 | 0.445 | 0.434 | 0.011 | 2.54e-01 |
Height21 | SBLUP.Inf | PRScs.10FCVal | 0.378 | 0.429 | -0.051 | 4.23e-10 | 0.387 | 0.434 | -0.047 | 3.56e-03 |
Height21 | PRScs.PseudoVal | PRScs.10FCVal | 0.436 | 0.429 | 0.006 | 2.45e-02 | 0.435 | 0.434 | 0.001 | 9.09e-01 |
Height21 | LDpred2.PseudoVal | PRScs.10FCVal | 0.378 | 0.429 | -0.051 | 1.04e-10 | 0.394 | 0.434 | -0.040 | 1.04e-02 |
Height21 | LDpred2.Inf | PRScs.10FCVal | 0.379 | 0.429 | -0.050 | 8.68e-11 | 0.395 | 0.434 | -0.040 | 9.54e-03 |
Height21 | LDpred1.Inf | PRScs.10FCVal | 0.378 | 0.429 | -0.051 | 1.03e-10 | 0.390 | 0.434 | -0.044 | 3.69e-03 |
Height21 | MegaPRS.MultiPRS | PRScs.10FCVal | 0.442 | 0.429 | 0.013 | 4.72e-01 | 0.429 | 0.434 | -0.006 | 5.99e-01 |
Height21 | PRScs.MultiPRS | PRScs.10FCVal | 0.435 | 0.429 | 0.006 | 7.45e-01 | 0.437 | 0.434 | 0.003 | 5.47e-01 |
Height21 | lassosum.MultiPRS | PRScs.10FCVal | 0.440 | 0.429 | 0.011 | 5.61e-01 | 0.431 | 0.434 | -0.004 | 6.32e-01 |
Height21 | DBSLMM.PseudoVal | PRScs.10FCVal | 0.417 | 0.429 | -0.013 | 2.65e-02 | 0.428 | 0.434 | -0.006 | 5.88e-01 |
Height21 | MegaPRS.10FCVal | PRScs.10FCVal | 0.426 | 0.429 | -0.003 | 6.37e-01 | 0.427 | 0.434 | -0.007 | 6.07e-01 |
Height21 | MegaPRS.PseudoVal | PRScs.10FCVal | 0.406 | 0.429 | -0.023 | 3.95e-03 | 0.385 | 0.434 | -0.050 | 1.15e-03 |
Height21 | lassosum.PseudoVal | PRScs.10FCVal | 0.357 | 0.429 | -0.072 | 2.39e-20 | 0.354 | 0.434 | -0.080 | 1.34e-07 |
Height21 | All.MultiPRS | PRScs.10FCVal | 0.453 | 0.429 | 0.023 | 1.95e-01 | 0.441 | 0.434 | 0.007 | 4.14e-01 |
Height21 | lassosum.10FCVal | PRScs.10FCVal | 0.435 | 0.429 | 0.006 | 1.40e-01 | 0.425 | 0.434 | -0.009 | 2.25e-01 |
Height21 | LDpred1.MultiPRS | PRScs.10FCVal | 0.384 | 0.429 | -0.045 | 1.38e-02 | 0.397 | 0.434 | -0.037 | 1.33e-02 |
Height21 | LDpred1.10FCVal | PRScs.10FCVal | 0.380 | 0.429 | -0.049 | 1.78e-09 | 0.383 | 0.434 | -0.052 | 1.73e-03 |
Height21 | LDpred2.MultiPRS | PRScs.PseudoVal | 0.440 | 0.436 | 0.005 | 7.92e-01 | 0.432 | 0.435 | -0.003 | 7.59e-01 |
Height21 | PRScs.10FCVal | PRScs.PseudoVal | 0.429 | 0.436 | -0.006 | 2.45e-02 | 0.434 | 0.435 | -0.001 | 9.09e-01 |
Height21 | pT+clump.10FCVal | PRScs.PseudoVal | 0.387 | 0.436 | -0.048 | 1.95e-08 | 0.353 | 0.435 | -0.081 | 1.95e-06 |
Height21 | LDpred2.PseudoVal | PRScs.PseudoVal | 0.378 | 0.436 | -0.057 | 6.26e-17 | 0.394 | 0.435 | -0.040 | 2.91e-03 |
Height21 | LDpred2.Inf | PRScs.PseudoVal | 0.379 | 0.436 | -0.057 | 3.36e-17 | 0.395 | 0.435 | -0.040 | 2.52e-03 |
Height21 | pT+clump.MultiPRS | PRScs.PseudoVal | 0.399 | 0.436 | -0.037 | 4.43e-02 | 0.389 | 0.435 | -0.046 | 4.73e-04 |
Height21 | PRScs.PseudoVal | PRScs.PseudoVal | 0.436 | 0.436 | 0.000 | 1.00e+00 | 0.435 | 0.435 | 0.000 | 1.00e+00 |
Height21 | SBayesR.PseudoVal | PRScs.PseudoVal | 0.428 | 0.436 | -0.007 | 2.22e-01 | 0.434 | 0.435 | -0.001 | 9.48e-01 |
Height21 | lassosum.MultiPRS | PRScs.PseudoVal | 0.440 | 0.436 | 0.004 | 8.16e-01 | 0.431 | 0.435 | -0.004 | 5.60e-01 |
Height21 | LDpred2.10FCVal | PRScs.PseudoVal | 0.431 | 0.436 | -0.004 | 3.49e-01 | 0.445 | 0.435 | 0.011 | 2.04e-01 |
Height21 | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.442 | 0.436 | 0.007 | 7.10e-01 | 0.429 | 0.435 | -0.006 | 5.08e-01 |
Height21 | LDpred1.MultiPRS | PRScs.PseudoVal | 0.384 | 0.436 | -0.052 | 4.89e-03 | 0.397 | 0.435 | -0.038 | 3.68e-03 |
Height21 | SBLUP.Inf | PRScs.PseudoVal | 0.378 | 0.436 | -0.058 | 5.77e-16 | 0.387 | 0.435 | -0.048 | 6.60e-04 |
Height21 | All.MultiPRS | PRScs.PseudoVal | 0.453 | 0.436 | 0.017 | 3.41e-01 | 0.441 | 0.435 | 0.006 | 4.35e-01 |
Height21 | MegaPRS.10FCVal | PRScs.PseudoVal | 0.426 | 0.436 | -0.009 | 1.27e-01 | 0.427 | 0.435 | -0.007 | 5.33e-01 |
Height21 | LDpred1.10FCVal | PRScs.PseudoVal | 0.380 | 0.436 | -0.056 | 1.75e-14 | 0.383 | 0.435 | -0.052 | 4.02e-04 |
Height21 | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.406 | 0.436 | -0.029 | 2.24e-04 | 0.385 | 0.435 | -0.050 | 1.02e-03 |
Height21 | lassosum.PseudoVal | PRScs.PseudoVal | 0.357 | 0.436 | -0.078 | 4.38e-19 | 0.354 | 0.435 | -0.081 | 1.75e-06 |
Height21 | PRScs.MultiPRS | PRScs.PseudoVal | 0.435 | 0.436 | 0.000 | 9.83e-01 | 0.437 | 0.435 | 0.002 | 1.88e-01 |
Height21 | LDpred1.Inf | PRScs.PseudoVal | 0.378 | 0.436 | -0.058 | 2.65e-17 | 0.390 | 0.435 | -0.045 | 6.45e-04 |
Height21 | lassosum.10FCVal | PRScs.PseudoVal | 0.435 | 0.436 | -0.001 | 8.87e-01 | 0.425 | 0.435 | -0.010 | 2.06e-01 |
Height21 | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.417 | 0.436 | -0.019 | 1.39e-04 | 0.428 | 0.435 | -0.006 | 5.00e-01 |
Height21 | All.MultiPRS | pT+clump.MultiPRS | 0.453 | 0.399 | 0.054 | 3.08e-03 | 0.441 | 0.389 | 0.052 | 3.95e-05 |
Height21 | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.440 | 0.399 | 0.042 | 2.41e-02 | 0.432 | 0.389 | 0.043 | 3.36e-03 |
Height21 | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.384 | 0.399 | -0.015 | 4.29e-01 | 0.397 | 0.389 | 0.008 | 6.69e-01 |
Height21 | pT+clump.10FCVal | pT+clump.MultiPRS | 0.387 | 0.399 | -0.011 | 5.39e-01 | 0.353 | 0.389 | -0.036 | 4.81e-05 |
Height21 | lassosum.MultiPRS | pT+clump.MultiPRS | 0.440 | 0.399 | 0.041 | 2.69e-02 | 0.431 | 0.389 | 0.042 | 1.31e-03 |
Height21 | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.378 | 0.399 | -0.020 | 2.73e-01 | 0.394 | 0.389 | 0.005 | 7.70e-01 |
Height21 | LDpred1.10FCVal | pT+clump.MultiPRS | 0.380 | 0.399 | -0.019 | 3.16e-01 | 0.383 | 0.389 | -0.006 | 7.48e-01 |
Height21 | SBLUP.Inf | pT+clump.MultiPRS | 0.378 | 0.399 | -0.021 | 2.62e-01 | 0.387 | 0.389 | -0.002 | 9.30e-01 |
Height21 | lassosum.PseudoVal | pT+clump.MultiPRS | 0.357 | 0.399 | -0.041 | 2.80e-02 | 0.354 | 0.389 | -0.035 | 7.68e-02 |
Height21 | PRScs.MultiPRS | pT+clump.MultiPRS | 0.435 | 0.399 | 0.036 | 4.75e-02 | 0.437 | 0.389 | 0.048 | 2.06e-04 |
Height21 | LDpred2.10FCVal | pT+clump.MultiPRS | 0.431 | 0.399 | 0.033 | 7.43e-02 | 0.445 | 0.389 | 0.057 | 1.04e-04 |
Height21 | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.406 | 0.399 | 0.008 | 6.76e-01 | 0.385 | 0.389 | -0.004 | 7.96e-01 |
Height21 | PRScs.PseudoVal | pT+clump.MultiPRS | 0.436 | 0.399 | 0.037 | 4.43e-02 | 0.435 | 0.389 | 0.046 | 4.73e-04 |
Height21 | lassosum.10FCVal | pT+clump.MultiPRS | 0.435 | 0.399 | 0.036 | 4.78e-02 | 0.425 | 0.389 | 0.036 | 6.07e-03 |
Height21 | LDpred2.Inf | pT+clump.MultiPRS | 0.379 | 0.399 | -0.020 | 2.88e-01 | 0.395 | 0.389 | 0.006 | 7.61e-01 |
Height21 | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.426 | 0.399 | 0.027 | 1.39e-01 | 0.427 | 0.389 | 0.038 | 1.31e-02 |
Height21 | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.442 | 0.399 | 0.043 | 1.90e-02 | 0.429 | 0.389 | 0.040 | 3.26e-03 |
Height21 | PRScs.10FCVal | pT+clump.MultiPRS | 0.429 | 0.399 | 0.030 | 9.68e-02 | 0.434 | 0.389 | 0.045 | 6.26e-04 |
Height21 | LDpred1.Inf | pT+clump.MultiPRS | 0.378 | 0.399 | -0.021 | 2.63e-01 | 0.390 | 0.389 | 0.001 | 9.56e-01 |
Height21 | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.399 | 0.399 | 0.000 | 1.00e+00 | 0.389 | 0.389 | 0.000 | 1.00e+00 |
Height21 | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.417 | 0.399 | 0.018 | 3.30e-01 | 0.428 | 0.389 | 0.040 | 3.94e-03 |
Height21 | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.428 | 0.399 | 0.030 | 1.07e-01 | 0.434 | 0.389 | 0.045 | 1.73e-03 |
Height21 | LDpred2.MultiPRS | pT+clump.10FCVal | 0.440 | 0.387 | 0.053 | 3.99e-03 | 0.432 | 0.353 | 0.079 | 1.04e-05 |
Height21 | LDpred2.PseudoVal | pT+clump.10FCVal | 0.378 | 0.387 | -0.009 | 4.38e-01 | 0.394 | 0.353 | 0.041 | 8.21e-02 |
Height21 | pT+clump.MultiPRS | pT+clump.10FCVal | 0.399 | 0.387 | 0.011 | 5.39e-01 | 0.389 | 0.353 | 0.036 | 4.81e-05 |
Height21 | SBLUP.Inf | pT+clump.10FCVal | 0.378 | 0.387 | -0.010 | 4.21e-01 | 0.387 | 0.353 | 0.034 | 1.61e-01 |
Height21 | PRScs.PseudoVal | pT+clump.10FCVal | 0.436 | 0.387 | 0.048 | 1.95e-08 | 0.435 | 0.353 | 0.081 | 1.95e-06 |
Height21 | PRScs.MultiPRS | pT+clump.10FCVal | 0.435 | 0.387 | 0.048 | 1.02e-02 | 0.437 | 0.353 | 0.084 | 9.07e-07 |
Height21 | LDpred2.Inf | pT+clump.10FCVal | 0.379 | 0.387 | -0.008 | 4.67e-01 | 0.395 | 0.353 | 0.041 | 7.81e-02 |
Height21 | SBayesR.PseudoVal | pT+clump.10FCVal | 0.428 | 0.387 | 0.041 | 7.18e-07 | 0.434 | 0.353 | 0.081 | 6.75e-07 |
Height21 | pT+clump.10FCVal | pT+clump.10FCVal | 0.387 | 0.387 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.406 | 0.387 | 0.019 | 3.79e-02 | 0.385 | 0.353 | 0.031 | 8.24e-02 |
Height21 | PRScs.10FCVal | pT+clump.10FCVal | 0.429 | 0.387 | 0.042 | 4.48e-07 | 0.434 | 0.353 | 0.081 | 9.12e-07 |
Height21 | LDpred2.10FCVal | pT+clump.10FCVal | 0.431 | 0.387 | 0.044 | 3.65e-06 | 0.445 | 0.353 | 0.092 | 1.17e-06 |
Height21 | MegaPRS.10FCVal | pT+clump.10FCVal | 0.426 | 0.387 | 0.039 | 8.88e-05 | 0.427 | 0.353 | 0.074 | 1.77e-04 |
Height21 | LDpred1.MultiPRS | pT+clump.10FCVal | 0.384 | 0.387 | -0.003 | 8.59e-01 | 0.397 | 0.353 | 0.043 | 6.22e-02 |
Height21 | lassosum.PseudoVal | pT+clump.10FCVal | 0.357 | 0.387 | -0.030 | 4.48e-03 | 0.354 | 0.353 | 0.000 | 9.86e-01 |
Height21 | All.MultiPRS | pT+clump.10FCVal | 0.453 | 0.387 | 0.065 | 4.20e-04 | 0.441 | 0.353 | 0.088 | 9.87e-09 |
Height21 | LDpred1.Inf | pT+clump.10FCVal | 0.378 | 0.387 | -0.009 | 4.14e-01 | 0.390 | 0.353 | 0.036 | 1.15e-01 |
Height21 | LDpred1.10FCVal | pT+clump.10FCVal | 0.380 | 0.387 | -0.007 | 5.35e-01 | 0.383 | 0.353 | 0.029 | 2.26e-01 |
Height21 | lassosum.MultiPRS | pT+clump.10FCVal | 0.440 | 0.387 | 0.052 | 4.46e-03 | 0.431 | 0.353 | 0.077 | 2.15e-06 |
Height21 | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.417 | 0.387 | 0.029 | 1.69e-03 | 0.428 | 0.353 | 0.075 | 5.64e-05 |
Height21 | lassosum.10FCVal | pT+clump.10FCVal | 0.435 | 0.387 | 0.048 | 7.29e-09 | 0.425 | 0.353 | 0.072 | 8.44e-06 |
Height21 | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.442 | 0.387 | 0.055 | 2.86e-03 | 0.429 | 0.353 | 0.075 | 2.45e-05 |
Height21 | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.428 | 0.428 | 0.000 | 1.00e+00 | 0.434 | 0.434 | 0.000 | 1.00e+00 |
Height21 | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.440 | 0.428 | 0.012 | 5.15e-01 | 0.432 | 0.434 | -0.002 | 8.66e-01 |
Height21 | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.384 | 0.428 | -0.045 | 1.57e-02 | 0.397 | 0.434 | -0.037 | 5.29e-02 |
Height21 | PRScs.PseudoVal | SBayesR.PseudoVal | 0.436 | 0.428 | 0.007 | 2.22e-01 | 0.435 | 0.434 | 0.001 | 9.48e-01 |
Height21 | All.MultiPRS | SBayesR.PseudoVal | 0.453 | 0.428 | 0.024 | 1.81e-01 | 0.441 | 0.434 | 0.007 | 4.64e-01 |
Height21 | PRScs.MultiPRS | SBayesR.PseudoVal | 0.435 | 0.428 | 0.007 | 7.14e-01 | 0.437 | 0.434 | 0.003 | 7.93e-01 |
Height21 | LDpred2.10FCVal | SBayesR.PseudoVal | 0.431 | 0.428 | 0.003 | 6.71e-01 | 0.445 | 0.434 | 0.011 | 4.04e-01 |
Height21 | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.406 | 0.428 | -0.022 | 4.26e-03 | 0.385 | 0.434 | -0.049 | 6.68e-04 |
Height21 | pT+clump.10FCVal | SBayesR.PseudoVal | 0.387 | 0.428 | -0.041 | 7.18e-07 | 0.353 | 0.434 | -0.081 | 6.75e-07 |
Height21 | lassosum.10FCVal | SBayesR.PseudoVal | 0.435 | 0.428 | 0.006 | 2.47e-01 | 0.425 | 0.434 | -0.009 | 4.12e-01 |
Height21 | LDpred2.Inf | SBayesR.PseudoVal | 0.379 | 0.428 | -0.050 | 8.46e-07 | 0.395 | 0.434 | -0.040 | 4.52e-02 |
Height21 | PRScs.10FCVal | SBayesR.PseudoVal | 0.429 | 0.428 | 0.001 | 8.87e-01 | 0.434 | 0.434 | 0.000 | 9.92e-01 |
Height21 | SBLUP.Inf | SBayesR.PseudoVal | 0.378 | 0.428 | -0.051 | 1.14e-06 | 0.387 | 0.434 | -0.047 | 2.12e-02 |
Height21 | lassosum.MultiPRS | SBayesR.PseudoVal | 0.440 | 0.428 | 0.011 | 5.35e-01 | 0.431 | 0.434 | -0.004 | 7.46e-01 |
Height21 | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.378 | 0.428 | -0.050 | 7.66e-07 | 0.394 | 0.434 | -0.040 | 4.63e-02 |
Height21 | lassosum.PseudoVal | SBayesR.PseudoVal | 0.357 | 0.428 | -0.071 | 1.23e-20 | 0.354 | 0.434 | -0.080 | 1.23e-07 |
Height21 | LDpred1.Inf | SBayesR.PseudoVal | 0.378 | 0.428 | -0.051 | 7.00e-07 | 0.390 | 0.434 | -0.044 | 2.50e-02 |
Height21 | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.399 | 0.428 | -0.030 | 1.07e-01 | 0.389 | 0.434 | -0.045 | 1.73e-03 |
Height21 | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.417 | 0.428 | -0.012 | 1.08e-01 | 0.428 | 0.434 | -0.006 | 6.83e-01 |
Height21 | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.442 | 0.428 | 0.014 | 4.47e-01 | 0.429 | 0.434 | -0.005 | 6.68e-01 |
Height21 | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.426 | 0.428 | -0.002 | 7.52e-01 | 0.427 | 0.434 | -0.007 | 6.55e-01 |
Height21 | LDpred1.10FCVal | SBayesR.PseudoVal | 0.380 | 0.428 | -0.048 | 1.66e-06 | 0.383 | 0.434 | -0.051 | 1.04e-02 |
Height21 | All.MultiPRS | SBLUP.Inf | 0.453 | 0.378 | 0.075 | 4.63e-05 | 0.441 | 0.387 | 0.054 | 5.14e-04 |
Height21 | LDpred2.MultiPRS | SBLUP.Inf | 0.440 | 0.378 | 0.063 | 7.43e-04 | 0.432 | 0.387 | 0.045 | 4.87e-03 |
Height21 | PRScs.PseudoVal | SBLUP.Inf | 0.436 | 0.378 | 0.058 | 5.77e-16 | 0.435 | 0.387 | 0.048 | 6.60e-04 |
Height21 | lassosum.10FCVal | SBLUP.Inf | 0.435 | 0.378 | 0.057 | 1.04e-10 | 0.425 | 0.387 | 0.038 | 2.97e-02 |
Height21 | LDpred2.Inf | SBLUP.Inf | 0.379 | 0.378 | 0.001 | 7.48e-01 | 0.395 | 0.387 | 0.007 | 3.05e-01 |
Height21 | MegaPRS.PseudoVal | SBLUP.Inf | 0.406 | 0.378 | 0.029 | 7.79e-03 | 0.385 | 0.387 | -0.003 | 9.02e-01 |
Height21 | pT+clump.10FCVal | SBLUP.Inf | 0.387 | 0.378 | 0.010 | 4.21e-01 | 0.353 | 0.387 | -0.034 | 1.61e-01 |
Height21 | lassosum.MultiPRS | SBLUP.Inf | 0.440 | 0.378 | 0.062 | 8.41e-04 | 0.431 | 0.387 | 0.043 | 5.74e-03 |
Height21 | LDpred2.PseudoVal | SBLUP.Inf | 0.378 | 0.378 | 0.001 | 8.87e-01 | 0.394 | 0.387 | 0.007 | 3.14e-01 |
Height21 | LDpred1.MultiPRS | SBLUP.Inf | 0.384 | 0.378 | 0.006 | 7.42e-01 | 0.397 | 0.387 | 0.009 | 2.18e-01 |
Height21 | MegaPRS.10FCVal | SBLUP.Inf | 0.426 | 0.378 | 0.048 | 3.09e-10 | 0.427 | 0.387 | 0.040 | 6.69e-03 |
Height21 | pT+clump.MultiPRS | SBLUP.Inf | 0.399 | 0.378 | 0.021 | 2.62e-01 | 0.389 | 0.387 | 0.002 | 9.30e-01 |
Height21 | DBSLMM.PseudoVal | SBLUP.Inf | 0.417 | 0.378 | 0.039 | 3.12e-10 | 0.428 | 0.387 | 0.041 | 1.27e-03 |
Height21 | LDpred2.10FCVal | SBLUP.Inf | 0.431 | 0.378 | 0.054 | 4.70e-18 | 0.445 | 0.387 | 0.058 | 6.59e-07 |
Height21 | LDpred1.Inf | SBLUP.Inf | 0.378 | 0.378 | 0.000 | 9.82e-01 | 0.390 | 0.387 | 0.003 | 6.93e-01 |
Height21 | SBayesR.PseudoVal | SBLUP.Inf | 0.428 | 0.378 | 0.051 | 1.14e-06 | 0.434 | 0.387 | 0.047 | 2.12e-02 |
Height21 | SBLUP.Inf | SBLUP.Inf | 0.378 | 0.378 | 0.000 | 1.00e+00 | 0.387 | 0.387 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.MultiPRS | SBLUP.Inf | 0.442 | 0.378 | 0.064 | 4.81e-04 | 0.429 | 0.387 | 0.041 | 2.28e-03 |
Height21 | PRScs.10FCVal | SBLUP.Inf | 0.429 | 0.378 | 0.051 | 4.23e-10 | 0.434 | 0.387 | 0.047 | 3.56e-03 |
Height21 | LDpred1.10FCVal | SBLUP.Inf | 0.380 | 0.378 | 0.002 | 6.70e-01 | 0.383 | 0.387 | -0.005 | 6.67e-01 |
Height21 | lassosum.PseudoVal | SBLUP.Inf | 0.357 | 0.378 | -0.020 | 1.32e-01 | 0.354 | 0.387 | -0.033 | 2.01e-01 |
Height21 | PRScs.MultiPRS | SBLUP.Inf | 0.435 | 0.378 | 0.057 | 1.94e-03 | 0.437 | 0.387 | 0.050 | 3.14e-04 |
BMI21 | All.MultiPRS | All.MultiPRS | 0.373 | 0.373 | 0.000 | 1.00e+00 | 0.338 | 0.338 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.10FCVal | All.MultiPRS | 0.336 | 0.373 | -0.037 | 6.15e-02 | 0.306 | 0.338 | -0.032 | 3.87e-02 |
BMI21 | PRScs.10FCVal | All.MultiPRS | 0.353 | 0.373 | -0.021 | 2.95e-01 | 0.326 | 0.338 | -0.012 | 3.24e-01 |
BMI21 | lassosum.MultiPRS | All.MultiPRS | 0.361 | 0.373 | -0.013 | 5.20e-01 | 0.334 | 0.338 | -0.004 | 7.30e-01 |
BMI21 | LDpred2.Inf | All.MultiPRS | 0.333 | 0.373 | -0.040 | 4.54e-02 | 0.290 | 0.338 | -0.047 | 1.08e-03 |
BMI21 | DBSLMM.PseudoVal | All.MultiPRS | 0.354 | 0.373 | -0.019 | 3.25e-01 | 0.303 | 0.338 | -0.035 | 5.23e-03 |
BMI21 | LDpred2.10FCVal | All.MultiPRS | 0.360 | 0.373 | -0.014 | 4.91e-01 | 0.315 | 0.338 | -0.023 | 4.47e-02 |
BMI21 | lassosum.PseudoVal | All.MultiPRS | 0.288 | 0.373 | -0.085 | 1.93e-05 | 0.231 | 0.338 | -0.107 | 4.82e-07 |
BMI21 | MegaPRS.10FCVal | All.MultiPRS | 0.371 | 0.373 | -0.003 | 8.91e-01 | 0.353 | 0.338 | 0.015 | 9.29e-02 |
BMI21 | MegaPRS.PseudoVal | All.MultiPRS | 0.371 | 0.373 | -0.003 | 8.91e-01 | 0.353 | 0.338 | 0.015 | 9.29e-02 |
BMI21 | pT+clump.MultiPRS | All.MultiPRS | 0.317 | 0.373 | -0.056 | 4.61e-03 | 0.295 | 0.338 | -0.043 | 7.98e-03 |
BMI21 | LDpred1.MultiPRS | All.MultiPRS | 0.349 | 0.373 | -0.024 | 1.34e-04 | 0.306 | 0.338 | -0.032 | 1.66e-02 |
BMI21 | LDpred2.MultiPRS | All.MultiPRS | 0.357 | 0.373 | -0.016 | 4.07e-01 | 0.308 | 0.338 | -0.029 | 6.41e-03 |
BMI21 | SBayesR.PseudoVal | All.MultiPRS | 0.339 | 0.373 | -0.034 | 8.18e-02 | 0.290 | 0.338 | -0.048 | 2.48e-03 |
BMI21 | lassosum.10FCVal | All.MultiPRS | 0.352 | 0.373 | -0.021 | 2.82e-01 | 0.332 | 0.338 | -0.006 | 6.45e-01 |
BMI21 | LDpred1.Inf | All.MultiPRS | 0.345 | 0.373 | -0.028 | 1.52e-01 | 0.298 | 0.338 | -0.040 | 7.18e-03 |
BMI21 | PRScs.MultiPRS | All.MultiPRS | 0.354 | 0.373 | -0.019 | 4.41e-04 | 0.325 | 0.338 | -0.013 | 2.37e-01 |
BMI21 | PRScs.PseudoVal | All.MultiPRS | 0.347 | 0.373 | -0.026 | 1.91e-01 | 0.302 | 0.338 | -0.036 | 3.56e-03 |
BMI21 | LDpred2.PseudoVal | All.MultiPRS | 0.333 | 0.373 | -0.040 | 4.34e-02 | 0.290 | 0.338 | -0.047 | 1.21e-03 |
BMI21 | pT+clump.10FCVal | All.MultiPRS | 0.310 | 0.373 | -0.064 | 1.46e-03 | 0.301 | 0.338 | -0.037 | 3.33e-02 |
BMI21 | MegaPRS.MultiPRS | All.MultiPRS | 0.374 | 0.373 | 0.001 | 9.76e-01 | 0.343 | 0.338 | 0.006 | 4.15e-01 |
BMI21 | SBLUP.Inf | All.MultiPRS | 0.324 | 0.373 | -0.049 | 1.46e-02 | 0.299 | 0.338 | -0.039 | 1.42e-02 |
BMI21 | All.MultiPRS | DBSLMM.PseudoVal | 0.373 | 0.354 | 0.019 | 3.25e-01 | 0.338 | 0.303 | 0.035 | 5.23e-03 |
BMI21 | LDpred1.Inf | DBSLMM.PseudoVal | 0.345 | 0.354 | -0.009 | 1.60e-01 | 0.298 | 0.303 | -0.005 | 7.11e-01 |
BMI21 | PRScs.10FCVal | DBSLMM.PseudoVal | 0.353 | 0.354 | -0.001 | 7.81e-01 | 0.326 | 0.303 | 0.023 | 1.24e-02 |
BMI21 | LDpred2.Inf | DBSLMM.PseudoVal | 0.333 | 0.354 | -0.020 | 3.21e-03 | 0.290 | 0.303 | -0.012 | 3.92e-01 |
BMI21 | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.361 | 0.354 | 0.007 | 7.34e-01 | 0.334 | 0.303 | 0.031 | 6.77e-03 |
BMI21 | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.336 | 0.354 | -0.018 | 1.45e-02 | 0.306 | 0.303 | 0.003 | 8.44e-01 |
BMI21 | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.347 | 0.354 | -0.006 | 2.26e-01 | 0.302 | 0.303 | -0.001 | 9.29e-01 |
BMI21 | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.349 | 0.354 | -0.005 | 8.06e-01 | 0.306 | 0.303 | 0.003 | 8.11e-01 |
BMI21 | lassosum.10FCVal | DBSLMM.PseudoVal | 0.352 | 0.354 | -0.002 | 7.61e-01 | 0.332 | 0.303 | 0.029 | 1.45e-02 |
BMI21 | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.317 | 0.354 | -0.037 | 6.51e-02 | 0.295 | 0.303 | -0.008 | 5.93e-01 |
BMI21 | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.354 | 0.354 | 0.000 | 1.00e+00 | 0.303 | 0.303 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.371 | 0.354 | 0.017 | 4.18e-03 | 0.353 | 0.303 | 0.050 | 2.67e-05 |
BMI21 | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.360 | 0.354 | 0.006 | 3.34e-01 | 0.315 | 0.303 | 0.012 | 3.36e-01 |
BMI21 | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.333 | 0.354 | -0.021 | 2.91e-03 | 0.290 | 0.303 | -0.012 | 4.00e-01 |
BMI21 | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.288 | 0.354 | -0.066 | 2.85e-11 | 0.231 | 0.303 | -0.072 | 6.61e-04 |
BMI21 | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.339 | 0.354 | -0.015 | 4.11e-02 | 0.290 | 0.303 | -0.013 | 4.21e-01 |
BMI21 | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.374 | 0.354 | 0.020 | 3.12e-01 | 0.343 | 0.303 | 0.041 | 1.17e-03 |
BMI21 | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.310 | 0.354 | -0.044 | 1.47e-07 | 0.301 | 0.303 | -0.002 | 9.11e-01 |
BMI21 | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.354 | 0.354 | 0.000 | 9.81e-01 | 0.325 | 0.303 | 0.022 | 1.07e-02 |
BMI21 | SBLUP.Inf | DBSLMM.PseudoVal | 0.324 | 0.354 | -0.029 | 4.67e-05 | 0.299 | 0.303 | -0.004 | 7.86e-01 |
BMI21 | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.371 | 0.354 | 0.017 | 4.18e-03 | 0.353 | 0.303 | 0.050 | 2.67e-05 |
BMI21 | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.357 | 0.354 | 0.003 | 8.76e-01 | 0.308 | 0.303 | 0.006 | 6.70e-01 |
BMI21 | lassosum.MultiPRS | lassosum.MultiPRS | 0.361 | 0.361 | 0.000 | 1.00e+00 | 0.334 | 0.334 | 0.000 | 1.00e+00 |
BMI21 | LDpred2.10FCVal | lassosum.MultiPRS | 0.360 | 0.361 | -0.001 | 9.64e-01 | 0.315 | 0.334 | -0.019 | 1.03e-01 |
BMI21 | LDpred2.Inf | lassosum.MultiPRS | 0.333 | 0.361 | -0.027 | 1.75e-01 | 0.290 | 0.334 | -0.044 | 5.08e-03 |
BMI21 | LDpred2.PseudoVal | lassosum.MultiPRS | 0.333 | 0.361 | -0.028 | 1.69e-01 | 0.290 | 0.334 | -0.044 | 5.66e-03 |
BMI21 | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.371 | 0.361 | 0.010 | 6.14e-01 | 0.353 | 0.334 | 0.019 | 9.50e-02 |
BMI21 | SBayesR.PseudoVal | lassosum.MultiPRS | 0.339 | 0.361 | -0.022 | 2.82e-01 | 0.290 | 0.334 | -0.044 | 2.88e-03 |
BMI21 | pT+clump.MultiPRS | lassosum.MultiPRS | 0.317 | 0.361 | -0.044 | 2.92e-02 | 0.295 | 0.334 | -0.039 | 1.69e-02 |
BMI21 | LDpred1.Inf | lassosum.MultiPRS | 0.345 | 0.361 | -0.016 | 4.31e-01 | 0.298 | 0.334 | -0.037 | 1.87e-02 |
BMI21 | All.MultiPRS | lassosum.MultiPRS | 0.373 | 0.361 | 0.013 | 5.20e-01 | 0.338 | 0.334 | 0.004 | 7.30e-01 |
BMI21 | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.354 | 0.361 | -0.007 | 7.34e-01 | 0.303 | 0.334 | -0.031 | 6.77e-03 |
BMI21 | lassosum.10FCVal | lassosum.MultiPRS | 0.352 | 0.361 | -0.008 | 6.69e-01 | 0.332 | 0.334 | -0.002 | 7.62e-01 |
BMI21 | pT+clump.10FCVal | lassosum.MultiPRS | 0.310 | 0.361 | -0.051 | 1.16e-02 | 0.301 | 0.334 | -0.033 | 6.72e-02 |
BMI21 | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.374 | 0.361 | 0.013 | 2.25e-02 | 0.343 | 0.334 | 0.009 | 4.52e-01 |
BMI21 | SBLUP.Inf | lassosum.MultiPRS | 0.324 | 0.361 | -0.036 | 7.19e-02 | 0.299 | 0.334 | -0.035 | 2.83e-02 |
BMI21 | lassosum.PseudoVal | lassosum.MultiPRS | 0.288 | 0.361 | -0.072 | 3.70e-04 | 0.231 | 0.334 | -0.104 | 4.58e-08 |
BMI21 | LDpred2.MultiPRS | lassosum.MultiPRS | 0.357 | 0.361 | -0.004 | 5.42e-01 | 0.308 | 0.334 | -0.026 | 3.80e-02 |
BMI21 | PRScs.MultiPRS | lassosum.MultiPRS | 0.354 | 0.361 | -0.006 | 7.50e-01 | 0.325 | 0.334 | -0.009 | 2.88e-01 |
BMI21 | MegaPRS.10FCVal | lassosum.MultiPRS | 0.371 | 0.361 | 0.010 | 6.14e-01 | 0.353 | 0.334 | 0.019 | 9.50e-02 |
BMI21 | LDpred1.MultiPRS | lassosum.MultiPRS | 0.349 | 0.361 | -0.012 | 5.57e-01 | 0.306 | 0.334 | -0.028 | 4.80e-02 |
BMI21 | PRScs.10FCVal | lassosum.MultiPRS | 0.353 | 0.361 | -0.008 | 6.87e-01 | 0.326 | 0.334 | -0.008 | 4.38e-01 |
BMI21 | PRScs.PseudoVal | lassosum.MultiPRS | 0.347 | 0.361 | -0.013 | 5.11e-01 | 0.302 | 0.334 | -0.032 | 1.34e-03 |
BMI21 | LDpred1.10FCVal | lassosum.MultiPRS | 0.336 | 0.361 | -0.025 | 2.19e-01 | 0.306 | 0.334 | -0.028 | 7.60e-02 |
BMI21 | SBLUP.Inf | lassosum.10FCVal | 0.324 | 0.352 | -0.028 | 5.02e-04 | 0.299 | 0.332 | -0.033 | 3.58e-02 |
BMI21 | LDpred2.MultiPRS | lassosum.10FCVal | 0.357 | 0.352 | 0.005 | 8.08e-01 | 0.308 | 0.332 | -0.024 | 6.71e-02 |
BMI21 | SBayesR.PseudoVal | lassosum.10FCVal | 0.339 | 0.352 | -0.013 | 8.95e-02 | 0.290 | 0.332 | -0.042 | 8.78e-03 |
BMI21 | LDpred2.PseudoVal | lassosum.10FCVal | 0.333 | 0.352 | -0.019 | 1.25e-02 | 0.290 | 0.332 | -0.041 | 8.97e-03 |
BMI21 | LDpred2.Inf | lassosum.10FCVal | 0.333 | 0.352 | -0.019 | 1.35e-02 | 0.290 | 0.332 | -0.042 | 8.22e-03 |
BMI21 | PRScs.MultiPRS | lassosum.10FCVal | 0.354 | 0.352 | 0.002 | 9.11e-01 | 0.325 | 0.332 | -0.007 | 4.37e-01 |
BMI21 | LDpred2.10FCVal | lassosum.10FCVal | 0.360 | 0.352 | 0.008 | 1.94e-01 | 0.315 | 0.332 | -0.017 | 1.63e-01 |
BMI21 | pT+clump.MultiPRS | lassosum.10FCVal | 0.317 | 0.352 | -0.035 | 7.82e-02 | 0.295 | 0.332 | -0.037 | 1.70e-02 |
BMI21 | lassosum.MultiPRS | lassosum.10FCVal | 0.361 | 0.352 | 0.008 | 6.69e-01 | 0.334 | 0.332 | 0.002 | 7.62e-01 |
BMI21 | pT+clump.10FCVal | lassosum.10FCVal | 0.310 | 0.352 | -0.043 | 7.13e-07 | 0.301 | 0.332 | -0.031 | 6.73e-02 |
BMI21 | MegaPRS.PseudoVal | lassosum.10FCVal | 0.371 | 0.352 | 0.018 | 1.90e-03 | 0.353 | 0.332 | 0.021 | 8.21e-02 |
BMI21 | PRScs.PseudoVal | lassosum.10FCVal | 0.347 | 0.352 | -0.005 | 3.71e-01 | 0.302 | 0.332 | -0.030 | 6.84e-03 |
BMI21 | All.MultiPRS | lassosum.10FCVal | 0.373 | 0.352 | 0.021 | 2.82e-01 | 0.338 | 0.332 | 0.006 | 6.45e-01 |
BMI21 | PRScs.10FCVal | lassosum.10FCVal | 0.353 | 0.352 | 0.000 | 9.26e-01 | 0.326 | 0.332 | -0.006 | 5.68e-01 |
BMI21 | lassosum.PseudoVal | lassosum.10FCVal | 0.288 | 0.352 | -0.064 | 1.20e-11 | 0.231 | 0.332 | -0.101 | 3.46e-07 |
BMI21 | lassosum.10FCVal | lassosum.10FCVal | 0.352 | 0.352 | 0.000 | 1.00e+00 | 0.332 | 0.332 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.Inf | lassosum.10FCVal | 0.345 | 0.352 | -0.007 | 3.03e-01 | 0.298 | 0.332 | -0.034 | 2.41e-02 |
BMI21 | LDpred1.10FCVal | lassosum.10FCVal | 0.336 | 0.352 | -0.016 | 3.88e-02 | 0.306 | 0.332 | -0.026 | 9.96e-02 |
BMI21 | MegaPRS.10FCVal | lassosum.10FCVal | 0.371 | 0.352 | 0.018 | 1.90e-03 | 0.353 | 0.332 | 0.021 | 8.21e-02 |
BMI21 | DBSLMM.PseudoVal | lassosum.10FCVal | 0.354 | 0.352 | 0.002 | 7.61e-01 | 0.303 | 0.332 | -0.029 | 1.45e-02 |
BMI21 | LDpred1.MultiPRS | lassosum.10FCVal | 0.349 | 0.352 | -0.003 | 8.73e-01 | 0.306 | 0.332 | -0.026 | 6.36e-02 |
BMI21 | MegaPRS.MultiPRS | lassosum.10FCVal | 0.374 | 0.352 | 0.022 | 2.72e-01 | 0.343 | 0.332 | 0.011 | 3.64e-01 |
BMI21 | SBayesR.PseudoVal | lassosum.PseudoVal | 0.339 | 0.288 | 0.051 | 8.27e-14 | 0.290 | 0.231 | 0.060 | 2.43e-05 |
BMI21 | lassosum.10FCVal | lassosum.PseudoVal | 0.352 | 0.288 | 0.064 | 1.20e-11 | 0.332 | 0.231 | 0.101 | 3.46e-07 |
BMI21 | lassosum.MultiPRS | lassosum.PseudoVal | 0.361 | 0.288 | 0.072 | 3.70e-04 | 0.334 | 0.231 | 0.104 | 4.58e-08 |
BMI21 | MegaPRS.10FCVal | lassosum.PseudoVal | 0.371 | 0.288 | 0.082 | 8.43e-15 | 0.353 | 0.231 | 0.122 | 3.30e-08 |
BMI21 | LDpred2.MultiPRS | lassosum.PseudoVal | 0.357 | 0.288 | 0.069 | 7.14e-04 | 0.308 | 0.231 | 0.078 | 3.54e-04 |
BMI21 | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.354 | 0.288 | 0.066 | 2.85e-11 | 0.303 | 0.231 | 0.072 | 6.61e-04 |
BMI21 | LDpred2.PseudoVal | lassosum.PseudoVal | 0.333 | 0.288 | 0.045 | 3.51e-04 | 0.290 | 0.231 | 0.060 | 2.39e-02 |
BMI21 | pT+clump.10FCVal | lassosum.PseudoVal | 0.310 | 0.288 | 0.021 | 9.90e-02 | 0.301 | 0.231 | 0.070 | 7.45e-03 |
BMI21 | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.371 | 0.288 | 0.082 | 8.43e-15 | 0.353 | 0.231 | 0.122 | 3.30e-08 |
BMI21 | LDpred1.Inf | lassosum.PseudoVal | 0.345 | 0.288 | 0.057 | 3.52e-06 | 0.298 | 0.231 | 0.067 | 1.01e-02 |
BMI21 | LDpred1.10FCVal | lassosum.PseudoVal | 0.336 | 0.288 | 0.048 | 2.04e-04 | 0.306 | 0.231 | 0.075 | 4.87e-03 |
BMI21 | All.MultiPRS | lassosum.PseudoVal | 0.373 | 0.288 | 0.085 | 1.93e-05 | 0.338 | 0.231 | 0.107 | 4.82e-07 |
BMI21 | lassosum.PseudoVal | lassosum.PseudoVal | 0.288 | 0.288 | 0.000 | 1.00e+00 | 0.231 | 0.231 | 0.000 | 1.00e+00 |
BMI21 | PRScs.MultiPRS | lassosum.PseudoVal | 0.354 | 0.288 | 0.066 | 9.55e-04 | 0.325 | 0.231 | 0.094 | 6.03e-07 |
BMI21 | PRScs.PseudoVal | lassosum.PseudoVal | 0.347 | 0.288 | 0.059 | 5.06e-15 | 0.302 | 0.231 | 0.071 | 4.61e-06 |
BMI21 | LDpred1.MultiPRS | lassosum.PseudoVal | 0.349 | 0.288 | 0.061 | 2.49e-03 | 0.306 | 0.231 | 0.075 | 2.83e-03 |
BMI21 | PRScs.10FCVal | lassosum.PseudoVal | 0.353 | 0.288 | 0.064 | 2.54e-09 | 0.326 | 0.231 | 0.096 | 2.09e-05 |
BMI21 | pT+clump.MultiPRS | lassosum.PseudoVal | 0.317 | 0.288 | 0.029 | 1.59e-01 | 0.295 | 0.231 | 0.064 | 2.82e-03 |
BMI21 | SBLUP.Inf | lassosum.PseudoVal | 0.324 | 0.288 | 0.036 | 4.71e-03 | 0.299 | 0.231 | 0.068 | 1.07e-02 |
BMI21 | LDpred2.Inf | lassosum.PseudoVal | 0.333 | 0.288 | 0.045 | 2.80e-04 | 0.290 | 0.231 | 0.060 | 2.26e-02 |
BMI21 | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.374 | 0.288 | 0.086 | 2.32e-05 | 0.343 | 0.231 | 0.113 | 3.67e-07 |
BMI21 | LDpred2.10FCVal | lassosum.PseudoVal | 0.360 | 0.288 | 0.071 | 3.43e-12 | 0.315 | 0.231 | 0.084 | 8.12e-05 |
BMI21 | All.MultiPRS | MegaPRS.MultiPRS | 0.373 | 0.374 | -0.001 | 9.76e-01 | 0.338 | 0.343 | -0.006 | 4.15e-01 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.354 | 0.374 | -0.020 | 3.12e-01 | 0.303 | 0.343 | -0.041 | 1.17e-03 |
BMI21 | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.349 | 0.374 | -0.025 | 2.07e-01 | 0.306 | 0.343 | -0.037 | 2.62e-03 |
BMI21 | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.333 | 0.374 | -0.041 | 4.05e-02 | 0.290 | 0.343 | -0.053 | 1.04e-04 |
BMI21 | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.371 | 0.374 | -0.003 | 8.68e-01 | 0.353 | 0.343 | 0.010 | 1.55e-01 |
BMI21 | LDpred2.Inf | MegaPRS.MultiPRS | 0.333 | 0.374 | -0.040 | 4.24e-02 | 0.290 | 0.343 | -0.053 | 7.92e-05 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.374 | 0.374 | 0.000 | 1.00e+00 | 0.343 | 0.343 | 0.000 | 1.00e+00 |
BMI21 | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.354 | 0.374 | -0.020 | 3.21e-01 | 0.325 | 0.343 | -0.018 | 8.47e-02 |
BMI21 | PRScs.10FCVal | MegaPRS.MultiPRS | 0.353 | 0.374 | -0.021 | 2.82e-01 | 0.326 | 0.343 | -0.017 | 1.21e-01 |
BMI21 | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.339 | 0.374 | -0.035 | 8.14e-02 | 0.290 | 0.343 | -0.053 | 1.21e-03 |
BMI21 | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.361 | 0.374 | -0.013 | 2.25e-02 | 0.334 | 0.343 | -0.009 | 4.52e-01 |
BMI21 | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.317 | 0.374 | -0.057 | 4.37e-03 | 0.295 | 0.343 | -0.049 | 1.60e-03 |
BMI21 | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.347 | 0.374 | -0.026 | 1.84e-01 | 0.302 | 0.343 | -0.042 | 9.71e-04 |
BMI21 | SBLUP.Inf | MegaPRS.MultiPRS | 0.324 | 0.374 | -0.049 | 1.34e-02 | 0.299 | 0.343 | -0.045 | 2.75e-03 |
BMI21 | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.336 | 0.374 | -0.038 | 5.69e-02 | 0.306 | 0.343 | -0.038 | 9.93e-03 |
BMI21 | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.288 | 0.374 | -0.086 | 2.32e-05 | 0.231 | 0.343 | -0.113 | 3.67e-07 |
BMI21 | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.357 | 0.374 | -0.017 | 4.63e-03 | 0.308 | 0.343 | -0.035 | 4.64e-03 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.371 | 0.374 | -0.003 | 8.68e-01 | 0.353 | 0.343 | 0.010 | 1.55e-01 |
BMI21 | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.360 | 0.374 | -0.014 | 4.74e-01 | 0.315 | 0.343 | -0.028 | 1.44e-02 |
BMI21 | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.310 | 0.374 | -0.064 | 1.40e-03 | 0.301 | 0.343 | -0.042 | 8.61e-03 |
BMI21 | lassosum.10FCVal | MegaPRS.MultiPRS | 0.352 | 0.374 | -0.022 | 2.72e-01 | 0.332 | 0.343 | -0.011 | 3.64e-01 |
BMI21 | LDpred1.Inf | MegaPRS.MultiPRS | 0.345 | 0.374 | -0.029 | 1.44e-01 | 0.298 | 0.343 | -0.046 | 5.87e-04 |
BMI21 | lassosum.PseudoVal | MegaPRS.10FCVal | 0.288 | 0.371 | -0.082 | 8.43e-15 | 0.231 | 0.353 | -0.122 | 3.30e-08 |
BMI21 | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.288 | 0.371 | -0.082 | 8.43e-15 | 0.231 | 0.353 | -0.122 | 3.30e-08 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.374 | 0.371 | 0.003 | 8.68e-01 | 0.343 | 0.353 | -0.010 | 1.55e-01 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.374 | 0.371 | 0.003 | 8.68e-01 | 0.343 | 0.353 | -0.010 | 1.55e-01 |
BMI21 | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.357 | 0.371 | -0.014 | 4.90e-01 | 0.308 | 0.353 | -0.045 | 1.36e-04 |
BMI21 | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.357 | 0.371 | -0.014 | 4.90e-01 | 0.308 | 0.353 | -0.045 | 1.36e-04 |
BMI21 | LDpred1.10FCVal | MegaPRS.10FCVal | 0.336 | 0.371 | -0.035 | 4.20e-08 | 0.306 | 0.353 | -0.047 | 3.00e-04 |
BMI21 | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.336 | 0.371 | -0.035 | 4.20e-08 | 0.306 | 0.353 | -0.047 | 3.00e-04 |
BMI21 | All.MultiPRS | MegaPRS.10FCVal | 0.373 | 0.371 | 0.003 | 8.91e-01 | 0.338 | 0.353 | -0.015 | 9.29e-02 |
BMI21 | All.MultiPRS | MegaPRS.PseudoVal | 0.373 | 0.371 | 0.003 | 8.91e-01 | 0.338 | 0.353 | -0.015 | 9.29e-02 |
BMI21 | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.371 | 0.371 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.371 | 0.371 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.371 | 0.371 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.371 | 0.371 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
BMI21 | PRScs.10FCVal | MegaPRS.10FCVal | 0.353 | 0.371 | -0.018 | 9.58e-05 | 0.326 | 0.353 | -0.027 | 4.01e-03 |
BMI21 | PRScs.10FCVal | MegaPRS.PseudoVal | 0.353 | 0.371 | -0.018 | 9.58e-05 | 0.326 | 0.353 | -0.027 | 4.01e-03 |
BMI21 | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.339 | 0.371 | -0.032 | 4.65e-05 | 0.290 | 0.353 | -0.063 | 9.59e-05 |
BMI21 | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.339 | 0.371 | -0.032 | 4.65e-05 | 0.290 | 0.353 | -0.063 | 9.59e-05 |
BMI21 | SBLUP.Inf | MegaPRS.10FCVal | 0.324 | 0.371 | -0.046 | 1.94e-12 | 0.299 | 0.353 | -0.054 | 5.21e-05 |
BMI21 | SBLUP.Inf | MegaPRS.PseudoVal | 0.324 | 0.371 | -0.046 | 1.94e-12 | 0.299 | 0.353 | -0.054 | 5.21e-05 |
BMI21 | lassosum.MultiPRS | MegaPRS.10FCVal | 0.361 | 0.371 | -0.010 | 6.14e-01 | 0.334 | 0.353 | -0.019 | 9.50e-02 |
BMI21 | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.361 | 0.371 | -0.010 | 6.14e-01 | 0.334 | 0.353 | -0.019 | 9.50e-02 |
BMI21 | PRScs.PseudoVal | MegaPRS.10FCVal | 0.347 | 0.371 | -0.023 | 3.75e-05 | 0.302 | 0.353 | -0.051 | 1.19e-05 |
BMI21 | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.347 | 0.371 | -0.023 | 3.75e-05 | 0.302 | 0.353 | -0.051 | 1.19e-05 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.354 | 0.371 | -0.017 | 4.18e-03 | 0.303 | 0.353 | -0.050 | 2.67e-05 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.354 | 0.371 | -0.017 | 4.18e-03 | 0.303 | 0.353 | -0.050 | 2.67e-05 |
BMI21 | PRScs.MultiPRS | MegaPRS.10FCVal | 0.354 | 0.371 | -0.016 | 4.09e-01 | 0.325 | 0.353 | -0.028 | 2.62e-03 |
BMI21 | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.354 | 0.371 | -0.016 | 4.09e-01 | 0.325 | 0.353 | -0.028 | 2.62e-03 |
BMI21 | LDpred2.10FCVal | MegaPRS.10FCVal | 0.360 | 0.371 | -0.011 | 4.36e-02 | 0.315 | 0.353 | -0.038 | 5.22e-04 |
BMI21 | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.360 | 0.371 | -0.011 | 4.36e-02 | 0.315 | 0.353 | -0.038 | 5.22e-04 |
BMI21 | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.317 | 0.371 | -0.054 | 7.02e-03 | 0.295 | 0.353 | -0.058 | 8.64e-05 |
BMI21 | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.317 | 0.371 | -0.054 | 7.02e-03 | 0.295 | 0.353 | -0.058 | 8.64e-05 |
BMI21 | LDpred2.Inf | MegaPRS.10FCVal | 0.333 | 0.371 | -0.037 | 1.52e-10 | 0.290 | 0.353 | -0.063 | 8.98e-08 |
BMI21 | LDpred2.Inf | MegaPRS.PseudoVal | 0.333 | 0.371 | -0.037 | 1.52e-10 | 0.290 | 0.353 | -0.063 | 8.98e-08 |
BMI21 | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.333 | 0.371 | -0.038 | 2.74e-10 | 0.290 | 0.353 | -0.062 | 1.97e-07 |
BMI21 | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.333 | 0.371 | -0.038 | 2.74e-10 | 0.290 | 0.353 | -0.062 | 1.97e-07 |
BMI21 | lassosum.10FCVal | MegaPRS.10FCVal | 0.352 | 0.371 | -0.018 | 1.90e-03 | 0.332 | 0.353 | -0.021 | 8.21e-02 |
BMI21 | lassosum.10FCVal | MegaPRS.PseudoVal | 0.352 | 0.371 | -0.018 | 1.90e-03 | 0.332 | 0.353 | -0.021 | 8.21e-02 |
BMI21 | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.349 | 0.371 | -0.022 | 2.75e-01 | 0.306 | 0.353 | -0.047 | 1.18e-05 |
BMI21 | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.349 | 0.371 | -0.022 | 2.75e-01 | 0.306 | 0.353 | -0.047 | 1.18e-05 |
BMI21 | LDpred1.Inf | MegaPRS.10FCVal | 0.345 | 0.371 | -0.026 | 1.09e-06 | 0.298 | 0.353 | -0.055 | 8.86e-07 |
BMI21 | LDpred1.Inf | MegaPRS.PseudoVal | 0.345 | 0.371 | -0.026 | 1.09e-06 | 0.298 | 0.353 | -0.055 | 8.86e-07 |
BMI21 | pT+clump.10FCVal | MegaPRS.10FCVal | 0.310 | 0.371 | -0.061 | 3.25e-15 | 0.301 | 0.353 | -0.052 | 6.86e-04 |
BMI21 | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.310 | 0.371 | -0.061 | 3.25e-15 | 0.301 | 0.353 | -0.052 | 6.86e-04 |
BMI21 | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.339 | 0.349 | -0.010 | 6.16e-01 | 0.290 | 0.306 | -0.016 | 4.24e-01 |
BMI21 | SBLUP.Inf | LDpred1.MultiPRS | 0.324 | 0.349 | -0.024 | 2.25e-01 | 0.299 | 0.306 | -0.007 | 5.15e-01 |
BMI21 | PRScs.10FCVal | LDpred1.MultiPRS | 0.353 | 0.349 | 0.004 | 8.55e-01 | 0.326 | 0.306 | 0.020 | 2.37e-02 |
BMI21 | All.MultiPRS | LDpred1.MultiPRS | 0.373 | 0.349 | 0.024 | 1.34e-04 | 0.338 | 0.306 | 0.032 | 1.66e-02 |
BMI21 | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.371 | 0.349 | 0.022 | 2.75e-01 | 0.353 | 0.306 | 0.047 | 1.18e-05 |
BMI21 | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.317 | 0.349 | -0.032 | 1.11e-01 | 0.295 | 0.306 | -0.011 | 5.08e-01 |
BMI21 | PRScs.PseudoVal | LDpred1.MultiPRS | 0.347 | 0.349 | -0.001 | 9.41e-01 | 0.302 | 0.306 | -0.004 | 7.70e-01 |
BMI21 | lassosum.PseudoVal | LDpred1.MultiPRS | 0.288 | 0.349 | -0.061 | 2.49e-03 | 0.231 | 0.306 | -0.075 | 2.83e-03 |
BMI21 | lassosum.10FCVal | LDpred1.MultiPRS | 0.352 | 0.349 | 0.003 | 8.73e-01 | 0.332 | 0.306 | 0.026 | 6.36e-02 |
BMI21 | pT+clump.10FCVal | LDpred1.MultiPRS | 0.310 | 0.349 | -0.039 | 5.12e-02 | 0.301 | 0.306 | -0.005 | 7.60e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.371 | 0.349 | 0.022 | 2.75e-01 | 0.353 | 0.306 | 0.047 | 1.18e-05 |
BMI21 | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.349 | 0.349 | 0.000 | 1.00e+00 | 0.306 | 0.306 | 0.000 | 1.00e+00 |
BMI21 | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.357 | 0.349 | 0.008 | 6.86e-01 | 0.308 | 0.306 | 0.002 | 8.44e-01 |
BMI21 | lassosum.MultiPRS | LDpred1.MultiPRS | 0.361 | 0.349 | 0.012 | 5.57e-01 | 0.334 | 0.306 | 0.028 | 4.80e-02 |
BMI21 | LDpred1.Inf | LDpred1.MultiPRS | 0.345 | 0.349 | -0.004 | 8.37e-01 | 0.298 | 0.306 | -0.008 | 2.15e-01 |
BMI21 | LDpred2.Inf | LDpred1.MultiPRS | 0.333 | 0.349 | -0.016 | 4.38e-01 | 0.290 | 0.306 | -0.015 | 1.15e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.374 | 0.349 | 0.025 | 2.07e-01 | 0.343 | 0.306 | 0.037 | 2.62e-03 |
BMI21 | LDpred1.10FCVal | LDpred1.MultiPRS | 0.336 | 0.349 | -0.013 | 5.18e-01 | 0.306 | 0.306 | 0.000 | 9.87e-01 |
BMI21 | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.354 | 0.349 | 0.005 | 8.06e-01 | 0.303 | 0.306 | -0.003 | 8.11e-01 |
BMI21 | PRScs.MultiPRS | LDpred1.MultiPRS | 0.354 | 0.349 | 0.005 | 2.81e-01 | 0.325 | 0.306 | 0.019 | 7.04e-02 |
BMI21 | LDpred2.10FCVal | LDpred1.MultiPRS | 0.360 | 0.349 | 0.011 | 5.89e-01 | 0.315 | 0.306 | 0.009 | 4.45e-01 |
BMI21 | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.333 | 0.349 | -0.016 | 4.27e-01 | 0.290 | 0.306 | -0.015 | 1.26e-01 |
BMI21 | PRScs.10FCVal | LDpred1.Inf | 0.353 | 0.345 | 0.008 | 6.80e-02 | 0.326 | 0.298 | 0.029 | 2.21e-03 |
BMI21 | PRScs.PseudoVal | LDpred1.Inf | 0.347 | 0.345 | 0.003 | 7.00e-01 | 0.302 | 0.298 | 0.004 | 7.88e-01 |
BMI21 | LDpred1.MultiPRS | LDpred1.Inf | 0.349 | 0.345 | 0.004 | 8.37e-01 | 0.306 | 0.298 | 0.008 | 2.15e-01 |
BMI21 | DBSLMM.PseudoVal | LDpred1.Inf | 0.354 | 0.345 | 0.009 | 1.60e-01 | 0.303 | 0.298 | 0.005 | 7.11e-01 |
BMI21 | LDpred2.MultiPRS | LDpred1.Inf | 0.357 | 0.345 | 0.012 | 5.44e-01 | 0.308 | 0.298 | 0.011 | 4.23e-01 |
BMI21 | LDpred2.Inf | LDpred1.Inf | 0.333 | 0.345 | -0.011 | 8.70e-03 | 0.290 | 0.298 | -0.007 | 4.11e-01 |
BMI21 | All.MultiPRS | LDpred1.Inf | 0.373 | 0.345 | 0.028 | 1.52e-01 | 0.338 | 0.298 | 0.040 | 7.18e-03 |
BMI21 | MegaPRS.10FCVal | LDpred1.Inf | 0.371 | 0.345 | 0.026 | 1.09e-06 | 0.353 | 0.298 | 0.055 | 8.86e-07 |
BMI21 | lassosum.MultiPRS | LDpred1.Inf | 0.361 | 0.345 | 0.016 | 4.31e-01 | 0.334 | 0.298 | 0.037 | 1.87e-02 |
BMI21 | LDpred1.10FCVal | LDpred1.Inf | 0.336 | 0.345 | -0.009 | 6.73e-02 | 0.306 | 0.298 | 0.008 | 4.18e-01 |
BMI21 | LDpred2.PseudoVal | LDpred1.Inf | 0.333 | 0.345 | -0.012 | 8.81e-03 | 0.290 | 0.298 | -0.007 | 4.35e-01 |
BMI21 | lassosum.10FCVal | LDpred1.Inf | 0.352 | 0.345 | 0.007 | 3.03e-01 | 0.332 | 0.298 | 0.034 | 2.41e-02 |
BMI21 | MegaPRS.PseudoVal | LDpred1.Inf | 0.371 | 0.345 | 0.026 | 1.09e-06 | 0.353 | 0.298 | 0.055 | 8.86e-07 |
BMI21 | MegaPRS.MultiPRS | LDpred1.Inf | 0.374 | 0.345 | 0.029 | 1.44e-01 | 0.343 | 0.298 | 0.046 | 5.87e-04 |
BMI21 | SBayesR.PseudoVal | LDpred1.Inf | 0.339 | 0.345 | -0.006 | 5.43e-01 | 0.290 | 0.298 | -0.008 | 7.13e-01 |
BMI21 | lassosum.PseudoVal | LDpred1.Inf | 0.288 | 0.345 | -0.057 | 3.52e-06 | 0.231 | 0.298 | -0.067 | 1.01e-02 |
BMI21 | pT+clump.MultiPRS | LDpred1.Inf | 0.317 | 0.345 | -0.028 | 1.65e-01 | 0.295 | 0.298 | -0.003 | 8.62e-01 |
BMI21 | PRScs.MultiPRS | LDpred1.Inf | 0.354 | 0.345 | 0.009 | 6.34e-01 | 0.325 | 0.298 | 0.027 | 1.52e-02 |
BMI21 | SBLUP.Inf | LDpred1.Inf | 0.324 | 0.345 | -0.020 | 7.45e-05 | 0.299 | 0.298 | 0.001 | 9.26e-01 |
BMI21 | LDpred2.10FCVal | LDpred1.Inf | 0.360 | 0.345 | 0.015 | 1.10e-02 | 0.315 | 0.298 | 0.017 | 1.70e-01 |
BMI21 | pT+clump.10FCVal | LDpred1.Inf | 0.310 | 0.345 | -0.035 | 5.93e-06 | 0.301 | 0.298 | 0.003 | 8.46e-01 |
BMI21 | LDpred1.Inf | LDpred1.Inf | 0.345 | 0.345 | 0.000 | 1.00e+00 | 0.298 | 0.298 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.374 | 0.336 | 0.038 | 5.69e-02 | 0.343 | 0.306 | 0.038 | 9.93e-03 |
BMI21 | PRScs.10FCVal | LDpred1.10FCVal | 0.353 | 0.336 | 0.017 | 2.52e-03 | 0.326 | 0.306 | 0.020 | 7.77e-02 |
BMI21 | LDpred2.PseudoVal | LDpred1.10FCVal | 0.333 | 0.336 | -0.003 | 6.12e-01 | 0.290 | 0.306 | -0.015 | 2.01e-01 |
BMI21 | LDpred2.Inf | LDpred1.10FCVal | 0.333 | 0.336 | -0.003 | 6.52e-01 | 0.290 | 0.306 | -0.015 | 1.91e-01 |
BMI21 | PRScs.MultiPRS | LDpred1.10FCVal | 0.354 | 0.336 | 0.018 | 3.59e-01 | 0.325 | 0.306 | 0.019 | 1.43e-01 |
BMI21 | PRScs.PseudoVal | LDpred1.10FCVal | 0.347 | 0.336 | 0.012 | 1.41e-01 | 0.302 | 0.306 | -0.004 | 8.06e-01 |
BMI21 | SBayesR.PseudoVal | LDpred1.10FCVal | 0.339 | 0.336 | 0.003 | 7.68e-01 | 0.290 | 0.306 | -0.016 | 4.69e-01 |
BMI21 | pT+clump.MultiPRS | LDpred1.10FCVal | 0.317 | 0.336 | -0.019 | 3.45e-01 | 0.295 | 0.306 | -0.011 | 5.50e-01 |
BMI21 | LDpred1.Inf | LDpred1.10FCVal | 0.345 | 0.336 | 0.009 | 6.73e-02 | 0.298 | 0.306 | -0.008 | 4.18e-01 |
BMI21 | SBLUP.Inf | LDpred1.10FCVal | 0.324 | 0.336 | -0.011 | 5.10e-02 | 0.299 | 0.306 | -0.007 | 5.66e-01 |
BMI21 | LDpred1.MultiPRS | LDpred1.10FCVal | 0.349 | 0.336 | 0.013 | 5.18e-01 | 0.306 | 0.306 | 0.000 | 9.87e-01 |
BMI21 | lassosum.PseudoVal | LDpred1.10FCVal | 0.288 | 0.336 | -0.048 | 2.04e-04 | 0.231 | 0.306 | -0.075 | 4.87e-03 |
BMI21 | pT+clump.10FCVal | LDpred1.10FCVal | 0.310 | 0.336 | -0.026 | 2.61e-03 | 0.301 | 0.306 | -0.005 | 7.81e-01 |
BMI21 | LDpred2.MultiPRS | LDpred1.10FCVal | 0.357 | 0.336 | 0.021 | 2.94e-01 | 0.308 | 0.306 | 0.003 | 8.60e-01 |
BMI21 | LDpred2.10FCVal | LDpred1.10FCVal | 0.360 | 0.336 | 0.024 | 5.15e-04 | 0.315 | 0.306 | 0.009 | 5.20e-01 |
BMI21 | LDpred1.10FCVal | LDpred1.10FCVal | 0.336 | 0.336 | 0.000 | 1.00e+00 | 0.306 | 0.306 | 0.000 | 1.00e+00 |
BMI21 | lassosum.MultiPRS | LDpred1.10FCVal | 0.361 | 0.336 | 0.025 | 2.19e-01 | 0.334 | 0.306 | 0.028 | 7.60e-02 |
BMI21 | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.371 | 0.336 | 0.035 | 4.20e-08 | 0.353 | 0.306 | 0.047 | 3.00e-04 |
BMI21 | All.MultiPRS | LDpred1.10FCVal | 0.373 | 0.336 | 0.037 | 6.15e-02 | 0.338 | 0.306 | 0.032 | 3.87e-02 |
BMI21 | MegaPRS.10FCVal | LDpred1.10FCVal | 0.371 | 0.336 | 0.035 | 4.20e-08 | 0.353 | 0.306 | 0.047 | 3.00e-04 |
BMI21 | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.354 | 0.336 | 0.018 | 1.45e-02 | 0.303 | 0.306 | -0.003 | 8.44e-01 |
BMI21 | lassosum.10FCVal | LDpred1.10FCVal | 0.352 | 0.336 | 0.016 | 3.88e-02 | 0.332 | 0.306 | 0.026 | 9.96e-02 |
BMI21 | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.317 | 0.357 | -0.040 | 4.60e-02 | 0.295 | 0.308 | -0.014 | 4.22e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.MultiPRS | 0.310 | 0.357 | -0.047 | 1.90e-02 | 0.301 | 0.308 | -0.008 | 6.80e-01 |
BMI21 | PRScs.PseudoVal | LDpred2.MultiPRS | 0.347 | 0.357 | -0.009 | 6.35e-01 | 0.302 | 0.308 | -0.007 | 5.78e-01 |
BMI21 | PRScs.10FCVal | LDpred2.MultiPRS | 0.353 | 0.357 | -0.004 | 8.26e-01 | 0.326 | 0.308 | 0.018 | 1.11e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.371 | 0.357 | 0.014 | 4.90e-01 | 0.353 | 0.308 | 0.045 | 1.36e-04 |
BMI21 | All.MultiPRS | LDpred2.MultiPRS | 0.373 | 0.357 | 0.016 | 4.07e-01 | 0.338 | 0.308 | 0.029 | 6.41e-03 |
BMI21 | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.354 | 0.357 | -0.003 | 8.76e-01 | 0.303 | 0.308 | -0.006 | 6.70e-01 |
BMI21 | lassosum.MultiPRS | LDpred2.MultiPRS | 0.361 | 0.357 | 0.004 | 5.42e-01 | 0.334 | 0.308 | 0.026 | 3.80e-02 |
BMI21 | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.371 | 0.357 | 0.014 | 4.90e-01 | 0.353 | 0.308 | 0.045 | 1.36e-04 |
BMI21 | lassosum.PseudoVal | LDpred2.MultiPRS | 0.288 | 0.357 | -0.069 | 7.14e-04 | 0.231 | 0.308 | -0.078 | 3.54e-04 |
BMI21 | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.357 | 0.357 | 0.000 | 1.00e+00 | 0.308 | 0.308 | 0.000 | 1.00e+00 |
BMI21 | PRScs.MultiPRS | LDpred2.MultiPRS | 0.354 | 0.357 | -0.003 | 8.94e-01 | 0.325 | 0.308 | 0.017 | 1.18e-01 |
BMI21 | LDpred1.Inf | LDpred2.MultiPRS | 0.345 | 0.357 | -0.012 | 5.44e-01 | 0.298 | 0.308 | -0.011 | 4.23e-01 |
BMI21 | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.349 | 0.357 | -0.008 | 6.86e-01 | 0.306 | 0.308 | -0.002 | 8.44e-01 |
BMI21 | LDpred2.10FCVal | LDpred2.MultiPRS | 0.360 | 0.357 | 0.003 | 8.90e-01 | 0.315 | 0.308 | 0.007 | 9.99e-02 |
BMI21 | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.333 | 0.357 | -0.024 | 2.32e-01 | 0.290 | 0.308 | -0.018 | 7.38e-02 |
BMI21 | lassosum.10FCVal | LDpred2.MultiPRS | 0.352 | 0.357 | -0.005 | 8.08e-01 | 0.332 | 0.308 | 0.024 | 6.71e-02 |
BMI21 | LDpred2.Inf | LDpred2.MultiPRS | 0.333 | 0.357 | -0.024 | 2.39e-01 | 0.290 | 0.308 | -0.018 | 7.16e-02 |
BMI21 | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.339 | 0.357 | -0.018 | 3.72e-01 | 0.290 | 0.308 | -0.018 | 2.73e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.374 | 0.357 | 0.017 | 4.63e-03 | 0.343 | 0.308 | 0.035 | 4.64e-03 |
BMI21 | SBLUP.Inf | LDpred2.MultiPRS | 0.324 | 0.357 | -0.032 | 1.05e-01 | 0.299 | 0.308 | -0.010 | 5.15e-01 |
BMI21 | LDpred1.10FCVal | LDpred2.MultiPRS | 0.336 | 0.357 | -0.021 | 2.94e-01 | 0.306 | 0.308 | -0.003 | 8.60e-01 |
BMI21 | LDpred2.MultiPRS | LDpred2.10FCVal | 0.357 | 0.360 | -0.003 | 8.90e-01 | 0.308 | 0.315 | -0.007 | 9.99e-02 |
BMI21 | LDpred2.10FCVal | LDpred2.10FCVal | 0.360 | 0.360 | 0.000 | 1.00e+00 | 0.315 | 0.315 | 0.000 | 1.00e+00 |
BMI21 | lassosum.PseudoVal | LDpred2.10FCVal | 0.288 | 0.360 | -0.071 | 3.43e-12 | 0.231 | 0.315 | -0.084 | 8.12e-05 |
BMI21 | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.374 | 0.360 | 0.014 | 4.74e-01 | 0.343 | 0.315 | 0.028 | 1.44e-02 |
BMI21 | PRScs.10FCVal | LDpred2.10FCVal | 0.353 | 0.360 | -0.007 | 1.53e-01 | 0.326 | 0.315 | 0.011 | 2.81e-01 |
BMI21 | lassosum.10FCVal | LDpred2.10FCVal | 0.352 | 0.360 | -0.008 | 1.94e-01 | 0.332 | 0.315 | 0.017 | 1.63e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.10FCVal | 0.310 | 0.360 | -0.050 | 1.48e-08 | 0.301 | 0.315 | -0.014 | 4.34e-01 |
BMI21 | pT+clump.MultiPRS | LDpred2.10FCVal | 0.317 | 0.360 | -0.043 | 3.21e-02 | 0.295 | 0.315 | -0.020 | 2.28e-01 |
BMI21 | lassosum.MultiPRS | LDpred2.10FCVal | 0.361 | 0.360 | 0.001 | 9.64e-01 | 0.334 | 0.315 | 0.019 | 1.03e-01 |
BMI21 | LDpred2.PseudoVal | LDpred2.10FCVal | 0.333 | 0.360 | -0.027 | 4.85e-10 | 0.290 | 0.315 | -0.024 | 7.75e-03 |
BMI21 | SBayesR.PseudoVal | LDpred2.10FCVal | 0.339 | 0.360 | -0.021 | 6.89e-03 | 0.290 | 0.315 | -0.025 | 1.24e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.371 | 0.360 | 0.011 | 4.36e-02 | 0.353 | 0.315 | 0.038 | 5.22e-04 |
BMI21 | All.MultiPRS | LDpred2.10FCVal | 0.373 | 0.360 | 0.014 | 4.91e-01 | 0.338 | 0.315 | 0.023 | 4.47e-02 |
BMI21 | LDpred2.Inf | LDpred2.10FCVal | 0.333 | 0.360 | -0.026 | 7.94e-10 | 0.290 | 0.315 | -0.024 | 7.19e-03 |
BMI21 | LDpred1.10FCVal | LDpred2.10FCVal | 0.336 | 0.360 | -0.024 | 5.15e-04 | 0.306 | 0.315 | -0.009 | 5.20e-01 |
BMI21 | MegaPRS.10FCVal | LDpred2.10FCVal | 0.371 | 0.360 | 0.011 | 4.36e-02 | 0.353 | 0.315 | 0.038 | 5.22e-04 |
BMI21 | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.354 | 0.360 | -0.006 | 3.34e-01 | 0.303 | 0.315 | -0.012 | 3.36e-01 |
BMI21 | LDpred1.Inf | LDpred2.10FCVal | 0.345 | 0.360 | -0.015 | 1.10e-02 | 0.298 | 0.315 | -0.017 | 1.70e-01 |
BMI21 | SBLUP.Inf | LDpred2.10FCVal | 0.324 | 0.360 | -0.035 | 2.96e-07 | 0.299 | 0.315 | -0.016 | 2.55e-01 |
BMI21 | PRScs.MultiPRS | LDpred2.10FCVal | 0.354 | 0.360 | -0.005 | 7.86e-01 | 0.325 | 0.315 | 0.010 | 3.09e-01 |
BMI21 | LDpred1.MultiPRS | LDpred2.10FCVal | 0.349 | 0.360 | -0.011 | 5.89e-01 | 0.306 | 0.315 | -0.009 | 4.45e-01 |
BMI21 | PRScs.PseudoVal | LDpred2.10FCVal | 0.347 | 0.360 | -0.012 | 2.38e-02 | 0.302 | 0.315 | -0.013 | 2.43e-01 |
BMI21 | lassosum.MultiPRS | LDpred2.PseudoVal | 0.361 | 0.333 | 0.028 | 1.69e-01 | 0.334 | 0.290 | 0.044 | 5.66e-03 |
BMI21 | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.339 | 0.333 | 0.006 | 5.46e-01 | 0.290 | 0.290 | 0.000 | 9.84e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.374 | 0.333 | 0.041 | 4.05e-02 | 0.343 | 0.290 | 0.053 | 1.04e-04 |
BMI21 | LDpred2.10FCVal | LDpred2.PseudoVal | 0.360 | 0.333 | 0.027 | 4.85e-10 | 0.315 | 0.290 | 0.024 | 7.75e-03 |
BMI21 | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.317 | 0.333 | -0.016 | 4.23e-01 | 0.295 | 0.290 | 0.004 | 8.23e-01 |
BMI21 | LDpred2.Inf | LDpred2.PseudoVal | 0.333 | 0.333 | 0.000 | 4.29e-01 | 0.290 | 0.290 | 0.000 | 9.31e-01 |
BMI21 | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.371 | 0.333 | 0.038 | 2.74e-10 | 0.353 | 0.290 | 0.062 | 1.97e-07 |
BMI21 | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.354 | 0.333 | 0.021 | 2.91e-03 | 0.303 | 0.290 | 0.012 | 4.00e-01 |
BMI21 | lassosum.10FCVal | LDpred2.PseudoVal | 0.352 | 0.333 | 0.019 | 1.25e-02 | 0.332 | 0.290 | 0.041 | 8.97e-03 |
BMI21 | lassosum.PseudoVal | LDpred2.PseudoVal | 0.288 | 0.333 | -0.045 | 3.51e-04 | 0.231 | 0.290 | -0.060 | 2.39e-02 |
BMI21 | SBLUP.Inf | LDpred2.PseudoVal | 0.324 | 0.333 | -0.009 | 1.34e-01 | 0.299 | 0.290 | 0.008 | 4.95e-01 |
BMI21 | PRScs.10FCVal | LDpred2.PseudoVal | 0.353 | 0.333 | 0.020 | 1.38e-04 | 0.326 | 0.290 | 0.036 | 9.62e-04 |
BMI21 | All.MultiPRS | LDpred2.PseudoVal | 0.373 | 0.333 | 0.040 | 4.34e-02 | 0.338 | 0.290 | 0.047 | 1.21e-03 |
BMI21 | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.371 | 0.333 | 0.038 | 2.74e-10 | 0.353 | 0.290 | 0.062 | 1.97e-07 |
BMI21 | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.357 | 0.333 | 0.024 | 2.32e-01 | 0.308 | 0.290 | 0.018 | 7.38e-02 |
BMI21 | LDpred1.10FCVal | LDpred2.PseudoVal | 0.336 | 0.333 | 0.003 | 6.12e-01 | 0.306 | 0.290 | 0.015 | 2.01e-01 |
BMI21 | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.333 | 0.333 | 0.000 | 1.00e+00 | 0.290 | 0.290 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.Inf | LDpred2.PseudoVal | 0.345 | 0.333 | 0.012 | 8.81e-03 | 0.298 | 0.290 | 0.007 | 4.35e-01 |
BMI21 | PRScs.MultiPRS | LDpred2.PseudoVal | 0.354 | 0.333 | 0.021 | 2.86e-01 | 0.325 | 0.290 | 0.034 | 5.59e-03 |
BMI21 | PRScs.PseudoVal | LDpred2.PseudoVal | 0.347 | 0.333 | 0.014 | 4.81e-02 | 0.302 | 0.290 | 0.011 | 4.77e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.PseudoVal | 0.310 | 0.333 | -0.023 | 7.25e-03 | 0.301 | 0.290 | 0.010 | 5.63e-01 |
BMI21 | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.349 | 0.333 | 0.016 | 4.27e-01 | 0.306 | 0.290 | 0.015 | 1.26e-01 |
BMI21 | SBayesR.PseudoVal | LDpred2.Inf | 0.339 | 0.333 | 0.006 | 5.67e-01 | 0.290 | 0.290 | 0.000 | 9.87e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.Inf | 0.374 | 0.333 | 0.040 | 4.24e-02 | 0.343 | 0.290 | 0.053 | 7.92e-05 |
BMI21 | lassosum.PseudoVal | LDpred2.Inf | 0.288 | 0.333 | -0.045 | 2.80e-04 | 0.231 | 0.290 | -0.060 | 2.26e-02 |
BMI21 | LDpred2.Inf | LDpred2.Inf | 0.333 | 0.333 | 0.000 | 1.00e+00 | 0.290 | 0.290 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | LDpred2.Inf | 0.371 | 0.333 | 0.037 | 1.52e-10 | 0.353 | 0.290 | 0.063 | 8.98e-08 |
BMI21 | LDpred2.10FCVal | LDpred2.Inf | 0.360 | 0.333 | 0.026 | 7.94e-10 | 0.315 | 0.290 | 0.024 | 7.19e-03 |
BMI21 | lassosum.10FCVal | LDpred2.Inf | 0.352 | 0.333 | 0.019 | 1.35e-02 | 0.332 | 0.290 | 0.042 | 8.22e-03 |
BMI21 | LDpred2.MultiPRS | LDpred2.Inf | 0.357 | 0.333 | 0.024 | 2.39e-01 | 0.308 | 0.290 | 0.018 | 7.16e-02 |
BMI21 | SBLUP.Inf | LDpred2.Inf | 0.324 | 0.333 | -0.009 | 1.13e-01 | 0.299 | 0.290 | 0.008 | 4.86e-01 |
BMI21 | All.MultiPRS | LDpred2.Inf | 0.373 | 0.333 | 0.040 | 4.54e-02 | 0.338 | 0.290 | 0.047 | 1.08e-03 |
BMI21 | LDpred2.PseudoVal | LDpred2.Inf | 0.333 | 0.333 | 0.000 | 4.29e-01 | 0.290 | 0.290 | 0.000 | 9.31e-01 |
BMI21 | pT+clump.MultiPRS | LDpred2.Inf | 0.317 | 0.333 | -0.016 | 4.13e-01 | 0.295 | 0.290 | 0.004 | 8.17e-01 |
BMI21 | lassosum.MultiPRS | LDpred2.Inf | 0.361 | 0.333 | 0.027 | 1.75e-01 | 0.334 | 0.290 | 0.044 | 5.08e-03 |
BMI21 | PRScs.10FCVal | LDpred2.Inf | 0.353 | 0.333 | 0.019 | 1.31e-04 | 0.326 | 0.290 | 0.036 | 6.81e-04 |
BMI21 | LDpred1.10FCVal | LDpred2.Inf | 0.336 | 0.333 | 0.003 | 6.52e-01 | 0.306 | 0.290 | 0.015 | 1.91e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.Inf | 0.310 | 0.333 | -0.024 | 5.78e-03 | 0.301 | 0.290 | 0.010 | 5.55e-01 |
BMI21 | PRScs.MultiPRS | LDpred2.Inf | 0.354 | 0.333 | 0.021 | 2.95e-01 | 0.325 | 0.290 | 0.034 | 4.38e-03 |
BMI21 | PRScs.PseudoVal | LDpred2.Inf | 0.347 | 0.333 | 0.014 | 4.88e-02 | 0.302 | 0.290 | 0.011 | 4.61e-01 |
BMI21 | LDpred1.MultiPRS | LDpred2.Inf | 0.349 | 0.333 | 0.016 | 4.38e-01 | 0.306 | 0.290 | 0.015 | 1.15e-01 |
BMI21 | MegaPRS.10FCVal | LDpred2.Inf | 0.371 | 0.333 | 0.037 | 1.52e-10 | 0.353 | 0.290 | 0.063 | 8.98e-08 |
BMI21 | LDpred1.Inf | LDpred2.Inf | 0.345 | 0.333 | 0.011 | 8.70e-03 | 0.298 | 0.290 | 0.007 | 4.11e-01 |
BMI21 | DBSLMM.PseudoVal | LDpred2.Inf | 0.354 | 0.333 | 0.020 | 3.21e-03 | 0.303 | 0.290 | 0.012 | 3.92e-01 |
BMI21 | lassosum.PseudoVal | PRScs.MultiPRS | 0.288 | 0.354 | -0.066 | 9.55e-04 | 0.231 | 0.325 | -0.094 | 6.03e-07 |
BMI21 | SBLUP.Inf | PRScs.MultiPRS | 0.324 | 0.354 | -0.030 | 1.37e-01 | 0.299 | 0.325 | -0.026 | 4.47e-02 |
BMI21 | LDpred2.Inf | PRScs.MultiPRS | 0.333 | 0.354 | -0.021 | 2.95e-01 | 0.290 | 0.325 | -0.034 | 4.38e-03 |
BMI21 | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.374 | 0.354 | 0.020 | 3.21e-01 | 0.343 | 0.325 | 0.018 | 8.47e-02 |
BMI21 | lassosum.MultiPRS | PRScs.MultiPRS | 0.361 | 0.354 | 0.006 | 7.50e-01 | 0.334 | 0.325 | 0.009 | 2.88e-01 |
BMI21 | MegaPRS.10FCVal | PRScs.MultiPRS | 0.371 | 0.354 | 0.016 | 4.09e-01 | 0.353 | 0.325 | 0.028 | 2.62e-03 |
BMI21 | LDpred2.MultiPRS | PRScs.MultiPRS | 0.357 | 0.354 | 0.003 | 8.94e-01 | 0.308 | 0.325 | -0.017 | 1.18e-01 |
BMI21 | PRScs.10FCVal | PRScs.MultiPRS | 0.353 | 0.354 | -0.002 | 9.30e-01 | 0.326 | 0.325 | 0.001 | 7.80e-01 |
BMI21 | LDpred2.10FCVal | PRScs.MultiPRS | 0.360 | 0.354 | 0.005 | 7.86e-01 | 0.315 | 0.325 | -0.010 | 3.09e-01 |
BMI21 | pT+clump.MultiPRS | PRScs.MultiPRS | 0.317 | 0.354 | -0.037 | 6.11e-02 | 0.295 | 0.325 | -0.030 | 3.00e-02 |
BMI21 | SBayesR.PseudoVal | PRScs.MultiPRS | 0.339 | 0.354 | -0.015 | 4.39e-01 | 0.290 | 0.325 | -0.035 | 1.15e-02 |
BMI21 | LDpred1.10FCVal | PRScs.MultiPRS | 0.336 | 0.354 | -0.018 | 3.59e-01 | 0.306 | 0.325 | -0.019 | 1.43e-01 |
BMI21 | LDpred2.PseudoVal | PRScs.MultiPRS | 0.333 | 0.354 | -0.021 | 2.86e-01 | 0.290 | 0.325 | -0.034 | 5.59e-03 |
BMI21 | lassosum.10FCVal | PRScs.MultiPRS | 0.352 | 0.354 | -0.002 | 9.11e-01 | 0.332 | 0.325 | 0.007 | 4.37e-01 |
BMI21 | PRScs.MultiPRS | PRScs.MultiPRS | 0.354 | 0.354 | 0.000 | 1.00e+00 | 0.325 | 0.325 | 0.000 | 1.00e+00 |
BMI21 | All.MultiPRS | PRScs.MultiPRS | 0.373 | 0.354 | 0.019 | 4.41e-04 | 0.338 | 0.325 | 0.013 | 2.37e-01 |
BMI21 | PRScs.PseudoVal | PRScs.MultiPRS | 0.347 | 0.354 | -0.007 | 7.29e-01 | 0.302 | 0.325 | -0.023 | 2.32e-04 |
BMI21 | LDpred1.MultiPRS | PRScs.MultiPRS | 0.349 | 0.354 | -0.005 | 2.81e-01 | 0.306 | 0.325 | -0.019 | 7.04e-02 |
BMI21 | LDpred1.Inf | PRScs.MultiPRS | 0.345 | 0.354 | -0.009 | 6.34e-01 | 0.298 | 0.325 | -0.027 | 1.52e-02 |
BMI21 | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.371 | 0.354 | 0.016 | 4.09e-01 | 0.353 | 0.325 | 0.028 | 2.62e-03 |
BMI21 | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.354 | 0.354 | 0.000 | 9.81e-01 | 0.303 | 0.325 | -0.022 | 1.07e-02 |
BMI21 | pT+clump.10FCVal | PRScs.MultiPRS | 0.310 | 0.354 | -0.045 | 2.60e-02 | 0.301 | 0.325 | -0.024 | 1.30e-01 |
BMI21 | MegaPRS.10FCVal | PRScs.10FCVal | 0.371 | 0.353 | 0.018 | 9.58e-05 | 0.353 | 0.326 | 0.027 | 4.01e-03 |
BMI21 | LDpred2.MultiPRS | PRScs.10FCVal | 0.357 | 0.353 | 0.004 | 8.26e-01 | 0.308 | 0.326 | -0.018 | 1.11e-01 |
BMI21 | pT+clump.10FCVal | PRScs.10FCVal | 0.310 | 0.353 | -0.043 | 1.39e-08 | 0.301 | 0.326 | -0.025 | 9.91e-02 |
BMI21 | LDpred2.PseudoVal | PRScs.10FCVal | 0.333 | 0.353 | -0.020 | 1.38e-04 | 0.290 | 0.326 | -0.036 | 9.62e-04 |
BMI21 | pT+clump.MultiPRS | PRScs.10FCVal | 0.317 | 0.353 | -0.036 | 7.46e-02 | 0.295 | 0.326 | -0.032 | 3.45e-02 |
BMI21 | MegaPRS.PseudoVal | PRScs.10FCVal | 0.371 | 0.353 | 0.018 | 9.58e-05 | 0.353 | 0.326 | 0.027 | 4.01e-03 |
BMI21 | LDpred1.10FCVal | PRScs.10FCVal | 0.336 | 0.353 | -0.017 | 2.52e-03 | 0.306 | 0.326 | -0.020 | 7.77e-02 |
BMI21 | LDpred1.MultiPRS | PRScs.10FCVal | 0.349 | 0.353 | -0.004 | 8.55e-01 | 0.306 | 0.326 | -0.020 | 2.37e-02 |
BMI21 | lassosum.PseudoVal | PRScs.10FCVal | 0.288 | 0.353 | -0.064 | 2.54e-09 | 0.231 | 0.326 | -0.096 | 2.09e-05 |
BMI21 | LDpred1.Inf | PRScs.10FCVal | 0.345 | 0.353 | -0.008 | 6.80e-02 | 0.298 | 0.326 | -0.029 | 2.21e-03 |
BMI21 | lassosum.MultiPRS | PRScs.10FCVal | 0.361 | 0.353 | 0.008 | 6.87e-01 | 0.334 | 0.326 | 0.008 | 4.38e-01 |
BMI21 | MegaPRS.MultiPRS | PRScs.10FCVal | 0.374 | 0.353 | 0.021 | 2.82e-01 | 0.343 | 0.326 | 0.017 | 1.21e-01 |
BMI21 | PRScs.10FCVal | PRScs.10FCVal | 0.353 | 0.353 | 0.000 | 1.00e+00 | 0.326 | 0.326 | 0.000 | 1.00e+00 |
BMI21 | DBSLMM.PseudoVal | PRScs.10FCVal | 0.354 | 0.353 | 0.001 | 7.81e-01 | 0.303 | 0.326 | -0.023 | 1.24e-02 |
BMI21 | PRScs.PseudoVal | PRScs.10FCVal | 0.347 | 0.353 | -0.005 | 2.81e-01 | 0.302 | 0.326 | -0.024 | 1.49e-02 |
BMI21 | PRScs.MultiPRS | PRScs.10FCVal | 0.354 | 0.353 | 0.002 | 9.30e-01 | 0.325 | 0.326 | -0.001 | 7.80e-01 |
BMI21 | SBayesR.PseudoVal | PRScs.10FCVal | 0.339 | 0.353 | -0.014 | 9.89e-02 | 0.290 | 0.326 | -0.036 | 3.26e-02 |
BMI21 | All.MultiPRS | PRScs.10FCVal | 0.373 | 0.353 | 0.021 | 2.95e-01 | 0.338 | 0.326 | 0.012 | 3.24e-01 |
BMI21 | lassosum.10FCVal | PRScs.10FCVal | 0.352 | 0.353 | 0.000 | 9.26e-01 | 0.332 | 0.326 | 0.006 | 5.68e-01 |
BMI21 | SBLUP.Inf | PRScs.10FCVal | 0.324 | 0.353 | -0.028 | 2.97e-07 | 0.299 | 0.326 | -0.028 | 1.85e-02 |
BMI21 | LDpred2.Inf | PRScs.10FCVal | 0.333 | 0.353 | -0.019 | 1.31e-04 | 0.290 | 0.326 | -0.036 | 6.81e-04 |
BMI21 | LDpred2.10FCVal | PRScs.10FCVal | 0.360 | 0.353 | 0.007 | 1.53e-01 | 0.315 | 0.326 | -0.011 | 2.81e-01 |
BMI21 | All.MultiPRS | PRScs.PseudoVal | 0.373 | 0.347 | 0.026 | 1.91e-01 | 0.338 | 0.302 | 0.036 | 3.56e-03 |
BMI21 | MegaPRS.10FCVal | PRScs.PseudoVal | 0.371 | 0.347 | 0.023 | 3.75e-05 | 0.353 | 0.302 | 0.051 | 1.19e-05 |
BMI21 | LDpred1.10FCVal | PRScs.PseudoVal | 0.336 | 0.347 | -0.012 | 1.41e-01 | 0.306 | 0.302 | 0.004 | 8.06e-01 |
BMI21 | PRScs.PseudoVal | PRScs.PseudoVal | 0.347 | 0.347 | 0.000 | 1.00e+00 | 0.302 | 0.302 | 0.000 | 1.00e+00 |
BMI21 | PRScs.10FCVal | PRScs.PseudoVal | 0.353 | 0.347 | 0.005 | 2.81e-01 | 0.326 | 0.302 | 0.024 | 1.49e-02 |
BMI21 | pT+clump.MultiPRS | PRScs.PseudoVal | 0.317 | 0.347 | -0.031 | 1.28e-01 | 0.295 | 0.302 | -0.007 | 6.28e-01 |
BMI21 | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.354 | 0.347 | 0.006 | 2.26e-01 | 0.303 | 0.302 | 0.001 | 9.29e-01 |
BMI21 | SBayesR.PseudoVal | PRScs.PseudoVal | 0.339 | 0.347 | -0.008 | 1.32e-01 | 0.290 | 0.302 | -0.012 | 2.96e-01 |
BMI21 | lassosum.MultiPRS | PRScs.PseudoVal | 0.361 | 0.347 | 0.013 | 5.11e-01 | 0.334 | 0.302 | 0.032 | 1.34e-03 |
BMI21 | LDpred2.PseudoVal | PRScs.PseudoVal | 0.333 | 0.347 | -0.014 | 4.81e-02 | 0.290 | 0.302 | -0.011 | 4.77e-01 |
BMI21 | LDpred1.Inf | PRScs.PseudoVal | 0.345 | 0.347 | -0.003 | 7.00e-01 | 0.298 | 0.302 | -0.004 | 7.88e-01 |
BMI21 | LDpred1.MultiPRS | PRScs.PseudoVal | 0.349 | 0.347 | 0.001 | 9.41e-01 | 0.306 | 0.302 | 0.004 | 7.70e-01 |
BMI21 | SBLUP.Inf | PRScs.PseudoVal | 0.324 | 0.347 | -0.023 | 3.36e-03 | 0.299 | 0.302 | -0.003 | 8.55e-01 |
BMI21 | LDpred2.Inf | PRScs.PseudoVal | 0.333 | 0.347 | -0.014 | 4.88e-02 | 0.290 | 0.302 | -0.011 | 4.61e-01 |
BMI21 | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.371 | 0.347 | 0.023 | 3.75e-05 | 0.353 | 0.302 | 0.051 | 1.19e-05 |
BMI21 | LDpred2.MultiPRS | PRScs.PseudoVal | 0.357 | 0.347 | 0.009 | 6.35e-01 | 0.308 | 0.302 | 0.007 | 5.78e-01 |
BMI21 | lassosum.10FCVal | PRScs.PseudoVal | 0.352 | 0.347 | 0.005 | 3.71e-01 | 0.332 | 0.302 | 0.030 | 6.84e-03 |
BMI21 | pT+clump.10FCVal | PRScs.PseudoVal | 0.310 | 0.347 | -0.038 | 1.92e-05 | 0.301 | 0.302 | -0.001 | 9.62e-01 |
BMI21 | PRScs.MultiPRS | PRScs.PseudoVal | 0.354 | 0.347 | 0.007 | 7.29e-01 | 0.325 | 0.302 | 0.023 | 2.32e-04 |
BMI21 | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.374 | 0.347 | 0.026 | 1.84e-01 | 0.343 | 0.302 | 0.042 | 9.71e-04 |
BMI21 | lassosum.PseudoVal | PRScs.PseudoVal | 0.288 | 0.347 | -0.059 | 5.06e-15 | 0.231 | 0.302 | -0.071 | 4.61e-06 |
BMI21 | LDpred2.10FCVal | PRScs.PseudoVal | 0.360 | 0.347 | 0.012 | 2.38e-02 | 0.315 | 0.302 | 0.013 | 2.43e-01 |
BMI21 | All.MultiPRS | pT+clump.MultiPRS | 0.373 | 0.317 | 0.056 | 4.61e-03 | 0.338 | 0.295 | 0.043 | 7.98e-03 |
BMI21 | PRScs.10FCVal | pT+clump.MultiPRS | 0.353 | 0.317 | 0.036 | 7.46e-02 | 0.326 | 0.295 | 0.032 | 3.45e-02 |
BMI21 | lassosum.MultiPRS | pT+clump.MultiPRS | 0.361 | 0.317 | 0.044 | 2.92e-02 | 0.334 | 0.295 | 0.039 | 1.69e-02 |
BMI21 | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.349 | 0.317 | 0.032 | 1.11e-01 | 0.306 | 0.295 | 0.011 | 5.08e-01 |
BMI21 | lassosum.PseudoVal | pT+clump.MultiPRS | 0.288 | 0.317 | -0.029 | 1.59e-01 | 0.231 | 0.295 | -0.064 | 2.82e-03 |
BMI21 | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.371 | 0.317 | 0.054 | 7.02e-03 | 0.353 | 0.295 | 0.058 | 8.64e-05 |
BMI21 | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.371 | 0.317 | 0.054 | 7.02e-03 | 0.353 | 0.295 | 0.058 | 8.64e-05 |
BMI21 | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.317 | 0.317 | 0.000 | 1.00e+00 | 0.295 | 0.295 | 0.000 | 1.00e+00 |
BMI21 | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.354 | 0.317 | 0.037 | 6.51e-02 | 0.303 | 0.295 | 0.008 | 5.93e-01 |
BMI21 | LDpred1.10FCVal | pT+clump.MultiPRS | 0.336 | 0.317 | 0.019 | 3.45e-01 | 0.306 | 0.295 | 0.011 | 5.50e-01 |
BMI21 | LDpred2.10FCVal | pT+clump.MultiPRS | 0.360 | 0.317 | 0.043 | 3.21e-02 | 0.315 | 0.295 | 0.020 | 2.28e-01 |
BMI21 | lassosum.10FCVal | pT+clump.MultiPRS | 0.352 | 0.317 | 0.035 | 7.82e-02 | 0.332 | 0.295 | 0.037 | 1.70e-02 |
BMI21 | LDpred2.Inf | pT+clump.MultiPRS | 0.333 | 0.317 | 0.016 | 4.13e-01 | 0.290 | 0.295 | -0.004 | 8.17e-01 |
BMI21 | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.339 | 0.317 | 0.022 | 2.73e-01 | 0.290 | 0.295 | -0.005 | 8.01e-01 |
BMI21 | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.333 | 0.317 | 0.016 | 4.23e-01 | 0.290 | 0.295 | -0.004 | 8.23e-01 |
BMI21 | PRScs.MultiPRS | pT+clump.MultiPRS | 0.354 | 0.317 | 0.037 | 6.11e-02 | 0.325 | 0.295 | 0.030 | 3.00e-02 |
BMI21 | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.374 | 0.317 | 0.057 | 4.37e-03 | 0.343 | 0.295 | 0.049 | 1.60e-03 |
BMI21 | PRScs.PseudoVal | pT+clump.MultiPRS | 0.347 | 0.317 | 0.031 | 1.28e-01 | 0.302 | 0.295 | 0.007 | 6.28e-01 |
BMI21 | LDpred1.Inf | pT+clump.MultiPRS | 0.345 | 0.317 | 0.028 | 1.65e-01 | 0.298 | 0.295 | 0.003 | 8.62e-01 |
BMI21 | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.357 | 0.317 | 0.040 | 4.60e-02 | 0.308 | 0.295 | 0.014 | 4.22e-01 |
BMI21 | pT+clump.10FCVal | pT+clump.MultiPRS | 0.310 | 0.317 | -0.007 | 7.17e-01 | 0.301 | 0.295 | 0.006 | 4.30e-01 |
BMI21 | SBLUP.Inf | pT+clump.MultiPRS | 0.324 | 0.317 | 0.008 | 7.08e-01 | 0.299 | 0.295 | 0.004 | 8.29e-01 |
BMI21 | LDpred2.Inf | pT+clump.10FCVal | 0.333 | 0.310 | 0.024 | 5.78e-03 | 0.290 | 0.301 | -0.010 | 5.55e-01 |
BMI21 | SBayesR.PseudoVal | pT+clump.10FCVal | 0.339 | 0.310 | 0.029 | 6.51e-03 | 0.290 | 0.301 | -0.011 | 6.24e-01 |
BMI21 | LDpred2.PseudoVal | pT+clump.10FCVal | 0.333 | 0.310 | 0.023 | 7.25e-03 | 0.290 | 0.301 | -0.010 | 5.63e-01 |
BMI21 | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.354 | 0.310 | 0.044 | 1.47e-07 | 0.303 | 0.301 | 0.002 | 9.11e-01 |
BMI21 | PRScs.PseudoVal | pT+clump.10FCVal | 0.347 | 0.310 | 0.038 | 1.92e-05 | 0.302 | 0.301 | 0.001 | 9.62e-01 |
BMI21 | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.374 | 0.310 | 0.064 | 1.40e-03 | 0.343 | 0.301 | 0.042 | 8.61e-03 |
BMI21 | PRScs.10FCVal | pT+clump.10FCVal | 0.353 | 0.310 | 0.043 | 1.39e-08 | 0.326 | 0.301 | 0.025 | 9.91e-02 |
BMI21 | lassosum.PseudoVal | pT+clump.10FCVal | 0.288 | 0.310 | -0.021 | 9.90e-02 | 0.231 | 0.301 | -0.070 | 7.45e-03 |
BMI21 | All.MultiPRS | pT+clump.10FCVal | 0.373 | 0.310 | 0.064 | 1.46e-03 | 0.338 | 0.301 | 0.037 | 3.33e-02 |
BMI21 | pT+clump.MultiPRS | pT+clump.10FCVal | 0.317 | 0.310 | 0.007 | 7.17e-01 | 0.295 | 0.301 | -0.006 | 4.30e-01 |
BMI21 | SBLUP.Inf | pT+clump.10FCVal | 0.324 | 0.310 | 0.015 | 8.52e-02 | 0.299 | 0.301 | -0.002 | 9.03e-01 |
BMI21 | LDpred2.10FCVal | pT+clump.10FCVal | 0.360 | 0.310 | 0.050 | 1.48e-08 | 0.315 | 0.301 | 0.014 | 4.34e-01 |
BMI21 | LDpred2.MultiPRS | pT+clump.10FCVal | 0.357 | 0.310 | 0.047 | 1.90e-02 | 0.308 | 0.301 | 0.008 | 6.80e-01 |
BMI21 | PRScs.MultiPRS | pT+clump.10FCVal | 0.354 | 0.310 | 0.045 | 2.60e-02 | 0.325 | 0.301 | 0.024 | 1.30e-01 |
BMI21 | lassosum.MultiPRS | pT+clump.10FCVal | 0.361 | 0.310 | 0.051 | 1.16e-02 | 0.334 | 0.301 | 0.033 | 6.72e-02 |
BMI21 | MegaPRS.10FCVal | pT+clump.10FCVal | 0.371 | 0.310 | 0.061 | 3.25e-15 | 0.353 | 0.301 | 0.052 | 6.86e-04 |
BMI21 | LDpred1.MultiPRS | pT+clump.10FCVal | 0.349 | 0.310 | 0.039 | 5.12e-02 | 0.306 | 0.301 | 0.005 | 7.60e-01 |
BMI21 | lassosum.10FCVal | pT+clump.10FCVal | 0.352 | 0.310 | 0.043 | 7.13e-07 | 0.332 | 0.301 | 0.031 | 6.73e-02 |
BMI21 | LDpred1.10FCVal | pT+clump.10FCVal | 0.336 | 0.310 | 0.026 | 2.61e-03 | 0.306 | 0.301 | 0.005 | 7.81e-01 |
BMI21 | LDpred1.Inf | pT+clump.10FCVal | 0.345 | 0.310 | 0.035 | 5.93e-06 | 0.298 | 0.301 | -0.003 | 8.46e-01 |
BMI21 | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.371 | 0.310 | 0.061 | 3.25e-15 | 0.353 | 0.301 | 0.052 | 6.86e-04 |
BMI21 | pT+clump.10FCVal | pT+clump.10FCVal | 0.310 | 0.310 | 0.000 | 1.00e+00 | 0.301 | 0.301 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.374 | 0.339 | 0.035 | 8.14e-02 | 0.343 | 0.290 | 0.053 | 1.21e-03 |
BMI21 | lassosum.MultiPRS | SBayesR.PseudoVal | 0.361 | 0.339 | 0.022 | 2.82e-01 | 0.334 | 0.290 | 0.044 | 2.88e-03 |
BMI21 | LDpred1.Inf | SBayesR.PseudoVal | 0.345 | 0.339 | 0.006 | 5.43e-01 | 0.298 | 0.290 | 0.008 | 7.13e-01 |
BMI21 | lassosum.PseudoVal | SBayesR.PseudoVal | 0.288 | 0.339 | -0.051 | 8.27e-14 | 0.231 | 0.290 | -0.060 | 2.43e-05 |
BMI21 | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.357 | 0.339 | 0.018 | 3.72e-01 | 0.308 | 0.290 | 0.018 | 2.73e-01 |
BMI21 | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.371 | 0.339 | 0.032 | 4.65e-05 | 0.353 | 0.290 | 0.063 | 9.59e-05 |
BMI21 | LDpred1.10FCVal | SBayesR.PseudoVal | 0.336 | 0.339 | -0.003 | 7.68e-01 | 0.306 | 0.290 | 0.016 | 4.69e-01 |
BMI21 | LDpred2.Inf | SBayesR.PseudoVal | 0.333 | 0.339 | -0.006 | 5.67e-01 | 0.290 | 0.290 | 0.000 | 9.87e-01 |
BMI21 | LDpred2.10FCVal | SBayesR.PseudoVal | 0.360 | 0.339 | 0.021 | 6.89e-03 | 0.315 | 0.290 | 0.025 | 1.24e-01 |
BMI21 | lassosum.10FCVal | SBayesR.PseudoVal | 0.352 | 0.339 | 0.013 | 8.95e-02 | 0.332 | 0.290 | 0.042 | 8.78e-03 |
BMI21 | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.317 | 0.339 | -0.022 | 2.73e-01 | 0.295 | 0.290 | 0.005 | 8.01e-01 |
BMI21 | SBLUP.Inf | SBayesR.PseudoVal | 0.324 | 0.339 | -0.015 | 1.58e-01 | 0.299 | 0.290 | 0.009 | 6.89e-01 |
BMI21 | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.339 | 0.339 | 0.000 | 1.00e+00 | 0.290 | 0.290 | 0.000 | 1.00e+00 |
BMI21 | All.MultiPRS | SBayesR.PseudoVal | 0.373 | 0.339 | 0.034 | 8.18e-02 | 0.338 | 0.290 | 0.048 | 2.48e-03 |
BMI21 | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.333 | 0.339 | -0.006 | 5.46e-01 | 0.290 | 0.290 | 0.000 | 9.84e-01 |
BMI21 | PRScs.10FCVal | SBayesR.PseudoVal | 0.353 | 0.339 | 0.014 | 9.89e-02 | 0.326 | 0.290 | 0.036 | 3.26e-02 |
BMI21 | PRScs.MultiPRS | SBayesR.PseudoVal | 0.354 | 0.339 | 0.015 | 4.39e-01 | 0.325 | 0.290 | 0.035 | 1.15e-02 |
BMI21 | pT+clump.10FCVal | SBayesR.PseudoVal | 0.310 | 0.339 | -0.029 | 6.51e-03 | 0.301 | 0.290 | 0.011 | 6.24e-01 |
BMI21 | PRScs.PseudoVal | SBayesR.PseudoVal | 0.347 | 0.339 | 0.008 | 1.32e-01 | 0.302 | 0.290 | 0.012 | 2.96e-01 |
BMI21 | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.371 | 0.339 | 0.032 | 4.65e-05 | 0.353 | 0.290 | 0.063 | 9.59e-05 |
BMI21 | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.354 | 0.339 | 0.015 | 4.11e-02 | 0.303 | 0.290 | 0.013 | 4.21e-01 |
BMI21 | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.349 | 0.339 | 0.010 | 6.16e-01 | 0.306 | 0.290 | 0.016 | 4.24e-01 |
BMI21 | LDpred2.10FCVal | SBLUP.Inf | 0.360 | 0.324 | 0.035 | 2.96e-07 | 0.315 | 0.299 | 0.016 | 2.55e-01 |
BMI21 | SBayesR.PseudoVal | SBLUP.Inf | 0.339 | 0.324 | 0.015 | 1.58e-01 | 0.290 | 0.299 | -0.009 | 6.89e-01 |
BMI21 | All.MultiPRS | SBLUP.Inf | 0.373 | 0.324 | 0.049 | 1.46e-02 | 0.338 | 0.299 | 0.039 | 1.42e-02 |
BMI21 | LDpred2.PseudoVal | SBLUP.Inf | 0.333 | 0.324 | 0.009 | 1.34e-01 | 0.290 | 0.299 | -0.008 | 4.95e-01 |
BMI21 | SBLUP.Inf | SBLUP.Inf | 0.324 | 0.324 | 0.000 | 1.00e+00 | 0.299 | 0.299 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | SBLUP.Inf | 0.371 | 0.324 | 0.046 | 1.94e-12 | 0.353 | 0.299 | 0.054 | 5.21e-05 |
BMI21 | MegaPRS.MultiPRS | SBLUP.Inf | 0.374 | 0.324 | 0.049 | 1.34e-02 | 0.343 | 0.299 | 0.045 | 2.75e-03 |
BMI21 | LDpred2.Inf | SBLUP.Inf | 0.333 | 0.324 | 0.009 | 1.13e-01 | 0.290 | 0.299 | -0.008 | 4.86e-01 |
BMI21 | lassosum.10FCVal | SBLUP.Inf | 0.352 | 0.324 | 0.028 | 5.02e-04 | 0.332 | 0.299 | 0.033 | 3.58e-02 |
BMI21 | pT+clump.MultiPRS | SBLUP.Inf | 0.317 | 0.324 | -0.008 | 7.08e-01 | 0.295 | 0.299 | -0.004 | 8.29e-01 |
BMI21 | lassosum.MultiPRS | SBLUP.Inf | 0.361 | 0.324 | 0.036 | 7.19e-02 | 0.334 | 0.299 | 0.035 | 2.83e-02 |
BMI21 | DBSLMM.PseudoVal | SBLUP.Inf | 0.354 | 0.324 | 0.029 | 4.67e-05 | 0.303 | 0.299 | 0.004 | 7.86e-01 |
BMI21 | lassosum.PseudoVal | SBLUP.Inf | 0.288 | 0.324 | -0.036 | 4.71e-03 | 0.231 | 0.299 | -0.068 | 1.07e-02 |
BMI21 | pT+clump.10FCVal | SBLUP.Inf | 0.310 | 0.324 | -0.015 | 8.52e-02 | 0.301 | 0.299 | 0.002 | 9.03e-01 |
BMI21 | MegaPRS.10FCVal | SBLUP.Inf | 0.371 | 0.324 | 0.046 | 1.94e-12 | 0.353 | 0.299 | 0.054 | 5.21e-05 |
BMI21 | LDpred1.Inf | SBLUP.Inf | 0.345 | 0.324 | 0.020 | 7.45e-05 | 0.298 | 0.299 | -0.001 | 9.26e-01 |
BMI21 | LDpred1.MultiPRS | SBLUP.Inf | 0.349 | 0.324 | 0.024 | 2.25e-01 | 0.306 | 0.299 | 0.007 | 5.15e-01 |
BMI21 | LDpred2.MultiPRS | SBLUP.Inf | 0.357 | 0.324 | 0.032 | 1.05e-01 | 0.308 | 0.299 | 0.010 | 5.15e-01 |
BMI21 | PRScs.10FCVal | SBLUP.Inf | 0.353 | 0.324 | 0.028 | 2.97e-07 | 0.326 | 0.299 | 0.028 | 1.85e-02 |
BMI21 | PRScs.PseudoVal | SBLUP.Inf | 0.347 | 0.324 | 0.023 | 3.36e-03 | 0.302 | 0.299 | 0.003 | 8.55e-01 |
BMI21 | PRScs.MultiPRS | SBLUP.Inf | 0.354 | 0.324 | 0.030 | 1.37e-01 | 0.325 | 0.299 | 0.026 | 4.47e-02 |
BMI21 | LDpred1.10FCVal | SBLUP.Inf | 0.336 | 0.324 | 0.011 | 5.10e-02 | 0.306 | 0.299 | 0.007 | 5.66e-01 |
GCSE | DBSLMM.PseudoVal | All.MultiPRS | 0.401 | 0.421 | -0.020 | 2.10e-01 | 0.337 | 0.357 | -0.021 | 6.38e-03 |
GCSE | SBayesR.PseudoVal | All.MultiPRS | 0.397 | 0.421 | -0.025 | 1.24e-01 | 0.331 | 0.357 | -0.027 | 6.34e-03 |
GCSE | lassosum.10FCVal | All.MultiPRS | 0.407 | 0.421 | -0.014 | 3.82e-01 | 0.348 | 0.357 | -0.010 | 1.42e-01 |
GCSE | LDpred2.10FCVal | All.MultiPRS | 0.412 | 0.421 | -0.010 | 5.44e-01 | 0.342 | 0.357 | -0.015 | 1.01e-02 |
GCSE | MegaPRS.MultiPRS | All.MultiPRS | 0.422 | 0.421 | 0.001 | 3.19e-01 | 0.362 | 0.357 | 0.005 | 3.64e-02 |
GCSE | PRScs.10FCVal | All.MultiPRS | 0.410 | 0.421 | -0.011 | 4.95e-01 | 0.341 | 0.357 | -0.017 | 8.37e-03 |
GCSE | LDpred2.Inf | All.MultiPRS | 0.405 | 0.421 | -0.016 | 3.19e-01 | 0.331 | 0.357 | -0.027 | 3.79e-04 |
GCSE | MegaPRS.10FCVal | All.MultiPRS | 0.423 | 0.421 | 0.002 | 9.14e-01 | 0.362 | 0.357 | 0.004 | 1.34e-01 |
GCSE | pT+clump.MultiPRS | All.MultiPRS | 0.381 | 0.421 | -0.040 | 1.09e-02 | 0.328 | 0.357 | -0.029 | 6.24e-03 |
GCSE | lassosum.PseudoVal | All.MultiPRS | 0.321 | 0.421 | -0.101 | 9.04e-10 | 0.276 | 0.357 | -0.081 | 2.93e-06 |
GCSE | PRScs.MultiPRS | All.MultiPRS | 0.413 | 0.421 | -0.008 | 6.10e-01 | 0.346 | 0.357 | -0.012 | 3.04e-02 |
GCSE | LDpred1.Inf | All.MultiPRS | 0.408 | 0.421 | -0.013 | 3.96e-01 | 0.341 | 0.357 | -0.016 | 1.92e-02 |
GCSE | MegaPRS.PseudoVal | All.MultiPRS | 0.419 | 0.421 | -0.003 | 8.72e-01 | 0.359 | 0.357 | 0.001 | 7.93e-01 |
GCSE | PRScs.PseudoVal | All.MultiPRS | 0.397 | 0.421 | -0.024 | 1.35e-01 | 0.351 | 0.357 | -0.006 | 4.17e-01 |
GCSE | All.MultiPRS | All.MultiPRS | 0.421 | 0.421 | 0.000 | 1.00e+00 | 0.357 | 0.357 | 0.000 | 1.00e+00 |
GCSE | LDpred2.MultiPRS | All.MultiPRS | 0.412 | 0.421 | -0.009 | 1.40e-03 | 0.339 | 0.357 | -0.019 | 1.01e-03 |
GCSE | LDpred1.MultiPRS | All.MultiPRS | 0.409 | 0.421 | -0.012 | 4.49e-01 | 0.340 | 0.357 | -0.018 | 6.97e-03 |
GCSE | pT+clump.10FCVal | All.MultiPRS | 0.373 | 0.421 | -0.048 | 2.70e-03 | 0.311 | 0.357 | -0.046 | 2.15e-04 |
GCSE | lassosum.MultiPRS | All.MultiPRS | 0.411 | 0.421 | -0.010 | 5.28e-01 | 0.347 | 0.357 | -0.011 | 7.02e-02 |
GCSE | LDpred2.PseudoVal | All.MultiPRS | 0.406 | 0.421 | -0.015 | 3.30e-01 | 0.332 | 0.357 | -0.025 | 5.53e-04 |
GCSE | LDpred1.10FCVal | All.MultiPRS | 0.402 | 0.421 | -0.019 | 2.26e-01 | 0.330 | 0.357 | -0.027 | 1.47e-03 |
GCSE | SBLUP.Inf | All.MultiPRS | 0.400 | 0.421 | -0.022 | 1.74e-01 | 0.335 | 0.357 | -0.023 | 1.08e-02 |
GCSE | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.397 | 0.401 | -0.004 | 3.38e-01 | 0.351 | 0.337 | 0.014 | 9.88e-02 |
GCSE | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.397 | 0.401 | -0.005 | 3.44e-01 | 0.331 | 0.337 | -0.006 | 5.72e-01 |
GCSE | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.412 | 0.401 | 0.011 | 4.79e-01 | 0.339 | 0.337 | 0.002 | 8.05e-01 |
GCSE | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.413 | 0.401 | 0.012 | 4.59e-01 | 0.346 | 0.337 | 0.009 | 1.97e-01 |
GCSE | LDpred1.Inf | DBSLMM.PseudoVal | 0.408 | 0.401 | 0.006 | 1.45e-01 | 0.341 | 0.337 | 0.004 | 6.60e-01 |
GCSE | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.381 | 0.401 | -0.021 | 2.13e-01 | 0.328 | 0.337 | -0.009 | 4.68e-01 |
GCSE | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.412 | 0.401 | 0.010 | 1.61e-02 | 0.342 | 0.337 | 0.005 | 5.58e-01 |
GCSE | lassosum.10FCVal | DBSLMM.PseudoVal | 0.407 | 0.401 | 0.006 | 1.61e-01 | 0.348 | 0.337 | 0.011 | 2.43e-01 |
GCSE | LDpred2.Inf | DBSLMM.PseudoVal | 0.405 | 0.401 | 0.004 | 3.90e-01 | 0.331 | 0.337 | -0.006 | 5.44e-01 |
GCSE | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.419 | 0.401 | 0.017 | 4.36e-05 | 0.359 | 0.337 | 0.022 | 1.50e-02 |
GCSE | All.MultiPRS | DBSLMM.PseudoVal | 0.421 | 0.401 | 0.020 | 2.10e-01 | 0.357 | 0.337 | 0.021 | 6.38e-03 |
GCSE | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.411 | 0.401 | 0.010 | 5.35e-01 | 0.347 | 0.337 | 0.010 | 2.52e-01 |
GCSE | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.406 | 0.401 | 0.004 | 3.40e-01 | 0.332 | 0.337 | -0.004 | 6.50e-01 |
GCSE | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.409 | 0.401 | 0.008 | 6.22e-01 | 0.340 | 0.337 | 0.003 | 7.50e-01 |
GCSE | SBLUP.Inf | DBSLMM.PseudoVal | 0.400 | 0.401 | -0.002 | 7.40e-01 | 0.335 | 0.337 | -0.002 | 8.41e-01 |
GCSE | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.321 | 0.401 | -0.081 | 3.95e-22 | 0.276 | 0.337 | -0.061 | 6.21e-04 |
GCSE | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.401 | 0.401 | 0.000 | 1.00e+00 | 0.337 | 0.337 | 0.000 | 1.00e+00 |
GCSE | PRScs.10FCVal | DBSLMM.PseudoVal | 0.410 | 0.401 | 0.009 | 1.71e-02 | 0.341 | 0.337 | 0.004 | 6.46e-01 |
GCSE | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.402 | 0.401 | 0.001 | 8.86e-01 | 0.330 | 0.337 | -0.006 | 5.42e-01 |
GCSE | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.373 | 0.401 | -0.028 | 2.61e-05 | 0.311 | 0.337 | -0.026 | 7.14e-02 |
GCSE | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.422 | 0.401 | 0.021 | 1.83e-01 | 0.362 | 0.337 | 0.026 | 2.46e-03 |
GCSE | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.423 | 0.401 | 0.022 | 1.34e-07 | 0.362 | 0.337 | 0.025 | 4.29e-03 |
GCSE | LDpred2.MultiPRS | lassosum.MultiPRS | 0.412 | 0.411 | 0.001 | 9.29e-01 | 0.339 | 0.347 | -0.008 | 2.75e-01 |
GCSE | LDpred2.PseudoVal | lassosum.MultiPRS | 0.406 | 0.411 | -0.005 | 7.34e-01 | 0.332 | 0.347 | -0.014 | 9.52e-02 |
GCSE | PRScs.MultiPRS | lassosum.MultiPRS | 0.413 | 0.411 | 0.002 | 4.70e-01 | 0.346 | 0.347 | -0.001 | 8.58e-01 |
GCSE | LDpred2.Inf | lassosum.MultiPRS | 0.405 | 0.411 | -0.006 | 7.16e-01 | 0.331 | 0.347 | -0.016 | 7.29e-02 |
GCSE | PRScs.PseudoVal | lassosum.MultiPRS | 0.397 | 0.411 | -0.014 | 3.89e-01 | 0.351 | 0.347 | 0.004 | 5.77e-01 |
GCSE | pT+clump.MultiPRS | lassosum.MultiPRS | 0.381 | 0.411 | -0.030 | 6.07e-02 | 0.328 | 0.347 | -0.019 | 1.13e-01 |
GCSE | PRScs.10FCVal | lassosum.MultiPRS | 0.410 | 0.411 | -0.001 | 9.61e-01 | 0.341 | 0.347 | -0.006 | 3.58e-01 |
GCSE | LDpred2.10FCVal | lassosum.MultiPRS | 0.412 | 0.411 | 0.000 | 9.78e-01 | 0.342 | 0.347 | -0.005 | 4.81e-01 |
GCSE | pT+clump.10FCVal | lassosum.MultiPRS | 0.373 | 0.411 | -0.038 | 1.81e-02 | 0.311 | 0.347 | -0.036 | 7.92e-03 |
GCSE | SBayesR.PseudoVal | lassosum.MultiPRS | 0.397 | 0.411 | -0.015 | 3.63e-01 | 0.331 | 0.347 | -0.016 | 1.26e-01 |
GCSE | lassosum.PseudoVal | lassosum.MultiPRS | 0.321 | 0.411 | -0.091 | 3.52e-08 | 0.276 | 0.347 | -0.071 | 2.48e-05 |
GCSE | All.MultiPRS | lassosum.MultiPRS | 0.421 | 0.411 | 0.010 | 5.28e-01 | 0.357 | 0.347 | 0.011 | 7.02e-02 |
GCSE | SBLUP.Inf | lassosum.MultiPRS | 0.400 | 0.411 | -0.012 | 4.70e-01 | 0.335 | 0.347 | -0.012 | 2.25e-01 |
GCSE | LDpred1.MultiPRS | lassosum.MultiPRS | 0.409 | 0.411 | -0.002 | 6.04e-01 | 0.340 | 0.347 | -0.007 | 3.80e-01 |
GCSE | MegaPRS.10FCVal | lassosum.MultiPRS | 0.423 | 0.411 | 0.012 | 4.58e-01 | 0.362 | 0.347 | 0.015 | 3.13e-02 |
GCSE | lassosum.MultiPRS | lassosum.MultiPRS | 0.411 | 0.411 | 0.000 | 1.00e+00 | 0.347 | 0.347 | 0.000 | 1.00e+00 |
GCSE | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.401 | 0.411 | -0.010 | 5.35e-01 | 0.337 | 0.347 | -0.010 | 2.52e-01 |
GCSE | LDpred1.10FCVal | lassosum.MultiPRS | 0.402 | 0.411 | -0.009 | 5.66e-01 | 0.330 | 0.347 | -0.016 | 8.28e-02 |
GCSE | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.419 | 0.411 | 0.008 | 6.35e-01 | 0.359 | 0.347 | 0.012 | 1.34e-01 |
GCSE | LDpred1.Inf | lassosum.MultiPRS | 0.408 | 0.411 | -0.003 | 8.32e-01 | 0.341 | 0.347 | -0.006 | 4.86e-01 |
GCSE | lassosum.10FCVal | lassosum.MultiPRS | 0.407 | 0.411 | -0.004 | 8.11e-01 | 0.348 | 0.347 | 0.001 | 7.97e-01 |
GCSE | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.422 | 0.411 | 0.011 | 4.79e-01 | 0.362 | 0.347 | 0.016 | 2.16e-02 |
GCSE | MegaPRS.10FCVal | lassosum.10FCVal | 0.423 | 0.407 | 0.016 | 1.40e-05 | 0.362 | 0.348 | 0.014 | 6.13e-02 |
GCSE | PRScs.MultiPRS | lassosum.10FCVal | 0.413 | 0.407 | 0.006 | 7.18e-01 | 0.346 | 0.348 | -0.002 | 7.59e-01 |
GCSE | LDpred1.Inf | lassosum.10FCVal | 0.408 | 0.407 | 0.000 | 9.14e-01 | 0.341 | 0.348 | -0.007 | 4.22e-01 |
GCSE | pT+clump.MultiPRS | lassosum.10FCVal | 0.381 | 0.407 | -0.027 | 1.06e-01 | 0.328 | 0.348 | -0.019 | 1.07e-01 |
GCSE | All.MultiPRS | lassosum.10FCVal | 0.421 | 0.407 | 0.014 | 3.82e-01 | 0.357 | 0.348 | 0.010 | 1.42e-01 |
GCSE | LDpred2.MultiPRS | lassosum.10FCVal | 0.412 | 0.407 | 0.005 | 7.42e-01 | 0.339 | 0.348 | -0.009 | 2.12e-01 |
GCSE | SBayesR.PseudoVal | lassosum.10FCVal | 0.397 | 0.407 | -0.011 | 1.91e-02 | 0.331 | 0.348 | -0.017 | 8.58e-02 |
GCSE | lassosum.MultiPRS | lassosum.10FCVal | 0.411 | 0.407 | 0.004 | 8.11e-01 | 0.347 | 0.348 | -0.001 | 7.97e-01 |
GCSE | LDpred2.PseudoVal | lassosum.10FCVal | 0.406 | 0.407 | -0.002 | 6.94e-01 | 0.332 | 0.348 | -0.015 | 6.39e-02 |
GCSE | LDpred1.10FCVal | lassosum.10FCVal | 0.402 | 0.407 | -0.005 | 2.45e-01 | 0.330 | 0.348 | -0.017 | 7.38e-02 |
GCSE | SBLUP.Inf | lassosum.10FCVal | 0.400 | 0.407 | -0.008 | 1.14e-01 | 0.335 | 0.348 | -0.013 | 1.98e-01 |
GCSE | lassosum.PseudoVal | lassosum.10FCVal | 0.321 | 0.407 | -0.087 | 1.70e-32 | 0.276 | 0.348 | -0.072 | 3.58e-06 |
GCSE | DBSLMM.PseudoVal | lassosum.10FCVal | 0.401 | 0.407 | -0.006 | 1.61e-01 | 0.337 | 0.348 | -0.011 | 2.43e-01 |
GCSE | LDpred2.10FCVal | lassosum.10FCVal | 0.412 | 0.407 | 0.004 | 1.62e-01 | 0.342 | 0.348 | -0.006 | 3.59e-01 |
GCSE | MegaPRS.PseudoVal | lassosum.10FCVal | 0.419 | 0.407 | 0.011 | 5.57e-03 | 0.359 | 0.348 | 0.011 | 2.01e-01 |
GCSE | PRScs.PseudoVal | lassosum.10FCVal | 0.397 | 0.407 | -0.010 | 2.12e-03 | 0.351 | 0.348 | 0.003 | 6.16e-01 |
GCSE | lassosum.10FCVal | lassosum.10FCVal | 0.407 | 0.407 | 0.000 | 1.00e+00 | 0.348 | 0.348 | 0.000 | 1.00e+00 |
GCSE | LDpred2.Inf | lassosum.10FCVal | 0.405 | 0.407 | -0.002 | 6.46e-01 | 0.331 | 0.348 | -0.017 | 5.47e-02 |
GCSE | LDpred1.MultiPRS | lassosum.10FCVal | 0.409 | 0.407 | 0.002 | 9.10e-01 | 0.340 | 0.348 | -0.008 | 3.29e-01 |
GCSE | pT+clump.10FCVal | lassosum.10FCVal | 0.373 | 0.407 | -0.034 | 3.87e-07 | 0.311 | 0.348 | -0.036 | 9.69e-03 |
GCSE | MegaPRS.MultiPRS | lassosum.10FCVal | 0.422 | 0.407 | 0.015 | 3.41e-01 | 0.362 | 0.348 | 0.015 | 4.59e-02 |
GCSE | PRScs.10FCVal | lassosum.10FCVal | 0.410 | 0.407 | 0.003 | 4.22e-01 | 0.341 | 0.348 | -0.007 | 3.70e-01 |
GCSE | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.422 | 0.321 | 0.102 | 5.59e-10 | 0.362 | 0.276 | 0.086 | 1.69e-06 |
GCSE | PRScs.10FCVal | lassosum.PseudoVal | 0.410 | 0.321 | 0.090 | 9.90e-22 | 0.341 | 0.276 | 0.064 | 1.14e-03 |
GCSE | lassosum.MultiPRS | lassosum.PseudoVal | 0.411 | 0.321 | 0.091 | 3.52e-08 | 0.347 | 0.276 | 0.071 | 2.48e-05 |
GCSE | LDpred2.PseudoVal | lassosum.PseudoVal | 0.406 | 0.321 | 0.085 | 2.71e-19 | 0.332 | 0.276 | 0.056 | 4.53e-03 |
GCSE | MegaPRS.10FCVal | lassosum.PseudoVal | 0.423 | 0.321 | 0.102 | 1.67e-32 | 0.362 | 0.276 | 0.086 | 2.34e-06 |
GCSE | pT+clump.MultiPRS | lassosum.PseudoVal | 0.381 | 0.321 | 0.060 | 3.70e-04 | 0.328 | 0.276 | 0.052 | 5.51e-03 |
GCSE | lassosum.PseudoVal | lassosum.PseudoVal | 0.321 | 0.321 | 0.000 | 1.00e+00 | 0.276 | 0.276 | 0.000 | 1.00e+00 |
GCSE | PRScs.MultiPRS | lassosum.PseudoVal | 0.413 | 0.321 | 0.092 | 1.67e-08 | 0.346 | 0.276 | 0.070 | 6.81e-05 |
GCSE | LDpred1.Inf | lassosum.PseudoVal | 0.408 | 0.321 | 0.087 | 2.61e-20 | 0.341 | 0.276 | 0.065 | 1.22e-03 |
GCSE | SBayesR.PseudoVal | lassosum.PseudoVal | 0.397 | 0.321 | 0.076 | 2.14e-37 | 0.331 | 0.276 | 0.055 | 1.49e-05 |
GCSE | PRScs.PseudoVal | lassosum.PseudoVal | 0.397 | 0.321 | 0.077 | 7.69e-31 | 0.351 | 0.276 | 0.075 | 4.42e-08 |
GCSE | All.MultiPRS | lassosum.PseudoVal | 0.421 | 0.321 | 0.101 | 9.04e-10 | 0.357 | 0.276 | 0.081 | 2.93e-06 |
GCSE | LDpred2.MultiPRS | lassosum.PseudoVal | 0.412 | 0.321 | 0.092 | 2.37e-08 | 0.339 | 0.276 | 0.063 | 2.25e-04 |
GCSE | LDpred1.MultiPRS | lassosum.PseudoVal | 0.409 | 0.321 | 0.089 | 7.46e-08 | 0.340 | 0.276 | 0.064 | 1.37e-03 |
GCSE | pT+clump.10FCVal | lassosum.PseudoVal | 0.373 | 0.321 | 0.052 | 1.02e-06 | 0.311 | 0.276 | 0.035 | 1.22e-01 |
GCSE | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.401 | 0.321 | 0.081 | 3.95e-22 | 0.337 | 0.276 | 0.061 | 6.21e-04 |
GCSE | LDpred1.10FCVal | lassosum.PseudoVal | 0.402 | 0.321 | 0.081 | 1.52e-17 | 0.330 | 0.276 | 0.054 | 6.77e-03 |
GCSE | SBLUP.Inf | lassosum.PseudoVal | 0.400 | 0.321 | 0.079 | 3.28e-15 | 0.335 | 0.276 | 0.059 | 5.25e-03 |
GCSE | lassosum.10FCVal | lassosum.PseudoVal | 0.407 | 0.321 | 0.087 | 1.70e-32 | 0.348 | 0.276 | 0.072 | 3.58e-06 |
GCSE | LDpred2.10FCVal | lassosum.PseudoVal | 0.412 | 0.321 | 0.091 | 5.61e-28 | 0.342 | 0.276 | 0.066 | 1.45e-04 |
GCSE | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.419 | 0.321 | 0.098 | 4.22e-32 | 0.359 | 0.276 | 0.083 | 2.22e-06 |
GCSE | LDpred2.Inf | lassosum.PseudoVal | 0.405 | 0.321 | 0.085 | 1.54e-18 | 0.331 | 0.276 | 0.055 | 6.84e-03 |
GCSE | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.397 | 0.422 | -0.026 | 1.06e-01 | 0.331 | 0.362 | -0.032 | 2.72e-03 |
GCSE | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.381 | 0.422 | -0.042 | 8.69e-03 | 0.328 | 0.362 | -0.034 | 1.97e-03 |
GCSE | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.412 | 0.422 | -0.011 | 4.94e-01 | 0.342 | 0.362 | -0.020 | 4.09e-03 |
GCSE | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.419 | 0.422 | -0.004 | 8.11e-01 | 0.359 | 0.362 | -0.004 | 3.10e-01 |
GCSE | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.397 | 0.422 | -0.025 | 1.15e-01 | 0.351 | 0.362 | -0.011 | 1.87e-01 |
GCSE | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.413 | 0.422 | -0.009 | 5.57e-01 | 0.346 | 0.362 | -0.017 | 8.93e-03 |
GCSE | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.412 | 0.422 | -0.010 | 4.67e-03 | 0.339 | 0.362 | -0.024 | 1.14e-03 |
GCSE | LDpred2.Inf | MegaPRS.MultiPRS | 0.405 | 0.422 | -0.017 | 2.82e-01 | 0.331 | 0.362 | -0.032 | 1.39e-04 |
GCSE | SBLUP.Inf | MegaPRS.MultiPRS | 0.400 | 0.422 | -0.023 | 1.51e-01 | 0.335 | 0.362 | -0.028 | 3.69e-03 |
GCSE | All.MultiPRS | MegaPRS.MultiPRS | 0.421 | 0.422 | -0.001 | 3.19e-01 | 0.357 | 0.362 | -0.005 | 3.64e-02 |
GCSE | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.406 | 0.422 | -0.017 | 2.93e-01 | 0.332 | 0.362 | -0.030 | 1.86e-04 |
GCSE | PRScs.10FCVal | MegaPRS.MultiPRS | 0.410 | 0.422 | -0.012 | 4.47e-01 | 0.341 | 0.362 | -0.022 | 2.15e-03 |
GCSE | LDpred1.Inf | MegaPRS.MultiPRS | 0.408 | 0.422 | -0.015 | 3.54e-01 | 0.341 | 0.362 | -0.021 | 4.14e-03 |
GCSE | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.373 | 0.422 | -0.049 | 2.08e-03 | 0.311 | 0.362 | -0.051 | 5.30e-05 |
GCSE | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.401 | 0.422 | -0.021 | 1.83e-01 | 0.337 | 0.362 | -0.026 | 2.46e-03 |
GCSE | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.321 | 0.422 | -0.102 | 5.59e-10 | 0.276 | 0.362 | -0.086 | 1.69e-06 |
GCSE | lassosum.10FCVal | MegaPRS.MultiPRS | 0.407 | 0.422 | -0.015 | 3.41e-01 | 0.348 | 0.362 | -0.015 | 4.59e-02 |
GCSE | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.423 | 0.422 | 0.000 | 9.76e-01 | 0.362 | 0.362 | -0.001 | 5.00e-01 |
GCSE | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.409 | 0.422 | -0.013 | 4.04e-01 | 0.340 | 0.362 | -0.023 | 1.81e-03 |
GCSE | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.411 | 0.422 | -0.011 | 4.79e-01 | 0.347 | 0.362 | -0.016 | 2.16e-02 |
GCSE | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.422 | 0.422 | 0.000 | 1.00e+00 | 0.362 | 0.362 | 0.000 | 1.00e+00 |
GCSE | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.402 | 0.422 | -0.020 | 1.97e-01 | 0.330 | 0.362 | -0.032 | 3.83e-04 |
GCSE | PRScs.10FCVal | MegaPRS.PseudoVal | 0.410 | 0.419 | -0.008 | 5.11e-02 | 0.341 | 0.359 | -0.018 | 4.10e-02 |
GCSE | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.381 | 0.419 | -0.038 | 2.05e-02 | 0.328 | 0.359 | -0.030 | 6.52e-03 |
GCSE | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.412 | 0.419 | -0.007 | 7.81e-02 | 0.342 | 0.359 | -0.017 | 4.78e-02 |
GCSE | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.413 | 0.419 | -0.006 | 7.24e-01 | 0.346 | 0.359 | -0.013 | 9.64e-02 |
GCSE | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.412 | 0.419 | -0.006 | 6.99e-01 | 0.339 | 0.359 | -0.020 | 1.77e-02 |
GCSE | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.397 | 0.419 | -0.022 | 2.03e-06 | 0.331 | 0.359 | -0.028 | 4.90e-03 |
GCSE | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.373 | 0.419 | -0.046 | 2.58e-12 | 0.311 | 0.359 | -0.047 | 3.41e-04 |
GCSE | LDpred2.Inf | MegaPRS.PseudoVal | 0.405 | 0.419 | -0.013 | 6.58e-03 | 0.331 | 0.359 | -0.028 | 6.64e-03 |
GCSE | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.406 | 0.419 | -0.013 | 6.95e-03 | 0.332 | 0.359 | -0.026 | 8.74e-03 |
GCSE | All.MultiPRS | MegaPRS.PseudoVal | 0.421 | 0.419 | 0.003 | 8.72e-01 | 0.357 | 0.359 | -0.001 | 7.93e-01 |
GCSE | SBLUP.Inf | MegaPRS.PseudoVal | 0.400 | 0.419 | -0.019 | 3.35e-04 | 0.335 | 0.359 | -0.024 | 3.23e-02 |
GCSE | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.397 | 0.419 | -0.021 | 2.99e-07 | 0.351 | 0.359 | -0.008 | 3.82e-01 |
GCSE | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.401 | 0.419 | -0.017 | 4.36e-05 | 0.337 | 0.359 | -0.022 | 1.50e-02 |
GCSE | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.411 | 0.419 | -0.008 | 6.35e-01 | 0.347 | 0.359 | -0.012 | 1.34e-01 |
GCSE | LDpred1.Inf | MegaPRS.PseudoVal | 0.408 | 0.419 | -0.011 | 1.60e-02 | 0.341 | 0.359 | -0.018 | 6.55e-02 |
GCSE | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.422 | 0.419 | 0.004 | 8.11e-01 | 0.362 | 0.359 | 0.004 | 3.10e-01 |
GCSE | lassosum.10FCVal | MegaPRS.PseudoVal | 0.407 | 0.419 | -0.011 | 5.57e-03 | 0.348 | 0.359 | -0.011 | 2.01e-01 |
GCSE | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.321 | 0.419 | -0.098 | 4.22e-32 | 0.276 | 0.359 | -0.083 | 2.22e-06 |
GCSE | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.423 | 0.419 | 0.004 | 2.33e-02 | 0.362 | 0.359 | 0.003 | 4.57e-01 |
GCSE | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.419 | 0.419 | 0.000 | 1.00e+00 | 0.359 | 0.359 | 0.000 | 1.00e+00 |
GCSE | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.409 | 0.419 | -0.010 | 5.49e-01 | 0.340 | 0.359 | -0.019 | 4.23e-02 |
GCSE | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.402 | 0.419 | -0.017 | 7.13e-04 | 0.330 | 0.359 | -0.028 | 7.36e-03 |
GCSE | LDpred2.Inf | MegaPRS.10FCVal | 0.405 | 0.423 | -0.018 | 1.25e-05 | 0.331 | 0.362 | -0.031 | 2.31e-04 |
GCSE | LDpred2.10FCVal | MegaPRS.10FCVal | 0.412 | 0.423 | -0.011 | 1.09e-03 | 0.342 | 0.362 | -0.020 | 6.59e-03 |
GCSE | PRScs.PseudoVal | MegaPRS.10FCVal | 0.397 | 0.423 | -0.026 | 8.21e-10 | 0.351 | 0.362 | -0.011 | 2.28e-01 |
GCSE | All.MultiPRS | MegaPRS.10FCVal | 0.421 | 0.423 | -0.002 | 9.14e-01 | 0.357 | 0.362 | -0.004 | 1.34e-01 |
GCSE | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.412 | 0.423 | -0.010 | 5.13e-01 | 0.339 | 0.362 | -0.023 | 2.07e-03 |
GCSE | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.397 | 0.423 | -0.026 | 1.83e-07 | 0.331 | 0.362 | -0.031 | 4.05e-03 |
GCSE | PRScs.10FCVal | MegaPRS.10FCVal | 0.410 | 0.423 | -0.013 | 3.78e-04 | 0.341 | 0.362 | -0.021 | 3.54e-03 |
GCSE | pT+clump.10FCVal | MegaPRS.10FCVal | 0.373 | 0.423 | -0.050 | 9.55e-16 | 0.311 | 0.362 | -0.050 | 7.38e-05 |
GCSE | PRScs.MultiPRS | MegaPRS.10FCVal | 0.413 | 0.423 | -0.010 | 5.35e-01 | 0.346 | 0.362 | -0.016 | 1.48e-02 |
GCSE | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.422 | 0.423 | 0.000 | 9.76e-01 | 0.362 | 0.362 | 0.001 | 5.00e-01 |
GCSE | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.381 | 0.423 | -0.042 | 9.83e-03 | 0.328 | 0.362 | -0.033 | 2.85e-03 |
GCSE | SBLUP.Inf | MegaPRS.10FCVal | 0.400 | 0.423 | -0.023 | 2.91e-07 | 0.335 | 0.362 | -0.027 | 5.00e-03 |
GCSE | lassosum.10FCVal | MegaPRS.10FCVal | 0.407 | 0.423 | -0.016 | 1.40e-05 | 0.348 | 0.362 | -0.014 | 6.13e-02 |
GCSE | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.406 | 0.423 | -0.017 | 1.01e-05 | 0.332 | 0.362 | -0.029 | 3.04e-04 |
GCSE | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.419 | 0.423 | -0.004 | 2.33e-02 | 0.359 | 0.362 | -0.003 | 4.57e-01 |
GCSE | LDpred1.Inf | MegaPRS.10FCVal | 0.408 | 0.423 | -0.015 | 2.56e-05 | 0.341 | 0.362 | -0.021 | 6.25e-03 |
GCSE | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.409 | 0.423 | -0.014 | 3.86e-01 | 0.340 | 0.362 | -0.022 | 2.92e-03 |
GCSE | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.401 | 0.423 | -0.022 | 1.34e-07 | 0.337 | 0.362 | -0.025 | 4.29e-03 |
GCSE | lassosum.MultiPRS | MegaPRS.10FCVal | 0.411 | 0.423 | -0.012 | 4.58e-01 | 0.347 | 0.362 | -0.015 | 3.13e-02 |
GCSE | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.423 | 0.423 | 0.000 | 1.00e+00 | 0.362 | 0.362 | 0.000 | 1.00e+00 |
GCSE | LDpred1.10FCVal | MegaPRS.10FCVal | 0.402 | 0.423 | -0.021 | 8.06e-07 | 0.330 | 0.362 | -0.031 | 5.92e-04 |
GCSE | lassosum.PseudoVal | MegaPRS.10FCVal | 0.321 | 0.423 | -0.102 | 1.67e-32 | 0.276 | 0.362 | -0.086 | 2.34e-06 |
GCSE | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.412 | 0.409 | 0.003 | 8.30e-01 | 0.339 | 0.340 | -0.001 | 9.05e-01 |
GCSE | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.406 | 0.409 | -0.003 | 8.31e-01 | 0.332 | 0.340 | -0.007 | 2.15e-01 |
GCSE | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.397 | 0.409 | -0.013 | 4.34e-01 | 0.331 | 0.340 | -0.009 | 4.97e-01 |
GCSE | LDpred1.Inf | LDpred1.MultiPRS | 0.408 | 0.409 | -0.001 | 9.32e-01 | 0.341 | 0.340 | 0.001 | 6.81e-01 |
GCSE | PRScs.PseudoVal | LDpred1.MultiPRS | 0.397 | 0.409 | -0.012 | 4.63e-01 | 0.351 | 0.340 | 0.011 | 2.69e-01 |
GCSE | PRScs.MultiPRS | LDpred1.MultiPRS | 0.413 | 0.409 | 0.004 | 1.89e-01 | 0.346 | 0.340 | 0.006 | 3.37e-01 |
GCSE | LDpred2.Inf | LDpred1.MultiPRS | 0.405 | 0.409 | -0.004 | 8.13e-01 | 0.331 | 0.340 | -0.009 | 1.47e-01 |
GCSE | LDpred2.10FCVal | LDpred1.MultiPRS | 0.412 | 0.409 | 0.002 | 8.78e-01 | 0.342 | 0.340 | 0.002 | 7.42e-01 |
GCSE | pT+clump.10FCVal | LDpred1.MultiPRS | 0.373 | 0.409 | -0.036 | 2.56e-02 | 0.311 | 0.340 | -0.028 | 3.00e-02 |
GCSE | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.419 | 0.409 | 0.010 | 5.49e-01 | 0.359 | 0.340 | 0.019 | 4.23e-02 |
GCSE | PRScs.10FCVal | LDpred1.MultiPRS | 0.410 | 0.409 | 0.001 | 9.38e-01 | 0.341 | 0.340 | 0.001 | 8.96e-01 |
GCSE | All.MultiPRS | LDpred1.MultiPRS | 0.421 | 0.409 | 0.012 | 4.49e-01 | 0.357 | 0.340 | 0.018 | 6.97e-03 |
GCSE | SBLUP.Inf | LDpred1.MultiPRS | 0.400 | 0.409 | -0.010 | 5.52e-01 | 0.335 | 0.340 | -0.005 | 4.80e-01 |
GCSE | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.409 | 0.409 | 0.000 | 1.00e+00 | 0.340 | 0.340 | 0.000 | 1.00e+00 |
GCSE | lassosum.PseudoVal | LDpred1.MultiPRS | 0.321 | 0.409 | -0.089 | 7.46e-08 | 0.276 | 0.340 | -0.064 | 1.37e-03 |
GCSE | lassosum.MultiPRS | LDpred1.MultiPRS | 0.411 | 0.409 | 0.002 | 6.04e-01 | 0.347 | 0.340 | 0.007 | 3.80e-01 |
GCSE | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.401 | 0.409 | -0.008 | 6.22e-01 | 0.337 | 0.340 | -0.003 | 7.50e-01 |
GCSE | LDpred1.10FCVal | LDpred1.MultiPRS | 0.402 | 0.409 | -0.007 | 6.55e-01 | 0.330 | 0.340 | -0.009 | 7.63e-02 |
GCSE | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.381 | 0.409 | -0.028 | 8.01e-02 | 0.328 | 0.340 | -0.012 | 3.54e-01 |
GCSE | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.423 | 0.409 | 0.014 | 3.86e-01 | 0.362 | 0.340 | 0.022 | 2.92e-03 |
GCSE | lassosum.10FCVal | LDpred1.MultiPRS | 0.407 | 0.409 | -0.002 | 9.10e-01 | 0.348 | 0.340 | 0.008 | 3.29e-01 |
GCSE | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.422 | 0.409 | 0.013 | 4.04e-01 | 0.362 | 0.340 | 0.023 | 1.81e-03 |
GCSE | MegaPRS.MultiPRS | LDpred1.Inf | 0.422 | 0.408 | 0.015 | 3.54e-01 | 0.362 | 0.341 | 0.021 | 4.14e-03 |
GCSE | PRScs.10FCVal | LDpred1.Inf | 0.410 | 0.408 | 0.003 | 3.87e-01 | 0.341 | 0.341 | 0.000 | 9.39e-01 |
GCSE | LDpred2.MultiPRS | LDpred1.Inf | 0.412 | 0.408 | 0.005 | 7.63e-01 | 0.339 | 0.341 | -0.002 | 7.79e-01 |
GCSE | LDpred1.MultiPRS | LDpred1.Inf | 0.409 | 0.408 | 0.001 | 9.32e-01 | 0.340 | 0.341 | -0.001 | 6.81e-01 |
GCSE | pT+clump.10FCVal | LDpred1.Inf | 0.373 | 0.408 | -0.035 | 1.52e-08 | 0.311 | 0.341 | -0.030 | 2.37e-02 |
GCSE | All.MultiPRS | LDpred1.Inf | 0.421 | 0.408 | 0.013 | 3.96e-01 | 0.357 | 0.341 | 0.016 | 1.92e-02 |
GCSE | LDpred2.PseudoVal | LDpred1.Inf | 0.406 | 0.408 | -0.002 | 4.65e-01 | 0.332 | 0.341 | -0.009 | 1.41e-01 |
GCSE | MegaPRS.10FCVal | LDpred1.Inf | 0.423 | 0.408 | 0.015 | 2.56e-05 | 0.362 | 0.341 | 0.021 | 6.25e-03 |
GCSE | pT+clump.MultiPRS | LDpred1.Inf | 0.381 | 0.408 | -0.027 | 9.98e-02 | 0.328 | 0.341 | -0.013 | 3.07e-01 |
GCSE | lassosum.MultiPRS | LDpred1.Inf | 0.411 | 0.408 | 0.003 | 8.32e-01 | 0.347 | 0.341 | 0.006 | 4.86e-01 |
GCSE | DBSLMM.PseudoVal | LDpred1.Inf | 0.401 | 0.408 | -0.006 | 1.45e-01 | 0.337 | 0.341 | -0.004 | 6.60e-01 |
GCSE | LDpred2.10FCVal | LDpred1.Inf | 0.412 | 0.408 | 0.004 | 2.49e-01 | 0.342 | 0.341 | 0.001 | 8.84e-01 |
GCSE | MegaPRS.PseudoVal | LDpred1.Inf | 0.419 | 0.408 | 0.011 | 1.60e-02 | 0.359 | 0.341 | 0.018 | 6.55e-02 |
GCSE | PRScs.PseudoVal | LDpred1.Inf | 0.397 | 0.408 | -0.010 | 3.09e-02 | 0.351 | 0.341 | 0.010 | 3.37e-01 |
GCSE | lassosum.10FCVal | LDpred1.Inf | 0.407 | 0.408 | 0.000 | 9.14e-01 | 0.348 | 0.341 | 0.007 | 4.22e-01 |
GCSE | LDpred2.Inf | LDpred1.Inf | 0.405 | 0.408 | -0.002 | 4.09e-01 | 0.331 | 0.341 | -0.010 | 9.52e-02 |
GCSE | PRScs.MultiPRS | LDpred1.Inf | 0.413 | 0.408 | 0.005 | 7.39e-01 | 0.346 | 0.341 | 0.005 | 4.73e-01 |
GCSE | LDpred1.10FCVal | LDpred1.Inf | 0.402 | 0.408 | -0.006 | 9.78e-02 | 0.330 | 0.341 | -0.011 | 1.54e-01 |
GCSE | SBLUP.Inf | LDpred1.Inf | 0.400 | 0.408 | -0.008 | 2.27e-02 | 0.335 | 0.341 | -0.006 | 4.01e-01 |
GCSE | lassosum.PseudoVal | LDpred1.Inf | 0.321 | 0.408 | -0.087 | 2.61e-20 | 0.276 | 0.341 | -0.065 | 1.22e-03 |
GCSE | LDpred1.Inf | LDpred1.Inf | 0.408 | 0.408 | 0.000 | 1.00e+00 | 0.341 | 0.341 | 0.000 | 1.00e+00 |
GCSE | SBayesR.PseudoVal | LDpred1.Inf | 0.397 | 0.408 | -0.011 | 7.41e-02 | 0.331 | 0.341 | -0.010 | 4.47e-01 |
GCSE | LDpred2.Inf | LDpred1.10FCVal | 0.405 | 0.402 | 0.003 | 4.05e-01 | 0.331 | 0.330 | 0.000 | 9.74e-01 |
GCSE | PRScs.10FCVal | LDpred1.10FCVal | 0.410 | 0.402 | 0.008 | 2.62e-02 | 0.341 | 0.330 | 0.010 | 2.04e-01 |
GCSE | lassosum.MultiPRS | LDpred1.10FCVal | 0.411 | 0.402 | 0.009 | 5.66e-01 | 0.347 | 0.330 | 0.016 | 8.28e-02 |
GCSE | LDpred2.MultiPRS | LDpred1.10FCVal | 0.412 | 0.402 | 0.011 | 5.06e-01 | 0.339 | 0.330 | 0.008 | 3.59e-01 |
GCSE | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.422 | 0.402 | 0.020 | 1.97e-01 | 0.362 | 0.330 | 0.032 | 3.83e-04 |
GCSE | SBayesR.PseudoVal | LDpred1.10FCVal | 0.397 | 0.402 | -0.005 | 4.08e-01 | 0.331 | 0.330 | 0.000 | 9.75e-01 |
GCSE | PRScs.PseudoVal | LDpred1.10FCVal | 0.397 | 0.402 | -0.005 | 3.81e-01 | 0.351 | 0.330 | 0.021 | 6.81e-02 |
GCSE | All.MultiPRS | LDpred1.10FCVal | 0.421 | 0.402 | 0.019 | 2.26e-01 | 0.357 | 0.330 | 0.027 | 1.47e-03 |
GCSE | LDpred2.PseudoVal | LDpred1.10FCVal | 0.406 | 0.402 | 0.004 | 3.47e-01 | 0.332 | 0.330 | 0.002 | 8.25e-01 |
GCSE | LDpred1.MultiPRS | LDpred1.10FCVal | 0.409 | 0.402 | 0.007 | 6.55e-01 | 0.340 | 0.330 | 0.009 | 7.63e-02 |
GCSE | pT+clump.10FCVal | LDpred1.10FCVal | 0.373 | 0.402 | -0.029 | 1.56e-05 | 0.311 | 0.330 | -0.019 | 1.77e-01 |
GCSE | SBLUP.Inf | LDpred1.10FCVal | 0.400 | 0.402 | -0.002 | 5.73e-01 | 0.335 | 0.330 | 0.004 | 6.50e-01 |
GCSE | PRScs.MultiPRS | LDpred1.10FCVal | 0.413 | 0.402 | 0.011 | 4.87e-01 | 0.346 | 0.330 | 0.015 | 5.88e-02 |
GCSE | MegaPRS.10FCVal | LDpred1.10FCVal | 0.423 | 0.402 | 0.021 | 8.06e-07 | 0.362 | 0.330 | 0.031 | 5.92e-04 |
GCSE | pT+clump.MultiPRS | LDpred1.10FCVal | 0.381 | 0.402 | -0.021 | 1.97e-01 | 0.328 | 0.330 | -0.002 | 8.69e-01 |
GCSE | LDpred1.Inf | LDpred1.10FCVal | 0.408 | 0.402 | 0.006 | 9.78e-02 | 0.341 | 0.330 | 0.011 | 1.54e-01 |
GCSE | lassosum.10FCVal | LDpred1.10FCVal | 0.407 | 0.402 | 0.005 | 2.45e-01 | 0.348 | 0.330 | 0.017 | 7.38e-02 |
GCSE | LDpred2.10FCVal | LDpred1.10FCVal | 0.412 | 0.402 | 0.010 | 2.10e-02 | 0.342 | 0.330 | 0.012 | 1.88e-01 |
GCSE | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.419 | 0.402 | 0.017 | 7.13e-04 | 0.359 | 0.330 | 0.028 | 7.36e-03 |
GCSE | LDpred1.10FCVal | LDpred1.10FCVal | 0.402 | 0.402 | 0.000 | 1.00e+00 | 0.330 | 0.330 | 0.000 | 1.00e+00 |
GCSE | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.401 | 0.402 | -0.001 | 8.86e-01 | 0.337 | 0.330 | 0.006 | 5.42e-01 |
GCSE | lassosum.PseudoVal | LDpred1.10FCVal | 0.321 | 0.402 | -0.081 | 1.52e-17 | 0.276 | 0.330 | -0.054 | 6.77e-03 |
GCSE | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.401 | 0.412 | -0.011 | 4.79e-01 | 0.337 | 0.339 | -0.002 | 8.05e-01 |
GCSE | LDpred2.10FCVal | LDpred2.MultiPRS | 0.412 | 0.412 | -0.001 | 9.50e-01 | 0.342 | 0.339 | 0.003 | 2.48e-01 |
GCSE | PRScs.PseudoVal | LDpred2.MultiPRS | 0.397 | 0.412 | -0.015 | 3.42e-01 | 0.351 | 0.339 | 0.012 | 1.31e-01 |
GCSE | All.MultiPRS | LDpred2.MultiPRS | 0.421 | 0.412 | 0.009 | 1.40e-03 | 0.357 | 0.339 | 0.019 | 1.01e-03 |
GCSE | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.412 | 0.412 | 0.000 | 1.00e+00 | 0.339 | 0.339 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.419 | 0.412 | 0.006 | 6.99e-01 | 0.359 | 0.339 | 0.020 | 1.77e-02 |
GCSE | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.423 | 0.412 | 0.010 | 5.13e-01 | 0.362 | 0.339 | 0.023 | 2.07e-03 |
GCSE | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.381 | 0.412 | -0.032 | 4.60e-02 | 0.328 | 0.339 | -0.011 | 3.77e-01 |
GCSE | lassosum.PseudoVal | LDpred2.MultiPRS | 0.321 | 0.412 | -0.092 | 2.37e-08 | 0.276 | 0.339 | -0.063 | 2.25e-04 |
GCSE | PRScs.MultiPRS | LDpred2.MultiPRS | 0.413 | 0.412 | 0.001 | 9.75e-01 | 0.346 | 0.339 | 0.007 | 2.80e-01 |
GCSE | LDpred1.Inf | LDpred2.MultiPRS | 0.408 | 0.412 | -0.005 | 7.63e-01 | 0.341 | 0.339 | 0.002 | 7.79e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.397 | 0.412 | -0.016 | 3.20e-01 | 0.331 | 0.339 | -0.008 | 4.36e-01 |
GCSE | pT+clump.10FCVal | LDpred2.MultiPRS | 0.373 | 0.412 | -0.040 | 1.41e-02 | 0.311 | 0.339 | -0.028 | 4.78e-02 |
GCSE | lassosum.10FCVal | LDpred2.MultiPRS | 0.407 | 0.412 | -0.005 | 7.42e-01 | 0.348 | 0.339 | 0.009 | 2.12e-01 |
GCSE | LDpred2.Inf | LDpred2.MultiPRS | 0.405 | 0.412 | -0.007 | 6.51e-01 | 0.331 | 0.339 | -0.008 | 1.10e-01 |
GCSE | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.409 | 0.412 | -0.003 | 8.30e-01 | 0.340 | 0.339 | 0.001 | 9.05e-01 |
GCSE | SBLUP.Inf | LDpred2.MultiPRS | 0.400 | 0.412 | -0.013 | 4.17e-01 | 0.335 | 0.339 | -0.004 | 6.48e-01 |
GCSE | lassosum.MultiPRS | LDpred2.MultiPRS | 0.411 | 0.412 | -0.001 | 9.29e-01 | 0.347 | 0.339 | 0.008 | 2.75e-01 |
GCSE | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.406 | 0.412 | -0.007 | 6.68e-01 | 0.332 | 0.339 | -0.007 | 1.83e-01 |
GCSE | LDpred1.10FCVal | LDpred2.MultiPRS | 0.402 | 0.412 | -0.011 | 5.06e-01 | 0.330 | 0.339 | -0.008 | 3.59e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.422 | 0.412 | 0.010 | 4.67e-03 | 0.362 | 0.339 | 0.024 | 1.14e-03 |
GCSE | PRScs.10FCVal | LDpred2.MultiPRS | 0.410 | 0.412 | -0.002 | 8.90e-01 | 0.341 | 0.339 | 0.002 | 8.28e-01 |
GCSE | LDpred2.MultiPRS | LDpred2.10FCVal | 0.412 | 0.412 | 0.001 | 9.50e-01 | 0.339 | 0.342 | -0.003 | 2.48e-01 |
GCSE | LDpred2.Inf | LDpred2.10FCVal | 0.405 | 0.412 | -0.006 | 7.61e-03 | 0.331 | 0.342 | -0.011 | 2.17e-02 |
GCSE | PRScs.10FCVal | LDpred2.10FCVal | 0.410 | 0.412 | -0.001 | 7.35e-01 | 0.341 | 0.342 | -0.002 | 8.39e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.10FCVal | 0.397 | 0.412 | -0.015 | 2.80e-03 | 0.331 | 0.342 | -0.011 | 2.89e-01 |
GCSE | lassosum.10FCVal | LDpred2.10FCVal | 0.407 | 0.412 | -0.004 | 1.62e-01 | 0.348 | 0.342 | 0.006 | 3.59e-01 |
GCSE | LDpred2.10FCVal | LDpred2.10FCVal | 0.412 | 0.412 | 0.000 | 1.00e+00 | 0.342 | 0.342 | 0.000 | 1.00e+00 |
GCSE | PRScs.PseudoVal | LDpred2.10FCVal | 0.397 | 0.412 | -0.014 | 2.22e-04 | 0.351 | 0.342 | 0.009 | 2.62e-01 |
GCSE | LDpred1.MultiPRS | LDpred2.10FCVal | 0.409 | 0.412 | -0.002 | 8.78e-01 | 0.340 | 0.342 | -0.002 | 7.42e-01 |
GCSE | pT+clump.10FCVal | LDpred2.10FCVal | 0.373 | 0.412 | -0.039 | 3.35e-09 | 0.311 | 0.342 | -0.031 | 2.38e-02 |
GCSE | All.MultiPRS | LDpred2.10FCVal | 0.421 | 0.412 | 0.010 | 5.44e-01 | 0.357 | 0.342 | 0.015 | 1.01e-02 |
GCSE | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.422 | 0.412 | 0.011 | 4.94e-01 | 0.362 | 0.342 | 0.020 | 4.09e-03 |
GCSE | MegaPRS.10FCVal | LDpred2.10FCVal | 0.423 | 0.412 | 0.011 | 1.09e-03 | 0.362 | 0.342 | 0.020 | 6.59e-03 |
GCSE | pT+clump.MultiPRS | LDpred2.10FCVal | 0.381 | 0.412 | -0.031 | 6.06e-02 | 0.328 | 0.342 | -0.014 | 2.48e-01 |
GCSE | lassosum.MultiPRS | LDpred2.10FCVal | 0.411 | 0.412 | 0.000 | 9.78e-01 | 0.347 | 0.342 | 0.005 | 4.81e-01 |
GCSE | PRScs.MultiPRS | LDpred2.10FCVal | 0.413 | 0.412 | 0.001 | 9.25e-01 | 0.346 | 0.342 | 0.004 | 5.55e-01 |
GCSE | LDpred1.Inf | LDpred2.10FCVal | 0.408 | 0.412 | -0.004 | 2.49e-01 | 0.341 | 0.342 | -0.001 | 8.84e-01 |
GCSE | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.419 | 0.412 | 0.007 | 7.81e-02 | 0.359 | 0.342 | 0.017 | 4.78e-02 |
GCSE | SBLUP.Inf | LDpred2.10FCVal | 0.400 | 0.412 | -0.012 | 4.75e-03 | 0.335 | 0.342 | -0.007 | 4.10e-01 |
GCSE | lassosum.PseudoVal | LDpred2.10FCVal | 0.321 | 0.412 | -0.091 | 5.61e-28 | 0.276 | 0.342 | -0.066 | 1.45e-04 |
GCSE | LDpred2.PseudoVal | LDpred2.10FCVal | 0.406 | 0.412 | -0.006 | 7.62e-03 | 0.332 | 0.342 | -0.010 | 3.31e-02 |
GCSE | LDpred1.10FCVal | LDpred2.10FCVal | 0.402 | 0.412 | -0.010 | 2.10e-02 | 0.330 | 0.342 | -0.012 | 1.88e-01 |
GCSE | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.401 | 0.412 | -0.010 | 1.61e-02 | 0.337 | 0.342 | -0.005 | 5.58e-01 |
GCSE | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.419 | 0.406 | 0.013 | 6.95e-03 | 0.359 | 0.332 | 0.026 | 8.74e-03 |
GCSE | PRScs.PseudoVal | LDpred2.PseudoVal | 0.397 | 0.406 | -0.008 | 9.07e-02 | 0.351 | 0.332 | 0.019 | 7.27e-02 |
GCSE | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.412 | 0.406 | 0.007 | 6.68e-01 | 0.339 | 0.332 | 0.007 | 1.83e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.422 | 0.406 | 0.017 | 2.93e-01 | 0.362 | 0.332 | 0.030 | 1.86e-04 |
GCSE | PRScs.10FCVal | LDpred2.PseudoVal | 0.410 | 0.406 | 0.005 | 1.77e-01 | 0.341 | 0.332 | 0.008 | 2.59e-01 |
GCSE | All.MultiPRS | LDpred2.PseudoVal | 0.421 | 0.406 | 0.015 | 3.30e-01 | 0.357 | 0.332 | 0.025 | 5.53e-04 |
GCSE | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.401 | 0.406 | -0.004 | 3.40e-01 | 0.337 | 0.332 | 0.004 | 6.50e-01 |
GCSE | LDpred2.10FCVal | LDpred2.PseudoVal | 0.412 | 0.406 | 0.006 | 7.62e-03 | 0.342 | 0.332 | 0.010 | 3.31e-02 |
GCSE | LDpred1.Inf | LDpred2.PseudoVal | 0.408 | 0.406 | 0.002 | 4.65e-01 | 0.341 | 0.332 | 0.009 | 1.41e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.397 | 0.406 | -0.009 | 1.48e-01 | 0.331 | 0.332 | -0.001 | 9.13e-01 |
GCSE | lassosum.10FCVal | LDpred2.PseudoVal | 0.407 | 0.406 | 0.002 | 6.94e-01 | 0.348 | 0.332 | 0.015 | 6.39e-02 |
GCSE | LDpred2.Inf | LDpred2.PseudoVal | 0.405 | 0.406 | 0.000 | 4.25e-01 | 0.331 | 0.332 | -0.002 | 1.18e-01 |
GCSE | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.406 | 0.406 | 0.000 | 1.00e+00 | 0.332 | 0.332 | 0.000 | 1.00e+00 |
GCSE | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.409 | 0.406 | 0.003 | 8.31e-01 | 0.340 | 0.332 | 0.007 | 2.15e-01 |
GCSE | pT+clump.10FCVal | LDpred2.PseudoVal | 0.373 | 0.406 | -0.033 | 5.80e-07 | 0.311 | 0.332 | -0.021 | 1.27e-01 |
GCSE | lassosum.MultiPRS | LDpred2.PseudoVal | 0.411 | 0.406 | 0.005 | 7.34e-01 | 0.347 | 0.332 | 0.014 | 9.52e-02 |
GCSE | PRScs.MultiPRS | LDpred2.PseudoVal | 0.413 | 0.406 | 0.007 | 6.45e-01 | 0.346 | 0.332 | 0.013 | 6.28e-02 |
GCSE | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.423 | 0.406 | 0.017 | 1.01e-05 | 0.362 | 0.332 | 0.029 | 3.04e-04 |
GCSE | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.381 | 0.406 | -0.025 | 1.29e-01 | 0.328 | 0.332 | -0.004 | 7.53e-01 |
GCSE | lassosum.PseudoVal | LDpred2.PseudoVal | 0.321 | 0.406 | -0.085 | 2.71e-19 | 0.276 | 0.332 | -0.056 | 4.53e-03 |
GCSE | LDpred1.10FCVal | LDpred2.PseudoVal | 0.402 | 0.406 | -0.004 | 3.47e-01 | 0.330 | 0.332 | -0.002 | 8.25e-01 |
GCSE | SBLUP.Inf | LDpred2.PseudoVal | 0.400 | 0.406 | -0.006 | 1.01e-01 | 0.335 | 0.332 | 0.002 | 7.78e-01 |
GCSE | PRScs.10FCVal | LDpred2.Inf | 0.410 | 0.405 | 0.005 | 1.46e-01 | 0.341 | 0.331 | 0.010 | 1.78e-01 |
GCSE | pT+clump.MultiPRS | LDpred2.Inf | 0.381 | 0.405 | -0.025 | 1.34e-01 | 0.328 | 0.331 | -0.002 | 8.51e-01 |
GCSE | LDpred2.Inf | LDpred2.Inf | 0.405 | 0.405 | 0.000 | 1.00e+00 | 0.331 | 0.331 | 0.000 | 1.00e+00 |
GCSE | lassosum.10FCVal | LDpred2.Inf | 0.407 | 0.405 | 0.002 | 6.46e-01 | 0.348 | 0.331 | 0.017 | 5.47e-02 |
GCSE | LDpred2.MultiPRS | LDpred2.Inf | 0.412 | 0.405 | 0.007 | 6.51e-01 | 0.339 | 0.331 | 0.008 | 1.10e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.Inf | 0.397 | 0.405 | -0.009 | 1.78e-01 | 0.331 | 0.331 | 0.000 | 9.91e-01 |
GCSE | pT+clump.10FCVal | LDpred2.Inf | 0.373 | 0.405 | -0.032 | 9.19e-07 | 0.311 | 0.331 | -0.019 | 1.62e-01 |
GCSE | PRScs.PseudoVal | LDpred2.Inf | 0.397 | 0.405 | -0.008 | 1.21e-01 | 0.351 | 0.331 | 0.020 | 6.27e-02 |
GCSE | LDpred2.PseudoVal | LDpred2.Inf | 0.406 | 0.405 | 0.000 | 4.25e-01 | 0.332 | 0.331 | 0.002 | 1.18e-01 |
GCSE | All.MultiPRS | LDpred2.Inf | 0.421 | 0.405 | 0.016 | 3.19e-01 | 0.357 | 0.331 | 0.027 | 3.79e-04 |
GCSE | SBLUP.Inf | LDpred2.Inf | 0.400 | 0.405 | -0.006 | 1.30e-01 | 0.335 | 0.331 | 0.004 | 6.36e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.Inf | 0.422 | 0.405 | 0.017 | 2.82e-01 | 0.362 | 0.331 | 0.032 | 1.39e-04 |
GCSE | PRScs.MultiPRS | LDpred2.Inf | 0.413 | 0.405 | 0.008 | 6.28e-01 | 0.346 | 0.331 | 0.015 | 4.37e-02 |
GCSE | lassosum.MultiPRS | LDpred2.Inf | 0.411 | 0.405 | 0.006 | 7.16e-01 | 0.347 | 0.331 | 0.016 | 7.29e-02 |
GCSE | LDpred1.Inf | LDpred2.Inf | 0.408 | 0.405 | 0.002 | 4.09e-01 | 0.341 | 0.331 | 0.010 | 9.52e-02 |
GCSE | MegaPRS.10FCVal | LDpred2.Inf | 0.423 | 0.405 | 0.018 | 1.25e-05 | 0.362 | 0.331 | 0.031 | 2.31e-04 |
GCSE | MegaPRS.PseudoVal | LDpred2.Inf | 0.419 | 0.405 | 0.013 | 6.58e-03 | 0.359 | 0.331 | 0.028 | 6.64e-03 |
GCSE | lassosum.PseudoVal | LDpred2.Inf | 0.321 | 0.405 | -0.085 | 1.54e-18 | 0.276 | 0.331 | -0.055 | 6.84e-03 |
GCSE | LDpred2.10FCVal | LDpred2.Inf | 0.412 | 0.405 | 0.006 | 7.61e-03 | 0.342 | 0.331 | 0.011 | 2.17e-02 |
GCSE | DBSLMM.PseudoVal | LDpred2.Inf | 0.401 | 0.405 | -0.004 | 3.90e-01 | 0.337 | 0.331 | 0.006 | 5.44e-01 |
GCSE | LDpred1.MultiPRS | LDpred2.Inf | 0.409 | 0.405 | 0.004 | 8.13e-01 | 0.340 | 0.331 | 0.009 | 1.47e-01 |
GCSE | LDpred1.10FCVal | LDpred2.Inf | 0.402 | 0.405 | -0.003 | 4.05e-01 | 0.330 | 0.331 | 0.000 | 9.74e-01 |
GCSE | PRScs.PseudoVal | PRScs.MultiPRS | 0.397 | 0.413 | -0.016 | 3.26e-01 | 0.351 | 0.346 | 0.005 | 4.54e-01 |
GCSE | LDpred2.MultiPRS | PRScs.MultiPRS | 0.412 | 0.413 | -0.001 | 9.75e-01 | 0.339 | 0.346 | -0.007 | 2.80e-01 |
GCSE | LDpred2.Inf | PRScs.MultiPRS | 0.405 | 0.413 | -0.008 | 6.28e-01 | 0.331 | 0.346 | -0.015 | 4.37e-02 |
GCSE | pT+clump.10FCVal | PRScs.MultiPRS | 0.373 | 0.413 | -0.040 | 1.30e-02 | 0.311 | 0.346 | -0.035 | 8.04e-03 |
GCSE | SBayesR.PseudoVal | PRScs.MultiPRS | 0.397 | 0.413 | -0.016 | 3.02e-01 | 0.331 | 0.346 | -0.015 | 1.59e-01 |
GCSE | LDpred2.PseudoVal | PRScs.MultiPRS | 0.406 | 0.413 | -0.007 | 6.45e-01 | 0.332 | 0.346 | -0.013 | 6.28e-02 |
GCSE | LDpred2.10FCVal | PRScs.MultiPRS | 0.412 | 0.413 | -0.001 | 9.25e-01 | 0.342 | 0.346 | -0.004 | 5.55e-01 |
GCSE | PRScs.MultiPRS | PRScs.MultiPRS | 0.413 | 0.413 | 0.000 | 1.00e+00 | 0.346 | 0.346 | 0.000 | 1.00e+00 |
GCSE | LDpred1.MultiPRS | PRScs.MultiPRS | 0.409 | 0.413 | -0.004 | 1.89e-01 | 0.340 | 0.346 | -0.006 | 3.37e-01 |
GCSE | pT+clump.MultiPRS | PRScs.MultiPRS | 0.381 | 0.413 | -0.032 | 4.58e-02 | 0.328 | 0.346 | -0.018 | 1.21e-01 |
GCSE | All.MultiPRS | PRScs.MultiPRS | 0.421 | 0.413 | 0.008 | 6.10e-01 | 0.357 | 0.346 | 0.012 | 3.04e-02 |
GCSE | lassosum.10FCVal | PRScs.MultiPRS | 0.407 | 0.413 | -0.006 | 7.18e-01 | 0.348 | 0.346 | 0.002 | 7.59e-01 |
GCSE | PRScs.10FCVal | PRScs.MultiPRS | 0.410 | 0.413 | -0.003 | 8.65e-01 | 0.341 | 0.346 | -0.005 | 9.20e-02 |
GCSE | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.419 | 0.413 | 0.006 | 7.24e-01 | 0.359 | 0.346 | 0.013 | 9.64e-02 |
GCSE | lassosum.MultiPRS | PRScs.MultiPRS | 0.411 | 0.413 | -0.002 | 4.70e-01 | 0.347 | 0.346 | 0.001 | 8.58e-01 |
GCSE | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.422 | 0.413 | 0.009 | 5.57e-01 | 0.362 | 0.346 | 0.017 | 8.93e-03 |
GCSE | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.401 | 0.413 | -0.012 | 4.59e-01 | 0.337 | 0.346 | -0.009 | 1.97e-01 |
GCSE | LDpred1.10FCVal | PRScs.MultiPRS | 0.402 | 0.413 | -0.011 | 4.87e-01 | 0.330 | 0.346 | -0.015 | 5.88e-02 |
GCSE | SBLUP.Inf | PRScs.MultiPRS | 0.400 | 0.413 | -0.013 | 3.99e-01 | 0.335 | 0.346 | -0.011 | 1.98e-01 |
GCSE | lassosum.PseudoVal | PRScs.MultiPRS | 0.321 | 0.413 | -0.092 | 1.67e-08 | 0.276 | 0.346 | -0.070 | 6.81e-05 |
GCSE | LDpred1.Inf | PRScs.MultiPRS | 0.408 | 0.413 | -0.005 | 7.39e-01 | 0.341 | 0.346 | -0.005 | 4.73e-01 |
GCSE | MegaPRS.10FCVal | PRScs.MultiPRS | 0.423 | 0.413 | 0.010 | 5.35e-01 | 0.362 | 0.346 | 0.016 | 1.48e-02 |
GCSE | PRScs.10FCVal | PRScs.10FCVal | 0.410 | 0.410 | 0.000 | 1.00e+00 | 0.341 | 0.341 | 0.000 | 1.00e+00 |
GCSE | pT+clump.MultiPRS | PRScs.10FCVal | 0.381 | 0.410 | -0.030 | 7.06e-02 | 0.328 | 0.341 | -0.012 | 3.08e-01 |
GCSE | SBayesR.PseudoVal | PRScs.10FCVal | 0.397 | 0.410 | -0.014 | 2.46e-02 | 0.331 | 0.341 | -0.010 | 4.56e-01 |
GCSE | pT+clump.10FCVal | PRScs.10FCVal | 0.373 | 0.410 | -0.037 | 7.12e-10 | 0.311 | 0.341 | -0.029 | 2.29e-02 |
GCSE | LDpred2.MultiPRS | PRScs.10FCVal | 0.412 | 0.410 | 0.002 | 8.90e-01 | 0.339 | 0.341 | -0.002 | 8.28e-01 |
GCSE | LDpred2.10FCVal | PRScs.10FCVal | 0.412 | 0.410 | 0.001 | 7.35e-01 | 0.342 | 0.341 | 0.002 | 8.39e-01 |
GCSE | SBLUP.Inf | PRScs.10FCVal | 0.400 | 0.410 | -0.011 | 5.14e-03 | 0.335 | 0.341 | -0.006 | 4.76e-01 |
GCSE | PRScs.PseudoVal | PRScs.10FCVal | 0.397 | 0.410 | -0.013 | 3.15e-03 | 0.351 | 0.341 | 0.011 | 2.69e-01 |
GCSE | LDpred2.PseudoVal | PRScs.10FCVal | 0.406 | 0.410 | -0.005 | 1.77e-01 | 0.332 | 0.341 | -0.008 | 2.59e-01 |
GCSE | LDpred2.Inf | PRScs.10FCVal | 0.405 | 0.410 | -0.005 | 1.46e-01 | 0.331 | 0.341 | -0.010 | 1.78e-01 |
GCSE | LDpred1.Inf | PRScs.10FCVal | 0.408 | 0.410 | -0.003 | 3.87e-01 | 0.341 | 0.341 | 0.000 | 9.39e-01 |
GCSE | MegaPRS.MultiPRS | PRScs.10FCVal | 0.422 | 0.410 | 0.012 | 4.47e-01 | 0.362 | 0.341 | 0.022 | 2.15e-03 |
GCSE | PRScs.MultiPRS | PRScs.10FCVal | 0.413 | 0.410 | 0.003 | 8.65e-01 | 0.346 | 0.341 | 0.005 | 9.20e-02 |
GCSE | lassosum.MultiPRS | PRScs.10FCVal | 0.411 | 0.410 | 0.001 | 9.61e-01 | 0.347 | 0.341 | 0.006 | 3.58e-01 |
GCSE | DBSLMM.PseudoVal | PRScs.10FCVal | 0.401 | 0.410 | -0.009 | 1.71e-02 | 0.337 | 0.341 | -0.004 | 6.46e-01 |
GCSE | MegaPRS.10FCVal | PRScs.10FCVal | 0.423 | 0.410 | 0.013 | 3.78e-04 | 0.362 | 0.341 | 0.021 | 3.54e-03 |
GCSE | MegaPRS.PseudoVal | PRScs.10FCVal | 0.419 | 0.410 | 0.008 | 5.11e-02 | 0.359 | 0.341 | 0.018 | 4.10e-02 |
GCSE | lassosum.PseudoVal | PRScs.10FCVal | 0.321 | 0.410 | -0.090 | 9.90e-22 | 0.276 | 0.341 | -0.064 | 1.14e-03 |
GCSE | All.MultiPRS | PRScs.10FCVal | 0.421 | 0.410 | 0.011 | 4.95e-01 | 0.357 | 0.341 | 0.017 | 8.37e-03 |
GCSE | lassosum.10FCVal | PRScs.10FCVal | 0.407 | 0.410 | -0.003 | 4.22e-01 | 0.348 | 0.341 | 0.007 | 3.70e-01 |
GCSE | LDpred1.MultiPRS | PRScs.10FCVal | 0.409 | 0.410 | -0.001 | 9.38e-01 | 0.340 | 0.341 | -0.001 | 8.96e-01 |
GCSE | LDpred1.10FCVal | PRScs.10FCVal | 0.402 | 0.410 | -0.008 | 2.62e-02 | 0.330 | 0.341 | -0.010 | 2.04e-01 |
GCSE | LDpred2.MultiPRS | PRScs.PseudoVal | 0.412 | 0.397 | 0.015 | 3.42e-01 | 0.339 | 0.351 | -0.012 | 1.31e-01 |
GCSE | PRScs.10FCVal | PRScs.PseudoVal | 0.410 | 0.397 | 0.013 | 3.15e-03 | 0.341 | 0.351 | -0.011 | 2.69e-01 |
GCSE | pT+clump.10FCVal | PRScs.PseudoVal | 0.373 | 0.397 | -0.024 | 6.09e-04 | 0.311 | 0.351 | -0.040 | 8.58e-03 |
GCSE | LDpred2.PseudoVal | PRScs.PseudoVal | 0.406 | 0.397 | 0.008 | 9.07e-02 | 0.332 | 0.351 | -0.019 | 7.27e-02 |
GCSE | LDpred2.Inf | PRScs.PseudoVal | 0.405 | 0.397 | 0.008 | 1.21e-01 | 0.331 | 0.351 | -0.020 | 6.27e-02 |
GCSE | pT+clump.MultiPRS | PRScs.PseudoVal | 0.381 | 0.397 | -0.017 | 3.12e-01 | 0.328 | 0.351 | -0.023 | 6.07e-02 |
GCSE | PRScs.PseudoVal | PRScs.PseudoVal | 0.397 | 0.397 | 0.000 | 1.00e+00 | 0.351 | 0.351 | 0.000 | 1.00e+00 |
GCSE | SBayesR.PseudoVal | PRScs.PseudoVal | 0.397 | 0.397 | -0.001 | 8.33e-01 | 0.331 | 0.351 | -0.020 | 8.45e-03 |
GCSE | lassosum.MultiPRS | PRScs.PseudoVal | 0.411 | 0.397 | 0.014 | 3.89e-01 | 0.347 | 0.351 | -0.004 | 5.77e-01 |
GCSE | LDpred2.10FCVal | PRScs.PseudoVal | 0.412 | 0.397 | 0.014 | 2.22e-04 | 0.342 | 0.351 | -0.009 | 2.62e-01 |
GCSE | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.422 | 0.397 | 0.025 | 1.15e-01 | 0.362 | 0.351 | 0.011 | 1.87e-01 |
GCSE | LDpred1.MultiPRS | PRScs.PseudoVal | 0.409 | 0.397 | 0.012 | 4.63e-01 | 0.340 | 0.351 | -0.011 | 2.69e-01 |
GCSE | SBLUP.Inf | PRScs.PseudoVal | 0.400 | 0.397 | 0.002 | 6.98e-01 | 0.335 | 0.351 | -0.017 | 1.73e-01 |
GCSE | All.MultiPRS | PRScs.PseudoVal | 0.421 | 0.397 | 0.024 | 1.35e-01 | 0.357 | 0.351 | 0.006 | 4.17e-01 |
GCSE | MegaPRS.10FCVal | PRScs.PseudoVal | 0.423 | 0.397 | 0.026 | 8.21e-10 | 0.362 | 0.351 | 0.011 | 2.28e-01 |
GCSE | LDpred1.10FCVal | PRScs.PseudoVal | 0.402 | 0.397 | 0.005 | 3.81e-01 | 0.330 | 0.351 | -0.021 | 6.81e-02 |
GCSE | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.419 | 0.397 | 0.021 | 2.99e-07 | 0.359 | 0.351 | 0.008 | 3.82e-01 |
GCSE | lassosum.PseudoVal | PRScs.PseudoVal | 0.321 | 0.397 | -0.077 | 7.69e-31 | 0.276 | 0.351 | -0.075 | 4.42e-08 |
GCSE | PRScs.MultiPRS | PRScs.PseudoVal | 0.413 | 0.397 | 0.016 | 3.26e-01 | 0.346 | 0.351 | -0.005 | 4.54e-01 |
GCSE | LDpred1.Inf | PRScs.PseudoVal | 0.408 | 0.397 | 0.010 | 3.09e-02 | 0.341 | 0.351 | -0.010 | 3.37e-01 |
GCSE | lassosum.10FCVal | PRScs.PseudoVal | 0.407 | 0.397 | 0.010 | 2.12e-03 | 0.348 | 0.351 | -0.003 | 6.16e-01 |
GCSE | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.401 | 0.397 | 0.004 | 3.38e-01 | 0.337 | 0.351 | -0.014 | 9.88e-02 |
GCSE | All.MultiPRS | pT+clump.MultiPRS | 0.421 | 0.381 | 0.040 | 1.09e-02 | 0.357 | 0.328 | 0.029 | 6.24e-03 |
GCSE | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.412 | 0.381 | 0.032 | 4.60e-02 | 0.339 | 0.328 | 0.011 | 3.77e-01 |
GCSE | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.409 | 0.381 | 0.028 | 8.01e-02 | 0.340 | 0.328 | 0.012 | 3.54e-01 |
GCSE | pT+clump.10FCVal | pT+clump.MultiPRS | 0.373 | 0.381 | -0.008 | 6.40e-01 | 0.311 | 0.328 | -0.017 | 4.87e-03 |
GCSE | lassosum.MultiPRS | pT+clump.MultiPRS | 0.411 | 0.381 | 0.030 | 6.07e-02 | 0.347 | 0.328 | 0.019 | 1.13e-01 |
GCSE | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.406 | 0.381 | 0.025 | 1.29e-01 | 0.332 | 0.328 | 0.004 | 7.53e-01 |
GCSE | LDpred1.10FCVal | pT+clump.MultiPRS | 0.402 | 0.381 | 0.021 | 1.97e-01 | 0.330 | 0.328 | 0.002 | 8.69e-01 |
GCSE | SBLUP.Inf | pT+clump.MultiPRS | 0.400 | 0.381 | 0.019 | 2.51e-01 | 0.335 | 0.328 | 0.006 | 6.38e-01 |
GCSE | lassosum.PseudoVal | pT+clump.MultiPRS | 0.321 | 0.381 | -0.060 | 3.70e-04 | 0.276 | 0.328 | -0.052 | 5.51e-03 |
GCSE | PRScs.MultiPRS | pT+clump.MultiPRS | 0.413 | 0.381 | 0.032 | 4.58e-02 | 0.346 | 0.328 | 0.018 | 1.21e-01 |
GCSE | LDpred2.10FCVal | pT+clump.MultiPRS | 0.412 | 0.381 | 0.031 | 6.06e-02 | 0.342 | 0.328 | 0.014 | 2.48e-01 |
GCSE | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.419 | 0.381 | 0.038 | 2.05e-02 | 0.359 | 0.328 | 0.030 | 6.52e-03 |
GCSE | PRScs.PseudoVal | pT+clump.MultiPRS | 0.397 | 0.381 | 0.017 | 3.12e-01 | 0.351 | 0.328 | 0.023 | 6.07e-02 |
GCSE | lassosum.10FCVal | pT+clump.MultiPRS | 0.407 | 0.381 | 0.027 | 1.06e-01 | 0.348 | 0.328 | 0.019 | 1.07e-01 |
GCSE | LDpred2.Inf | pT+clump.MultiPRS | 0.405 | 0.381 | 0.025 | 1.34e-01 | 0.331 | 0.328 | 0.002 | 8.51e-01 |
GCSE | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.423 | 0.381 | 0.042 | 9.83e-03 | 0.362 | 0.328 | 0.033 | 2.85e-03 |
GCSE | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.422 | 0.381 | 0.042 | 8.69e-03 | 0.362 | 0.328 | 0.034 | 1.97e-03 |
GCSE | PRScs.10FCVal | pT+clump.MultiPRS | 0.410 | 0.381 | 0.030 | 7.06e-02 | 0.341 | 0.328 | 0.012 | 3.08e-01 |
GCSE | LDpred1.Inf | pT+clump.MultiPRS | 0.408 | 0.381 | 0.027 | 9.98e-02 | 0.341 | 0.328 | 0.013 | 3.07e-01 |
GCSE | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.381 | 0.381 | 0.000 | 1.00e+00 | 0.328 | 0.328 | 0.000 | 1.00e+00 |
GCSE | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.401 | 0.381 | 0.021 | 2.13e-01 | 0.337 | 0.328 | 0.009 | 4.68e-01 |
GCSE | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.397 | 0.381 | 0.016 | 3.35e-01 | 0.331 | 0.328 | 0.003 | 8.47e-01 |
GCSE | LDpred2.MultiPRS | pT+clump.10FCVal | 0.412 | 0.373 | 0.040 | 1.41e-02 | 0.339 | 0.311 | 0.028 | 4.78e-02 |
GCSE | LDpred2.PseudoVal | pT+clump.10FCVal | 0.406 | 0.373 | 0.033 | 5.80e-07 | 0.332 | 0.311 | 0.021 | 1.27e-01 |
GCSE | pT+clump.MultiPRS | pT+clump.10FCVal | 0.381 | 0.373 | 0.008 | 6.40e-01 | 0.328 | 0.311 | 0.017 | 4.87e-03 |
GCSE | SBLUP.Inf | pT+clump.10FCVal | 0.400 | 0.373 | 0.027 | 6.62e-05 | 0.335 | 0.311 | 0.023 | 9.47e-02 |
GCSE | PRScs.PseudoVal | pT+clump.10FCVal | 0.397 | 0.373 | 0.024 | 6.09e-04 | 0.351 | 0.311 | 0.040 | 8.58e-03 |
GCSE | PRScs.MultiPRS | pT+clump.10FCVal | 0.413 | 0.373 | 0.040 | 1.30e-02 | 0.346 | 0.311 | 0.035 | 8.04e-03 |
GCSE | LDpred2.Inf | pT+clump.10FCVal | 0.405 | 0.373 | 0.032 | 9.19e-07 | 0.331 | 0.311 | 0.019 | 1.62e-01 |
GCSE | SBayesR.PseudoVal | pT+clump.10FCVal | 0.397 | 0.373 | 0.024 | 3.62e-03 | 0.331 | 0.311 | 0.020 | 2.50e-01 |
GCSE | pT+clump.10FCVal | pT+clump.10FCVal | 0.373 | 0.373 | 0.000 | 1.00e+00 | 0.311 | 0.311 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.419 | 0.373 | 0.046 | 2.58e-12 | 0.359 | 0.311 | 0.047 | 3.41e-04 |
GCSE | PRScs.10FCVal | pT+clump.10FCVal | 0.410 | 0.373 | 0.037 | 7.12e-10 | 0.341 | 0.311 | 0.029 | 2.29e-02 |
GCSE | LDpred2.10FCVal | pT+clump.10FCVal | 0.412 | 0.373 | 0.039 | 3.35e-09 | 0.342 | 0.311 | 0.031 | 2.38e-02 |
GCSE | MegaPRS.10FCVal | pT+clump.10FCVal | 0.423 | 0.373 | 0.050 | 9.55e-16 | 0.362 | 0.311 | 0.050 | 7.38e-05 |
GCSE | LDpred1.MultiPRS | pT+clump.10FCVal | 0.409 | 0.373 | 0.036 | 2.56e-02 | 0.340 | 0.311 | 0.028 | 3.00e-02 |
GCSE | lassosum.PseudoVal | pT+clump.10FCVal | 0.321 | 0.373 | -0.052 | 1.02e-06 | 0.276 | 0.311 | -0.035 | 1.22e-01 |
GCSE | All.MultiPRS | pT+clump.10FCVal | 0.421 | 0.373 | 0.048 | 2.70e-03 | 0.357 | 0.311 | 0.046 | 2.15e-04 |
GCSE | LDpred1.Inf | pT+clump.10FCVal | 0.408 | 0.373 | 0.035 | 1.52e-08 | 0.341 | 0.311 | 0.030 | 2.37e-02 |
GCSE | LDpred1.10FCVal | pT+clump.10FCVal | 0.402 | 0.373 | 0.029 | 1.56e-05 | 0.330 | 0.311 | 0.019 | 1.77e-01 |
GCSE | lassosum.MultiPRS | pT+clump.10FCVal | 0.411 | 0.373 | 0.038 | 1.81e-02 | 0.347 | 0.311 | 0.036 | 7.92e-03 |
GCSE | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.401 | 0.373 | 0.028 | 2.61e-05 | 0.337 | 0.311 | 0.026 | 7.14e-02 |
GCSE | lassosum.10FCVal | pT+clump.10FCVal | 0.407 | 0.373 | 0.034 | 3.87e-07 | 0.348 | 0.311 | 0.036 | 9.69e-03 |
GCSE | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.422 | 0.373 | 0.049 | 2.08e-03 | 0.362 | 0.311 | 0.051 | 5.30e-05 |
GCSE | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.397 | 0.397 | 0.000 | 1.00e+00 | 0.331 | 0.331 | 0.000 | 1.00e+00 |
GCSE | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.412 | 0.397 | 0.016 | 3.20e-01 | 0.339 | 0.331 | 0.008 | 4.36e-01 |
GCSE | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.409 | 0.397 | 0.013 | 4.34e-01 | 0.340 | 0.331 | 0.009 | 4.97e-01 |
GCSE | PRScs.PseudoVal | SBayesR.PseudoVal | 0.397 | 0.397 | 0.001 | 8.33e-01 | 0.351 | 0.331 | 0.020 | 8.45e-03 |
GCSE | All.MultiPRS | SBayesR.PseudoVal | 0.421 | 0.397 | 0.025 | 1.24e-01 | 0.357 | 0.331 | 0.027 | 6.34e-03 |
GCSE | PRScs.MultiPRS | SBayesR.PseudoVal | 0.413 | 0.397 | 0.016 | 3.02e-01 | 0.346 | 0.331 | 0.015 | 1.59e-01 |
GCSE | LDpred2.10FCVal | SBayesR.PseudoVal | 0.412 | 0.397 | 0.015 | 2.80e-03 | 0.342 | 0.331 | 0.011 | 2.89e-01 |
GCSE | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.419 | 0.397 | 0.022 | 2.03e-06 | 0.359 | 0.331 | 0.028 | 4.90e-03 |
GCSE | pT+clump.10FCVal | SBayesR.PseudoVal | 0.373 | 0.397 | -0.024 | 3.62e-03 | 0.311 | 0.331 | -0.020 | 2.50e-01 |
GCSE | lassosum.10FCVal | SBayesR.PseudoVal | 0.407 | 0.397 | 0.011 | 1.91e-02 | 0.348 | 0.331 | 0.017 | 8.58e-02 |
GCSE | LDpred2.Inf | SBayesR.PseudoVal | 0.405 | 0.397 | 0.009 | 1.78e-01 | 0.331 | 0.331 | 0.000 | 9.91e-01 |
GCSE | PRScs.10FCVal | SBayesR.PseudoVal | 0.410 | 0.397 | 0.014 | 2.46e-02 | 0.341 | 0.331 | 0.010 | 4.56e-01 |
GCSE | SBLUP.Inf | SBayesR.PseudoVal | 0.400 | 0.397 | 0.003 | 6.68e-01 | 0.335 | 0.331 | 0.004 | 7.99e-01 |
GCSE | lassosum.MultiPRS | SBayesR.PseudoVal | 0.411 | 0.397 | 0.015 | 3.63e-01 | 0.347 | 0.331 | 0.016 | 1.26e-01 |
GCSE | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.406 | 0.397 | 0.009 | 1.48e-01 | 0.332 | 0.331 | 0.001 | 9.13e-01 |
GCSE | lassosum.PseudoVal | SBayesR.PseudoVal | 0.321 | 0.397 | -0.076 | 2.14e-37 | 0.276 | 0.331 | -0.055 | 1.49e-05 |
GCSE | LDpred1.Inf | SBayesR.PseudoVal | 0.408 | 0.397 | 0.011 | 7.41e-02 | 0.341 | 0.331 | 0.010 | 4.47e-01 |
GCSE | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.381 | 0.397 | -0.016 | 3.35e-01 | 0.328 | 0.331 | -0.003 | 8.47e-01 |
GCSE | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.401 | 0.397 | 0.005 | 3.44e-01 | 0.337 | 0.331 | 0.006 | 5.72e-01 |
GCSE | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.422 | 0.397 | 0.026 | 1.06e-01 | 0.362 | 0.331 | 0.032 | 2.72e-03 |
GCSE | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.423 | 0.397 | 0.026 | 1.83e-07 | 0.362 | 0.331 | 0.031 | 4.05e-03 |
GCSE | LDpred1.10FCVal | SBayesR.PseudoVal | 0.402 | 0.397 | 0.005 | 4.08e-01 | 0.330 | 0.331 | 0.000 | 9.75e-01 |
GCSE | All.MultiPRS | SBLUP.Inf | 0.421 | 0.400 | 0.022 | 1.74e-01 | 0.357 | 0.335 | 0.023 | 1.08e-02 |
GCSE | LDpred2.MultiPRS | SBLUP.Inf | 0.412 | 0.400 | 0.013 | 4.17e-01 | 0.339 | 0.335 | 0.004 | 6.48e-01 |
GCSE | PRScs.PseudoVal | SBLUP.Inf | 0.397 | 0.400 | -0.002 | 6.98e-01 | 0.351 | 0.335 | 0.017 | 1.73e-01 |
GCSE | lassosum.10FCVal | SBLUP.Inf | 0.407 | 0.400 | 0.008 | 1.14e-01 | 0.348 | 0.335 | 0.013 | 1.98e-01 |
GCSE | LDpred2.Inf | SBLUP.Inf | 0.405 | 0.400 | 0.006 | 1.30e-01 | 0.331 | 0.335 | -0.004 | 6.36e-01 |
GCSE | MegaPRS.PseudoVal | SBLUP.Inf | 0.419 | 0.400 | 0.019 | 3.35e-04 | 0.359 | 0.335 | 0.024 | 3.23e-02 |
GCSE | pT+clump.10FCVal | SBLUP.Inf | 0.373 | 0.400 | -0.027 | 6.62e-05 | 0.311 | 0.335 | -0.023 | 9.47e-02 |
GCSE | lassosum.MultiPRS | SBLUP.Inf | 0.411 | 0.400 | 0.012 | 4.70e-01 | 0.347 | 0.335 | 0.012 | 2.25e-01 |
GCSE | LDpred2.PseudoVal | SBLUP.Inf | 0.406 | 0.400 | 0.006 | 1.01e-01 | 0.332 | 0.335 | -0.002 | 7.78e-01 |
GCSE | LDpred1.MultiPRS | SBLUP.Inf | 0.409 | 0.400 | 0.010 | 5.52e-01 | 0.340 | 0.335 | 0.005 | 4.80e-01 |
GCSE | MegaPRS.10FCVal | SBLUP.Inf | 0.423 | 0.400 | 0.023 | 2.91e-07 | 0.362 | 0.335 | 0.027 | 5.00e-03 |
GCSE | pT+clump.MultiPRS | SBLUP.Inf | 0.381 | 0.400 | -0.019 | 2.51e-01 | 0.328 | 0.335 | -0.006 | 6.38e-01 |
GCSE | DBSLMM.PseudoVal | SBLUP.Inf | 0.401 | 0.400 | 0.002 | 7.40e-01 | 0.337 | 0.335 | 0.002 | 8.41e-01 |
GCSE | LDpred2.10FCVal | SBLUP.Inf | 0.412 | 0.400 | 0.012 | 4.75e-03 | 0.342 | 0.335 | 0.007 | 4.10e-01 |
GCSE | LDpred1.Inf | SBLUP.Inf | 0.408 | 0.400 | 0.008 | 2.27e-02 | 0.341 | 0.335 | 0.006 | 4.01e-01 |
GCSE | SBayesR.PseudoVal | SBLUP.Inf | 0.397 | 0.400 | -0.003 | 6.68e-01 | 0.331 | 0.335 | -0.004 | 7.99e-01 |
GCSE | SBLUP.Inf | SBLUP.Inf | 0.400 | 0.400 | 0.000 | 1.00e+00 | 0.335 | 0.335 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.MultiPRS | SBLUP.Inf | 0.422 | 0.400 | 0.023 | 1.51e-01 | 0.362 | 0.335 | 0.028 | 3.69e-03 |
GCSE | PRScs.10FCVal | SBLUP.Inf | 0.410 | 0.400 | 0.011 | 5.14e-03 | 0.341 | 0.335 | 0.006 | 4.76e-01 |
GCSE | LDpred1.10FCVal | SBLUP.Inf | 0.402 | 0.400 | 0.002 | 5.73e-01 | 0.330 | 0.335 | -0.004 | 6.50e-01 |
GCSE | lassosum.PseudoVal | SBLUP.Inf | 0.321 | 0.400 | -0.079 | 3.28e-15 | 0.276 | 0.335 | -0.059 | 5.25e-03 |
GCSE | PRScs.MultiPRS | SBLUP.Inf | 0.413 | 0.400 | 0.013 | 3.99e-01 | 0.346 | 0.335 | 0.011 | 1.98e-01 |
ADHD | DBSLMM.PseudoVal | All.MultiPRS | 0.114 | 0.124 | -0.010 | 5.83e-01 | 0.184 | 0.173 | 0.011 | 4.70e-01 |
ADHD | SBayesR.PseudoVal | All.MultiPRS | 0.091 | 0.124 | -0.033 | 6.34e-02 | 0.155 | 0.173 | -0.018 | 3.90e-01 |
ADHD | lassosum.PseudoVal | All.MultiPRS | 0.077 | 0.124 | -0.047 | 7.29e-03 | 0.118 | 0.173 | -0.055 | 1.44e-02 |
ADHD | LDpred2.10FCVal | All.MultiPRS | 0.118 | 0.124 | -0.006 | 7.53e-01 | 0.198 | 0.173 | 0.025 | 5.33e-02 |
ADHD | MegaPRS.MultiPRS | All.MultiPRS | 0.126 | 0.124 | 0.002 | 9.23e-01 | 0.177 | 0.173 | 0.004 | 6.67e-01 |
ADHD | PRScs.10FCVal | All.MultiPRS | 0.114 | 0.124 | -0.010 | 5.82e-01 | 0.207 | 0.173 | 0.034 | 1.86e-02 |
ADHD | LDpred2.Inf | All.MultiPRS | 0.115 | 0.124 | -0.008 | 6.34e-01 | 0.194 | 0.173 | 0.022 | 1.24e-01 |
ADHD | MegaPRS.10FCVal | All.MultiPRS | 0.127 | 0.124 | 0.003 | 8.68e-01 | 0.181 | 0.173 | 0.008 | 4.56e-01 |
ADHD | pT+clump.MultiPRS | All.MultiPRS | 0.096 | 0.124 | -0.028 | 1.09e-01 | 0.162 | 0.173 | -0.011 | 5.51e-01 |
ADHD | lassosum.10FCVal | All.MultiPRS | 0.118 | 0.124 | -0.006 | 7.29e-01 | 0.194 | 0.173 | 0.021 | 1.28e-01 |
ADHD | PRScs.MultiPRS | All.MultiPRS | 0.113 | 0.124 | -0.011 | 5.29e-01 | 0.203 | 0.173 | 0.030 | 3.61e-02 |
ADHD | LDpred1.Inf | All.MultiPRS | 0.115 | 0.124 | -0.008 | 6.32e-01 | 0.191 | 0.173 | 0.019 | 1.92e-01 |
ADHD | MegaPRS.PseudoVal | All.MultiPRS | 0.119 | 0.124 | -0.005 | 7.74e-01 | 0.182 | 0.173 | 0.009 | 4.46e-01 |
ADHD | PRScs.PseudoVal | All.MultiPRS | 0.109 | 0.124 | -0.015 | 4.01e-01 | 0.189 | 0.173 | 0.016 | 2.62e-01 |
ADHD | All.MultiPRS | All.MultiPRS | 0.124 | 0.124 | 0.000 | 1.00e+00 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
ADHD | LDpred2.MultiPRS | All.MultiPRS | 0.114 | 0.124 | -0.009 | 5.92e-01 | 0.199 | 0.173 | 0.026 | 5.05e-02 |
ADHD | LDpred1.MultiPRS | All.MultiPRS | 0.117 | 0.124 | -0.007 | 6.98e-01 | 0.191 | 0.173 | 0.019 | 1.69e-01 |
ADHD | pT+clump.10FCVal | All.MultiPRS | 0.094 | 0.124 | -0.030 | 9.15e-02 | 0.150 | 0.173 | -0.023 | 2.53e-01 |
ADHD | lassosum.MultiPRS | All.MultiPRS | 0.117 | 0.124 | -0.007 | 7.01e-01 | 0.199 | 0.173 | 0.026 | 2.60e-02 |
ADHD | LDpred2.PseudoVal | All.MultiPRS | 0.115 | 0.124 | -0.009 | 6.11e-01 | 0.195 | 0.173 | 0.022 | 1.20e-01 |
ADHD | LDpred1.10FCVal | All.MultiPRS | 0.118 | 0.124 | -0.006 | 7.38e-01 | 0.190 | 0.173 | 0.017 | 1.96e-01 |
ADHD | SBLUP.Inf | All.MultiPRS | 0.116 | 0.124 | -0.008 | 6.40e-01 | 0.193 | 0.173 | 0.020 | 1.50e-01 |
ADHD | PRScs.PseudoVal | DBSLMM.PseudoVal | 0.109 | 0.114 | -0.005 | 3.84e-01 | 0.189 | 0.184 | 0.006 | 6.32e-01 |
ADHD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.091 | 0.114 | -0.023 | 2.17e-02 | 0.155 | 0.184 | -0.028 | 1.54e-01 |
ADHD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.114 | 0.114 | 0.000 | 9.85e-01 | 0.199 | 0.184 | 0.015 | 1.55e-01 |
ADHD | PRScs.MultiPRS | DBSLMM.PseudoVal | 0.113 | 0.114 | -0.001 | 9.42e-01 | 0.203 | 0.184 | 0.019 | 1.04e-01 |
ADHD | LDpred1.Inf | DBSLMM.PseudoVal | 0.115 | 0.114 | 0.001 | 8.35e-01 | 0.191 | 0.184 | 0.008 | 4.95e-01 |
ADHD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.096 | 0.114 | -0.018 | 3.01e-01 | 0.162 | 0.184 | -0.022 | 1.60e-01 |
ADHD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.118 | 0.114 | 0.004 | 4.45e-01 | 0.198 | 0.184 | 0.015 | 1.65e-01 |
ADHD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.077 | 0.114 | -0.038 | 7.96e-04 | 0.118 | 0.184 | -0.065 | 2.85e-03 |
ADHD | LDpred2.Inf | DBSLMM.PseudoVal | 0.115 | 0.114 | 0.001 | 8.29e-01 | 0.194 | 0.184 | 0.011 | 3.41e-01 |
ADHD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.119 | 0.114 | 0.005 | 4.91e-01 | 0.182 | 0.184 | -0.001 | 9.25e-01 |
ADHD | All.MultiPRS | DBSLMM.PseudoVal | 0.124 | 0.114 | 0.010 | 5.83e-01 | 0.173 | 0.184 | -0.011 | 4.70e-01 |
ADHD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.117 | 0.114 | 0.003 | 8.68e-01 | 0.199 | 0.184 | 0.015 | 1.42e-01 |
ADHD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.115 | 0.114 | 0.001 | 9.08e-01 | 0.195 | 0.184 | 0.011 | 3.20e-01 |
ADHD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.117 | 0.114 | 0.003 | 8.69e-01 | 0.191 | 0.184 | 0.008 | 4.78e-01 |
ADHD | SBLUP.Inf | DBSLMM.PseudoVal | 0.116 | 0.114 | 0.001 | 8.13e-01 | 0.193 | 0.184 | 0.010 | 4.07e-01 |
ADHD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.118 | 0.114 | 0.004 | 6.04e-01 | 0.194 | 0.184 | 0.010 | 4.43e-01 |
ADHD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.114 | 0.114 | 0.000 | 1.00e+00 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
ADHD | PRScs.10FCVal | DBSLMM.PseudoVal | 0.114 | 0.114 | 0.000 | 9.91e-01 | 0.207 | 0.184 | 0.024 | 4.81e-02 |
ADHD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.118 | 0.114 | 0.004 | 5.03e-01 | 0.190 | 0.184 | 0.007 | 5.46e-01 |
ADHD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.094 | 0.114 | -0.020 | 3.55e-02 | 0.150 | 0.184 | -0.034 | 6.94e-02 |
ADHD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.126 | 0.114 | 0.011 | 5.15e-01 | 0.177 | 0.184 | -0.006 | 6.28e-01 |
ADHD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.127 | 0.114 | 0.013 | 4.61e-02 | 0.181 | 0.184 | -0.003 | 8.28e-01 |
ADHD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.114 | 0.117 | -0.003 | 4.95e-01 | 0.199 | 0.199 | 0.000 | 9.78e-01 |
ADHD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.115 | 0.117 | -0.002 | 8.97e-01 | 0.195 | 0.199 | -0.004 | 6.79e-01 |
ADHD | PRScs.MultiPRS | lassosum.MultiPRS | 0.113 | 0.117 | -0.004 | 2.87e-01 | 0.203 | 0.199 | 0.004 | 6.24e-01 |
ADHD | LDpred2.Inf | lassosum.MultiPRS | 0.115 | 0.117 | -0.002 | 9.23e-01 | 0.194 | 0.199 | -0.004 | 6.33e-01 |
ADHD | PRScs.PseudoVal | lassosum.MultiPRS | 0.109 | 0.117 | -0.008 | 6.49e-01 | 0.189 | 0.199 | -0.010 | 2.76e-01 |
ADHD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.096 | 0.117 | -0.021 | 2.29e-01 | 0.162 | 0.199 | -0.037 | 1.07e-02 |
ADHD | PRScs.10FCVal | lassosum.MultiPRS | 0.114 | 0.117 | -0.003 | 8.65e-01 | 0.207 | 0.199 | 0.009 | 3.60e-01 |
ADHD | LDpred2.10FCVal | lassosum.MultiPRS | 0.118 | 0.117 | 0.001 | 9.49e-01 | 0.198 | 0.199 | 0.000 | 9.51e-01 |
ADHD | pT+clump.10FCVal | lassosum.MultiPRS | 0.094 | 0.117 | -0.023 | 1.95e-01 | 0.150 | 0.199 | -0.049 | 3.02e-03 |
ADHD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.091 | 0.117 | -0.026 | 1.45e-01 | 0.155 | 0.199 | -0.044 | 1.99e-02 |
ADHD | lassosum.10FCVal | lassosum.MultiPRS | 0.118 | 0.117 | 0.001 | 9.74e-01 | 0.194 | 0.199 | -0.005 | 4.25e-01 |
ADHD | All.MultiPRS | lassosum.MultiPRS | 0.124 | 0.117 | 0.007 | 7.01e-01 | 0.173 | 0.199 | -0.026 | 2.60e-02 |
ADHD | SBLUP.Inf | lassosum.MultiPRS | 0.116 | 0.117 | -0.002 | 9.30e-01 | 0.193 | 0.199 | -0.006 | 5.12e-01 |
ADHD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.117 | 0.117 | 0.000 | 9.91e-01 | 0.191 | 0.199 | -0.007 | 3.44e-01 |
ADHD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.127 | 0.117 | 0.010 | 5.89e-01 | 0.181 | 0.199 | -0.018 | 6.48e-02 |
ADHD | lassosum.MultiPRS | lassosum.MultiPRS | 0.117 | 0.117 | 0.000 | 1.00e+00 | 0.199 | 0.199 | 0.000 | 1.00e+00 |
ADHD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.114 | 0.117 | -0.003 | 8.68e-01 | 0.184 | 0.199 | -0.015 | 1.42e-01 |
ADHD | LDpred1.10FCVal | lassosum.MultiPRS | 0.118 | 0.117 | 0.001 | 9.65e-01 | 0.190 | 0.199 | -0.008 | 2.73e-01 |
ADHD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.119 | 0.117 | 0.002 | 9.27e-01 | 0.182 | 0.199 | -0.016 | 1.07e-01 |
ADHD | LDpred1.Inf | lassosum.MultiPRS | 0.115 | 0.117 | -0.002 | 9.22e-01 | 0.191 | 0.199 | -0.007 | 4.37e-01 |
ADHD | lassosum.PseudoVal | lassosum.MultiPRS | 0.077 | 0.117 | -0.041 | 2.23e-02 | 0.118 | 0.199 | -0.081 | 1.23e-04 |
ADHD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.126 | 0.117 | 0.008 | 6.33e-01 | 0.177 | 0.199 | -0.021 | 2.70e-02 |
ADHD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.127 | 0.077 | 0.050 | 6.71e-07 | 0.181 | 0.118 | 0.063 | 1.28e-03 |
ADHD | PRScs.MultiPRS | lassosum.PseudoVal | 0.113 | 0.077 | 0.036 | 4.09e-02 | 0.203 | 0.118 | 0.084 | 8.81e-05 |
ADHD | LDpred1.Inf | lassosum.PseudoVal | 0.115 | 0.077 | 0.039 | 1.84e-03 | 0.191 | 0.118 | 0.073 | 2.67e-03 |
ADHD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.096 | 0.077 | 0.019 | 2.74e-01 | 0.162 | 0.118 | 0.044 | 6.43e-02 |
ADHD | All.MultiPRS | lassosum.PseudoVal | 0.124 | 0.077 | 0.047 | 7.29e-03 | 0.173 | 0.118 | 0.055 | 1.44e-02 |
ADHD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.114 | 0.077 | 0.038 | 3.25e-02 | 0.199 | 0.118 | 0.080 | 1.93e-04 |
ADHD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.091 | 0.077 | 0.015 | 2.23e-01 | 0.155 | 0.118 | 0.037 | 1.22e-01 |
ADHD | lassosum.MultiPRS | lassosum.PseudoVal | 0.117 | 0.077 | 0.041 | 2.23e-02 | 0.199 | 0.118 | 0.081 | 1.23e-04 |
ADHD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.115 | 0.077 | 0.038 | 2.13e-03 | 0.195 | 0.118 | 0.077 | 1.69e-03 |
ADHD | LDpred1.10FCVal | lassosum.PseudoVal | 0.118 | 0.077 | 0.041 | 1.14e-04 | 0.190 | 0.118 | 0.072 | 6.39e-04 |
ADHD | SBLUP.Inf | lassosum.PseudoVal | 0.116 | 0.077 | 0.039 | 1.86e-03 | 0.193 | 0.118 | 0.075 | 2.13e-03 |
ADHD | lassosum.10FCVal | lassosum.PseudoVal | 0.118 | 0.077 | 0.041 | 1.96e-04 | 0.194 | 0.118 | 0.076 | 5.33e-04 |
ADHD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.114 | 0.077 | 0.038 | 7.96e-04 | 0.184 | 0.118 | 0.065 | 2.85e-03 |
ADHD | LDpred2.10FCVal | lassosum.PseudoVal | 0.118 | 0.077 | 0.042 | 1.44e-04 | 0.198 | 0.118 | 0.080 | 1.91e-04 |
ADHD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.119 | 0.077 | 0.042 | 5.08e-04 | 0.182 | 0.118 | 0.064 | 6.83e-03 |
ADHD | PRScs.PseudoVal | lassosum.PseudoVal | 0.109 | 0.077 | 0.032 | 2.04e-03 | 0.189 | 0.118 | 0.071 | 5.26e-04 |
ADHD | lassosum.PseudoVal | lassosum.PseudoVal | 0.077 | 0.077 | 0.000 | 1.00e+00 | 0.118 | 0.118 | 0.000 | 1.00e+00 |
ADHD | LDpred2.Inf | lassosum.PseudoVal | 0.115 | 0.077 | 0.039 | 1.92e-03 | 0.194 | 0.118 | 0.076 | 1.88e-03 |
ADHD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.117 | 0.077 | 0.040 | 2.22e-02 | 0.191 | 0.118 | 0.073 | 7.86e-04 |
ADHD | pT+clump.10FCVal | lassosum.PseudoVal | 0.094 | 0.077 | 0.017 | 1.94e-01 | 0.150 | 0.118 | 0.031 | 2.28e-01 |
ADHD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.126 | 0.077 | 0.049 | 5.20e-03 | 0.177 | 0.118 | 0.059 | 3.85e-03 |
ADHD | PRScs.10FCVal | lassosum.PseudoVal | 0.114 | 0.077 | 0.038 | 3.37e-04 | 0.207 | 0.118 | 0.089 | 1.61e-05 |
ADHD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.126 | 0.118 | 0.008 | 6.54e-01 | 0.177 | 0.194 | -0.016 | 1.10e-01 |
ADHD | PRScs.10FCVal | lassosum.10FCVal | 0.114 | 0.118 | -0.004 | 4.53e-01 | 0.207 | 0.194 | 0.014 | 1.61e-01 |
ADHD | lassosum.MultiPRS | lassosum.10FCVal | 0.117 | 0.118 | -0.001 | 9.74e-01 | 0.199 | 0.194 | 0.005 | 4.25e-01 |
ADHD | LDpred2.PseudoVal | lassosum.10FCVal | 0.115 | 0.118 | -0.003 | 5.68e-01 | 0.195 | 0.194 | 0.001 | 9.18e-01 |
ADHD | MegaPRS.10FCVal | lassosum.10FCVal | 0.127 | 0.118 | 0.009 | 8.08e-02 | 0.181 | 0.194 | -0.013 | 2.16e-01 |
ADHD | pT+clump.MultiPRS | lassosum.10FCVal | 0.096 | 0.118 | -0.022 | 2.17e-01 | 0.162 | 0.194 | -0.032 | 4.00e-02 |
ADHD | lassosum.10FCVal | lassosum.10FCVal | 0.118 | 0.118 | 0.000 | 1.00e+00 | 0.194 | 0.194 | 0.000 | 1.00e+00 |
ADHD | PRScs.MultiPRS | lassosum.10FCVal | 0.113 | 0.118 | -0.005 | 7.86e-01 | 0.203 | 0.194 | 0.009 | 2.65e-01 |
ADHD | LDpred1.Inf | lassosum.10FCVal | 0.115 | 0.118 | -0.002 | 6.32e-01 | 0.191 | 0.194 | -0.002 | 8.15e-01 |
ADHD | SBayesR.PseudoVal | lassosum.10FCVal | 0.091 | 0.118 | -0.027 | 5.38e-03 | 0.155 | 0.194 | -0.039 | 4.15e-02 |
ADHD | PRScs.PseudoVal | lassosum.10FCVal | 0.109 | 0.118 | -0.009 | 6.51e-02 | 0.189 | 0.194 | -0.005 | 6.05e-01 |
ADHD | All.MultiPRS | lassosum.10FCVal | 0.124 | 0.118 | 0.006 | 7.29e-01 | 0.173 | 0.194 | -0.021 | 1.28e-01 |
ADHD | LDpred2.MultiPRS | lassosum.10FCVal | 0.114 | 0.118 | -0.003 | 8.57e-01 | 0.199 | 0.194 | 0.005 | 5.46e-01 |
ADHD | LDpred1.MultiPRS | lassosum.10FCVal | 0.117 | 0.118 | -0.001 | 9.72e-01 | 0.191 | 0.194 | -0.002 | 7.65e-01 |
ADHD | pT+clump.10FCVal | lassosum.10FCVal | 0.094 | 0.118 | -0.024 | 2.94e-03 | 0.150 | 0.194 | -0.044 | 5.36e-03 |
ADHD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.114 | 0.118 | -0.004 | 6.04e-01 | 0.184 | 0.194 | -0.010 | 4.43e-01 |
ADHD | LDpred1.10FCVal | lassosum.10FCVal | 0.118 | 0.118 | 0.000 | 9.56e-01 | 0.190 | 0.194 | -0.003 | 6.56e-01 |
ADHD | SBLUP.Inf | lassosum.10FCVal | 0.116 | 0.118 | -0.002 | 6.31e-01 | 0.193 | 0.194 | -0.001 | 9.39e-01 |
ADHD | lassosum.PseudoVal | lassosum.10FCVal | 0.077 | 0.118 | -0.041 | 1.96e-04 | 0.118 | 0.194 | -0.076 | 5.33e-04 |
ADHD | LDpred2.10FCVal | lassosum.10FCVal | 0.118 | 0.118 | 0.001 | 8.85e-01 | 0.198 | 0.194 | 0.005 | 5.65e-01 |
ADHD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.119 | 0.118 | 0.001 | 8.40e-01 | 0.182 | 0.194 | -0.012 | 2.77e-01 |
ADHD | LDpred2.Inf | lassosum.10FCVal | 0.115 | 0.118 | -0.002 | 6.30e-01 | 0.194 | 0.194 | 0.001 | 9.48e-01 |
ADHD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.091 | 0.126 | -0.034 | 4.89e-02 | 0.155 | 0.177 | -0.022 | 2.52e-01 |
ADHD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.096 | 0.126 | -0.030 | 9.40e-02 | 0.162 | 0.177 | -0.016 | 3.25e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.118 | 0.126 | -0.007 | 6.78e-01 | 0.198 | 0.177 | 0.021 | 2.60e-02 |
ADHD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.119 | 0.126 | -0.007 | 6.98e-01 | 0.182 | 0.177 | 0.005 | 5.14e-01 |
ADHD | PRScs.PseudoVal | MegaPRS.MultiPRS | 0.109 | 0.126 | -0.017 | 3.42e-01 | 0.189 | 0.177 | 0.012 | 2.66e-01 |
ADHD | PRScs.MultiPRS | MegaPRS.MultiPRS | 0.113 | 0.126 | -0.013 | 4.72e-01 | 0.203 | 0.177 | 0.025 | 1.43e-02 |
ADHD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.114 | 0.126 | -0.011 | 5.31e-01 | 0.199 | 0.177 | 0.021 | 2.47e-02 |
ADHD | LDpred2.Inf | MegaPRS.MultiPRS | 0.115 | 0.126 | -0.010 | 5.63e-01 | 0.194 | 0.177 | 0.017 | 1.20e-01 |
ADHD | SBLUP.Inf | MegaPRS.MultiPRS | 0.116 | 0.126 | -0.010 | 5.69e-01 | 0.193 | 0.177 | 0.016 | 1.42e-01 |
ADHD | All.MultiPRS | MegaPRS.MultiPRS | 0.124 | 0.126 | -0.002 | 9.23e-01 | 0.173 | 0.177 | -0.004 | 6.67e-01 |
ADHD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.115 | 0.126 | -0.011 | 5.40e-01 | 0.195 | 0.177 | 0.017 | 1.19e-01 |
ADHD | PRScs.10FCVal | MegaPRS.MultiPRS | 0.114 | 0.126 | -0.011 | 5.11e-01 | 0.207 | 0.177 | 0.030 | 6.27e-03 |
ADHD | LDpred1.Inf | MegaPRS.MultiPRS | 0.115 | 0.126 | -0.010 | 5.61e-01 | 0.191 | 0.177 | 0.014 | 2.09e-01 |
ADHD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.094 | 0.126 | -0.032 | 7.18e-02 | 0.150 | 0.177 | -0.028 | 1.04e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.114 | 0.126 | -0.011 | 5.15e-01 | 0.184 | 0.177 | 0.006 | 6.28e-01 |
ADHD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.118 | 0.126 | -0.008 | 6.54e-01 | 0.194 | 0.177 | 0.016 | 1.10e-01 |
ADHD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.077 | 0.126 | -0.049 | 5.20e-03 | 0.118 | 0.177 | -0.059 | 3.85e-03 |
ADHD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.127 | 0.126 | 0.001 | 9.45e-01 | 0.181 | 0.177 | 0.003 | 1.51e-01 |
ADHD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.117 | 0.126 | -0.008 | 6.31e-01 | 0.191 | 0.177 | 0.014 | 1.50e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.117 | 0.126 | -0.008 | 6.33e-01 | 0.199 | 0.177 | 0.021 | 2.70e-02 |
ADHD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.126 | 0.126 | 0.000 | 1.00e+00 | 0.177 | 0.177 | 0.000 | 1.00e+00 |
ADHD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.118 | 0.126 | -0.008 | 6.62e-01 | 0.190 | 0.177 | 0.013 | 1.79e-01 |
ADHD | LDpred2.Inf | MegaPRS.PseudoVal | 0.115 | 0.119 | -0.003 | 4.47e-01 | 0.194 | 0.182 | 0.012 | 1.74e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.118 | 0.119 | 0.000 | 9.14e-01 | 0.198 | 0.182 | 0.016 | 8.11e-02 |
ADHD | PRScs.PseudoVal | MegaPRS.PseudoVal | 0.109 | 0.119 | -0.010 | 8.95e-02 | 0.189 | 0.182 | 0.007 | 5.45e-01 |
ADHD | All.MultiPRS | MegaPRS.PseudoVal | 0.124 | 0.119 | 0.005 | 7.74e-01 | 0.173 | 0.182 | -0.009 | 4.46e-01 |
ADHD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.114 | 0.119 | -0.004 | 8.10e-01 | 0.199 | 0.182 | 0.016 | 7.20e-02 |
ADHD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.091 | 0.119 | -0.028 | 6.08e-03 | 0.155 | 0.182 | -0.027 | 1.77e-01 |
ADHD | PRScs.10FCVal | MegaPRS.PseudoVal | 0.114 | 0.119 | -0.005 | 4.17e-01 | 0.207 | 0.182 | 0.025 | 2.81e-02 |
ADHD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.094 | 0.119 | -0.025 | 4.33e-03 | 0.150 | 0.182 | -0.033 | 6.31e-02 |
ADHD | PRScs.MultiPRS | MegaPRS.PseudoVal | 0.113 | 0.119 | -0.006 | 7.40e-01 | 0.203 | 0.182 | 0.020 | 5.94e-02 |
ADHD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.126 | 0.119 | 0.007 | 6.98e-01 | 0.177 | 0.182 | -0.005 | 5.14e-01 |
ADHD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.096 | 0.119 | -0.023 | 1.95e-01 | 0.162 | 0.182 | -0.021 | 2.37e-01 |
ADHD | SBLUP.Inf | MegaPRS.PseudoVal | 0.116 | 0.119 | -0.003 | 4.78e-01 | 0.193 | 0.182 | 0.011 | 2.30e-01 |
ADHD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.077 | 0.119 | -0.042 | 5.08e-04 | 0.118 | 0.182 | -0.064 | 6.83e-03 |
ADHD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.115 | 0.119 | -0.004 | 3.67e-01 | 0.195 | 0.182 | 0.013 | 1.56e-01 |
ADHD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.119 | 0.119 | 0.000 | 1.00e+00 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
ADHD | LDpred1.Inf | MegaPRS.PseudoVal | 0.115 | 0.119 | -0.003 | 4.67e-01 | 0.191 | 0.182 | 0.009 | 3.28e-01 |
ADHD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.117 | 0.119 | -0.002 | 9.24e-01 | 0.191 | 0.182 | 0.009 | 3.39e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.114 | 0.119 | -0.005 | 4.91e-01 | 0.184 | 0.182 | 0.001 | 9.25e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.117 | 0.119 | -0.002 | 9.27e-01 | 0.199 | 0.182 | 0.016 | 1.07e-01 |
ADHD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.127 | 0.119 | 0.008 | 5.25e-02 | 0.181 | 0.182 | -0.001 | 8.61e-01 |
ADHD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.118 | 0.119 | -0.001 | 8.64e-01 | 0.190 | 0.182 | 0.008 | 4.19e-01 |
ADHD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.118 | 0.119 | -0.001 | 8.40e-01 | 0.194 | 0.182 | 0.012 | 2.77e-01 |
ADHD | PRScs.10FCVal | MegaPRS.10FCVal | 0.114 | 0.127 | -0.013 | 2.15e-02 | 0.207 | 0.181 | 0.027 | 1.47e-02 |
ADHD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.096 | 0.127 | -0.031 | 8.07e-02 | 0.162 | 0.181 | -0.019 | 2.29e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.118 | 0.127 | -0.008 | 7.67e-02 | 0.198 | 0.181 | 0.017 | 6.92e-02 |
ADHD | PRScs.MultiPRS | MegaPRS.10FCVal | 0.113 | 0.127 | -0.014 | 4.35e-01 | 0.203 | 0.181 | 0.022 | 3.62e-02 |
ADHD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.114 | 0.127 | -0.012 | 4.91e-01 | 0.199 | 0.181 | 0.018 | 6.59e-02 |
ADHD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.091 | 0.127 | -0.036 | 2.09e-04 | 0.155 | 0.181 | -0.026 | 1.84e-01 |
ADHD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.094 | 0.127 | -0.033 | 1.48e-04 | 0.150 | 0.181 | -0.031 | 7.18e-02 |
ADHD | LDpred2.Inf | MegaPRS.10FCVal | 0.115 | 0.127 | -0.011 | 4.62e-02 | 0.194 | 0.181 | 0.014 | 2.38e-01 |
ADHD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.115 | 0.127 | -0.012 | 3.93e-02 | 0.195 | 0.181 | 0.014 | 2.31e-01 |
ADHD | All.MultiPRS | MegaPRS.10FCVal | 0.124 | 0.127 | -0.003 | 8.68e-01 | 0.173 | 0.181 | -0.008 | 4.56e-01 |
ADHD | SBLUP.Inf | MegaPRS.10FCVal | 0.116 | 0.127 | -0.011 | 4.71e-02 | 0.193 | 0.181 | 0.012 | 2.76e-01 |
ADHD | PRScs.PseudoVal | MegaPRS.10FCVal | 0.109 | 0.127 | -0.018 | 1.04e-03 | 0.189 | 0.181 | 0.008 | 4.28e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.114 | 0.127 | -0.013 | 4.61e-02 | 0.184 | 0.181 | 0.003 | 8.28e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.117 | 0.127 | -0.010 | 5.89e-01 | 0.199 | 0.181 | 0.018 | 6.48e-02 |
ADHD | LDpred1.Inf | MegaPRS.10FCVal | 0.115 | 0.127 | -0.011 | 5.05e-02 | 0.191 | 0.181 | 0.011 | 3.62e-01 |
ADHD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.126 | 0.127 | -0.001 | 9.45e-01 | 0.177 | 0.181 | -0.003 | 1.51e-01 |
ADHD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.077 | 0.127 | -0.050 | 6.71e-07 | 0.118 | 0.181 | -0.063 | 1.28e-03 |
ADHD | lassosum.10FCVal | MegaPRS.10FCVal | 0.118 | 0.127 | -0.009 | 8.08e-02 | 0.194 | 0.181 | 0.013 | 2.16e-01 |
ADHD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.127 | 0.127 | 0.000 | 1.00e+00 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.119 | 0.127 | -0.008 | 5.25e-02 | 0.182 | 0.181 | 0.001 | 8.61e-01 |
ADHD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.117 | 0.127 | -0.010 | 5.86e-01 | 0.191 | 0.181 | 0.011 | 2.86e-01 |
ADHD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.118 | 0.127 | -0.009 | 6.69e-02 | 0.190 | 0.181 | 0.009 | 3.28e-01 |
ADHD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.114 | 0.117 | -0.003 | 2.06e-01 | 0.199 | 0.191 | 0.007 | 7.07e-02 |
ADHD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.115 | 0.117 | -0.002 | 8.99e-01 | 0.195 | 0.191 | 0.003 | 5.48e-01 |
ADHD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.091 | 0.117 | -0.026 | 1.44e-01 | 0.155 | 0.191 | -0.036 | 5.87e-02 |
ADHD | LDpred1.Inf | LDpred1.MultiPRS | 0.115 | 0.117 | -0.002 | 9.23e-01 | 0.191 | 0.191 | 0.000 | 9.83e-01 |
ADHD | PRScs.PseudoVal | LDpred1.MultiPRS | 0.109 | 0.117 | -0.008 | 6.49e-01 | 0.189 | 0.191 | -0.002 | 7.43e-01 |
ADHD | PRScs.MultiPRS | LDpred1.MultiPRS | 0.113 | 0.117 | -0.004 | 1.86e-01 | 0.203 | 0.191 | 0.011 | 7.52e-02 |
ADHD | LDpred2.Inf | LDpred1.MultiPRS | 0.115 | 0.117 | -0.002 | 9.25e-01 | 0.194 | 0.191 | 0.003 | 5.87e-01 |
ADHD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.118 | 0.117 | 0.001 | 9.46e-01 | 0.198 | 0.191 | 0.007 | 9.43e-02 |
ADHD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.094 | 0.117 | -0.023 | 1.95e-01 | 0.150 | 0.191 | -0.042 | 1.01e-02 |
ADHD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.119 | 0.117 | 0.002 | 9.24e-01 | 0.182 | 0.191 | -0.009 | 3.39e-01 |
ADHD | PRScs.10FCVal | LDpred1.MultiPRS | 0.114 | 0.117 | -0.003 | 8.66e-01 | 0.207 | 0.191 | 0.016 | 2.94e-02 |
ADHD | All.MultiPRS | LDpred1.MultiPRS | 0.124 | 0.117 | 0.007 | 6.98e-01 | 0.173 | 0.191 | -0.019 | 1.69e-01 |
ADHD | SBLUP.Inf | LDpred1.MultiPRS | 0.116 | 0.117 | -0.002 | 9.32e-01 | 0.193 | 0.191 | 0.002 | 7.46e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.117 | 0.117 | 0.000 | 1.00e+00 | 0.191 | 0.191 | 0.000 | 1.00e+00 |
ADHD | lassosum.10FCVal | LDpred1.MultiPRS | 0.118 | 0.117 | 0.001 | 9.72e-01 | 0.194 | 0.191 | 0.002 | 7.65e-01 |
ADHD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.117 | 0.117 | 0.000 | 9.91e-01 | 0.199 | 0.191 | 0.007 | 3.44e-01 |
ADHD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.114 | 0.117 | -0.003 | 8.69e-01 | 0.184 | 0.191 | -0.008 | 4.78e-01 |
ADHD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.118 | 0.117 | 0.001 | 9.62e-01 | 0.190 | 0.191 | -0.001 | 3.69e-01 |
ADHD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.096 | 0.117 | -0.021 | 2.30e-01 | 0.162 | 0.191 | -0.030 | 5.96e-02 |
ADHD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.127 | 0.117 | 0.010 | 5.86e-01 | 0.181 | 0.191 | -0.011 | 2.86e-01 |
ADHD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.077 | 0.117 | -0.040 | 2.22e-02 | 0.118 | 0.191 | -0.073 | 7.86e-04 |
ADHD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.126 | 0.117 | 0.008 | 6.31e-01 | 0.177 | 0.191 | -0.014 | 1.50e-01 |
ADHD | MegaPRS.MultiPRS | LDpred1.Inf | 0.126 | 0.115 | 0.010 | 5.61e-01 | 0.177 | 0.191 | -0.014 | 2.09e-01 |
ADHD | PRScs.10FCVal | LDpred1.Inf | 0.114 | 0.115 | -0.001 | 7.83e-01 | 0.207 | 0.191 | 0.016 | 8.31e-02 |
ADHD | LDpred2.MultiPRS | LDpred1.Inf | 0.114 | 0.115 | -0.001 | 9.61e-01 | 0.199 | 0.191 | 0.007 | 2.13e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.Inf | 0.117 | 0.115 | 0.002 | 9.23e-01 | 0.191 | 0.191 | 0.000 | 9.83e-01 |
ADHD | pT+clump.10FCVal | LDpred1.Inf | 0.094 | 0.115 | -0.021 | 8.52e-03 | 0.150 | 0.191 | -0.042 | 9.67e-03 |
ADHD | All.MultiPRS | LDpred1.Inf | 0.124 | 0.115 | 0.008 | 6.32e-01 | 0.173 | 0.191 | -0.019 | 1.92e-01 |
ADHD | LDpred2.PseudoVal | LDpred1.Inf | 0.115 | 0.115 | -0.001 | 7.82e-01 | 0.195 | 0.191 | 0.003 | 4.09e-01 |
ADHD | MegaPRS.10FCVal | LDpred1.Inf | 0.127 | 0.115 | 0.011 | 5.05e-02 | 0.181 | 0.191 | -0.011 | 3.62e-01 |
ADHD | pT+clump.MultiPRS | LDpred1.Inf | 0.096 | 0.115 | -0.019 | 2.70e-01 | 0.162 | 0.191 | -0.030 | 6.84e-02 |
ADHD | lassosum.MultiPRS | LDpred1.Inf | 0.117 | 0.115 | 0.002 | 9.22e-01 | 0.199 | 0.191 | 0.007 | 4.37e-01 |
ADHD | DBSLMM.PseudoVal | LDpred1.Inf | 0.114 | 0.115 | -0.001 | 8.35e-01 | 0.184 | 0.191 | -0.008 | 4.95e-01 |
ADHD | LDpred2.10FCVal | LDpred1.Inf | 0.118 | 0.115 | 0.003 | 3.30e-01 | 0.198 | 0.191 | 0.007 | 2.54e-01 |
ADHD | MegaPRS.PseudoVal | LDpred1.Inf | 0.119 | 0.115 | 0.003 | 4.67e-01 | 0.182 | 0.191 | -0.009 | 3.28e-01 |
ADHD | PRScs.PseudoVal | LDpred1.Inf | 0.109 | 0.115 | -0.006 | 1.63e-01 | 0.189 | 0.191 | -0.002 | 7.88e-01 |
ADHD | lassosum.PseudoVal | LDpred1.Inf | 0.077 | 0.115 | -0.039 | 1.84e-03 | 0.118 | 0.191 | -0.073 | 2.67e-03 |
ADHD | LDpred2.Inf | LDpred1.Inf | 0.115 | 0.115 | 0.000 | 9.83e-01 | 0.194 | 0.191 | 0.003 | 4.62e-01 |
ADHD | PRScs.MultiPRS | LDpred1.Inf | 0.113 | 0.115 | -0.003 | 8.88e-01 | 0.203 | 0.191 | 0.011 | 1.59e-01 |
ADHD | LDpred1.10FCVal | LDpred1.Inf | 0.118 | 0.115 | 0.003 | 3.81e-01 | 0.190 | 0.191 | -0.001 | 8.32e-01 |
ADHD | SBLUP.Inf | LDpred1.Inf | 0.116 | 0.115 | 0.000 | 9.24e-01 | 0.193 | 0.191 | 0.002 | 6.92e-01 |
ADHD | lassosum.10FCVal | LDpred1.Inf | 0.118 | 0.115 | 0.002 | 6.32e-01 | 0.194 | 0.191 | 0.002 | 8.15e-01 |
ADHD | LDpred1.Inf | LDpred1.Inf | 0.115 | 0.115 | 0.000 | 1.00e+00 | 0.191 | 0.191 | 0.000 | 1.00e+00 |
ADHD | SBayesR.PseudoVal | LDpred1.Inf | 0.091 | 0.115 | -0.024 | 1.53e-02 | 0.155 | 0.191 | -0.036 | 7.16e-02 |
ADHD | LDpred2.Inf | LDpred1.10FCVal | 0.115 | 0.118 | -0.003 | 4.50e-01 | 0.194 | 0.190 | 0.004 | 5.24e-01 |
ADHD | PRScs.10FCVal | LDpred1.10FCVal | 0.114 | 0.118 | -0.004 | 2.94e-01 | 0.207 | 0.190 | 0.017 | 1.79e-02 |
ADHD | lassosum.MultiPRS | LDpred1.10FCVal | 0.117 | 0.118 | -0.001 | 9.65e-01 | 0.199 | 0.190 | 0.008 | 2.73e-01 |
ADHD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.114 | 0.118 | -0.003 | 8.47e-01 | 0.199 | 0.190 | 0.008 | 5.13e-02 |
ADHD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.126 | 0.118 | 0.008 | 6.62e-01 | 0.177 | 0.190 | -0.013 | 1.79e-01 |
ADHD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.091 | 0.118 | -0.027 | 4.67e-03 | 0.155 | 0.190 | -0.035 | 6.47e-02 |
ADHD | PRScs.PseudoVal | LDpred1.10FCVal | 0.109 | 0.118 | -0.009 | 1.30e-02 | 0.189 | 0.190 | -0.001 | 8.60e-01 |
ADHD | All.MultiPRS | LDpred1.10FCVal | 0.124 | 0.118 | 0.006 | 7.38e-01 | 0.173 | 0.190 | -0.017 | 1.96e-01 |
ADHD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.115 | 0.118 | -0.003 | 3.59e-01 | 0.195 | 0.190 | 0.005 | 4.94e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.117 | 0.118 | -0.001 | 9.62e-01 | 0.191 | 0.190 | 0.001 | 3.69e-01 |
ADHD | pT+clump.10FCVal | LDpred1.10FCVal | 0.094 | 0.118 | -0.024 | 4.01e-03 | 0.150 | 0.190 | -0.041 | 1.34e-02 |
ADHD | SBLUP.Inf | LDpred1.10FCVal | 0.116 | 0.118 | -0.002 | 4.70e-01 | 0.193 | 0.190 | 0.003 | 6.49e-01 |
ADHD | PRScs.MultiPRS | LDpred1.10FCVal | 0.113 | 0.118 | -0.005 | 7.77e-01 | 0.203 | 0.190 | 0.012 | 5.23e-02 |
ADHD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.127 | 0.118 | 0.009 | 6.69e-02 | 0.181 | 0.190 | -0.009 | 3.28e-01 |
ADHD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.096 | 0.118 | -0.022 | 2.12e-01 | 0.162 | 0.190 | -0.029 | 7.00e-02 |
ADHD | LDpred1.Inf | LDpred1.10FCVal | 0.115 | 0.118 | -0.003 | 3.81e-01 | 0.191 | 0.190 | 0.001 | 8.32e-01 |
ADHD | lassosum.PseudoVal | LDpred1.10FCVal | 0.077 | 0.118 | -0.041 | 1.14e-04 | 0.118 | 0.190 | -0.072 | 6.39e-04 |
ADHD | LDpred2.10FCVal | LDpred1.10FCVal | 0.118 | 0.118 | 0.000 | 8.73e-01 | 0.198 | 0.190 | 0.008 | 6.43e-02 |
ADHD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.119 | 0.118 | 0.001 | 8.64e-01 | 0.182 | 0.190 | -0.008 | 4.19e-01 |
ADHD | LDpred1.10FCVal | LDpred1.10FCVal | 0.118 | 0.118 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.114 | 0.118 | -0.004 | 5.03e-01 | 0.184 | 0.190 | -0.007 | 5.46e-01 |
ADHD | lassosum.10FCVal | LDpred1.10FCVal | 0.118 | 0.118 | 0.000 | 9.56e-01 | 0.194 | 0.190 | 0.003 | 6.56e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.114 | 0.114 | 0.000 | 9.85e-01 | 0.184 | 0.199 | -0.015 | 1.55e-01 |
ADHD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.118 | 0.114 | 0.004 | 8.32e-01 | 0.198 | 0.199 | 0.000 | 8.11e-01 |
ADHD | PRScs.PseudoVal | LDpred2.MultiPRS | 0.109 | 0.114 | -0.005 | 7.58e-01 | 0.189 | 0.199 | -0.009 | 1.72e-01 |
ADHD | All.MultiPRS | LDpred2.MultiPRS | 0.124 | 0.114 | 0.009 | 5.92e-01 | 0.173 | 0.199 | -0.026 | 5.05e-02 |
ADHD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.114 | 0.114 | 0.000 | 1.00e+00 | 0.199 | 0.199 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.119 | 0.114 | 0.004 | 8.10e-01 | 0.182 | 0.199 | -0.016 | 7.20e-02 |
ADHD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.127 | 0.114 | 0.012 | 4.91e-01 | 0.181 | 0.199 | -0.018 | 6.59e-02 |
ADHD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.096 | 0.114 | -0.019 | 2.92e-01 | 0.162 | 0.199 | -0.037 | 1.98e-02 |
ADHD | lassosum.10FCVal | LDpred2.MultiPRS | 0.118 | 0.114 | 0.003 | 8.57e-01 | 0.194 | 0.199 | -0.005 | 5.46e-01 |
ADHD | PRScs.MultiPRS | LDpred2.MultiPRS | 0.113 | 0.114 | -0.002 | 6.20e-01 | 0.203 | 0.199 | 0.004 | 5.34e-01 |
ADHD | LDpred1.Inf | LDpred2.MultiPRS | 0.115 | 0.114 | 0.001 | 9.61e-01 | 0.191 | 0.199 | -0.007 | 2.13e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.091 | 0.114 | -0.023 | 1.89e-01 | 0.155 | 0.199 | -0.043 | 1.75e-02 |
ADHD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.094 | 0.114 | -0.021 | 2.50e-01 | 0.150 | 0.199 | -0.049 | 2.99e-03 |
ADHD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.077 | 0.114 | -0.038 | 3.25e-02 | 0.118 | 0.199 | -0.080 | 1.93e-04 |
ADHD | LDpred2.Inf | LDpred2.MultiPRS | 0.115 | 0.114 | 0.001 | 9.59e-01 | 0.194 | 0.199 | -0.004 | 3.37e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.117 | 0.114 | 0.003 | 2.06e-01 | 0.191 | 0.199 | -0.007 | 7.07e-02 |
ADHD | SBLUP.Inf | LDpred2.MultiPRS | 0.116 | 0.114 | 0.001 | 9.52e-01 | 0.193 | 0.199 | -0.005 | 2.77e-01 |
ADHD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.117 | 0.114 | 0.003 | 4.95e-01 | 0.199 | 0.199 | 0.000 | 9.78e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.115 | 0.114 | 0.000 | 9.85e-01 | 0.195 | 0.199 | -0.004 | 4.14e-01 |
ADHD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.118 | 0.114 | 0.003 | 8.47e-01 | 0.190 | 0.199 | -0.008 | 5.13e-02 |
ADHD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.126 | 0.114 | 0.011 | 5.31e-01 | 0.177 | 0.199 | -0.021 | 2.47e-02 |
ADHD | PRScs.10FCVal | LDpred2.MultiPRS | 0.114 | 0.114 | 0.000 | 9.82e-01 | 0.207 | 0.199 | 0.009 | 2.30e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.114 | 0.118 | -0.004 | 8.32e-01 | 0.199 | 0.198 | 0.000 | 8.11e-01 |
ADHD | LDpred2.Inf | LDpred2.10FCVal | 0.115 | 0.118 | -0.003 | 2.27e-01 | 0.194 | 0.198 | -0.004 | 4.05e-01 |
ADHD | PRScs.10FCVal | LDpred2.10FCVal | 0.114 | 0.118 | -0.004 | 2.58e-01 | 0.207 | 0.198 | 0.009 | 2.22e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.091 | 0.118 | -0.027 | 2.98e-03 | 0.155 | 0.198 | -0.043 | 1.82e-02 |
ADHD | lassosum.PseudoVal | LDpred2.10FCVal | 0.077 | 0.118 | -0.042 | 1.44e-04 | 0.118 | 0.198 | -0.080 | 1.91e-04 |
ADHD | LDpred2.10FCVal | LDpred2.10FCVal | 0.118 | 0.118 | 0.000 | 1.00e+00 | 0.198 | 0.198 | 0.000 | 1.00e+00 |
ADHD | PRScs.PseudoVal | LDpred2.10FCVal | 0.109 | 0.118 | -0.009 | 1.19e-02 | 0.189 | 0.198 | -0.009 | 1.86e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.117 | 0.118 | -0.001 | 9.46e-01 | 0.191 | 0.198 | -0.007 | 9.43e-02 |
ADHD | pT+clump.10FCVal | LDpred2.10FCVal | 0.094 | 0.118 | -0.024 | 3.71e-03 | 0.150 | 0.198 | -0.049 | 3.13e-03 |
ADHD | All.MultiPRS | LDpred2.10FCVal | 0.124 | 0.118 | 0.006 | 7.53e-01 | 0.173 | 0.198 | -0.025 | 5.33e-02 |
ADHD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.126 | 0.118 | 0.007 | 6.78e-01 | 0.177 | 0.198 | -0.021 | 2.60e-02 |
ADHD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.127 | 0.118 | 0.008 | 7.67e-02 | 0.181 | 0.198 | -0.017 | 6.92e-02 |
ADHD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.096 | 0.118 | -0.022 | 2.05e-01 | 0.162 | 0.198 | -0.037 | 2.06e-02 |
ADHD | lassosum.MultiPRS | LDpred2.10FCVal | 0.117 | 0.118 | -0.001 | 9.49e-01 | 0.199 | 0.198 | 0.000 | 9.51e-01 |
ADHD | PRScs.MultiPRS | LDpred2.10FCVal | 0.113 | 0.118 | -0.005 | 7.62e-01 | 0.203 | 0.198 | 0.004 | 5.11e-01 |
ADHD | LDpred1.Inf | LDpred2.10FCVal | 0.115 | 0.118 | -0.003 | 3.30e-01 | 0.191 | 0.198 | -0.007 | 2.54e-01 |
ADHD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.119 | 0.118 | 0.000 | 9.14e-01 | 0.182 | 0.198 | -0.016 | 8.11e-02 |
ADHD | SBLUP.Inf | LDpred2.10FCVal | 0.116 | 0.118 | -0.003 | 3.24e-01 | 0.193 | 0.198 | -0.005 | 3.26e-01 |
ADHD | lassosum.10FCVal | LDpred2.10FCVal | 0.118 | 0.118 | -0.001 | 8.85e-01 | 0.194 | 0.198 | -0.005 | 5.65e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.115 | 0.118 | -0.003 | 1.74e-01 | 0.195 | 0.198 | -0.003 | 4.89e-01 |
ADHD | LDpred1.10FCVal | LDpred2.10FCVal | 0.118 | 0.118 | 0.000 | 8.73e-01 | 0.190 | 0.198 | -0.008 | 6.43e-02 |
ADHD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.114 | 0.118 | -0.004 | 4.45e-01 | 0.184 | 0.198 | -0.015 | 1.65e-01 |
ADHD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.119 | 0.115 | 0.004 | 3.67e-01 | 0.182 | 0.195 | -0.013 | 1.56e-01 |
ADHD | PRScs.PseudoVal | LDpred2.PseudoVal | 0.109 | 0.115 | -0.006 | 2.03e-01 | 0.189 | 0.195 | -0.006 | 5.23e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.114 | 0.115 | 0.000 | 9.85e-01 | 0.199 | 0.195 | 0.004 | 4.14e-01 |
ADHD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.126 | 0.115 | 0.011 | 5.40e-01 | 0.177 | 0.195 | -0.017 | 1.19e-01 |
ADHD | PRScs.10FCVal | LDpred2.PseudoVal | 0.114 | 0.115 | -0.001 | 8.74e-01 | 0.207 | 0.195 | 0.012 | 1.69e-01 |
ADHD | All.MultiPRS | LDpred2.PseudoVal | 0.124 | 0.115 | 0.009 | 6.11e-01 | 0.173 | 0.195 | -0.022 | 1.20e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.114 | 0.115 | -0.001 | 9.08e-01 | 0.184 | 0.195 | -0.011 | 3.20e-01 |
ADHD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.118 | 0.115 | 0.003 | 1.74e-01 | 0.198 | 0.195 | 0.003 | 4.89e-01 |
ADHD | LDpred1.Inf | LDpred2.PseudoVal | 0.115 | 0.115 | 0.001 | 7.82e-01 | 0.191 | 0.195 | -0.003 | 4.09e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.091 | 0.115 | -0.024 | 1.41e-02 | 0.155 | 0.195 | -0.040 | 3.96e-02 |
ADHD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.077 | 0.115 | -0.038 | 2.13e-03 | 0.118 | 0.195 | -0.077 | 1.69e-03 |
ADHD | LDpred2.Inf | LDpred2.PseudoVal | 0.115 | 0.115 | 0.001 | 5.56e-01 | 0.194 | 0.195 | 0.000 | 8.30e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.115 | 0.115 | 0.000 | 1.00e+00 | 0.195 | 0.195 | 0.000 | 1.00e+00 |
ADHD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.117 | 0.115 | 0.002 | 8.99e-01 | 0.191 | 0.195 | -0.003 | 5.48e-01 |
ADHD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.094 | 0.115 | -0.021 | 1.31e-02 | 0.150 | 0.195 | -0.045 | 6.74e-03 |
ADHD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.117 | 0.115 | 0.002 | 8.97e-01 | 0.199 | 0.195 | 0.004 | 6.79e-01 |
ADHD | PRScs.MultiPRS | LDpred2.PseudoVal | 0.113 | 0.115 | -0.002 | 9.13e-01 | 0.203 | 0.195 | 0.008 | 3.50e-01 |
ADHD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.127 | 0.115 | 0.012 | 3.93e-02 | 0.181 | 0.195 | -0.014 | 2.31e-01 |
ADHD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.096 | 0.115 | -0.019 | 2.83e-01 | 0.162 | 0.195 | -0.033 | 4.79e-02 |
ADHD | lassosum.10FCVal | LDpred2.PseudoVal | 0.118 | 0.115 | 0.003 | 5.68e-01 | 0.194 | 0.195 | -0.001 | 9.18e-01 |
ADHD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.118 | 0.115 | 0.003 | 3.59e-01 | 0.190 | 0.195 | -0.005 | 4.94e-01 |
ADHD | SBLUP.Inf | LDpred2.PseudoVal | 0.116 | 0.115 | 0.001 | 7.02e-01 | 0.193 | 0.195 | -0.002 | 6.52e-01 |
ADHD | PRScs.10FCVal | LDpred2.Inf | 0.114 | 0.115 | -0.001 | 7.77e-01 | 0.207 | 0.194 | 0.013 | 1.60e-01 |
ADHD | pT+clump.MultiPRS | LDpred2.Inf | 0.096 | 0.115 | -0.020 | 2.69e-01 | 0.162 | 0.194 | -0.033 | 4.47e-02 |
ADHD | LDpred2.Inf | LDpred2.Inf | 0.115 | 0.115 | 0.000 | 1.00e+00 | 0.194 | 0.194 | 0.000 | 1.00e+00 |
ADHD | lassosum.PseudoVal | LDpred2.Inf | 0.077 | 0.115 | -0.039 | 1.92e-03 | 0.118 | 0.194 | -0.076 | 1.88e-03 |
ADHD | LDpred2.MultiPRS | LDpred2.Inf | 0.114 | 0.115 | -0.001 | 9.59e-01 | 0.199 | 0.194 | 0.004 | 3.37e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.Inf | 0.091 | 0.115 | -0.024 | 1.22e-02 | 0.155 | 0.194 | -0.039 | 4.21e-02 |
ADHD | pT+clump.10FCVal | LDpred2.Inf | 0.094 | 0.115 | -0.021 | 8.33e-03 | 0.150 | 0.194 | -0.045 | 5.40e-03 |
ADHD | PRScs.PseudoVal | LDpred2.Inf | 0.109 | 0.115 | -0.006 | 1.62e-01 | 0.189 | 0.194 | -0.005 | 5.52e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.Inf | 0.115 | 0.115 | -0.001 | 5.56e-01 | 0.195 | 0.194 | 0.000 | 8.30e-01 |
ADHD | All.MultiPRS | LDpred2.Inf | 0.124 | 0.115 | 0.008 | 6.34e-01 | 0.173 | 0.194 | -0.022 | 1.24e-01 |
ADHD | SBLUP.Inf | LDpred2.Inf | 0.116 | 0.115 | 0.000 | 9.15e-01 | 0.193 | 0.194 | -0.001 | 6.44e-01 |
ADHD | MegaPRS.MultiPRS | LDpred2.Inf | 0.126 | 0.115 | 0.010 | 5.63e-01 | 0.177 | 0.194 | -0.017 | 1.20e-01 |
ADHD | PRScs.MultiPRS | LDpred2.Inf | 0.113 | 0.115 | -0.003 | 8.87e-01 | 0.203 | 0.194 | 0.008 | 2.97e-01 |
ADHD | lassosum.MultiPRS | LDpred2.Inf | 0.117 | 0.115 | 0.002 | 9.23e-01 | 0.199 | 0.194 | 0.004 | 6.33e-01 |
ADHD | LDpred1.Inf | LDpred2.Inf | 0.115 | 0.115 | 0.000 | 9.83e-01 | 0.191 | 0.194 | -0.003 | 4.62e-01 |
ADHD | MegaPRS.10FCVal | LDpred2.Inf | 0.127 | 0.115 | 0.011 | 4.62e-02 | 0.181 | 0.194 | -0.014 | 2.38e-01 |
ADHD | MegaPRS.PseudoVal | LDpred2.Inf | 0.119 | 0.115 | 0.003 | 4.47e-01 | 0.182 | 0.194 | -0.012 | 1.74e-01 |
ADHD | lassosum.10FCVal | LDpred2.Inf | 0.118 | 0.115 | 0.002 | 6.30e-01 | 0.194 | 0.194 | -0.001 | 9.48e-01 |
ADHD | LDpred2.10FCVal | LDpred2.Inf | 0.118 | 0.115 | 0.003 | 2.27e-01 | 0.198 | 0.194 | 0.004 | 4.05e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.Inf | 0.114 | 0.115 | -0.001 | 8.29e-01 | 0.184 | 0.194 | -0.011 | 3.41e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.Inf | 0.117 | 0.115 | 0.002 | 9.25e-01 | 0.191 | 0.194 | -0.003 | 5.87e-01 |
ADHD | LDpred1.10FCVal | LDpred2.Inf | 0.118 | 0.115 | 0.003 | 4.50e-01 | 0.190 | 0.194 | -0.004 | 5.24e-01 |
ADHD | PRScs.PseudoVal | PRScs.MultiPRS | 0.109 | 0.113 | -0.004 | 8.28e-01 | 0.189 | 0.203 | -0.014 | 8.48e-02 |
ADHD | LDpred2.MultiPRS | PRScs.MultiPRS | 0.114 | 0.113 | 0.002 | 6.20e-01 | 0.199 | 0.203 | -0.004 | 5.34e-01 |
ADHD | LDpred2.Inf | PRScs.MultiPRS | 0.115 | 0.113 | 0.003 | 8.87e-01 | 0.194 | 0.203 | -0.008 | 2.97e-01 |
ADHD | pT+clump.10FCVal | PRScs.MultiPRS | 0.094 | 0.113 | -0.019 | 2.90e-01 | 0.150 | 0.203 | -0.053 | 6.43e-04 |
ADHD | SBayesR.PseudoVal | PRScs.MultiPRS | 0.091 | 0.113 | -0.022 | 2.22e-01 | 0.155 | 0.203 | -0.047 | 1.19e-02 |
ADHD | LDpred2.PseudoVal | PRScs.MultiPRS | 0.115 | 0.113 | 0.002 | 9.13e-01 | 0.195 | 0.203 | -0.008 | 3.50e-01 |
ADHD | LDpred2.10FCVal | PRScs.MultiPRS | 0.118 | 0.113 | 0.005 | 7.62e-01 | 0.198 | 0.203 | -0.004 | 5.11e-01 |
ADHD | PRScs.MultiPRS | PRScs.MultiPRS | 0.113 | 0.113 | 0.000 | 1.00e+00 | 0.203 | 0.203 | 0.000 | 1.00e+00 |
ADHD | LDpred1.MultiPRS | PRScs.MultiPRS | 0.117 | 0.113 | 0.004 | 1.86e-01 | 0.191 | 0.203 | -0.011 | 7.52e-02 |
ADHD | pT+clump.MultiPRS | PRScs.MultiPRS | 0.096 | 0.113 | -0.017 | 3.36e-01 | 0.162 | 0.203 | -0.041 | 6.55e-03 |
ADHD | All.MultiPRS | PRScs.MultiPRS | 0.124 | 0.113 | 0.011 | 5.29e-01 | 0.173 | 0.203 | -0.030 | 3.61e-02 |
ADHD | lassosum.PseudoVal | PRScs.MultiPRS | 0.077 | 0.113 | -0.036 | 4.09e-02 | 0.118 | 0.203 | -0.084 | 8.81e-05 |
ADHD | PRScs.10FCVal | PRScs.MultiPRS | 0.114 | 0.113 | 0.001 | 9.45e-01 | 0.207 | 0.203 | 0.005 | 2.25e-01 |
ADHD | MegaPRS.PseudoVal | PRScs.MultiPRS | 0.119 | 0.113 | 0.006 | 7.40e-01 | 0.182 | 0.203 | -0.020 | 5.94e-02 |
ADHD | lassosum.MultiPRS | PRScs.MultiPRS | 0.117 | 0.113 | 0.004 | 2.87e-01 | 0.199 | 0.203 | -0.004 | 6.24e-01 |
ADHD | MegaPRS.MultiPRS | PRScs.MultiPRS | 0.126 | 0.113 | 0.013 | 4.72e-01 | 0.177 | 0.203 | -0.025 | 1.43e-02 |
ADHD | DBSLMM.PseudoVal | PRScs.MultiPRS | 0.114 | 0.113 | 0.001 | 9.42e-01 | 0.184 | 0.203 | -0.019 | 1.04e-01 |
ADHD | LDpred1.10FCVal | PRScs.MultiPRS | 0.118 | 0.113 | 0.005 | 7.77e-01 | 0.190 | 0.203 | -0.012 | 5.23e-02 |
ADHD | SBLUP.Inf | PRScs.MultiPRS | 0.116 | 0.113 | 0.003 | 8.80e-01 | 0.193 | 0.203 | -0.009 | 1.83e-01 |
ADHD | lassosum.10FCVal | PRScs.MultiPRS | 0.118 | 0.113 | 0.005 | 7.86e-01 | 0.194 | 0.203 | -0.009 | 2.65e-01 |
ADHD | LDpred1.Inf | PRScs.MultiPRS | 0.115 | 0.113 | 0.003 | 8.88e-01 | 0.191 | 0.203 | -0.011 | 1.59e-01 |
ADHD | MegaPRS.10FCVal | PRScs.MultiPRS | 0.127 | 0.113 | 0.014 | 4.35e-01 | 0.181 | 0.203 | -0.022 | 3.62e-02 |
ADHD | PRScs.10FCVal | PRScs.10FCVal | 0.114 | 0.114 | 0.000 | 1.00e+00 | 0.207 | 0.207 | 0.000 | 1.00e+00 |
ADHD | pT+clump.MultiPRS | PRScs.10FCVal | 0.096 | 0.114 | -0.018 | 3.02e-01 | 0.162 | 0.207 | -0.046 | 5.72e-03 |
ADHD | SBayesR.PseudoVal | PRScs.10FCVal | 0.091 | 0.114 | -0.023 | 1.49e-02 | 0.155 | 0.207 | -0.052 | 5.50e-03 |
ADHD | pT+clump.10FCVal | PRScs.10FCVal | 0.094 | 0.114 | -0.020 | 2.32e-02 | 0.150 | 0.207 | -0.058 | 8.98e-04 |
ADHD | LDpred2.MultiPRS | PRScs.10FCVal | 0.114 | 0.114 | 0.000 | 9.82e-01 | 0.199 | 0.207 | -0.009 | 2.30e-01 |
ADHD | LDpred2.10FCVal | PRScs.10FCVal | 0.118 | 0.114 | 0.004 | 2.58e-01 | 0.198 | 0.207 | -0.009 | 2.22e-01 |
ADHD | SBLUP.Inf | PRScs.10FCVal | 0.116 | 0.114 | 0.001 | 7.52e-01 | 0.193 | 0.207 | -0.014 | 1.14e-01 |
ADHD | PRScs.PseudoVal | PRScs.10FCVal | 0.109 | 0.114 | -0.005 | 2.31e-01 | 0.189 | 0.207 | -0.018 | 2.78e-02 |
ADHD | LDpred2.PseudoVal | PRScs.10FCVal | 0.115 | 0.114 | 0.001 | 8.74e-01 | 0.195 | 0.207 | -0.012 | 1.69e-01 |
ADHD | LDpred2.Inf | PRScs.10FCVal | 0.115 | 0.114 | 0.001 | 7.77e-01 | 0.194 | 0.207 | -0.013 | 1.60e-01 |
ADHD | LDpred1.Inf | PRScs.10FCVal | 0.115 | 0.114 | 0.001 | 7.83e-01 | 0.191 | 0.207 | -0.016 | 8.31e-02 |
ADHD | MegaPRS.MultiPRS | PRScs.10FCVal | 0.126 | 0.114 | 0.011 | 5.11e-01 | 0.177 | 0.207 | -0.030 | 6.27e-03 |
ADHD | PRScs.MultiPRS | PRScs.10FCVal | 0.113 | 0.114 | -0.001 | 9.45e-01 | 0.203 | 0.207 | -0.005 | 2.25e-01 |
ADHD | lassosum.MultiPRS | PRScs.10FCVal | 0.117 | 0.114 | 0.003 | 8.65e-01 | 0.199 | 0.207 | -0.009 | 3.60e-01 |
ADHD | DBSLMM.PseudoVal | PRScs.10FCVal | 0.114 | 0.114 | 0.000 | 9.91e-01 | 0.184 | 0.207 | -0.024 | 4.81e-02 |
ADHD | MegaPRS.10FCVal | PRScs.10FCVal | 0.127 | 0.114 | 0.013 | 2.15e-02 | 0.181 | 0.207 | -0.027 | 1.47e-02 |
ADHD | MegaPRS.PseudoVal | PRScs.10FCVal | 0.119 | 0.114 | 0.005 | 4.17e-01 | 0.182 | 0.207 | -0.025 | 2.81e-02 |
ADHD | lassosum.10FCVal | PRScs.10FCVal | 0.118 | 0.114 | 0.004 | 4.53e-01 | 0.194 | 0.207 | -0.014 | 1.61e-01 |
ADHD | All.MultiPRS | PRScs.10FCVal | 0.124 | 0.114 | 0.010 | 5.82e-01 | 0.173 | 0.207 | -0.034 | 1.86e-02 |
ADHD | lassosum.PseudoVal | PRScs.10FCVal | 0.077 | 0.114 | -0.038 | 3.37e-04 | 0.118 | 0.207 | -0.089 | 1.61e-05 |
ADHD | LDpred1.MultiPRS | PRScs.10FCVal | 0.117 | 0.114 | 0.003 | 8.66e-01 | 0.191 | 0.207 | -0.016 | 2.94e-02 |
ADHD | LDpred1.10FCVal | PRScs.10FCVal | 0.118 | 0.114 | 0.004 | 2.94e-01 | 0.190 | 0.207 | -0.017 | 1.79e-02 |
ADHD | LDpred2.MultiPRS | PRScs.PseudoVal | 0.114 | 0.109 | 0.005 | 7.58e-01 | 0.199 | 0.189 | 0.009 | 1.72e-01 |
ADHD | PRScs.10FCVal | PRScs.PseudoVal | 0.114 | 0.109 | 0.005 | 2.31e-01 | 0.207 | 0.189 | 0.018 | 2.78e-02 |
ADHD | pT+clump.10FCVal | PRScs.PseudoVal | 0.094 | 0.109 | -0.015 | 8.48e-02 | 0.150 | 0.189 | -0.040 | 2.15e-02 |
ADHD | LDpred2.PseudoVal | PRScs.PseudoVal | 0.115 | 0.109 | 0.006 | 2.03e-01 | 0.195 | 0.189 | 0.006 | 5.23e-01 |
ADHD | LDpred2.Inf | PRScs.PseudoVal | 0.115 | 0.109 | 0.006 | 1.62e-01 | 0.194 | 0.189 | 0.005 | 5.52e-01 |
ADHD | pT+clump.MultiPRS | PRScs.PseudoVal | 0.096 | 0.109 | -0.013 | 4.58e-01 | 0.162 | 0.189 | -0.027 | 9.13e-02 |
ADHD | PRScs.PseudoVal | PRScs.PseudoVal | 0.109 | 0.109 | 0.000 | 1.00e+00 | 0.189 | 0.189 | 0.000 | 1.00e+00 |
ADHD | SBayesR.PseudoVal | PRScs.PseudoVal | 0.091 | 0.109 | -0.018 | 5.71e-02 | 0.155 | 0.189 | -0.034 | 7.14e-02 |
ADHD | lassosum.MultiPRS | PRScs.PseudoVal | 0.117 | 0.109 | 0.008 | 6.49e-01 | 0.199 | 0.189 | 0.010 | 2.76e-01 |
ADHD | LDpred2.10FCVal | PRScs.PseudoVal | 0.118 | 0.109 | 0.009 | 1.19e-02 | 0.198 | 0.189 | 0.009 | 1.86e-01 |
ADHD | MegaPRS.MultiPRS | PRScs.PseudoVal | 0.126 | 0.109 | 0.017 | 3.42e-01 | 0.177 | 0.189 | -0.012 | 2.66e-01 |
ADHD | LDpred1.MultiPRS | PRScs.PseudoVal | 0.117 | 0.109 | 0.008 | 6.49e-01 | 0.191 | 0.189 | 0.002 | 7.43e-01 |
ADHD | SBLUP.Inf | PRScs.PseudoVal | 0.116 | 0.109 | 0.007 | 1.50e-01 | 0.193 | 0.189 | 0.004 | 6.45e-01 |
ADHD | All.MultiPRS | PRScs.PseudoVal | 0.124 | 0.109 | 0.015 | 4.01e-01 | 0.173 | 0.189 | -0.016 | 2.62e-01 |
ADHD | MegaPRS.10FCVal | PRScs.PseudoVal | 0.127 | 0.109 | 0.018 | 1.04e-03 | 0.181 | 0.189 | -0.008 | 4.28e-01 |
ADHD | LDpred1.10FCVal | PRScs.PseudoVal | 0.118 | 0.109 | 0.009 | 1.30e-02 | 0.190 | 0.189 | 0.001 | 8.60e-01 |
ADHD | MegaPRS.PseudoVal | PRScs.PseudoVal | 0.119 | 0.109 | 0.010 | 8.95e-02 | 0.182 | 0.189 | -0.007 | 5.45e-01 |
ADHD | lassosum.10FCVal | PRScs.PseudoVal | 0.118 | 0.109 | 0.009 | 6.51e-02 | 0.194 | 0.189 | 0.005 | 6.05e-01 |
ADHD | PRScs.MultiPRS | PRScs.PseudoVal | 0.113 | 0.109 | 0.004 | 8.28e-01 | 0.203 | 0.189 | 0.014 | 8.48e-02 |
ADHD | LDpred1.Inf | PRScs.PseudoVal | 0.115 | 0.109 | 0.006 | 1.63e-01 | 0.191 | 0.189 | 0.002 | 7.88e-01 |
ADHD | lassosum.PseudoVal | PRScs.PseudoVal | 0.077 | 0.109 | -0.032 | 2.04e-03 | 0.118 | 0.189 | -0.071 | 5.26e-04 |
ADHD | DBSLMM.PseudoVal | PRScs.PseudoVal | 0.114 | 0.109 | 0.005 | 3.84e-01 | 0.184 | 0.189 | -0.006 | 6.32e-01 |
ADHD | All.MultiPRS | pT+clump.MultiPRS | 0.124 | 0.096 | 0.028 | 1.09e-01 | 0.173 | 0.162 | 0.011 | 5.51e-01 |
ADHD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.114 | 0.096 | 0.019 | 2.92e-01 | 0.199 | 0.162 | 0.037 | 1.98e-02 |
ADHD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.117 | 0.096 | 0.021 | 2.30e-01 | 0.191 | 0.162 | 0.030 | 5.96e-02 |
ADHD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.094 | 0.096 | -0.002 | 9.14e-01 | 0.150 | 0.162 | -0.012 | 9.24e-02 |
ADHD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.117 | 0.096 | 0.021 | 2.29e-01 | 0.199 | 0.162 | 0.037 | 1.07e-02 |
ADHD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.115 | 0.096 | 0.019 | 2.83e-01 | 0.195 | 0.162 | 0.033 | 4.79e-02 |
ADHD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.118 | 0.096 | 0.022 | 2.12e-01 | 0.190 | 0.162 | 0.029 | 7.00e-02 |
ADHD | SBLUP.Inf | pT+clump.MultiPRS | 0.116 | 0.096 | 0.020 | 2.65e-01 | 0.193 | 0.162 | 0.031 | 4.41e-02 |
ADHD | lassosum.10FCVal | pT+clump.MultiPRS | 0.118 | 0.096 | 0.022 | 2.17e-01 | 0.194 | 0.162 | 0.032 | 4.00e-02 |
ADHD | PRScs.MultiPRS | pT+clump.MultiPRS | 0.113 | 0.096 | 0.017 | 3.36e-01 | 0.203 | 0.162 | 0.041 | 6.55e-03 |
ADHD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.118 | 0.096 | 0.022 | 2.05e-01 | 0.198 | 0.162 | 0.037 | 2.06e-02 |
ADHD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.119 | 0.096 | 0.023 | 1.95e-01 | 0.182 | 0.162 | 0.021 | 2.37e-01 |
ADHD | PRScs.PseudoVal | pT+clump.MultiPRS | 0.109 | 0.096 | 0.013 | 4.58e-01 | 0.189 | 0.162 | 0.027 | 9.13e-02 |
ADHD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.077 | 0.096 | -0.019 | 2.74e-01 | 0.118 | 0.162 | -0.044 | 6.43e-02 |
ADHD | LDpred2.Inf | pT+clump.MultiPRS | 0.115 | 0.096 | 0.020 | 2.69e-01 | 0.194 | 0.162 | 0.033 | 4.47e-02 |
ADHD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.127 | 0.096 | 0.031 | 8.07e-02 | 0.181 | 0.162 | 0.019 | 2.29e-01 |
ADHD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.126 | 0.096 | 0.030 | 9.40e-02 | 0.177 | 0.162 | 0.016 | 3.25e-01 |
ADHD | PRScs.10FCVal | pT+clump.MultiPRS | 0.114 | 0.096 | 0.018 | 3.02e-01 | 0.207 | 0.162 | 0.046 | 5.72e-03 |
ADHD | LDpred1.Inf | pT+clump.MultiPRS | 0.115 | 0.096 | 0.019 | 2.70e-01 | 0.191 | 0.162 | 0.030 | 6.84e-02 |
ADHD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.096 | 0.096 | 0.000 | 1.00e+00 | 0.162 | 0.162 | 0.000 | 1.00e+00 |
ADHD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.114 | 0.096 | 0.018 | 3.01e-01 | 0.184 | 0.162 | 0.022 | 1.60e-01 |
ADHD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.091 | 0.096 | -0.005 | 7.87e-01 | 0.155 | 0.162 | -0.006 | 7.69e-01 |
ADHD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.114 | 0.094 | 0.021 | 2.50e-01 | 0.199 | 0.150 | 0.049 | 2.99e-03 |
ADHD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.115 | 0.094 | 0.021 | 1.31e-02 | 0.195 | 0.150 | 0.045 | 6.74e-03 |
ADHD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.096 | 0.094 | 0.002 | 9.14e-01 | 0.162 | 0.150 | 0.012 | 9.24e-02 |
ADHD | SBLUP.Inf | pT+clump.10FCVal | 0.116 | 0.094 | 0.022 | 5.10e-03 | 0.193 | 0.150 | 0.044 | 4.41e-03 |
ADHD | PRScs.PseudoVal | pT+clump.10FCVal | 0.109 | 0.094 | 0.015 | 8.48e-02 | 0.189 | 0.150 | 0.040 | 2.15e-02 |
ADHD | PRScs.MultiPRS | pT+clump.10FCVal | 0.113 | 0.094 | 0.019 | 2.90e-01 | 0.203 | 0.150 | 0.053 | 6.43e-04 |
ADHD | LDpred2.Inf | pT+clump.10FCVal | 0.115 | 0.094 | 0.021 | 8.33e-03 | 0.194 | 0.150 | 0.045 | 5.40e-03 |
ADHD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.091 | 0.094 | -0.003 | 8.12e-01 | 0.155 | 0.150 | 0.006 | 8.06e-01 |
ADHD | pT+clump.10FCVal | pT+clump.10FCVal | 0.094 | 0.094 | 0.000 | 1.00e+00 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.119 | 0.094 | 0.025 | 4.33e-03 | 0.182 | 0.150 | 0.033 | 6.31e-02 |
ADHD | PRScs.10FCVal | pT+clump.10FCVal | 0.114 | 0.094 | 0.020 | 2.32e-02 | 0.207 | 0.150 | 0.058 | 8.98e-04 |
ADHD | LDpred2.10FCVal | pT+clump.10FCVal | 0.118 | 0.094 | 0.024 | 3.71e-03 | 0.198 | 0.150 | 0.049 | 3.13e-03 |
ADHD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.127 | 0.094 | 0.033 | 1.48e-04 | 0.181 | 0.150 | 0.031 | 7.18e-02 |
ADHD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.117 | 0.094 | 0.023 | 1.95e-01 | 0.191 | 0.150 | 0.042 | 1.01e-02 |
ADHD | lassosum.10FCVal | pT+clump.10FCVal | 0.118 | 0.094 | 0.024 | 2.94e-03 | 0.194 | 0.150 | 0.044 | 5.36e-03 |
ADHD | All.MultiPRS | pT+clump.10FCVal | 0.124 | 0.094 | 0.030 | 9.15e-02 | 0.173 | 0.150 | 0.023 | 2.53e-01 |
ADHD | LDpred1.Inf | pT+clump.10FCVal | 0.115 | 0.094 | 0.021 | 8.52e-03 | 0.191 | 0.150 | 0.042 | 9.67e-03 |
ADHD | LDpred1.10FCVal | pT+clump.10FCVal | 0.118 | 0.094 | 0.024 | 4.01e-03 | 0.190 | 0.150 | 0.041 | 1.34e-02 |
ADHD | lassosum.MultiPRS | pT+clump.10FCVal | 0.117 | 0.094 | 0.023 | 1.95e-01 | 0.199 | 0.150 | 0.049 | 3.02e-03 |
ADHD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.114 | 0.094 | 0.020 | 3.55e-02 | 0.184 | 0.150 | 0.034 | 6.94e-02 |
ADHD | lassosum.PseudoVal | pT+clump.10FCVal | 0.077 | 0.094 | -0.017 | 1.94e-01 | 0.118 | 0.150 | -0.031 | 2.28e-01 |
ADHD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.126 | 0.094 | 0.032 | 7.18e-02 | 0.177 | 0.150 | 0.028 | 1.04e-01 |
ADHD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.091 | 0.091 | 0.000 | 1.00e+00 | 0.155 | 0.155 | 0.000 | 1.00e+00 |
ADHD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.114 | 0.091 | 0.023 | 1.89e-01 | 0.199 | 0.155 | 0.043 | 1.75e-02 |
ADHD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.117 | 0.091 | 0.026 | 1.44e-01 | 0.191 | 0.155 | 0.036 | 5.87e-02 |
ADHD | PRScs.PseudoVal | SBayesR.PseudoVal | 0.109 | 0.091 | 0.018 | 5.71e-02 | 0.189 | 0.155 | 0.034 | 7.14e-02 |
ADHD | All.MultiPRS | SBayesR.PseudoVal | 0.124 | 0.091 | 0.033 | 6.34e-02 | 0.173 | 0.155 | 0.018 | 3.90e-01 |
ADHD | PRScs.MultiPRS | SBayesR.PseudoVal | 0.113 | 0.091 | 0.022 | 2.22e-01 | 0.203 | 0.155 | 0.047 | 1.19e-02 |
ADHD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.118 | 0.091 | 0.027 | 2.98e-03 | 0.198 | 0.155 | 0.043 | 1.82e-02 |
ADHD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.119 | 0.091 | 0.028 | 6.08e-03 | 0.182 | 0.155 | 0.027 | 1.77e-01 |
ADHD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.094 | 0.091 | 0.003 | 8.12e-01 | 0.150 | 0.155 | -0.006 | 8.06e-01 |
ADHD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.077 | 0.091 | -0.015 | 2.23e-01 | 0.118 | 0.155 | -0.037 | 1.22e-01 |
ADHD | LDpred2.Inf | SBayesR.PseudoVal | 0.115 | 0.091 | 0.024 | 1.22e-02 | 0.194 | 0.155 | 0.039 | 4.21e-02 |
ADHD | PRScs.10FCVal | SBayesR.PseudoVal | 0.114 | 0.091 | 0.023 | 1.49e-02 | 0.207 | 0.155 | 0.052 | 5.50e-03 |
ADHD | SBLUP.Inf | SBayesR.PseudoVal | 0.116 | 0.091 | 0.024 | 1.18e-02 | 0.193 | 0.155 | 0.038 | 4.90e-02 |
ADHD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.117 | 0.091 | 0.026 | 1.45e-01 | 0.199 | 0.155 | 0.044 | 1.99e-02 |
ADHD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.115 | 0.091 | 0.024 | 1.41e-02 | 0.195 | 0.155 | 0.040 | 3.96e-02 |
ADHD | lassosum.10FCVal | SBayesR.PseudoVal | 0.118 | 0.091 | 0.027 | 5.38e-03 | 0.194 | 0.155 | 0.039 | 4.15e-02 |
ADHD | LDpred1.Inf | SBayesR.PseudoVal | 0.115 | 0.091 | 0.024 | 1.53e-02 | 0.191 | 0.155 | 0.036 | 7.16e-02 |
ADHD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.096 | 0.091 | 0.005 | 7.87e-01 | 0.162 | 0.155 | 0.006 | 7.69e-01 |
ADHD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.114 | 0.091 | 0.023 | 2.17e-02 | 0.184 | 0.155 | 0.028 | 1.54e-01 |
ADHD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.126 | 0.091 | 0.034 | 4.89e-02 | 0.177 | 0.155 | 0.022 | 2.52e-01 |
ADHD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.127 | 0.091 | 0.036 | 2.09e-04 | 0.181 | 0.155 | 0.026 | 1.84e-01 |
ADHD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.118 | 0.091 | 0.027 | 4.67e-03 | 0.190 | 0.155 | 0.035 | 6.47e-02 |
ADHD | All.MultiPRS | SBLUP.Inf | 0.124 | 0.116 | 0.008 | 6.40e-01 | 0.173 | 0.193 | -0.020 | 1.50e-01 |
ADHD | LDpred2.MultiPRS | SBLUP.Inf | 0.114 | 0.116 | -0.001 | 9.52e-01 | 0.199 | 0.193 | 0.005 | 2.77e-01 |
ADHD | PRScs.PseudoVal | SBLUP.Inf | 0.109 | 0.116 | -0.007 | 1.50e-01 | 0.189 | 0.193 | -0.004 | 6.45e-01 |
ADHD | lassosum.PseudoVal | SBLUP.Inf | 0.077 | 0.116 | -0.039 | 1.86e-03 | 0.118 | 0.193 | -0.075 | 2.13e-03 |
ADHD | LDpred2.Inf | SBLUP.Inf | 0.115 | 0.116 | 0.000 | 9.15e-01 | 0.194 | 0.193 | 0.001 | 6.44e-01 |
ADHD | MegaPRS.PseudoVal | SBLUP.Inf | 0.119 | 0.116 | 0.003 | 4.78e-01 | 0.182 | 0.193 | -0.011 | 2.30e-01 |
ADHD | pT+clump.10FCVal | SBLUP.Inf | 0.094 | 0.116 | -0.022 | 5.10e-03 | 0.150 | 0.193 | -0.044 | 4.41e-03 |
ADHD | lassosum.MultiPRS | SBLUP.Inf | 0.117 | 0.116 | 0.002 | 9.30e-01 | 0.199 | 0.193 | 0.006 | 5.12e-01 |
ADHD | LDpred2.PseudoVal | SBLUP.Inf | 0.115 | 0.116 | -0.001 | 7.02e-01 | 0.195 | 0.193 | 0.002 | 6.52e-01 |
ADHD | LDpred1.MultiPRS | SBLUP.Inf | 0.117 | 0.116 | 0.002 | 9.32e-01 | 0.191 | 0.193 | -0.002 | 7.46e-01 |
ADHD | MegaPRS.10FCVal | SBLUP.Inf | 0.127 | 0.116 | 0.011 | 4.71e-02 | 0.181 | 0.193 | -0.012 | 2.76e-01 |
ADHD | pT+clump.MultiPRS | SBLUP.Inf | 0.096 | 0.116 | -0.020 | 2.65e-01 | 0.162 | 0.193 | -0.031 | 4.41e-02 |
ADHD | DBSLMM.PseudoVal | SBLUP.Inf | 0.114 | 0.116 | -0.001 | 8.13e-01 | 0.184 | 0.193 | -0.010 | 4.07e-01 |
ADHD | LDpred2.10FCVal | SBLUP.Inf | 0.118 | 0.116 | 0.003 | 3.24e-01 | 0.198 | 0.193 | 0.005 | 3.26e-01 |
ADHD | LDpred1.Inf | SBLUP.Inf | 0.115 | 0.116 | 0.000 | 9.24e-01 | 0.191 | 0.193 | -0.002 | 6.92e-01 |
ADHD | SBayesR.PseudoVal | SBLUP.Inf | 0.091 | 0.116 | -0.024 | 1.18e-02 | 0.155 | 0.193 | -0.038 | 4.90e-02 |
ADHD | SBLUP.Inf | SBLUP.Inf | 0.116 | 0.116 | 0.000 | 1.00e+00 | 0.193 | 0.193 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.MultiPRS | SBLUP.Inf | 0.126 | 0.116 | 0.010 | 5.69e-01 | 0.177 | 0.193 | -0.016 | 1.42e-01 |
ADHD | PRScs.10FCVal | SBLUP.Inf | 0.114 | 0.116 | -0.001 | 7.52e-01 | 0.207 | 0.193 | 0.014 | 1.14e-01 |
ADHD | LDpred1.10FCVal | SBLUP.Inf | 0.118 | 0.116 | 0.002 | 4.70e-01 | 0.190 | 0.193 | -0.003 | 6.49e-01 |
ADHD | lassosum.10FCVal | SBLUP.Inf | 0.118 | 0.116 | 0.002 | 6.31e-01 | 0.194 | 0.193 | 0.001 | 9.39e-01 |
ADHD | PRScs.MultiPRS | SBLUP.Inf | 0.113 | 0.116 | -0.003 | 8.80e-01 | 0.203 | 0.193 | 0.009 | 1.83e-01 |
Show differences between methods
Show results
Show UKBB results table
Phenotype | Method | Model | IndepVal_R | IndepVal_R_SE | IndepVal_OR | IndepVal_LowCI | IndepVal_HighCI | Indep_LiabR2 | Indep_AUC | IndepVal_pval |
---|---|---|---|---|---|---|---|---|---|---|
Depression | All | MultiPRS | 0.148 | 0.010 | 1.353 | 1.299 | 1.409 | 0.026 | 0.583 | 4.58e-50 |
Depression | DBSLMM | PseudoVal | 0.140 | 0.010 | 1.330 | 1.277 | 1.385 | 0.024 | 0.579 | 7.03e-45 |
Depression | lassosum | MultiPRS | 0.144 | 0.010 | 1.342 | 1.289 | 1.398 | 0.025 | 0.581 | 1.32e-47 |
Depression | lassosum | PseudoVal | 0.112 | 0.010 | 1.255 | 1.206 | 1.306 | 0.015 | 0.563 | 2.28e-29 |
Depression | lassosum | 10FCVal | 0.143 | 0.010 | 1.339 | 1.286 | 1.394 | 0.025 | 0.580 | 7.56e-47 |
Depression | MegaPRS | MultiPRS | 0.148 | 0.010 | 1.352 | 1.298 | 1.407 | 0.026 | 0.583 | 9.16e-50 |
Depression | MegaPRS | PseudoVal | 0.147 | 0.010 | 1.350 | 1.296 | 1.405 | 0.026 | 0.582 | 2.51e-49 |
Depression | MegaPRS | 10FCVal | 0.147 | 0.010 | 1.351 | 1.298 | 1.407 | 0.026 | 0.582 | 1.17e-49 |
Depression | LDpred1 | MultiPRS | 0.139 | 0.010 | 1.328 | 1.275 | 1.382 | 0.023 | 0.578 | 2.40e-44 |
Depression | LDpred1 | Inf | 0.137 | 0.010 | 1.321 | 1.269 | 1.375 | 0.022 | 0.577 | 7.76e-43 |
Depression | LDpred1 | 10FCVal | 0.140 | 0.010 | 1.329 | 1.277 | 1.384 | 0.023 | 0.578 | 9.24e-45 |
Depression | LDpred2 | MultiPRS | 0.143 | 0.010 | 1.339 | 1.286 | 1.394 | 0.025 | 0.581 | 6.03e-47 |
Depression | LDpred2 | 10FCVal | 0.140 | 0.010 | 1.330 | 1.278 | 1.385 | 0.024 | 0.579 | 6.24e-45 |
Depression | LDpred2 | PseudoVal | 0.140 | 0.010 | 1.330 | 1.277 | 1.385 | 0.024 | 0.579 | 6.69e-45 |
Depression | LDpred2 | Inf | 0.138 | 0.010 | 1.324 | 1.272 | 1.379 | 0.023 | 0.578 | 1.29e-43 |
Depression | pT+clump | MultiPRS | 0.130 | 0.010 | 1.303 | 1.251 | 1.356 | 0.020 | 0.573 | 5.91e-39 |
Depression | pT+clump | 10FCVal | 0.120 | 0.010 | 1.275 | 1.225 | 1.327 | 0.017 | 0.566 | 2.98e-33 |
Depression | SBayesR | PseudoVal | 0.143 | 0.010 | 1.337 | 1.284 | 1.392 | 0.024 | 0.581 | 1.57e-46 |
Depression | SBLUP | Inf | 0.137 | 0.010 | 1.323 | 1.271 | 1.377 | 0.023 | 0.578 | 2.36e-43 |
Intelligence | All | MultiPRS | 0.098 | 0.010 | NA | NA | NA | NA | NA | 6.53e-23 |
Intelligence | DBSLMM | PseudoVal | 0.082 | 0.010 | NA | NA | NA | NA | NA | 2.24e-16 |
Intelligence | lassosum | MultiPRS | 0.099 | 0.010 | NA | NA | NA | NA | NA | 3.12e-23 |
Intelligence | lassosum | PseudoVal | 0.055 | 0.010 | NA | NA | NA | NA | NA | 4.54e-08 |
Intelligence | lassosum | 10FCVal | 0.096 | 0.010 | NA | NA | NA | NA | NA | 1.00e-21 |
Intelligence | MegaPRS | MultiPRS | 0.097 | 0.010 | NA | NA | NA | NA | NA | 2.79e-22 |
Intelligence | MegaPRS | PseudoVal | 0.095 | 0.010 | NA | NA | NA | NA | NA | 2.31e-21 |
Intelligence | MegaPRS | 10FCVal | 0.096 | 0.010 | NA | NA | NA | NA | NA | 1.02e-21 |
Intelligence | LDpred1 | MultiPRS | 0.094 | 0.010 | NA | NA | NA | NA | NA | 3.67e-21 |
Intelligence | LDpred1 | Inf | 0.094 | 0.010 | NA | NA | NA | NA | NA | 6.76e-21 |
Intelligence | LDpred1 | 10FCVal | 0.094 | 0.010 | NA | NA | NA | NA | NA | 5.05e-21 |
Intelligence | LDpred2 | MultiPRS | 0.098 | 0.010 | NA | NA | NA | NA | NA | 8.08e-23 |
Intelligence | LDpred2 | 10FCVal | 0.095 | 0.010 | NA | NA | NA | NA | NA | 1.06e-21 |
Intelligence | LDpred2 | PseudoVal | 0.095 | 0.010 | NA | NA | NA | NA | NA | 1.33e-21 |
Intelligence | LDpred2 | Inf | 0.094 | 0.010 | NA | NA | NA | NA | NA | 2.95e-21 |
Intelligence | pT+clump | MultiPRS | 0.081 | 0.010 | NA | NA | NA | NA | NA | 3.56e-16 |
Intelligence | pT+clump | 10FCVal | 0.074 | 0.010 | NA | NA | NA | NA | NA | 1.23e-13 |
Intelligence | SBayesR | PseudoVal | 0.090 | 0.010 | NA | NA | NA | NA | NA | 1.67e-19 |
Intelligence | SBLUP | Inf | 0.094 | 0.010 | NA | NA | NA | NA | NA | 6.50e-21 |
Height | All | MultiPRS | 0.361 | 0.009 | NA | NA | NA | NA | NA | 1.21e-304 |
Height | DBSLMM | PseudoVal | 0.324 | 0.009 | NA | NA | NA | NA | NA | 4.24e-243 |
Height | lassosum | MultiPRS | 0.343 | 0.009 | NA | NA | NA | NA | NA | 5.60e-274 |
Height | lassosum | 10FCVal | 0.340 | 0.009 | NA | NA | NA | NA | NA | 1.76e-268 |
Height | lassosum | PseudoVal | 0.312 | 0.010 | NA | NA | NA | NA | NA | 4.39e-225 |
Height | MegaPRS | MultiPRS | 0.349 | 0.009 | NA | NA | NA | NA | NA | 4.09e-285 |
Height | MegaPRS | PseudoVal | 0.332 | 0.009 | NA | NA | NA | NA | NA | 2.28e-256 |
Height | MegaPRS | 10FCVal | 0.334 | 0.009 | NA | NA | NA | NA | NA | 3.96e-259 |
Height | LDpred1 | MultiPRS | 0.303 | 0.010 | NA | NA | NA | NA | NA | 1.07e-210 |
Height | LDpred1 | Inf | 0.295 | 0.010 | NA | NA | NA | NA | NA | 4.55e-200 |
Height | LDpred1 | 10FCVal | 0.288 | 0.010 | NA | NA | NA | NA | NA | 7.90e-191 |
Height | LDpred2 | MultiPRS | 0.351 | 0.009 | NA | NA | NA | NA | NA | 1.32e-288 |
Height | LDpred2 | 10FCVal | 0.343 | 0.009 | NA | NA | NA | NA | NA | 1.02e-274 |
Height | LDpred2 | PseudoVal | 0.326 | 0.009 | NA | NA | NA | NA | NA | 9.62e-247 |
Height | LDpred2 | Inf | 0.299 | 0.010 | NA | NA | NA | NA | NA | 3.51e-206 |
Height | pT+clump | MultiPRS | 0.314 | 0.009 | NA | NA | NA | NA | NA | 2.69e-227 |
Height | pT+clump | 10FCVal | 0.299 | 0.010 | NA | NA | NA | NA | NA | 2.15e-205 |
Height | SBayesR | PseudoVal | 0.335 | 0.009 | NA | NA | NA | NA | NA | 5.79e-261 |
Height | SBLUP | Inf | 0.292 | 0.010 | NA | NA | NA | NA | NA | 1.00e-195 |
BMI | All | MultiPRS | 0.312 | 0.010 | NA | NA | NA | NA | NA | 4.94e-225 |
BMI | DBSLMM | PseudoVal | 0.283 | 0.010 | NA | NA | NA | NA | NA | 2.24e-183 |
BMI | lassosum | MultiPRS | 0.308 | 0.010 | NA | NA | NA | NA | NA | 3.16e-218 |
BMI | lassosum | PseudoVal | 0.261 | 0.010 | NA | NA | NA | NA | NA | 8.78e-156 |
BMI | lassosum | 10FCVal | 0.300 | 0.010 | NA | NA | NA | NA | NA | 4.96e-207 |
BMI | MegaPRS | MultiPRS | 0.301 | 0.010 | NA | NA | NA | NA | NA | 8.60e-209 |
BMI | MegaPRS | 10FCVal | 0.296 | 0.010 | NA | NA | NA | NA | NA | 1.32e-201 |
BMI | MegaPRS | PseudoVal | 0.280 | 0.010 | NA | NA | NA | NA | NA | 6.02e-180 |
BMI | LDpred1 | MultiPRS | 0.282 | 0.010 | NA | NA | NA | NA | NA | 2.36e-182 |
BMI | LDpred1 | Inf | 0.264 | 0.010 | NA | NA | NA | NA | NA | 8.31e-159 |
BMI | LDpred1 | 10FCVal | 0.273 | 0.010 | NA | NA | NA | NA | NA | 7.02e-170 |
BMI | LDpred2 | MultiPRS | 0.303 | 0.010 | NA | NA | NA | NA | NA | 1.18e-211 |
BMI | LDpred2 | 10FCVal | 0.302 | 0.010 | NA | NA | NA | NA | NA | 5.91e-210 |
BMI | LDpred2 | PseudoVal | 0.243 | 0.010 | NA | NA | NA | NA | NA | 3.13e-134 |
BMI | LDpred2 | Inf | 0.287 | 0.010 | NA | NA | NA | NA | NA | 4.32e-189 |
BMI | pT+clump | MultiPRS | 0.275 | 0.010 | NA | NA | NA | NA | NA | 3.53e-173 |
BMI | pT+clump | 10FCVal | 0.245 | 0.010 | NA | NA | NA | NA | NA | 1.90e-136 |
BMI | SBayesR | PseudoVal | 0.250 | 0.010 | NA | NA | NA | NA | NA | 3.61e-142 |
BMI | SBLUP | Inf | 0.287 | 0.010 | NA | NA | NA | NA | NA | 3.03e-188 |
T2D | All | MultiPRS | 0.248 | 0.010 | 1.724 | 1.649 | 1.803 | 0.064 | 0.651 | 9.63e-140 |
T2D | DBSLMM | PseudoVal | 0.232 | 0.010 | 1.659 | 1.587 | 1.734 | 0.055 | 0.642 | 4.45e-122 |
T2D | lassosum | MultiPRS | 0.243 | 0.010 | 1.702 | 1.629 | 1.780 | 0.061 | 0.649 | 9.58e-135 |
T2D | lassosum | PseudoVal | 0.215 | 0.010 | 1.595 | 1.527 | 1.666 | 0.047 | 0.631 | 1.26e-104 |
T2D | lassosum | 10FCVal | 0.217 | 0.010 | 1.604 | 1.535 | 1.676 | 0.048 | 0.633 | 1.82e-106 |
T2D | MegaPRS | MultiPRS | 0.246 | 0.010 | 1.713 | 1.638 | 1.791 | 0.063 | 0.649 | 1.62e-137 |
T2D | MegaPRS | PseudoVal | 0.243 | 0.010 | 1.702 | 1.629 | 1.780 | 0.061 | 0.648 | 1.14e-134 |
T2D | MegaPRS | 10FCVal | 0.245 | 0.010 | 1.710 | 1.636 | 1.788 | 0.062 | 0.649 | 6.04e-137 |
T2D | LDpred1 | MultiPRS | 0.234 | 0.010 | 1.666 | 1.594 | 1.742 | 0.057 | 0.643 | 2.56e-124 |
T2D | LDpred1 | Inf | 0.181 | 0.010 | 1.482 | 1.419 | 1.547 | 0.033 | 0.612 | 1.86e-74 |
T2D | LDpred1 | 10FCVal | 0.224 | 0.010 | 1.629 | 1.559 | 1.702 | 0.052 | 0.637 | 1.20e-113 |
T2D | LDpred2 | MultiPRS | 0.243 | 0.010 | 1.701 | 1.627 | 1.778 | 0.061 | 0.648 | 3.34e-134 |
T2D | LDpred2 | 10FCVal | 0.239 | 0.010 | 1.684 | 1.611 | 1.760 | 0.059 | 0.646 | 1.27e-129 |
T2D | LDpred2 | PseudoVal | 0.229 | 0.010 | 1.650 | 1.578 | 1.724 | 0.054 | 0.640 | 1.41e-119 |
T2D | LDpred2 | Inf | 0.185 | 0.010 | 1.493 | 1.430 | 1.559 | 0.035 | 0.614 | 2.06e-77 |
T2D | pT+clump | MultiPRS | 0.221 | 0.010 | 1.621 | 1.551 | 1.694 | 0.050 | 0.636 | 4.64e-111 |
T2D | pT+clump | 10FCVal | 0.174 | 0.010 | 1.460 | 1.398 | 1.525 | 0.031 | 0.608 | 4.30e-69 |
T2D | SBayesR | PseudoVal | 0.236 | 0.010 | 1.673 | 1.601 | 1.749 | 0.057 | 0.645 | 2.02e-126 |
T2D | SBLUP | Inf | 0.183 | 0.010 | 1.489 | 1.426 | 1.555 | 0.034 | 0.613 | 2.23e-76 |
CAD | All | MultiPRS | 0.190 | 0.010 | 1.483 | 1.423 | 1.546 | 0.027 | 0.607 | 2.92e-82 |
CAD | DBSLMM | PseudoVal | 0.163 | 0.010 | 1.396 | 1.341 | 1.454 | 0.020 | 0.592 | 2.21e-60 |
CAD | lassosum | MultiPRS | 0.182 | 0.010 | 1.455 | 1.396 | 1.516 | 0.025 | 0.602 | 6.27e-75 |
CAD | lassosum | PseudoVal | 0.158 | 0.010 | 1.381 | 1.326 | 1.439 | 0.019 | 0.587 | 9.51e-57 |
CAD | lassosum | 10FCVal | 0.171 | 0.010 | 1.420 | 1.363 | 1.479 | 0.022 | 0.595 | 3.71e-66 |
CAD | MegaPRS | MultiPRS | 0.181 | 0.010 | 1.452 | 1.394 | 1.513 | 0.024 | 0.602 | 3.80e-74 |
CAD | MegaPRS | PseudoVal | 0.158 | 0.010 | 1.382 | 1.327 | 1.439 | 0.018 | 0.588 | 1.15e-56 |
CAD | MegaPRS | 10FCVal | 0.177 | 0.010 | 1.439 | 1.381 | 1.499 | 0.023 | 0.599 | 7.86e-71 |
CAD | LDpred1 | MultiPRS | 0.173 | 0.010 | 1.427 | 1.370 | 1.487 | 0.022 | 0.597 | 6.01e-68 |
CAD | LDpred1 | Inf | 0.148 | 0.010 | 1.353 | 1.299 | 1.408 | 0.016 | 0.584 | 5.94e-50 |
CAD | LDpred1 | 10FCVal | 0.171 | 0.010 | 1.422 | 1.365 | 1.481 | 0.022 | 0.596 | 1.02e-66 |
CAD | LDpred2 | MultiPRS | 0.188 | 0.010 | 1.476 | 1.417 | 1.538 | 0.027 | 0.606 | 1.92e-80 |
CAD | LDpred2 | 10FCVal | 0.184 | 0.010 | 1.462 | 1.403 | 1.524 | 0.025 | 0.604 | 7.28e-77 |
CAD | LDpred2 | PseudoVal | 0.060 | 0.010 | 1.127 | 1.084 | 1.173 | 0.003 | 0.531 | 2.24e-09 |
CAD | LDpred2 | Inf | 0.157 | 0.010 | 1.379 | 1.324 | 1.436 | 0.018 | 0.590 | 4.12e-56 |
CAD | pT+clump | MultiPRS | 0.166 | 0.010 | 1.406 | 1.350 | 1.464 | 0.020 | 0.593 | 1.35e-62 |
CAD | pT+clump | 10FCVal | 0.126 | 0.010 | 1.293 | 1.242 | 1.346 | 0.012 | 0.570 | 6.73e-37 |
CAD | SBayesR | PseudoVal | 0.170 | 0.010 | 1.418 | 1.361 | 1.477 | 0.022 | 0.595 | 1.14e-65 |
CAD | SBLUP | Inf | 0.156 | 0.010 | 1.376 | 1.321 | 1.433 | 0.018 | 0.589 | 1.75e-55 |
IBD | All | MultiPRS | 0.159 | 0.010 | 1.609 | 1.511 | 1.712 | 0.059 | 0.663 | 9.34e-58 |
IBD | DBSLMM | PseudoVal | 0.136 | 0.010 | 1.534 | 1.439 | 1.635 | 0.043 | 0.636 | 2.29e-42 |
IBD | lassosum | MultiPRS | 0.148 | 0.010 | 1.573 | 1.477 | 1.676 | 0.051 | 0.650 | 6.17e-50 |
IBD | lassosum | PseudoVal | 0.140 | 0.010 | 1.542 | 1.447 | 1.644 | 0.045 | 0.643 | 1.14e-44 |
IBD | lassosum | 10FCVal | 0.140 | 0.010 | 1.546 | 1.451 | 1.648 | 0.046 | 0.644 | 3.17e-45 |
IBD | MegaPRS | MultiPRS | 0.156 | 0.010 | 1.591 | 1.495 | 1.693 | 0.056 | 0.660 | 2.81e-55 |
IBD | MegaPRS | PseudoVal | 0.154 | 0.010 | 1.584 | 1.488 | 1.685 | 0.055 | 0.657 | 6.63e-54 |
IBD | MegaPRS | 10FCVal | 0.156 | 0.010 | 1.589 | 1.494 | 1.691 | 0.056 | 0.659 | 2.58e-55 |
IBD | LDpred1 | MultiPRS | 0.138 | 0.010 | 1.555 | 1.457 | 1.658 | 0.044 | 0.639 | 8.27e-44 |
IBD | LDpred1 | Inf | 0.103 | 0.010 | 1.423 | 1.329 | 1.523 | 0.024 | 0.603 | 5.46e-25 |
IBD | LDpred1 | 10FCVal | 0.137 | 0.010 | 1.537 | 1.442 | 1.639 | 0.044 | 0.635 | 4.42e-43 |
IBD | LDpred2 | MultiPRS | 0.150 | 0.010 | 1.581 | 1.484 | 1.684 | 0.053 | 0.651 | 1.35e-51 |
IBD | LDpred2 | 10FCVal | 0.149 | 0.010 | 1.576 | 1.479 | 1.678 | 0.052 | 0.651 | 7.24e-51 |
IBD | LDpred2 | PseudoVal | 0.145 | 0.010 | 1.561 | 1.465 | 1.663 | 0.049 | 0.649 | 2.45e-48 |
IBD | LDpred2 | Inf | 0.100 | 0.010 | 1.414 | 1.320 | 1.515 | 0.023 | 0.601 | 9.32e-24 |
IBD | pT+clump | MultiPRS | 0.136 | 0.010 | 1.544 | 1.447 | 1.647 | 0.043 | 0.634 | 1.70e-42 |
IBD | pT+clump | 10FCVal | 0.109 | 0.010 | 1.438 | 1.346 | 1.537 | 0.027 | 0.606 | 1.29e-27 |
IBD | SBayesR | PseudoVal | 0.143 | 0.010 | 1.547 | 1.453 | 1.647 | 0.048 | 0.647 | 4.88e-47 |
IBD | SBLUP | Inf | 0.102 | 0.010 | 1.421 | 1.327 | 1.521 | 0.024 | 0.601 | 1.35e-24 |
MultiScler | All | MultiPRS | 0.122 | 0.010 | 1.504 | 1.395 | 1.621 | 0.061 | 0.707 | 1.05e-34 |
MultiScler | DBSLMM | PseudoVal | 0.088 | 0.010 | 1.408 | 1.300 | 1.525 | 0.032 | 0.637 | 1.12e-18 |
MultiScler | lassosum | MultiPRS | 0.119 | 0.010 | 1.509 | 1.398 | 1.628 | 0.057 | 0.690 | 1.29e-32 |
MultiScler | lassosum | PseudoVal | 0.102 | 0.010 | 1.442 | 1.335 | 1.558 | 0.043 | 0.674 | 1.23e-24 |
MultiScler | lassosum | 10FCVal | 0.097 | 0.010 | 1.451 | 1.339 | 1.572 | 0.038 | 0.667 | 3.71e-22 |
MultiScler | MegaPRS | MultiPRS | 0.119 | 0.010 | 1.493 | 1.386 | 1.608 | 0.058 | 0.705 | 8.18e-33 |
MultiScler | MegaPRS | PseudoVal | 0.116 | 0.010 | 1.497 | 1.389 | 1.612 | 0.055 | 0.700 | 1.86e-31 |
MultiScler | MegaPRS | 10FCVal | 0.115 | 0.010 | 1.481 | 1.375 | 1.595 | 0.054 | 0.702 | 9.95e-31 |
MultiScler | LDpred1 | MultiPRS | 0.096 | 0.010 | 1.455 | 1.342 | 1.577 | 0.037 | 0.664 | 8.91e-22 |
MultiScler | LDpred1 | Inf | 0.078 | 0.010 | 1.435 | 1.308 | 1.573 | 0.025 | 0.627 | 4.26e-15 |
MultiScler | LDpred1 | 10FCVal | 0.096 | 0.010 | 1.434 | 1.325 | 1.552 | 0.037 | 0.661 | 1.02e-21 |
MultiScler | LDpred2 | MultiPRS | 0.119 | 0.010 | 1.497 | 1.389 | 1.614 | 0.058 | 0.697 | 7.03e-33 |
MultiScler | LDpred2 | 10FCVal | 0.108 | 0.010 | 1.460 | 1.353 | 1.576 | 0.047 | 0.686 | 3.31e-27 |
MultiScler | LDpred2 | PseudoVal | 0.110 | 0.010 | 1.475 | 1.366 | 1.593 | 0.050 | 0.692 | 1.64e-28 |
MultiScler | LDpred2 | Inf | 0.076 | 0.010 | 1.426 | 1.300 | 1.565 | 0.024 | 0.632 | 2.04e-14 |
MultiScler | pT+clump | MultiPRS | 0.108 | 0.010 | 1.500 | 1.386 | 1.624 | 0.048 | 0.678 | 1.73e-27 |
MultiScler | pT+clump | 10FCVal | 0.092 | 0.010 | 1.459 | 1.342 | 1.587 | 0.034 | 0.630 | 3.25e-20 |
MultiScler | SBayesR | PseudoVal | 0.083 | 0.010 | 1.426 | 1.307 | 1.555 | 0.028 | 0.640 | 9.20e-17 |
MultiScler | SBLUP | Inf | 0.076 | 0.010 | 1.422 | 1.296 | 1.561 | 0.023 | 0.630 | 3.58e-14 |
RheuArth | All | MultiPRS | 0.189 | 0.010 | 1.649 | 1.557 | 1.746 | 0.069 | 0.668 | 2.16e-81 |
RheuArth | DBSLMM | PseudoVal | 0.129 | 0.010 | 1.454 | 1.370 | 1.542 | 0.032 | 0.613 | 1.33e-38 |
RheuArth | lassosum | MultiPRS | 0.146 | 0.010 | 1.516 | 1.428 | 1.609 | 0.041 | 0.637 | 4.89e-49 |
RheuArth | lassosum | PseudoVal | 0.114 | 0.010 | 1.431 | 1.341 | 1.526 | 0.025 | 0.614 | 2.54e-30 |
RheuArth | lassosum | 10FCVal | 0.138 | 0.010 | 1.481 | 1.396 | 1.571 | 0.036 | 0.630 | 9.72e-44 |
RheuArth | MegaPRS | MultiPRS | 0.158 | 0.010 | 1.559 | 1.470 | 1.654 | 0.048 | 0.647 | 3.63e-57 |
RheuArth | MegaPRS | PseudoVal | 0.145 | 0.010 | 1.499 | 1.414 | 1.589 | 0.040 | 0.638 | 3.61e-48 |
RheuArth | MegaPRS | 10FCVal | 0.162 | 0.010 | 1.570 | 1.480 | 1.665 | 0.050 | 0.645 | 1.10e-59 |
RheuArth | LDpred1 | MultiPRS | 0.124 | 0.010 | 1.455 | 1.368 | 1.548 | 0.029 | 0.618 | 2.20e-35 |
RheuArth | LDpred1 | Inf | 0.114 | 0.010 | 1.423 | 1.337 | 1.516 | 0.024 | 0.611 | 3.41e-30 |
RheuArth | LDpred1 | 10FCVal | 0.120 | 0.010 | 1.443 | 1.356 | 1.535 | 0.027 | 0.611 | 1.51e-33 |
RheuArth | LDpred2 | MultiPRS | 0.137 | 0.010 | 1.507 | 1.417 | 1.602 | 0.036 | 0.630 | 5.19e-43 |
RheuArth | LDpred2 | 10FCVal | 0.138 | 0.010 | 1.509 | 1.420 | 1.604 | 0.036 | 0.631 | 7.81e-44 |
RheuArth | LDpred2 | PseudoVal | 0.111 | 0.010 | 1.431 | 1.341 | 1.527 | 0.023 | 0.610 | 9.20e-29 |
RheuArth | LDpred2 | Inf | 0.077 | 0.010 | 1.314 | 1.225 | 1.409 | 0.011 | 0.580 | 1.50e-14 |
RheuArth | pT+clump | MultiPRS | 0.125 | 0.010 | 1.470 | 1.381 | 1.565 | 0.030 | 0.623 | 3.50e-36 |
RheuArth | pT+clump | 10FCVal | 0.104 | 0.010 | 1.396 | 1.309 | 1.489 | 0.020 | 0.610 | 2.25e-25 |
RheuArth | SBayesR | PseudoVal | 0.123 | 0.010 | 1.484 | 1.391 | 1.583 | 0.029 | 0.617 | 3.39e-35 |
RheuArth | SBLUP | Inf | 0.101 | 0.010 | 1.400 | 1.310 | 1.497 | 0.019 | 0.601 | 4.25e-24 |
Prostate_Cancer | All | MultiPRS | 0.183 | 0.010 | 1.639 | 1.544 | 1.739 | 0.172 | 0.705 | 2.36e-76 |
Prostate_Cancer | DBSLMM | PseudoVal | 0.166 | 0.010 | 1.592 | 1.498 | 1.691 | 0.141 | 0.693 | 1.90e-62 |
Prostate_Cancer | lassosum | MultiPRS | 0.179 | 0.010 | 1.642 | 1.547 | 1.744 | 0.165 | 0.704 | 3.84e-73 |
Prostate_Cancer | lassosum | 10FCVal | 0.179 | 0.010 | 1.639 | 1.544 | 1.740 | 0.164 | 0.703 | 4.29e-73 |
Prostate_Cancer | lassosum | PseudoVal | 0.177 | 0.010 | 1.643 | 1.546 | 1.745 | 0.161 | 0.699 | 2.31e-71 |
Prostate_Cancer | MegaPRS | MultiPRS | 0.187 | 0.010 | 1.655 | 1.559 | 1.757 | 0.178 | 0.710 | 5.02e-79 |
Prostate_Cancer | MegaPRS | 10FCVal | 0.186 | 0.010 | 1.654 | 1.559 | 1.756 | 0.176 | 0.708 | 1.57e-78 |
Prostate_Cancer | MegaPRS | PseudoVal | 0.187 | 0.010 | 1.657 | 1.562 | 1.759 | 0.178 | 0.710 | 2.16e-79 |
Prostate_Cancer | LDpred1 | MultiPRS | 0.155 | 0.010 | 1.584 | 1.488 | 1.686 | 0.124 | 0.683 | 3.85e-55 |
Prostate_Cancer | LDpred1 | Inf | 0.133 | 0.010 | 1.528 | 1.432 | 1.630 | 0.092 | 0.656 | 6.33e-41 |
Prostate_Cancer | LDpred1 | 10FCVal | 0.146 | 0.010 | 1.549 | 1.455 | 1.649 | 0.110 | 0.670 | 1.17e-48 |
Prostate_Cancer | LDpred2 | MultiPRS | 0.183 | 0.010 | 1.640 | 1.546 | 1.740 | 0.171 | 0.707 | 3.76e-76 |
Prostate_Cancer | LDpred2 | 10FCVal | 0.187 | 0.010 | 1.656 | 1.561 | 1.756 | 0.178 | 0.712 | 3.46e-79 |
Prostate_Cancer | LDpred2 | PseudoVal | 0.184 | 0.010 | 1.655 | 1.560 | 1.757 | 0.174 | 0.709 | 2.83e-77 |
Prostate_Cancer | LDpred2 | Inf | 0.126 | 0.010 | 1.504 | 1.408 | 1.606 | 0.083 | 0.654 | 7.89e-37 |
Prostate_Cancer | pT+clump | MultiPRS | 0.173 | 0.010 | 1.654 | 1.554 | 1.761 | 0.153 | 0.692 | 8.75e-68 |
Prostate_Cancer | pT+clump | 10FCVal | 0.164 | 0.010 | 1.632 | 1.530 | 1.740 | 0.138 | 0.671 | 4.43e-61 |
Prostate_Cancer | SBayesR | PseudoVal | 0.182 | 0.010 | 1.629 | 1.536 | 1.728 | 0.169 | 0.705 | 2.69e-75 |
Prostate_Cancer | SBLUP | Inf | 0.125 | 0.010 | 1.500 | 1.404 | 1.602 | 0.081 | 0.652 | 3.52e-36 |
Breast_Cancer | All | MultiPRS | 0.216 | 0.010 | 1.661 | 1.583 | 1.743 | 0.092 | 0.655 | 3.95e-106 |
Breast_Cancer | DBSLMM | PseudoVal | 0.207 | 0.010 | 1.629 | 1.552 | 1.710 | 0.083 | 0.647 | 8.47e-97 |
Breast_Cancer | lassosum | MultiPRS | 0.209 | 0.010 | 1.633 | 1.556 | 1.714 | 0.085 | 0.651 | 1.18e-98 |
Breast_Cancer | lassosum | PseudoVal | 0.195 | 0.010 | 1.585 | 1.511 | 1.663 | 0.074 | 0.642 | 4.05e-86 |
Breast_Cancer | lassosum | 10FCVal | 0.196 | 0.010 | 1.591 | 1.517 | 1.670 | 0.075 | 0.643 | 2.16e-87 |
Breast_Cancer | MegaPRS | MultiPRS | 0.215 | 0.010 | 1.656 | 1.578 | 1.738 | 0.090 | 0.654 | 1.21e-104 |
Breast_Cancer | MegaPRS | 10FCVal | 0.213 | 0.010 | 1.649 | 1.572 | 1.730 | 0.089 | 0.654 | 3.12e-103 |
Breast_Cancer | MegaPRS | PseudoVal | 0.213 | 0.010 | 1.648 | 1.571 | 1.730 | 0.089 | 0.653 | 1.01e-102 |
Breast_Cancer | LDpred1 | MultiPRS | 0.200 | 0.010 | 1.606 | 1.530 | 1.685 | 0.078 | 0.644 | 8.04e-91 |
Breast_Cancer | LDpred1 | Inf | 0.157 | 0.010 | 1.464 | 1.394 | 1.537 | 0.048 | 0.612 | 2.27e-56 |
Breast_Cancer | LDpred1 | 10FCVal | 0.188 | 0.010 | 1.567 | 1.493 | 1.645 | 0.069 | 0.635 | 1.28e-80 |
Breast_Cancer | LDpred2 | MultiPRS | 0.213 | 0.010 | 1.648 | 1.570 | 1.729 | 0.089 | 0.654 | 1.02e-102 |
Breast_Cancer | LDpred2 | 10FCVal | 0.208 | 0.010 | 1.629 | 1.553 | 1.709 | 0.085 | 0.650 | 4.03e-98 |
Breast_Cancer | LDpred2 | PseudoVal | 0.204 | 0.010 | 1.615 | 1.539 | 1.694 | 0.081 | 0.647 | 1.83e-94 |
Breast_Cancer | LDpred2 | Inf | 0.157 | 0.010 | 1.462 | 1.393 | 1.535 | 0.048 | 0.614 | 6.11e-56 |
Breast_Cancer | pT+clump | MultiPRS | 0.186 | 0.010 | 1.559 | 1.485 | 1.636 | 0.068 | 0.634 | 1.72e-78 |
Breast_Cancer | pT+clump | 10FCVal | 0.162 | 0.010 | 1.480 | 1.410 | 1.554 | 0.051 | 0.620 | 1.58e-59 |
Breast_Cancer | SBayesR | PseudoVal | 0.207 | 0.010 | 1.628 | 1.551 | 1.708 | 0.084 | 0.649 | 2.54e-97 |
Breast_Cancer | SBLUP | Inf | 0.154 | 0.010 | 1.455 | 1.386 | 1.527 | 0.046 | 0.611 | 2.73e-54 |
Show results compared to pT+clump
Show difference results table
Phenotype | Model 1 Test | Model 2 Test | Model 1 IndepVal R | Model 2 IndepVal R | IndepVal R Diff | IndepVal R Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|---|
Depression | LDpred1.10FCVal | All.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4224778 | 0.140 | 0.148 | -0.008 | 5.04e-03 |
Depression | pT+clump.10FCVal | All.MultiPRS | 0.120 | 0.148 | -0.027 | 0.0000891 | 0.120 | 0.148 | -0.028 | 7.59e-06 |
Depression | LDpred1.MultiPRS | All.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4217592 | 0.139 | 0.148 | -0.009 | 3.00e-03 |
Depression | LDpred2.Inf | All.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3356299 | 0.138 | 0.148 | -0.010 | 1.35e-03 |
Depression | MegaPRS.PseudoVal | All.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9838030 | 0.147 | 0.148 | -0.001 | 3.77e-01 |
Depression | LDpred2.10FCVal | All.MultiPRS | 0.144 | 0.148 | -0.004 | 0.5451576 | 0.140 | 0.148 | -0.008 | 3.90e-03 |
Depression | LDpred2.MultiPRS | All.MultiPRS | 0.144 | 0.148 | -0.004 | 0.0015145 | 0.143 | 0.148 | -0.005 | 4.98e-02 |
Depression | lassosum.10FCVal | All.MultiPRS | 0.143 | 0.148 | -0.005 | 0.4612715 | 0.143 | 0.148 | -0.005 | 9.27e-02 |
Depression | LDpred1.Inf | All.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3287270 | 0.137 | 0.148 | -0.011 | 5.10e-04 |
Depression | lassosum.MultiPRS | All.MultiPRS | 0.143 | 0.148 | -0.005 | 0.0002448 | 0.144 | 0.148 | -0.004 | 1.55e-01 |
Depression | MegaPRS.10FCVal | All.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9828971 | 0.147 | 0.148 | -0.001 | 6.08e-01 |
Depression | All.MultiPRS | All.MultiPRS | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
Depression | SBayesR.PseudoVal | All.MultiPRS | 0.143 | 0.148 | -0.005 | 0.4852151 | 0.143 | 0.148 | -0.005 | 4.87e-02 |
Depression | MegaPRS.MultiPRS | All.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9391619 | 0.148 | 0.148 | 0.000 | 5.84e-01 |
Depression | pT+clump.MultiPRS | All.MultiPRS | 0.127 | 0.148 | -0.021 | 0.0025600 | 0.130 | 0.148 | -0.018 | 6.71e-04 |
Depression | lassosum.PseudoVal | All.MultiPRS | 0.104 | 0.148 | -0.044 | 0.0000000 | 0.112 | 0.148 | -0.036 | 4.27e-06 |
Depression | LDpred2.PseudoVal | All.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4250796 | 0.140 | 0.148 | -0.008 | 5.29e-03 |
Depression | DBSLMM.PseudoVal | All.MultiPRS | 0.139 | 0.148 | -0.008 | 0.2287993 | 0.140 | 0.148 | -0.008 | 2.05e-02 |
Depression | SBLUP.Inf | All.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3270469 | 0.137 | 0.148 | -0.011 | 9.36e-04 |
Depression | LDpred1.Inf | DBSLMM.PseudoVal | 0.141 | 0.139 | 0.002 | 0.2823349 | 0.137 | 0.140 | -0.003 | 2.62e-01 |
Depression | LDpred2.Inf | DBSLMM.PseudoVal | 0.141 | 0.139 | 0.002 | 0.2414206 | 0.138 | 0.140 | -0.002 | 4.79e-01 |
Depression | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.144 | 0.139 | 0.005 | 0.5142525 | 0.143 | 0.140 | 0.003 | 2.27e-01 |
Depression | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.120 | 0.139 | -0.019 | 0.0000000 | 0.120 | 0.140 | -0.020 | 1.47e-03 |
Depression | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.143 | 0.139 | 0.004 | 0.0239412 | 0.143 | 0.140 | 0.003 | 4.10e-01 |
Depression | All.MultiPRS | DBSLMM.PseudoVal | 0.148 | 0.139 | 0.008 | 0.2287993 | 0.148 | 0.140 | 0.008 | 2.05e-02 |
Depression | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.148 | 0.139 | 0.009 | 0.0000027 | 0.147 | 0.140 | 0.007 | 4.47e-02 |
Depression | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.148 | 0.139 | 0.008 | 0.2307268 | 0.148 | 0.140 | 0.008 | 4.06e-02 |
Depression | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.142 | 0.139 | 0.003 | 0.0388876 | 0.140 | 0.140 | 0.000 | 9.90e-01 |
Depression | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.104 | 0.139 | -0.036 | 0.0000000 | 0.112 | 0.140 | -0.028 | 9.16e-04 |
Depression | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.127 | 0.139 | -0.013 | 0.0734724 | 0.130 | 0.140 | -0.010 | 7.09e-02 |
Depression | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.148 | 0.139 | 0.008 | 0.0000091 | 0.147 | 0.140 | 0.007 | 6.64e-02 |
Depression | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.143 | 0.139 | 0.004 | 0.6042208 | 0.144 | 0.140 | 0.004 | 1.98e-01 |
Depression | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.144 | 0.139 | 0.004 | 0.0025024 | 0.140 | 0.140 | 0.000 | 9.76e-01 |
Depression | lassosum.10FCVal | DBSLMM.PseudoVal | 0.143 | 0.139 | 0.003 | 0.0580633 | 0.143 | 0.140 | 0.003 | 3.77e-01 |
Depression | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.142 | 0.139 | 0.003 | 0.0434321 | 0.140 | 0.140 | 0.000 | 9.46e-01 |
Depression | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.139 | 0.139 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.142 | 0.139 | 0.003 | 0.6875256 | 0.139 | 0.140 | -0.001 | 7.61e-01 |
Depression | SBLUP.Inf | DBSLMM.PseudoVal | 0.141 | 0.139 | 0.002 | 0.2513031 | 0.137 | 0.140 | -0.002 | 3.67e-01 |
Depression | SBayesR.PseudoVal | lassosum.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9898919 | 0.143 | 0.144 | -0.002 | 5.50e-01 |
Depression | LDpred1.Inf | lassosum.MultiPRS | 0.141 | 0.143 | -0.002 | 0.7702976 | 0.137 | 0.144 | -0.008 | 2.26e-02 |
Depression | MegaPRS.10FCVal | lassosum.MultiPRS | 0.148 | 0.143 | 0.005 | 0.4797866 | 0.147 | 0.144 | 0.003 | 3.05e-01 |
Depression | LDpred2.MultiPRS | lassosum.MultiPRS | 0.144 | 0.143 | 0.001 | 0.4575456 | 0.143 | 0.144 | -0.001 | 6.86e-01 |
Depression | LDpred2.PseudoVal | lassosum.MultiPRS | 0.142 | 0.143 | -0.001 | 0.9103232 | 0.140 | 0.144 | -0.004 | 1.48e-01 |
Depression | LDpred2.10FCVal | lassosum.MultiPRS | 0.144 | 0.143 | 0.001 | 0.9361357 | 0.140 | 0.144 | -0.004 | 1.40e-01 |
Depression | pT+clump.MultiPRS | lassosum.MultiPRS | 0.127 | 0.143 | -0.016 | 0.0202271 | 0.130 | 0.144 | -0.014 | 6.06e-03 |
Depression | lassosum.MultiPRS | lassosum.MultiPRS | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
Depression | lassosum.PseudoVal | lassosum.MultiPRS | 0.104 | 0.143 | -0.039 | 0.0000000 | 0.112 | 0.144 | -0.032 | 1.91e-05 |
Depression | LDpred1.MultiPRS | lassosum.MultiPRS | 0.142 | 0.143 | -0.001 | 0.9058492 | 0.139 | 0.144 | -0.005 | 8.31e-02 |
Depression | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.148 | 0.143 | 0.005 | 0.0015328 | 0.148 | 0.144 | 0.003 | 2.72e-01 |
Depression | LDpred1.10FCVal | lassosum.MultiPRS | 0.142 | 0.143 | -0.001 | 0.9067167 | 0.140 | 0.144 | -0.005 | 1.15e-01 |
Depression | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.148 | 0.143 | 0.005 | 0.5062077 | 0.147 | 0.144 | 0.003 | 3.76e-01 |
Depression | pT+clump.10FCVal | lassosum.MultiPRS | 0.120 | 0.143 | -0.023 | 0.0012206 | 0.120 | 0.144 | -0.024 | 9.42e-05 |
Depression | lassosum.10FCVal | lassosum.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9591009 | 0.143 | 0.144 | -0.001 | 3.04e-01 |
Depression | SBLUP.Inf | lassosum.MultiPRS | 0.141 | 0.143 | -0.002 | 0.7678594 | 0.137 | 0.144 | -0.007 | 3.29e-02 |
Depression | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.139 | 0.143 | -0.004 | 0.6042208 | 0.140 | 0.144 | -0.004 | 1.98e-01 |
Depression | All.MultiPRS | lassosum.MultiPRS | 0.148 | 0.143 | 0.005 | 0.0002448 | 0.148 | 0.144 | 0.004 | 1.55e-01 |
Depression | LDpred2.Inf | lassosum.MultiPRS | 0.141 | 0.143 | -0.002 | 0.7811987 | 0.138 | 0.144 | -0.006 | 5.48e-02 |
Depression | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.148 | 0.104 | 0.044 | 0.0000000 | 0.147 | 0.112 | 0.035 | 3.79e-05 |
Depression | LDpred2.PseudoVal | lassosum.PseudoVal | 0.142 | 0.104 | 0.038 | 0.0000000 | 0.140 | 0.112 | 0.028 | 2.02e-03 |
Depression | LDpred1.MultiPRS | lassosum.PseudoVal | 0.142 | 0.104 | 0.038 | 0.0000000 | 0.139 | 0.112 | 0.027 | 2.33e-03 |
Depression | lassosum.PseudoVal | lassosum.PseudoVal | 0.104 | 0.104 | 0.000 | 1.0000000 | 0.112 | 0.112 | 0.000 | 1.00e+00 |
Depression | LDpred2.Inf | lassosum.PseudoVal | 0.141 | 0.104 | 0.037 | 0.0000000 | 0.138 | 0.112 | 0.026 | 6.00e-03 |
Depression | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.139 | 0.104 | 0.036 | 0.0000000 | 0.140 | 0.112 | 0.028 | 9.16e-04 |
Depression | SBLUP.Inf | lassosum.PseudoVal | 0.141 | 0.104 | 0.037 | 0.0000000 | 0.137 | 0.112 | 0.025 | 6.37e-03 |
Depression | LDpred2.MultiPRS | lassosum.PseudoVal | 0.144 | 0.104 | 0.040 | 0.0000000 | 0.143 | 0.112 | 0.031 | 6.35e-05 |
Depression | pT+clump.10FCVal | lassosum.PseudoVal | 0.120 | 0.104 | 0.017 | 0.0012235 | 0.120 | 0.112 | 0.008 | 4.61e-01 |
Depression | LDpred1.Inf | lassosum.PseudoVal | 0.141 | 0.104 | 0.037 | 0.0000000 | 0.137 | 0.112 | 0.024 | 8.17e-03 |
Depression | lassosum.MultiPRS | lassosum.PseudoVal | 0.143 | 0.104 | 0.039 | 0.0000000 | 0.144 | 0.112 | 0.032 | 1.91e-05 |
Depression | MegaPRS.10FCVal | lassosum.PseudoVal | 0.148 | 0.104 | 0.044 | 0.0000000 | 0.147 | 0.112 | 0.035 | 3.09e-05 |
Depression | All.MultiPRS | lassosum.PseudoVal | 0.148 | 0.104 | 0.044 | 0.0000000 | 0.148 | 0.112 | 0.036 | 4.27e-06 |
Depression | SBayesR.PseudoVal | lassosum.PseudoVal | 0.143 | 0.104 | 0.039 | 0.0000000 | 0.143 | 0.112 | 0.030 | 6.21e-05 |
Depression | lassosum.10FCVal | lassosum.PseudoVal | 0.143 | 0.104 | 0.039 | 0.0000000 | 0.143 | 0.112 | 0.031 | 2.35e-04 |
Depression | pT+clump.MultiPRS | lassosum.PseudoVal | 0.127 | 0.104 | 0.023 | 0.0010258 | 0.130 | 0.112 | 0.018 | 3.25e-02 |
Depression | LDpred1.10FCVal | lassosum.PseudoVal | 0.142 | 0.104 | 0.038 | 0.0000000 | 0.140 | 0.112 | 0.028 | 1.52e-03 |
Depression | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.148 | 0.104 | 0.044 | 0.0000000 | 0.148 | 0.112 | 0.035 | 2.00e-05 |
Depression | LDpred2.10FCVal | lassosum.PseudoVal | 0.144 | 0.104 | 0.040 | 0.0000000 | 0.140 | 0.112 | 0.028 | 1.43e-03 |
Depression | lassosum.10FCVal | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.143 | 0.143 | 0.000 | 1.00e+00 |
Depression | pT+clump.MultiPRS | lassosum.10FCVal | 0.127 | 0.143 | -0.016 | 0.0239952 | 0.130 | 0.143 | -0.013 | 1.29e-02 |
Depression | LDpred2.MultiPRS | lassosum.10FCVal | 0.144 | 0.143 | 0.001 | 0.8530959 | 0.143 | 0.143 | 0.000 | 9.58e-01 |
Depression | SBayesR.PseudoVal | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.8611251 | 0.143 | 0.143 | 0.000 | 8.73e-01 |
Depression | LDpred2.10FCVal | lassosum.10FCVal | 0.144 | 0.143 | 0.001 | 0.5150709 | 0.140 | 0.143 | -0.003 | 2.89e-01 |
Depression | SBLUP.Inf | lassosum.10FCVal | 0.141 | 0.143 | -0.002 | 0.2431645 | 0.137 | 0.143 | -0.006 | 6.04e-02 |
Depression | lassosum.MultiPRS | lassosum.10FCVal | 0.143 | 0.143 | 0.000 | 0.9591009 | 0.144 | 0.143 | 0.001 | 3.04e-01 |
Depression | LDpred2.PseudoVal | lassosum.10FCVal | 0.142 | 0.143 | 0.000 | 0.7514886 | 0.140 | 0.143 | -0.003 | 2.61e-01 |
Depression | LDpred1.MultiPRS | lassosum.10FCVal | 0.142 | 0.143 | 0.000 | 0.9463830 | 0.139 | 0.143 | -0.004 | 1.68e-01 |
Depression | LDpred2.Inf | lassosum.10FCVal | 0.141 | 0.143 | -0.002 | 0.2904191 | 0.138 | 0.143 | -0.005 | 8.94e-02 |
Depression | LDpred1.10FCVal | lassosum.10FCVal | 0.142 | 0.143 | 0.000 | 0.7348968 | 0.140 | 0.143 | -0.003 | 2.33e-01 |
Depression | MegaPRS.MultiPRS | lassosum.10FCVal | 0.148 | 0.143 | 0.005 | 0.4642533 | 0.148 | 0.143 | 0.005 | 1.49e-01 |
Depression | pT+clump.10FCVal | lassosum.10FCVal | 0.120 | 0.143 | -0.022 | 0.0000000 | 0.120 | 0.143 | -0.023 | 9.26e-05 |
Depression | All.MultiPRS | lassosum.10FCVal | 0.148 | 0.143 | 0.005 | 0.4612715 | 0.148 | 0.143 | 0.005 | 9.27e-02 |
Depression | MegaPRS.PseudoVal | lassosum.10FCVal | 0.148 | 0.143 | 0.005 | 0.0005444 | 0.147 | 0.143 | 0.004 | 1.89e-01 |
Depression | DBSLMM.PseudoVal | lassosum.10FCVal | 0.139 | 0.143 | -0.003 | 0.0580633 | 0.140 | 0.143 | -0.003 | 3.77e-01 |
Depression | MegaPRS.10FCVal | lassosum.10FCVal | 0.148 | 0.143 | 0.005 | 0.0003946 | 0.147 | 0.143 | 0.004 | 1.51e-01 |
Depression | lassosum.PseudoVal | lassosum.10FCVal | 0.104 | 0.143 | -0.039 | 0.0000000 | 0.112 | 0.143 | -0.031 | 2.35e-04 |
Depression | LDpred1.Inf | lassosum.10FCVal | 0.141 | 0.143 | -0.002 | 0.2857342 | 0.137 | 0.143 | -0.006 | 4.44e-02 |
Depression | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9876279 | 0.147 | 0.148 | -0.001 | 4.68e-01 |
Depression | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.139 | 0.148 | -0.008 | 0.2307268 | 0.140 | 0.148 | -0.008 | 4.06e-02 |
Depression | SBLUP.Inf | MegaPRS.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3294672 | 0.137 | 0.148 | -0.010 | 1.74e-03 |
Depression | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.144 | 0.148 | -0.004 | 0.0075631 | 0.143 | 0.148 | -0.004 | 1.31e-01 |
Depression | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.120 | 0.148 | -0.027 | 0.0000912 | 0.120 | 0.148 | -0.028 | 1.49e-05 |
Depression | LDpred1.Inf | MegaPRS.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3311452 | 0.137 | 0.148 | -0.011 | 1.01e-03 |
Depression | LDpred2.Inf | MegaPRS.MultiPRS | 0.141 | 0.148 | -0.007 | 0.3380787 | 0.138 | 0.148 | -0.010 | 2.26e-03 |
Depression | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9790778 | 0.147 | 0.148 | 0.000 | 8.23e-01 |
Depression | All.MultiPRS | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 0.9391619 | 0.148 | 0.148 | 0.000 | 5.84e-01 |
Depression | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.143 | 0.148 | -0.005 | 0.4882878 | 0.143 | 0.148 | -0.005 | 1.09e-01 |
Depression | lassosum.10FCVal | MegaPRS.MultiPRS | 0.143 | 0.148 | -0.005 | 0.4642533 | 0.143 | 0.148 | -0.005 | 1.49e-01 |
Depression | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.127 | 0.148 | -0.021 | 0.0025930 | 0.130 | 0.148 | -0.018 | 1.68e-03 |
Depression | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.143 | 0.148 | -0.005 | 0.0015328 | 0.144 | 0.148 | -0.003 | 2.72e-01 |
Depression | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4279081 | 0.140 | 0.148 | -0.008 | 1.05e-02 |
Depression | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.144 | 0.148 | -0.004 | 0.5483817 | 0.140 | 0.148 | -0.008 | 9.92e-03 |
Depression | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.104 | 0.148 | -0.044 | 0.0000000 | 0.112 | 0.148 | -0.035 | 2.00e-05 |
Depression | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4253141 | 0.140 | 0.148 | -0.008 | 1.19e-02 |
Depression | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
Depression | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.142 | 0.148 | -0.006 | 0.4244696 | 0.139 | 0.148 | -0.008 | 7.33e-03 |
Depression | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.147 | 0.147 | 0.000 | 1.00e+00 |
Depression | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.144 | 0.148 | -0.004 | 0.0057388 | 0.140 | 0.147 | -0.007 | 2.10e-02 |
Depression | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.142 | 0.148 | -0.005 | 0.4317301 | 0.139 | 0.147 | -0.008 | 1.27e-02 |
Depression | LDpred2.Inf | MegaPRS.PseudoVal | 0.141 | 0.148 | -0.007 | 0.0000208 | 0.138 | 0.147 | -0.009 | 3.86e-03 |
Depression | LDpred1.Inf | MegaPRS.PseudoVal | 0.141 | 0.148 | -0.007 | 0.0000643 | 0.137 | 0.147 | -0.010 | 2.13e-03 |
Depression | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.5062077 | 0.144 | 0.147 | -0.003 | 3.76e-01 |
Depression | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 0.3261978 | 0.147 | 0.147 | 0.001 | 3.97e-01 |
Depression | All.MultiPRS | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 0.9838030 | 0.148 | 0.147 | 0.001 | 3.77e-01 |
Depression | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.0025930 | 0.143 | 0.147 | -0.004 | 1.68e-01 |
Depression | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.139 | 0.148 | -0.008 | 0.0000091 | 0.140 | 0.147 | -0.007 | 6.64e-02 |
Depression | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.127 | 0.148 | -0.021 | 0.0029530 | 0.130 | 0.147 | -0.017 | 1.81e-03 |
Depression | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.104 | 0.148 | -0.044 | 0.0000000 | 0.112 | 0.147 | -0.035 | 3.79e-05 |
Depression | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.142 | 0.148 | -0.005 | 0.0001518 | 0.140 | 0.147 | -0.007 | 1.64e-02 |
Depression | lassosum.10FCVal | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.0005444 | 0.143 | 0.147 | -0.004 | 1.89e-01 |
Depression | SBLUP.Inf | MegaPRS.PseudoVal | 0.141 | 0.148 | -0.007 | 0.0000260 | 0.137 | 0.147 | -0.009 | 3.39e-03 |
Depression | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.142 | 0.148 | -0.005 | 0.0003181 | 0.140 | 0.147 | -0.007 | 1.96e-02 |
Depression | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.120 | 0.148 | -0.027 | 0.0000000 | 0.120 | 0.147 | -0.027 | 1.05e-05 |
Depression | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.144 | 0.148 | -0.004 | 0.5952515 | 0.143 | 0.147 | -0.004 | 2.19e-01 |
Depression | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 0.9876279 | 0.148 | 0.147 | 0.001 | 4.68e-01 |
Depression | lassosum.10FCVal | MegaPRS.10FCVal | 0.143 | 0.148 | -0.005 | 0.0003946 | 0.143 | 0.147 | -0.004 | 1.51e-01 |
Depression | SBLUP.Inf | MegaPRS.10FCVal | 0.141 | 0.148 | -0.007 | 0.0000113 | 0.137 | 0.147 | -0.010 | 2.07e-03 |
Depression | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.143 | 0.148 | -0.005 | 0.0012340 | 0.143 | 0.147 | -0.005 | 1.22e-01 |
Depression | All.MultiPRS | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 0.9828971 | 0.148 | 0.147 | 0.001 | 6.08e-01 |
Depression | LDpred2.Inf | MegaPRS.10FCVal | 0.141 | 0.148 | -0.007 | 0.0000087 | 0.138 | 0.147 | -0.010 | 2.35e-03 |
Depression | lassosum.MultiPRS | MegaPRS.10FCVal | 0.143 | 0.148 | -0.005 | 0.4797866 | 0.144 | 0.147 | -0.003 | 3.05e-01 |
Depression | LDpred2.10FCVal | MegaPRS.10FCVal | 0.144 | 0.148 | -0.004 | 0.0031613 | 0.140 | 0.147 | -0.007 | 1.39e-02 |
Depression | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.142 | 0.148 | -0.006 | 0.4077161 | 0.139 | 0.147 | -0.008 | 8.26e-03 |
Depression | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.142 | 0.148 | -0.006 | 0.0000700 | 0.140 | 0.147 | -0.007 | 1.07e-02 |
Depression | LDpred1.10FCVal | MegaPRS.10FCVal | 0.142 | 0.148 | -0.006 | 0.0001578 | 0.140 | 0.147 | -0.008 | 1.30e-02 |
Depression | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.127 | 0.148 | -0.021 | 0.0025778 | 0.130 | 0.147 | -0.017 | 1.41e-03 |
Depression | pT+clump.10FCVal | MegaPRS.10FCVal | 0.120 | 0.148 | -0.028 | 0.0000000 | 0.120 | 0.147 | -0.028 | 8.06e-06 |
Depression | lassosum.PseudoVal | MegaPRS.10FCVal | 0.104 | 0.148 | -0.044 | 0.0000000 | 0.112 | 0.147 | -0.035 | 3.09e-05 |
Depression | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 0.3261978 | 0.147 | 0.147 | -0.001 | 3.97e-01 |
Depression | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 0.9790778 | 0.148 | 0.147 | 0.000 | 8.23e-01 |
Depression | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.147 | 0.147 | 0.000 | 1.00e+00 |
Depression | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.144 | 0.148 | -0.004 | 0.5665824 | 0.143 | 0.147 | -0.004 | 1.63e-01 |
Depression | LDpred1.Inf | MegaPRS.10FCVal | 0.141 | 0.148 | -0.007 | 0.0000296 | 0.137 | 0.147 | -0.011 | 1.29e-03 |
Depression | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.139 | 0.148 | -0.009 | 0.0000027 | 0.140 | 0.147 | -0.007 | 4.47e-02 |
Depression | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.127 | 0.142 | -0.015 | 0.0278531 | 0.130 | 0.139 | -0.009 | 9.53e-02 |
Depression | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.148 | 0.142 | 0.006 | 0.4077161 | 0.147 | 0.139 | 0.008 | 8.26e-03 |
Depression | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.142 | 0.142 | 0.000 | 0.9955536 | 0.140 | 0.139 | 0.001 | 5.40e-01 |
Depression | LDpred1.Inf | LDpred1.MultiPRS | 0.141 | 0.142 | -0.001 | 0.8611727 | 0.137 | 0.139 | -0.002 | 5.76e-02 |
Depression | lassosum.10FCVal | LDpred1.MultiPRS | 0.143 | 0.142 | 0.000 | 0.9463830 | 0.143 | 0.139 | 0.004 | 1.68e-01 |
Depression | LDpred1.10FCVal | LDpred1.MultiPRS | 0.142 | 0.142 | 0.000 | 0.9992046 | 0.140 | 0.139 | 0.001 | 4.73e-01 |
Depression | lassosum.MultiPRS | LDpred1.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9058492 | 0.144 | 0.139 | 0.005 | 8.31e-02 |
Depression | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.139 | 0.139 | 0.000 | 1.00e+00 |
Depression | All.MultiPRS | LDpred1.MultiPRS | 0.148 | 0.142 | 0.006 | 0.4217592 | 0.148 | 0.139 | 0.009 | 3.00e-03 |
Depression | LDpred2.Inf | LDpred1.MultiPRS | 0.141 | 0.142 | -0.001 | 0.8725308 | 0.138 | 0.139 | -0.001 | 4.58e-01 |
Depression | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.148 | 0.142 | 0.006 | 0.4244696 | 0.148 | 0.139 | 0.008 | 7.33e-03 |
Depression | pT+clump.10FCVal | LDpred1.MultiPRS | 0.120 | 0.142 | -0.022 | 0.0017590 | 0.120 | 0.139 | -0.019 | 1.36e-03 |
Depression | lassosum.PseudoVal | LDpred1.MultiPRS | 0.104 | 0.142 | -0.038 | 0.0000000 | 0.112 | 0.139 | -0.027 | 2.33e-03 |
Depression | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.143 | 0.142 | 0.001 | 0.9155585 | 0.143 | 0.139 | 0.003 | 1.55e-01 |
Depression | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.139 | 0.142 | -0.003 | 0.6875256 | 0.140 | 0.139 | 0.001 | 7.61e-01 |
Depression | SBLUP.Inf | LDpred1.MultiPRS | 0.141 | 0.142 | -0.001 | 0.8587408 | 0.137 | 0.139 | -0.002 | 2.66e-01 |
Depression | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.144 | 0.142 | 0.002 | 0.8011728 | 0.143 | 0.139 | 0.004 | 4.38e-02 |
Depression | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.148 | 0.142 | 0.005 | 0.4317301 | 0.147 | 0.139 | 0.008 | 1.27e-02 |
Depression | LDpred2.10FCVal | LDpred1.MultiPRS | 0.144 | 0.142 | 0.001 | 0.8420199 | 0.140 | 0.139 | 0.001 | 5.51e-01 |
Depression | LDpred1.10FCVal | LDpred1.Inf | 0.142 | 0.141 | 0.001 | 0.1069814 | 0.140 | 0.137 | 0.003 | 4.00e-02 |
Depression | LDpred2.PseudoVal | LDpred1.Inf | 0.142 | 0.141 | 0.001 | 0.0968155 | 0.140 | 0.137 | 0.003 | 2.78e-02 |
Depression | LDpred1.MultiPRS | LDpred1.Inf | 0.142 | 0.141 | 0.001 | 0.8611727 | 0.139 | 0.137 | 0.002 | 5.76e-02 |
Depression | pT+clump.MultiPRS | LDpred1.Inf | 0.127 | 0.141 | -0.014 | 0.0437234 | 0.130 | 0.137 | -0.007 | 2.44e-01 |
Depression | MegaPRS.PseudoVal | LDpred1.Inf | 0.148 | 0.141 | 0.007 | 0.0000643 | 0.147 | 0.137 | 0.010 | 2.13e-03 |
Depression | MegaPRS.MultiPRS | LDpred1.Inf | 0.148 | 0.141 | 0.007 | 0.3311452 | 0.148 | 0.137 | 0.011 | 1.01e-03 |
Depression | pT+clump.10FCVal | LDpred1.Inf | 0.120 | 0.141 | -0.021 | 0.0000000 | 0.120 | 0.137 | -0.017 | 5.54e-03 |
Depression | lassosum.PseudoVal | LDpred1.Inf | 0.104 | 0.141 | -0.037 | 0.0000000 | 0.112 | 0.137 | -0.024 | 8.17e-03 |
Depression | LDpred2.Inf | LDpred1.Inf | 0.141 | 0.141 | 0.000 | 0.8855862 | 0.138 | 0.137 | 0.001 | 3.68e-01 |
Depression | DBSLMM.PseudoVal | LDpred1.Inf | 0.139 | 0.141 | -0.002 | 0.2823349 | 0.140 | 0.137 | 0.003 | 2.62e-01 |
Depression | SBLUP.Inf | LDpred1.Inf | 0.141 | 0.141 | 0.000 | 0.9729567 | 0.137 | 0.137 | 0.001 | 5.14e-01 |
Depression | LDpred2.MultiPRS | LDpred1.Inf | 0.144 | 0.141 | 0.003 | 0.6702548 | 0.143 | 0.137 | 0.007 | 5.34e-03 |
Depression | lassosum.10FCVal | LDpred1.Inf | 0.143 | 0.141 | 0.002 | 0.2857342 | 0.143 | 0.137 | 0.006 | 4.44e-02 |
Depression | LDpred1.Inf | LDpred1.Inf | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
Depression | lassosum.MultiPRS | LDpred1.Inf | 0.143 | 0.141 | 0.002 | 0.7702976 | 0.144 | 0.137 | 0.008 | 2.26e-02 |
Depression | MegaPRS.10FCVal | LDpred1.Inf | 0.148 | 0.141 | 0.007 | 0.0000296 | 0.147 | 0.137 | 0.011 | 1.29e-03 |
Depression | All.MultiPRS | LDpred1.Inf | 0.148 | 0.141 | 0.007 | 0.3287270 | 0.148 | 0.137 | 0.011 | 5.10e-04 |
Depression | SBayesR.PseudoVal | LDpred1.Inf | 0.143 | 0.141 | 0.002 | 0.1783513 | 0.143 | 0.137 | 0.006 | 3.98e-02 |
Depression | LDpred2.10FCVal | LDpred1.Inf | 0.144 | 0.141 | 0.003 | 0.0012711 | 0.140 | 0.137 | 0.003 | 3.73e-02 |
Depression | All.MultiPRS | LDpred1.10FCVal | 0.148 | 0.142 | 0.006 | 0.4224778 | 0.148 | 0.140 | 0.008 | 5.04e-03 |
Depression | pT+clump.MultiPRS | LDpred1.10FCVal | 0.127 | 0.142 | -0.015 | 0.0284044 | 0.130 | 0.140 | -0.010 | 6.95e-02 |
Depression | LDpred1.10FCVal | LDpred1.10FCVal | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | SBayesR.PseudoVal | LDpred1.10FCVal | 0.143 | 0.142 | 0.001 | 0.5104956 | 0.143 | 0.140 | 0.003 | 2.09e-01 |
Depression | LDpred1.MultiPRS | LDpred1.10FCVal | 0.142 | 0.142 | 0.000 | 0.9992046 | 0.139 | 0.140 | -0.001 | 4.73e-01 |
Depression | SBLUP.Inf | LDpred1.10FCVal | 0.141 | 0.142 | -0.001 | 0.1079279 | 0.137 | 0.140 | -0.002 | 1.43e-01 |
Depression | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.148 | 0.142 | 0.005 | 0.0003181 | 0.147 | 0.140 | 0.007 | 1.96e-02 |
Depression | LDpred2.PseudoVal | LDpred1.10FCVal | 0.142 | 0.142 | 0.000 | 0.9642303 | 0.140 | 0.140 | 0.000 | 8.75e-01 |
Depression | LDpred2.MultiPRS | LDpred1.10FCVal | 0.144 | 0.142 | 0.002 | 0.8018150 | 0.143 | 0.140 | 0.003 | 7.03e-02 |
Depression | LDpred2.Inf | LDpred1.10FCVal | 0.141 | 0.142 | -0.001 | 0.1743915 | 0.138 | 0.140 | -0.002 | 2.66e-01 |
Depression | LDpred1.Inf | LDpred1.10FCVal | 0.141 | 0.142 | -0.001 | 0.1069814 | 0.137 | 0.140 | -0.003 | 4.00e-02 |
Depression | pT+clump.10FCVal | LDpred1.10FCVal | 0.120 | 0.142 | -0.022 | 0.0000000 | 0.120 | 0.140 | -0.020 | 8.98e-04 |
Depression | LDpred2.10FCVal | LDpred1.10FCVal | 0.144 | 0.142 | 0.001 | 0.0698092 | 0.140 | 0.140 | 0.000 | 8.60e-01 |
Depression | lassosum.PseudoVal | LDpred1.10FCVal | 0.104 | 0.142 | -0.038 | 0.0000000 | 0.112 | 0.140 | -0.028 | 1.52e-03 |
Depression | lassosum.10FCVal | LDpred1.10FCVal | 0.143 | 0.142 | 0.000 | 0.7348968 | 0.143 | 0.140 | 0.003 | 2.33e-01 |
Depression | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.148 | 0.142 | 0.006 | 0.4253141 | 0.148 | 0.140 | 0.008 | 1.19e-02 |
Depression | lassosum.MultiPRS | LDpred1.10FCVal | 0.143 | 0.142 | 0.001 | 0.9067167 | 0.144 | 0.140 | 0.005 | 1.15e-01 |
Depression | MegaPRS.10FCVal | LDpred1.10FCVal | 0.148 | 0.142 | 0.006 | 0.0001578 | 0.147 | 0.140 | 0.008 | 1.30e-02 |
Depression | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.139 | 0.142 | -0.003 | 0.0434321 | 0.140 | 0.140 | 0.000 | 9.46e-01 |
Depression | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.143 | 0.144 | -0.001 | 0.8835214 | 0.143 | 0.143 | -0.001 | 7.11e-01 |
Depression | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.144 | 0.144 | 0.000 | 1.0000000 | 0.143 | 0.143 | 0.000 | 1.00e+00 |
Depression | pT+clump.10FCVal | LDpred2.MultiPRS | 0.120 | 0.144 | -0.024 | 0.0007600 | 0.120 | 0.143 | -0.023 | 2.53e-04 |
Depression | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.142 | 0.144 | -0.002 | 0.8053482 | 0.140 | 0.143 | -0.003 | 5.72e-02 |
Depression | LDpred2.Inf | LDpred2.MultiPRS | 0.141 | 0.144 | -0.003 | 0.6806373 | 0.138 | 0.143 | -0.005 | 1.20e-02 |
Depression | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.127 | 0.144 | -0.017 | 0.0139935 | 0.130 | 0.143 | -0.013 | 1.36e-02 |
Depression | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.148 | 0.144 | 0.004 | 0.5952515 | 0.147 | 0.143 | 0.004 | 2.19e-01 |
Depression | lassosum.MultiPRS | LDpred2.MultiPRS | 0.143 | 0.144 | -0.001 | 0.4575456 | 0.144 | 0.143 | 0.001 | 6.86e-01 |
Depression | LDpred1.Inf | LDpred2.MultiPRS | 0.141 | 0.144 | -0.003 | 0.6702548 | 0.137 | 0.143 | -0.007 | 5.34e-03 |
Depression | lassosum.10FCVal | LDpred2.MultiPRS | 0.143 | 0.144 | -0.001 | 0.8530959 | 0.143 | 0.143 | 0.000 | 9.58e-01 |
Depression | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.148 | 0.144 | 0.004 | 0.5665824 | 0.147 | 0.143 | 0.004 | 1.63e-01 |
Depression | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.148 | 0.144 | 0.004 | 0.0075631 | 0.148 | 0.143 | 0.004 | 1.31e-01 |
Depression | LDpred2.10FCVal | LDpred2.MultiPRS | 0.144 | 0.144 | 0.000 | 0.9572161 | 0.140 | 0.143 | -0.003 | 1.08e-02 |
Depression | All.MultiPRS | LDpred2.MultiPRS | 0.148 | 0.144 | 0.004 | 0.0015145 | 0.148 | 0.143 | 0.005 | 4.98e-02 |
Depression | LDpred1.10FCVal | LDpred2.MultiPRS | 0.142 | 0.144 | -0.002 | 0.8018150 | 0.140 | 0.143 | -0.003 | 7.03e-02 |
Depression | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.139 | 0.144 | -0.005 | 0.5142525 | 0.140 | 0.143 | -0.003 | 2.27e-01 |
Depression | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.142 | 0.144 | -0.002 | 0.8011728 | 0.139 | 0.143 | -0.004 | 4.38e-02 |
Depression | lassosum.PseudoVal | LDpred2.MultiPRS | 0.104 | 0.144 | -0.040 | 0.0000000 | 0.112 | 0.143 | -0.031 | 6.35e-05 |
Depression | SBLUP.Inf | LDpred2.MultiPRS | 0.141 | 0.144 | -0.003 | 0.6679532 | 0.137 | 0.143 | -0.006 | 9.31e-03 |
Depression | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.148 | 0.144 | 0.004 | 0.0057388 | 0.147 | 0.140 | 0.007 | 2.10e-02 |
Depression | LDpred2.10FCVal | LDpred2.10FCVal | 0.144 | 0.144 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | MegaPRS.10FCVal | LDpred2.10FCVal | 0.148 | 0.144 | 0.004 | 0.0031613 | 0.147 | 0.140 | 0.007 | 1.39e-02 |
Depression | All.MultiPRS | LDpred2.10FCVal | 0.148 | 0.144 | 0.004 | 0.5451576 | 0.148 | 0.140 | 0.008 | 3.90e-03 |
Depression | SBayesR.PseudoVal | LDpred2.10FCVal | 0.143 | 0.144 | -0.001 | 0.5788124 | 0.143 | 0.140 | 0.003 | 2.78e-01 |
Depression | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.139 | 0.144 | -0.004 | 0.0025024 | 0.140 | 0.140 | 0.000 | 9.76e-01 |
Depression | pT+clump.MultiPRS | LDpred2.10FCVal | 0.127 | 0.144 | -0.017 | 0.0169250 | 0.130 | 0.140 | -0.010 | 7.15e-02 |
Depression | lassosum.MultiPRS | LDpred2.10FCVal | 0.143 | 0.144 | -0.001 | 0.9361357 | 0.144 | 0.140 | 0.004 | 1.40e-01 |
Depression | LDpred2.PseudoVal | LDpred2.10FCVal | 0.142 | 0.144 | -0.001 | 0.0017568 | 0.140 | 0.140 | 0.000 | 9.56e-01 |
Depression | lassosum.10FCVal | LDpred2.10FCVal | 0.143 | 0.144 | -0.001 | 0.5150709 | 0.143 | 0.140 | 0.003 | 2.89e-01 |
Depression | SBLUP.Inf | LDpred2.10FCVal | 0.141 | 0.144 | -0.003 | 0.0000514 | 0.137 | 0.140 | -0.003 | 5.09e-02 |
Depression | LDpred1.10FCVal | LDpred2.10FCVal | 0.142 | 0.144 | -0.001 | 0.0698092 | 0.140 | 0.140 | 0.000 | 8.60e-01 |
Depression | pT+clump.10FCVal | LDpred2.10FCVal | 0.120 | 0.144 | -0.023 | 0.0000000 | 0.120 | 0.140 | -0.020 | 1.11e-03 |
Depression | LDpred1.MultiPRS | LDpred2.10FCVal | 0.142 | 0.144 | -0.001 | 0.8420199 | 0.139 | 0.140 | -0.001 | 5.51e-01 |
Depression | LDpred2.Inf | LDpred2.10FCVal | 0.141 | 0.144 | -0.002 | 0.0000065 | 0.138 | 0.140 | -0.002 | 5.88e-02 |
Depression | LDpred1.Inf | LDpred2.10FCVal | 0.141 | 0.144 | -0.003 | 0.0012711 | 0.137 | 0.140 | -0.003 | 3.73e-02 |
Depression | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.148 | 0.144 | 0.004 | 0.5483817 | 0.148 | 0.140 | 0.008 | 9.92e-03 |
Depression | LDpred2.MultiPRS | LDpred2.10FCVal | 0.144 | 0.144 | 0.000 | 0.9572161 | 0.143 | 0.140 | 0.003 | 1.08e-02 |
Depression | lassosum.PseudoVal | LDpred2.10FCVal | 0.104 | 0.144 | -0.040 | 0.0000000 | 0.112 | 0.140 | -0.028 | 1.43e-03 |
Depression | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.127 | 0.142 | -0.015 | 0.0281073 | 0.130 | 0.140 | -0.010 | 6.71e-02 |
Depression | lassosum.MultiPRS | LDpred2.PseudoVal | 0.143 | 0.142 | 0.001 | 0.9103232 | 0.144 | 0.140 | 0.004 | 1.48e-01 |
Depression | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.143 | 0.142 | 0.001 | 0.5701679 | 0.143 | 0.140 | 0.003 | 2.92e-01 |
Depression | All.MultiPRS | LDpred2.PseudoVal | 0.148 | 0.142 | 0.006 | 0.4250796 | 0.148 | 0.140 | 0.008 | 5.29e-03 |
Depression | SBLUP.Inf | LDpred2.PseudoVal | 0.141 | 0.142 | -0.001 | 0.0164454 | 0.137 | 0.140 | -0.003 | 1.92e-02 |
Depression | LDpred1.10FCVal | LDpred2.PseudoVal | 0.142 | 0.142 | 0.000 | 0.9642303 | 0.140 | 0.140 | 0.000 | 8.75e-01 |
Depression | LDpred2.10FCVal | LDpred2.PseudoVal | 0.144 | 0.142 | 0.001 | 0.0017568 | 0.140 | 0.140 | 0.000 | 9.56e-01 |
Depression | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.142 | 0.142 | 0.000 | 0.9955536 | 0.139 | 0.140 | -0.001 | 5.40e-01 |
Depression | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
Depression | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.148 | 0.142 | 0.005 | 0.0001518 | 0.147 | 0.140 | 0.007 | 1.64e-02 |
Depression | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.148 | 0.142 | 0.006 | 0.4279081 | 0.148 | 0.140 | 0.008 | 1.05e-02 |
Depression | pT+clump.10FCVal | LDpred2.PseudoVal | 0.120 | 0.142 | -0.022 | 0.0000000 | 0.120 | 0.140 | -0.020 | 6.85e-04 |
Depression | lassosum.PseudoVal | LDpred2.PseudoVal | 0.104 | 0.142 | -0.038 | 0.0000000 | 0.112 | 0.140 | -0.028 | 2.02e-03 |
Depression | LDpred2.Inf | LDpred2.PseudoVal | 0.141 | 0.142 | -0.001 | 0.0000510 | 0.138 | 0.140 | -0.002 | 3.18e-04 |
Depression | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.139 | 0.142 | -0.003 | 0.0388876 | 0.140 | 0.140 | 0.000 | 9.90e-01 |
Depression | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.148 | 0.142 | 0.006 | 0.0000700 | 0.147 | 0.140 | 0.007 | 1.07e-02 |
Depression | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.144 | 0.142 | 0.002 | 0.8053482 | 0.143 | 0.140 | 0.003 | 5.72e-02 |
Depression | lassosum.10FCVal | LDpred2.PseudoVal | 0.143 | 0.142 | 0.000 | 0.7514886 | 0.143 | 0.140 | 0.003 | 2.61e-01 |
Depression | LDpred1.Inf | LDpred2.PseudoVal | 0.141 | 0.142 | -0.001 | 0.0968155 | 0.137 | 0.140 | -0.003 | 2.78e-02 |
Depression | All.MultiPRS | LDpred2.Inf | 0.148 | 0.141 | 0.007 | 0.3356299 | 0.148 | 0.138 | 0.010 | 1.35e-03 |
Depression | LDpred1.10FCVal | LDpred2.Inf | 0.142 | 0.141 | 0.001 | 0.1743915 | 0.140 | 0.138 | 0.002 | 2.66e-01 |
Depression | SBayesR.PseudoVal | LDpred2.Inf | 0.143 | 0.141 | 0.002 | 0.2004521 | 0.143 | 0.138 | 0.005 | 1.07e-01 |
Depression | LDpred1.MultiPRS | LDpred2.Inf | 0.142 | 0.141 | 0.001 | 0.8725308 | 0.139 | 0.138 | 0.001 | 4.58e-01 |
Depression | LDpred2.Inf | LDpred2.Inf | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.138 | 0.138 | 0.000 | 1.00e+00 |
Depression | MegaPRS.PseudoVal | LDpred2.Inf | 0.148 | 0.141 | 0.007 | 0.0000208 | 0.147 | 0.138 | 0.009 | 3.86e-03 |
Depression | pT+clump.10FCVal | LDpred2.Inf | 0.120 | 0.141 | -0.021 | 0.0000000 | 0.120 | 0.138 | -0.018 | 2.51e-03 |
Depression | LDpred2.10FCVal | LDpred2.Inf | 0.144 | 0.141 | 0.002 | 0.0000065 | 0.140 | 0.138 | 0.002 | 5.88e-02 |
Depression | lassosum.PseudoVal | LDpred2.Inf | 0.104 | 0.141 | -0.037 | 0.0000000 | 0.112 | 0.138 | -0.026 | 6.00e-03 |
Depression | pT+clump.MultiPRS | LDpred2.Inf | 0.127 | 0.141 | -0.014 | 0.0422495 | 0.130 | 0.138 | -0.008 | 1.63e-01 |
Depression | MegaPRS.MultiPRS | LDpred2.Inf | 0.148 | 0.141 | 0.007 | 0.3380787 | 0.148 | 0.138 | 0.010 | 2.26e-03 |
Depression | LDpred2.PseudoVal | LDpred2.Inf | 0.142 | 0.141 | 0.001 | 0.0000510 | 0.140 | 0.138 | 0.002 | 3.18e-04 |
Depression | LDpred2.MultiPRS | LDpred2.Inf | 0.144 | 0.141 | 0.003 | 0.6806373 | 0.143 | 0.138 | 0.005 | 1.20e-02 |
Depression | SBLUP.Inf | LDpred2.Inf | 0.141 | 0.141 | 0.000 | 0.7793779 | 0.137 | 0.138 | 0.000 | 6.24e-01 |
Depression | DBSLMM.PseudoVal | LDpred2.Inf | 0.139 | 0.141 | -0.002 | 0.2414206 | 0.140 | 0.138 | 0.002 | 4.79e-01 |
Depression | lassosum.MultiPRS | LDpred2.Inf | 0.143 | 0.141 | 0.002 | 0.7811987 | 0.144 | 0.138 | 0.006 | 5.48e-02 |
Depression | MegaPRS.10FCVal | LDpred2.Inf | 0.148 | 0.141 | 0.007 | 0.0000087 | 0.147 | 0.138 | 0.010 | 2.35e-03 |
Depression | lassosum.10FCVal | LDpred2.Inf | 0.143 | 0.141 | 0.002 | 0.2904191 | 0.143 | 0.138 | 0.005 | 8.94e-02 |
Depression | LDpred1.Inf | LDpred2.Inf | 0.141 | 0.141 | 0.000 | 0.8855862 | 0.137 | 0.138 | -0.001 | 3.68e-01 |
Depression | All.MultiPRS | pT+clump.MultiPRS | 0.148 | 0.127 | 0.021 | 0.0025600 | 0.148 | 0.130 | 0.018 | 6.71e-04 |
Depression | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.143 | 0.127 | 0.016 | 0.0217836 | 0.143 | 0.130 | 0.013 | 1.43e-02 |
Depression | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.148 | 0.127 | 0.021 | 0.0025930 | 0.148 | 0.130 | 0.018 | 1.68e-03 |
Depression | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.127 | 0.127 | 0.000 | 1.0000000 | 0.130 | 0.130 | 0.000 | 1.00e+00 |
Depression | lassosum.PseudoVal | pT+clump.MultiPRS | 0.104 | 0.127 | -0.023 | 0.0010258 | 0.112 | 0.130 | -0.018 | 3.25e-02 |
Depression | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.142 | 0.127 | 0.015 | 0.0281073 | 0.140 | 0.130 | 0.010 | 6.71e-02 |
Depression | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.139 | 0.127 | 0.013 | 0.0734724 | 0.140 | 0.130 | 0.010 | 7.09e-02 |
Depression | SBLUP.Inf | pT+clump.MultiPRS | 0.141 | 0.127 | 0.014 | 0.0440037 | 0.137 | 0.130 | 0.007 | 1.82e-01 |
Depression | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.144 | 0.127 | 0.017 | 0.0139935 | 0.143 | 0.130 | 0.013 | 1.36e-02 |
Depression | pT+clump.10FCVal | pT+clump.MultiPRS | 0.120 | 0.127 | -0.006 | 0.3558492 | 0.120 | 0.130 | -0.010 | 5.91e-04 |
Depression | LDpred1.Inf | pT+clump.MultiPRS | 0.141 | 0.127 | 0.014 | 0.0437234 | 0.137 | 0.130 | 0.007 | 2.44e-01 |
Depression | LDpred2.Inf | pT+clump.MultiPRS | 0.141 | 0.127 | 0.014 | 0.0422495 | 0.138 | 0.130 | 0.008 | 1.63e-01 |
Depression | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.148 | 0.127 | 0.021 | 0.0025778 | 0.147 | 0.130 | 0.017 | 1.41e-03 |
Depression | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.148 | 0.127 | 0.021 | 0.0029530 | 0.147 | 0.130 | 0.017 | 1.81e-03 |
Depression | LDpred2.10FCVal | pT+clump.MultiPRS | 0.144 | 0.127 | 0.017 | 0.0169250 | 0.140 | 0.130 | 0.010 | 7.15e-02 |
Depression | lassosum.10FCVal | pT+clump.MultiPRS | 0.143 | 0.127 | 0.016 | 0.0239952 | 0.143 | 0.130 | 0.013 | 1.29e-02 |
Depression | LDpred1.10FCVal | pT+clump.MultiPRS | 0.142 | 0.127 | 0.015 | 0.0284044 | 0.140 | 0.130 | 0.010 | 6.95e-02 |
Depression | lassosum.MultiPRS | pT+clump.MultiPRS | 0.143 | 0.127 | 0.016 | 0.0202271 | 0.144 | 0.130 | 0.014 | 6.06e-03 |
Depression | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.142 | 0.127 | 0.015 | 0.0278531 | 0.139 | 0.130 | 0.009 | 9.53e-02 |
Depression | LDpred1.Inf | pT+clump.10FCVal | 0.141 | 0.120 | 0.021 | 0.0000000 | 0.137 | 0.120 | 0.017 | 5.54e-03 |
Depression | pT+clump.MultiPRS | pT+clump.10FCVal | 0.127 | 0.120 | 0.006 | 0.3558492 | 0.130 | 0.120 | 0.010 | 5.91e-04 |
Depression | LDpred2.MultiPRS | pT+clump.10FCVal | 0.144 | 0.120 | 0.024 | 0.0007600 | 0.143 | 0.120 | 0.023 | 2.53e-04 |
Depression | SBayesR.PseudoVal | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0000000 | 0.143 | 0.120 | 0.023 | 2.86e-04 |
Depression | LDpred2.10FCVal | pT+clump.10FCVal | 0.144 | 0.120 | 0.023 | 0.0000000 | 0.140 | 0.120 | 0.020 | 1.11e-03 |
Depression | SBLUP.Inf | pT+clump.10FCVal | 0.141 | 0.120 | 0.021 | 0.0000000 | 0.137 | 0.120 | 0.018 | 3.05e-03 |
Depression | lassosum.MultiPRS | pT+clump.10FCVal | 0.143 | 0.120 | 0.023 | 0.0012206 | 0.144 | 0.120 | 0.024 | 9.42e-05 |
Depression | LDpred2.PseudoVal | pT+clump.10FCVal | 0.142 | 0.120 | 0.022 | 0.0000000 | 0.140 | 0.120 | 0.020 | 6.85e-04 |
Depression | LDpred1.MultiPRS | pT+clump.10FCVal | 0.142 | 0.120 | 0.022 | 0.0017590 | 0.139 | 0.120 | 0.019 | 1.36e-03 |
Depression | lassosum.10FCVal | pT+clump.10FCVal | 0.143 | 0.120 | 0.022 | 0.0000000 | 0.143 | 0.120 | 0.023 | 9.26e-05 |
Depression | LDpred1.10FCVal | pT+clump.10FCVal | 0.142 | 0.120 | 0.022 | 0.0000000 | 0.140 | 0.120 | 0.020 | 8.98e-04 |
Depression | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.148 | 0.120 | 0.027 | 0.0000912 | 0.148 | 0.120 | 0.028 | 1.49e-05 |
Depression | pT+clump.10FCVal | pT+clump.10FCVal | 0.120 | 0.120 | 0.000 | 1.0000000 | 0.120 | 0.120 | 0.000 | 1.00e+00 |
Depression | All.MultiPRS | pT+clump.10FCVal | 0.148 | 0.120 | 0.027 | 0.0000891 | 0.148 | 0.120 | 0.028 | 7.59e-06 |
Depression | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.148 | 0.120 | 0.027 | 0.0000000 | 0.147 | 0.120 | 0.027 | 1.05e-05 |
Depression | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.139 | 0.120 | 0.019 | 0.0000000 | 0.140 | 0.120 | 0.020 | 1.47e-03 |
Depression | MegaPRS.10FCVal | pT+clump.10FCVal | 0.148 | 0.120 | 0.028 | 0.0000000 | 0.147 | 0.120 | 0.028 | 8.06e-06 |
Depression | lassosum.PseudoVal | pT+clump.10FCVal | 0.104 | 0.120 | -0.017 | 0.0012235 | 0.112 | 0.120 | -0.008 | 4.61e-01 |
Depression | LDpred2.Inf | pT+clump.10FCVal | 0.141 | 0.120 | 0.021 | 0.0000000 | 0.138 | 0.120 | 0.018 | 2.51e-03 |
Depression | LDpred1.Inf | SBayesR.PseudoVal | 0.141 | 0.143 | -0.002 | 0.1783513 | 0.137 | 0.143 | -0.006 | 3.98e-02 |
Depression | LDpred2.Inf | SBayesR.PseudoVal | 0.141 | 0.143 | -0.002 | 0.2004521 | 0.138 | 0.143 | -0.005 | 1.07e-01 |
Depression | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.148 | 0.143 | 0.005 | 0.0012340 | 0.147 | 0.143 | 0.005 | 1.22e-01 |
Depression | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.144 | 0.143 | 0.001 | 0.8835214 | 0.143 | 0.143 | 0.001 | 7.11e-01 |
Depression | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.143 | 0.143 | 0.000 | 1.00e+00 |
Depression | lassosum.10FCVal | SBayesR.PseudoVal | 0.143 | 0.143 | 0.000 | 0.8611251 | 0.143 | 0.143 | 0.000 | 8.73e-01 |
Depression | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.127 | 0.143 | -0.016 | 0.0217836 | 0.130 | 0.143 | -0.013 | 1.43e-02 |
Depression | lassosum.MultiPRS | SBayesR.PseudoVal | 0.143 | 0.143 | 0.000 | 0.9898919 | 0.144 | 0.143 | 0.002 | 5.50e-01 |
Depression | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.142 | 0.143 | -0.001 | 0.5701679 | 0.140 | 0.143 | -0.003 | 2.92e-01 |
Depression | LDpred2.10FCVal | SBayesR.PseudoVal | 0.144 | 0.143 | 0.001 | 0.5788124 | 0.140 | 0.143 | -0.003 | 2.78e-01 |
Depression | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.148 | 0.143 | 0.005 | 0.4882878 | 0.148 | 0.143 | 0.005 | 1.09e-01 |
Depression | LDpred1.10FCVal | SBayesR.PseudoVal | 0.142 | 0.143 | -0.001 | 0.5104956 | 0.140 | 0.143 | -0.003 | 2.09e-01 |
Depression | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.148 | 0.143 | 0.005 | 0.0025930 | 0.147 | 0.143 | 0.004 | 1.68e-01 |
Depression | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.142 | 0.143 | -0.001 | 0.9155585 | 0.139 | 0.143 | -0.003 | 1.55e-01 |
Depression | All.MultiPRS | SBayesR.PseudoVal | 0.148 | 0.143 | 0.005 | 0.4852151 | 0.148 | 0.143 | 0.005 | 4.87e-02 |
Depression | SBLUP.Inf | SBayesR.PseudoVal | 0.141 | 0.143 | -0.002 | 0.1781978 | 0.137 | 0.143 | -0.005 | 8.29e-02 |
Depression | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.139 | 0.143 | -0.004 | 0.0239412 | 0.140 | 0.143 | -0.003 | 4.10e-01 |
Depression | pT+clump.10FCVal | SBayesR.PseudoVal | 0.120 | 0.143 | -0.023 | 0.0000000 | 0.120 | 0.143 | -0.023 | 2.86e-04 |
Depression | lassosum.PseudoVal | SBayesR.PseudoVal | 0.104 | 0.143 | -0.039 | 0.0000000 | 0.112 | 0.143 | -0.030 | 6.21e-05 |
Depression | LDpred2.PseudoVal | SBLUP.Inf | 0.142 | 0.141 | 0.001 | 0.0164454 | 0.140 | 0.137 | 0.003 | 1.92e-02 |
Depression | MegaPRS.10FCVal | SBLUP.Inf | 0.148 | 0.141 | 0.007 | 0.0000113 | 0.147 | 0.137 | 0.010 | 2.07e-03 |
Depression | lassosum.MultiPRS | SBLUP.Inf | 0.143 | 0.141 | 0.002 | 0.7678594 | 0.144 | 0.137 | 0.007 | 3.29e-02 |
Depression | LDpred1.MultiPRS | SBLUP.Inf | 0.142 | 0.141 | 0.001 | 0.8587408 | 0.139 | 0.137 | 0.002 | 2.66e-01 |
Depression | All.MultiPRS | SBLUP.Inf | 0.148 | 0.141 | 0.007 | 0.3270469 | 0.148 | 0.137 | 0.011 | 9.36e-04 |
Depression | LDpred2.Inf | SBLUP.Inf | 0.141 | 0.141 | 0.000 | 0.7793779 | 0.138 | 0.137 | 0.000 | 6.24e-01 |
Depression | MegaPRS.MultiPRS | SBLUP.Inf | 0.148 | 0.141 | 0.007 | 0.3294672 | 0.148 | 0.137 | 0.010 | 1.74e-03 |
Depression | pT+clump.MultiPRS | SBLUP.Inf | 0.127 | 0.141 | -0.014 | 0.0440037 | 0.130 | 0.137 | -0.007 | 1.82e-01 |
Depression | lassosum.PseudoVal | SBLUP.Inf | 0.104 | 0.141 | -0.037 | 0.0000000 | 0.112 | 0.137 | -0.025 | 6.37e-03 |
Depression | SBayesR.PseudoVal | SBLUP.Inf | 0.143 | 0.141 | 0.002 | 0.1781978 | 0.143 | 0.137 | 0.005 | 8.29e-02 |
Depression | DBSLMM.PseudoVal | SBLUP.Inf | 0.139 | 0.141 | -0.002 | 0.2513031 | 0.140 | 0.137 | 0.002 | 3.67e-01 |
Depression | SBLUP.Inf | SBLUP.Inf | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
Depression | LDpred2.MultiPRS | SBLUP.Inf | 0.144 | 0.141 | 0.003 | 0.6679532 | 0.143 | 0.137 | 0.006 | 9.31e-03 |
Depression | pT+clump.10FCVal | SBLUP.Inf | 0.120 | 0.141 | -0.021 | 0.0000000 | 0.120 | 0.137 | -0.018 | 3.05e-03 |
Depression | LDpred1.Inf | SBLUP.Inf | 0.141 | 0.141 | 0.000 | 0.9729567 | 0.137 | 0.137 | -0.001 | 5.14e-01 |
Depression | lassosum.10FCVal | SBLUP.Inf | 0.143 | 0.141 | 0.002 | 0.2431645 | 0.143 | 0.137 | 0.006 | 6.04e-02 |
Depression | LDpred1.10FCVal | SBLUP.Inf | 0.142 | 0.141 | 0.001 | 0.1079279 | 0.140 | 0.137 | 0.002 | 1.43e-01 |
Depression | MegaPRS.PseudoVal | SBLUP.Inf | 0.148 | 0.141 | 0.007 | 0.0000260 | 0.147 | 0.137 | 0.009 | 3.39e-03 |
Depression | LDpred2.10FCVal | SBLUP.Inf | 0.144 | 0.141 | 0.003 | 0.0000514 | 0.140 | 0.137 | 0.003 | 5.09e-02 |
Intelligence | LDpred1.10FCVal | All.MultiPRS | 0.100 | 0.104 | -0.003 | 0.6467932 | 0.094 | 0.098 | -0.004 | 1.62e-01 |
Intelligence | pT+clump.10FCVal | All.MultiPRS | 0.084 | 0.104 | -0.020 | 0.0047542 | 0.074 | 0.098 | -0.024 | 1.65e-04 |
Intelligence | LDpred1.MultiPRS | All.MultiPRS | 0.101 | 0.104 | -0.003 | 0.6648215 | 0.094 | 0.098 | -0.004 | 1.74e-01 |
Intelligence | LDpred2.Inf | All.MultiPRS | 0.099 | 0.104 | -0.005 | 0.5162735 | 0.094 | 0.098 | -0.004 | 2.51e-01 |
Intelligence | MegaPRS.PseudoVal | All.MultiPRS | 0.101 | 0.104 | -0.003 | 0.6823295 | 0.095 | 0.098 | -0.004 | 2.17e-01 |
Intelligence | LDpred2.10FCVal | All.MultiPRS | 0.102 | 0.104 | -0.002 | 0.7791684 | 0.095 | 0.098 | -0.003 | 3.10e-01 |
Intelligence | LDpred2.MultiPRS | All.MultiPRS | 0.103 | 0.104 | -0.001 | 0.9056328 | 0.098 | 0.098 | 0.000 | 9.42e-01 |
Intelligence | lassosum.10FCVal | All.MultiPRS | 0.098 | 0.104 | -0.005 | 0.4420857 | 0.096 | 0.098 | -0.003 | 4.41e-01 |
Intelligence | LDpred1.Inf | All.MultiPRS | 0.099 | 0.104 | -0.005 | 0.4674685 | 0.094 | 0.098 | -0.005 | 1.84e-01 |
Intelligence | lassosum.MultiPRS | All.MultiPRS | 0.102 | 0.104 | -0.002 | 0.0965141 | 0.099 | 0.098 | 0.001 | 7.30e-01 |
Intelligence | MegaPRS.10FCVal | All.MultiPRS | 0.102 | 0.104 | -0.001 | 0.8432282 | 0.096 | 0.098 | -0.003 | 2.90e-01 |
Intelligence | All.MultiPRS | All.MultiPRS | 0.104 | 0.104 | 0.000 | 1.0000000 | 0.098 | 0.098 | 0.000 | 1.00e+00 |
Intelligence | SBayesR.PseudoVal | All.MultiPRS | 0.100 | 0.104 | -0.004 | 0.5888802 | 0.090 | 0.098 | -0.008 | 1.84e-02 |
Intelligence | MegaPRS.MultiPRS | All.MultiPRS | 0.104 | 0.104 | 0.000 | 0.9796150 | 0.097 | 0.098 | -0.001 | 5.89e-01 |
Intelligence | pT+clump.MultiPRS | All.MultiPRS | 0.087 | 0.104 | -0.017 | 0.0150942 | 0.081 | 0.098 | -0.017 | 2.75e-03 |
Intelligence | lassosum.PseudoVal | All.MultiPRS | 0.064 | 0.104 | -0.039 | 0.0000000 | 0.055 | 0.098 | -0.044 | 3.31e-07 |
Intelligence | LDpred2.PseudoVal | All.MultiPRS | 0.100 | 0.104 | -0.003 | 0.6274826 | 0.095 | 0.098 | -0.003 | 3.20e-01 |
Intelligence | DBSLMM.PseudoVal | All.MultiPRS | 0.090 | 0.104 | -0.013 | 0.0568532 | 0.082 | 0.098 | -0.016 | 1.00e-03 |
Intelligence | SBLUP.Inf | All.MultiPRS | 0.099 | 0.104 | -0.005 | 0.5215782 | 0.094 | 0.098 | -0.005 | 1.69e-01 |
Intelligence | LDpred1.Inf | DBSLMM.PseudoVal | 0.099 | 0.090 | 0.008 | 0.0016343 | 0.094 | 0.082 | 0.012 | 2.61e-02 |
Intelligence | LDpred2.Inf | DBSLMM.PseudoVal | 0.099 | 0.090 | 0.009 | 0.0004771 | 0.094 | 0.082 | 0.012 | 1.29e-02 |
Intelligence | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.103 | 0.090 | 0.013 | 0.0737564 | 0.098 | 0.082 | 0.016 | 1.97e-03 |
Intelligence | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.084 | 0.090 | -0.007 | 0.0943972 | 0.074 | 0.082 | -0.008 | 3.05e-01 |
Intelligence | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.090 | 0.010 | 0.0003902 | 0.090 | 0.082 | 0.008 | 1.32e-01 |
Intelligence | All.MultiPRS | DBSLMM.PseudoVal | 0.104 | 0.090 | 0.013 | 0.0568532 | 0.098 | 0.082 | 0.016 | 1.00e-03 |
Intelligence | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.102 | 0.090 | 0.012 | 0.0000094 | 0.096 | 0.082 | 0.014 | 1.25e-02 |
Intelligence | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.104 | 0.090 | 0.013 | 0.0590641 | 0.097 | 0.082 | 0.015 | 7.24e-03 |
Intelligence | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.100 | 0.090 | 0.010 | 0.0000457 | 0.095 | 0.082 | 0.013 | 6.29e-03 |
Intelligence | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.064 | 0.090 | -0.026 | 0.0000000 | 0.055 | 0.082 | -0.027 | 3.10e-03 |
Intelligence | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.087 | 0.090 | -0.004 | 0.6013020 | 0.081 | 0.082 | -0.001 | 9.37e-01 |
Intelligence | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.101 | 0.090 | 0.011 | 0.0001470 | 0.095 | 0.082 | 0.013 | 2.19e-02 |
Intelligence | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.102 | 0.090 | 0.012 | 0.1002310 | 0.099 | 0.082 | 0.017 | 5.67e-04 |
Intelligence | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.102 | 0.090 | 0.011 | 0.0000007 | 0.095 | 0.082 | 0.014 | 3.44e-03 |
Intelligence | lassosum.10FCVal | DBSLMM.PseudoVal | 0.098 | 0.090 | 0.008 | 0.0054985 | 0.096 | 0.082 | 0.014 | 1.72e-02 |
Intelligence | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.100 | 0.090 | 0.010 | 0.0000533 | 0.094 | 0.082 | 0.012 | 1.79e-02 |
Intelligence | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.090 | 0.090 | 0.000 | 1.0000000 | 0.082 | 0.082 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.101 | 0.090 | 0.010 | 0.1206724 | 0.094 | 0.082 | 0.012 | 1.43e-02 |
Intelligence | SBLUP.Inf | DBSLMM.PseudoVal | 0.099 | 0.090 | 0.009 | 0.0004109 | 0.094 | 0.082 | 0.012 | 1.98e-02 |
Intelligence | SBayesR.PseudoVal | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.7792117 | 0.090 | 0.099 | -0.009 | 1.54e-02 |
Intelligence | LDpred1.Inf | lassosum.MultiPRS | 0.099 | 0.102 | -0.003 | 0.6410392 | 0.094 | 0.099 | -0.005 | 1.31e-01 |
Intelligence | MegaPRS.10FCVal | lassosum.MultiPRS | 0.102 | 0.102 | 0.000 | 0.9504119 | 0.096 | 0.099 | -0.004 | 2.90e-01 |
Intelligence | LDpred2.MultiPRS | lassosum.MultiPRS | 0.103 | 0.102 | 0.001 | 0.8863390 | 0.098 | 0.099 | -0.001 | 7.87e-01 |
Intelligence | LDpred2.PseudoVal | lassosum.MultiPRS | 0.100 | 0.102 | -0.002 | 0.8219438 | 0.095 | 0.099 | -0.004 | 2.03e-01 |
Intelligence | LDpred2.10FCVal | lassosum.MultiPRS | 0.102 | 0.102 | 0.000 | 0.9839519 | 0.095 | 0.099 | -0.004 | 1.67e-01 |
Intelligence | pT+clump.MultiPRS | lassosum.MultiPRS | 0.087 | 0.102 | -0.015 | 0.0300499 | 0.081 | 0.099 | -0.018 | 2.04e-03 |
Intelligence | lassosum.MultiPRS | lassosum.MultiPRS | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.099 | 0.099 | 0.000 | 1.00e+00 |
Intelligence | lassosum.PseudoVal | lassosum.MultiPRS | 0.064 | 0.102 | -0.037 | 0.0000001 | 0.055 | 0.099 | -0.044 | 1.21e-07 |
Intelligence | LDpred1.MultiPRS | lassosum.MultiPRS | 0.101 | 0.102 | -0.001 | 0.8652422 | 0.094 | 0.099 | -0.005 | 1.18e-01 |
Intelligence | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.104 | 0.102 | 0.002 | 0.8130293 | 0.097 | 0.099 | -0.002 | 5.37e-01 |
Intelligence | LDpred1.10FCVal | lassosum.MultiPRS | 0.100 | 0.102 | -0.001 | 0.8431186 | 0.094 | 0.099 | -0.005 | 1.02e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.101 | 0.102 | -0.001 | 0.8811428 | 0.095 | 0.099 | -0.004 | 2.05e-01 |
Intelligence | pT+clump.10FCVal | lassosum.MultiPRS | 0.084 | 0.102 | -0.018 | 0.0103786 | 0.074 | 0.099 | -0.025 | 1.36e-04 |
Intelligence | lassosum.10FCVal | lassosum.MultiPRS | 0.098 | 0.102 | -0.004 | 0.6109360 | 0.096 | 0.099 | -0.003 | 2.32e-01 |
Intelligence | SBLUP.Inf | lassosum.MultiPRS | 0.099 | 0.102 | -0.003 | 0.7034516 | 0.094 | 0.099 | -0.005 | 1.00e-01 |
Intelligence | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.090 | 0.102 | -0.012 | 0.1002310 | 0.082 | 0.099 | -0.017 | 5.67e-04 |
Intelligence | All.MultiPRS | lassosum.MultiPRS | 0.104 | 0.102 | 0.002 | 0.0965141 | 0.098 | 0.099 | -0.001 | 7.30e-01 |
Intelligence | LDpred2.Inf | lassosum.MultiPRS | 0.099 | 0.102 | -0.003 | 0.6973906 | 0.094 | 0.099 | -0.005 | 1.63e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.101 | 0.064 | 0.036 | 0.0000000 | 0.095 | 0.055 | 0.040 | 1.46e-06 |
Intelligence | LDpred2.PseudoVal | lassosum.PseudoVal | 0.100 | 0.064 | 0.036 | 0.0000000 | 0.095 | 0.055 | 0.041 | 1.64e-05 |
Intelligence | LDpred1.MultiPRS | lassosum.PseudoVal | 0.101 | 0.064 | 0.036 | 0.0000001 | 0.094 | 0.055 | 0.040 | 2.54e-06 |
Intelligence | lassosum.PseudoVal | lassosum.PseudoVal | 0.064 | 0.064 | 0.000 | 1.0000000 | 0.055 | 0.055 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.Inf | lassosum.PseudoVal | 0.099 | 0.064 | 0.035 | 0.0000000 | 0.094 | 0.055 | 0.040 | 5.65e-05 |
Intelligence | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.090 | 0.064 | 0.026 | 0.0000000 | 0.082 | 0.055 | 0.027 | 3.10e-03 |
Intelligence | SBLUP.Inf | lassosum.PseudoVal | 0.099 | 0.064 | 0.035 | 0.0000000 | 0.094 | 0.055 | 0.039 | 7.96e-05 |
Intelligence | LDpred2.MultiPRS | lassosum.PseudoVal | 0.103 | 0.064 | 0.038 | 0.0000000 | 0.098 | 0.055 | 0.043 | 6.57e-07 |
Intelligence | pT+clump.10FCVal | lassosum.PseudoVal | 0.084 | 0.064 | 0.019 | 0.0002572 | 0.074 | 0.055 | 0.019 | 6.68e-02 |
Intelligence | LDpred1.Inf | lassosum.PseudoVal | 0.099 | 0.064 | 0.034 | 0.0000000 | 0.094 | 0.055 | 0.039 | 8.86e-05 |
Intelligence | lassosum.MultiPRS | lassosum.PseudoVal | 0.102 | 0.064 | 0.037 | 0.0000001 | 0.099 | 0.055 | 0.044 | 1.21e-07 |
Intelligence | MegaPRS.10FCVal | lassosum.PseudoVal | 0.102 | 0.064 | 0.038 | 0.0000000 | 0.096 | 0.055 | 0.041 | 5.85e-06 |
Intelligence | All.MultiPRS | lassosum.PseudoVal | 0.104 | 0.064 | 0.039 | 0.0000000 | 0.098 | 0.055 | 0.044 | 3.31e-07 |
Intelligence | SBayesR.PseudoVal | lassosum.PseudoVal | 0.100 | 0.064 | 0.036 | 0.0000000 | 0.090 | 0.055 | 0.036 | 9.83e-06 |
Intelligence | lassosum.10FCVal | lassosum.PseudoVal | 0.098 | 0.064 | 0.034 | 0.0000000 | 0.096 | 0.055 | 0.041 | 1.31e-05 |
Intelligence | pT+clump.MultiPRS | lassosum.PseudoVal | 0.087 | 0.064 | 0.022 | 0.0015975 | 0.081 | 0.055 | 0.027 | 2.40e-03 |
Intelligence | LDpred1.10FCVal | lassosum.PseudoVal | 0.100 | 0.064 | 0.036 | 0.0000000 | 0.094 | 0.055 | 0.039 | 5.66e-06 |
Intelligence | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.104 | 0.064 | 0.039 | 0.0000000 | 0.097 | 0.055 | 0.042 | 2.47e-06 |
Intelligence | LDpred2.10FCVal | lassosum.PseudoVal | 0.102 | 0.064 | 0.037 | 0.0000000 | 0.095 | 0.055 | 0.041 | 6.72e-07 |
Intelligence | lassosum.10FCVal | lassosum.10FCVal | 0.098 | 0.098 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
Intelligence | pT+clump.MultiPRS | lassosum.10FCVal | 0.087 | 0.098 | -0.012 | 0.0969183 | 0.081 | 0.096 | -0.014 | 9.48e-03 |
Intelligence | LDpred2.MultiPRS | lassosum.10FCVal | 0.103 | 0.098 | 0.005 | 0.5129954 | 0.098 | 0.096 | 0.003 | 5.75e-01 |
Intelligence | SBayesR.PseudoVal | lassosum.10FCVal | 0.100 | 0.098 | 0.002 | 0.4096265 | 0.090 | 0.096 | -0.005 | 1.67e-01 |
Intelligence | LDpred2.10FCVal | lassosum.10FCVal | 0.102 | 0.098 | 0.003 | 0.0535441 | 0.095 | 0.096 | 0.000 | 9.86e-01 |
Intelligence | SBLUP.Inf | lassosum.10FCVal | 0.099 | 0.098 | 0.001 | 0.5754766 | 0.094 | 0.096 | -0.002 | 5.42e-01 |
Intelligence | lassosum.MultiPRS | lassosum.10FCVal | 0.102 | 0.098 | 0.004 | 0.6109360 | 0.099 | 0.096 | 0.003 | 2.32e-01 |
Intelligence | LDpred2.PseudoVal | lassosum.10FCVal | 0.100 | 0.098 | 0.002 | 0.1686922 | 0.095 | 0.096 | 0.000 | 9.19e-01 |
Intelligence | LDpred1.MultiPRS | lassosum.10FCVal | 0.101 | 0.098 | 0.002 | 0.7176644 | 0.094 | 0.096 | -0.001 | 7.06e-01 |
Intelligence | LDpred2.Inf | lassosum.10FCVal | 0.099 | 0.098 | 0.001 | 0.6013238 | 0.094 | 0.096 | -0.001 | 7.27e-01 |
Intelligence | LDpred1.10FCVal | lassosum.10FCVal | 0.100 | 0.098 | 0.002 | 0.1952154 | 0.094 | 0.096 | -0.002 | 6.22e-01 |
Intelligence | MegaPRS.MultiPRS | lassosum.10FCVal | 0.104 | 0.098 | 0.005 | 0.4536359 | 0.097 | 0.096 | 0.001 | 7.47e-01 |
Intelligence | pT+clump.10FCVal | lassosum.10FCVal | 0.084 | 0.098 | -0.014 | 0.0000003 | 0.074 | 0.096 | -0.022 | 1.27e-04 |
Intelligence | All.MultiPRS | lassosum.10FCVal | 0.104 | 0.098 | 0.005 | 0.4420857 | 0.098 | 0.096 | 0.003 | 4.41e-01 |
Intelligence | MegaPRS.PseudoVal | lassosum.10FCVal | 0.101 | 0.098 | 0.003 | 0.1331369 | 0.095 | 0.096 | -0.001 | 7.96e-01 |
Intelligence | DBSLMM.PseudoVal | lassosum.10FCVal | 0.090 | 0.098 | -0.008 | 0.0054985 | 0.082 | 0.096 | -0.014 | 1.72e-02 |
Intelligence | MegaPRS.10FCVal | lassosum.10FCVal | 0.102 | 0.098 | 0.004 | 0.0113697 | 0.096 | 0.096 | 0.000 | 9.95e-01 |
Intelligence | lassosum.PseudoVal | lassosum.10FCVal | 0.064 | 0.098 | -0.034 | 0.0000000 | 0.055 | 0.096 | -0.041 | 1.31e-05 |
Intelligence | LDpred1.Inf | lassosum.10FCVal | 0.099 | 0.098 | 0.000 | 0.8643235 | 0.094 | 0.096 | -0.002 | 5.74e-01 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.101 | 0.104 | -0.003 | 0.6986180 | 0.095 | 0.097 | -0.002 | 3.98e-01 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.090 | 0.104 | -0.013 | 0.0590641 | 0.082 | 0.097 | -0.015 | 7.24e-03 |
Intelligence | SBLUP.Inf | MegaPRS.MultiPRS | 0.099 | 0.104 | -0.004 | 0.5356487 | 0.094 | 0.097 | -0.003 | 4.05e-01 |
Intelligence | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.103 | 0.104 | -0.001 | 0.9255678 | 0.098 | 0.097 | 0.001 | 7.71e-01 |
Intelligence | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.084 | 0.104 | -0.020 | 0.0049683 | 0.074 | 0.097 | -0.023 | 9.98e-04 |
Intelligence | LDpred1.Inf | MegaPRS.MultiPRS | 0.099 | 0.104 | -0.005 | 0.4808305 | 0.094 | 0.097 | -0.003 | 4.23e-01 |
Intelligence | LDpred2.Inf | MegaPRS.MultiPRS | 0.099 | 0.104 | -0.004 | 0.5302830 | 0.094 | 0.097 | -0.002 | 5.30e-01 |
Intelligence | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.102 | 0.104 | -0.001 | 0.8620585 | 0.096 | 0.097 | -0.001 | 5.02e-01 |
Intelligence | All.MultiPRS | MegaPRS.MultiPRS | 0.104 | 0.104 | 0.000 | 0.9796150 | 0.098 | 0.097 | 0.001 | 5.89e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.104 | -0.004 | 0.6040372 | 0.090 | 0.097 | -0.007 | 1.03e-01 |
Intelligence | lassosum.10FCVal | MegaPRS.MultiPRS | 0.098 | 0.104 | -0.005 | 0.4536359 | 0.096 | 0.097 | -0.001 | 7.47e-01 |
Intelligence | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.087 | 0.104 | -0.017 | 0.0161177 | 0.081 | 0.097 | -0.015 | 1.39e-02 |
Intelligence | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.102 | 0.104 | -0.002 | 0.8130293 | 0.099 | 0.097 | 0.002 | 5.37e-01 |
Intelligence | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.100 | 0.104 | -0.003 | 0.6434706 | 0.095 | 0.097 | -0.002 | 6.62e-01 |
Intelligence | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.102 | 0.104 | -0.002 | 0.7973903 | 0.095 | 0.097 | -0.001 | 7.02e-01 |
Intelligence | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.064 | 0.104 | -0.039 | 0.0000000 | 0.055 | 0.097 | -0.042 | 2.47e-06 |
Intelligence | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.100 | 0.104 | -0.003 | 0.6631819 | 0.094 | 0.097 | -0.003 | 4.44e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.104 | 0.104 | 0.000 | 1.0000000 | 0.097 | 0.097 | 0.000 | 1.00e+00 |
Intelligence | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.101 | 0.104 | -0.003 | 0.6851625 | 0.094 | 0.097 | -0.003 | 4.88e-01 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.101 | 0.101 | 0.000 | 1.0000000 | 0.095 | 0.095 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.102 | 0.101 | 0.001 | 0.5760032 | 0.095 | 0.095 | 0.001 | 8.09e-01 |
Intelligence | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.101 | 0.101 | 0.000 | 0.9849283 | 0.094 | 0.095 | 0.000 | 8.92e-01 |
Intelligence | LDpred2.Inf | MegaPRS.PseudoVal | 0.099 | 0.101 | -0.002 | 0.3812747 | 0.094 | 0.095 | 0.000 | 9.48e-01 |
Intelligence | LDpred1.Inf | MegaPRS.PseudoVal | 0.099 | 0.101 | -0.002 | 0.2794370 | 0.094 | 0.095 | -0.001 | 7.86e-01 |
Intelligence | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.102 | 0.101 | 0.001 | 0.8811428 | 0.099 | 0.095 | 0.004 | 2.05e-01 |
Intelligence | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.102 | 0.101 | 0.001 | 0.0261514 | 0.096 | 0.095 | 0.001 | 5.31e-01 |
Intelligence | All.MultiPRS | MegaPRS.PseudoVal | 0.104 | 0.101 | 0.003 | 0.6823295 | 0.098 | 0.095 | 0.004 | 2.17e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.101 | -0.001 | 0.6147771 | 0.090 | 0.095 | -0.005 | 2.20e-01 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.090 | 0.101 | -0.011 | 0.0001470 | 0.082 | 0.095 | -0.013 | 2.19e-02 |
Intelligence | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.087 | 0.101 | -0.014 | 0.0434406 | 0.081 | 0.095 | -0.013 | 1.96e-02 |
Intelligence | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.064 | 0.101 | -0.036 | 0.0000000 | 0.055 | 0.095 | -0.040 | 1.46e-06 |
Intelligence | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.100 | 0.101 | -0.001 | 0.7579923 | 0.095 | 0.095 | 0.001 | 8.69e-01 |
Intelligence | lassosum.10FCVal | MegaPRS.PseudoVal | 0.098 | 0.101 | -0.003 | 0.1331369 | 0.096 | 0.095 | 0.001 | 7.96e-01 |
Intelligence | SBLUP.Inf | MegaPRS.PseudoVal | 0.099 | 0.101 | -0.002 | 0.4028241 | 0.094 | 0.095 | -0.001 | 7.83e-01 |
Intelligence | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.100 | 0.101 | 0.000 | 0.8459929 | 0.094 | 0.095 | -0.001 | 8.18e-01 |
Intelligence | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.084 | 0.101 | -0.017 | 0.0000002 | 0.074 | 0.095 | -0.021 | 1.26e-03 |
Intelligence | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.103 | 0.101 | 0.002 | 0.7691862 | 0.098 | 0.095 | 0.003 | 4.40e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.104 | 0.101 | 0.003 | 0.6986180 | 0.097 | 0.095 | 0.002 | 3.98e-01 |
Intelligence | lassosum.10FCVal | MegaPRS.10FCVal | 0.098 | 0.102 | -0.004 | 0.0113697 | 0.096 | 0.096 | 0.000 | 9.95e-01 |
Intelligence | SBLUP.Inf | MegaPRS.10FCVal | 0.099 | 0.102 | -0.003 | 0.0695316 | 0.094 | 0.096 | -0.002 | 5.77e-01 |
Intelligence | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.102 | -0.002 | 0.2052500 | 0.090 | 0.096 | -0.005 | 1.62e-01 |
Intelligence | All.MultiPRS | MegaPRS.10FCVal | 0.104 | 0.102 | 0.001 | 0.8432282 | 0.098 | 0.096 | 0.003 | 2.90e-01 |
Intelligence | LDpred2.Inf | MegaPRS.10FCVal | 0.099 | 0.102 | -0.003 | 0.0606258 | 0.094 | 0.096 | -0.001 | 7.46e-01 |
Intelligence | lassosum.MultiPRS | MegaPRS.10FCVal | 0.102 | 0.102 | 0.000 | 0.9504119 | 0.099 | 0.096 | 0.004 | 2.90e-01 |
Intelligence | LDpred2.10FCVal | MegaPRS.10FCVal | 0.102 | 0.102 | -0.001 | 0.7280487 | 0.095 | 0.096 | 0.000 | 9.90e-01 |
Intelligence | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.101 | 0.102 | -0.002 | 0.8078679 | 0.094 | 0.096 | -0.001 | 7.07e-01 |
Intelligence | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.100 | 0.102 | -0.002 | 0.1934899 | 0.095 | 0.096 | 0.000 | 9.31e-01 |
Intelligence | LDpred1.10FCVal | MegaPRS.10FCVal | 0.100 | 0.102 | -0.002 | 0.2927304 | 0.094 | 0.096 | -0.002 | 6.37e-01 |
Intelligence | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.087 | 0.102 | -0.016 | 0.0255312 | 0.081 | 0.096 | -0.014 | 1.55e-02 |
Intelligence | pT+clump.10FCVal | MegaPRS.10FCVal | 0.084 | 0.102 | -0.019 | 0.0000000 | 0.074 | 0.096 | -0.022 | 6.47e-04 |
Intelligence | lassosum.PseudoVal | MegaPRS.10FCVal | 0.064 | 0.102 | -0.038 | 0.0000000 | 0.055 | 0.096 | -0.041 | 5.85e-06 |
Intelligence | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.101 | 0.102 | -0.001 | 0.0261514 | 0.095 | 0.096 | -0.001 | 5.31e-01 |
Intelligence | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.104 | 0.102 | 0.001 | 0.8620585 | 0.097 | 0.096 | 0.001 | 5.02e-01 |
Intelligence | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.103 | 0.102 | 0.001 | 0.9359340 | 0.098 | 0.096 | 0.003 | 5.53e-01 |
Intelligence | LDpred1.Inf | MegaPRS.10FCVal | 0.099 | 0.102 | -0.004 | 0.0441285 | 0.094 | 0.096 | -0.002 | 5.95e-01 |
Intelligence | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.090 | 0.102 | -0.012 | 0.0000094 | 0.082 | 0.096 | -0.014 | 1.25e-02 |
Intelligence | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.087 | 0.101 | -0.014 | 0.0455121 | 0.081 | 0.094 | -0.013 | 2.59e-02 |
Intelligence | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.102 | 0.101 | 0.002 | 0.8078679 | 0.096 | 0.094 | 0.001 | 7.07e-01 |
Intelligence | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.101 | 0.000 | 0.9513945 | 0.095 | 0.094 | 0.001 | 6.24e-01 |
Intelligence | LDpred1.Inf | LDpred1.MultiPRS | 0.099 | 0.101 | -0.002 | 0.7514086 | 0.094 | 0.094 | -0.001 | 7.67e-01 |
Intelligence | lassosum.10FCVal | LDpred1.MultiPRS | 0.098 | 0.101 | -0.002 | 0.7176644 | 0.096 | 0.094 | 0.001 | 7.06e-01 |
Intelligence | LDpred1.10FCVal | LDpred1.MultiPRS | 0.100 | 0.101 | 0.000 | 0.9744048 | 0.094 | 0.094 | 0.000 | 7.75e-01 |
Intelligence | lassosum.MultiPRS | LDpred1.MultiPRS | 0.102 | 0.101 | 0.001 | 0.8652422 | 0.099 | 0.094 | 0.005 | 1.18e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.101 | 0.101 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | All.MultiPRS | LDpred1.MultiPRS | 0.104 | 0.101 | 0.003 | 0.6648215 | 0.098 | 0.094 | 0.004 | 1.74e-01 |
Intelligence | LDpred2.Inf | LDpred1.MultiPRS | 0.099 | 0.101 | -0.002 | 0.8145135 | 0.094 | 0.094 | 0.000 | 9.28e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.104 | 0.101 | 0.003 | 0.6851625 | 0.097 | 0.094 | 0.003 | 4.88e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.MultiPRS | 0.084 | 0.101 | -0.017 | 0.0120525 | 0.074 | 0.094 | -0.020 | 1.88e-03 |
Intelligence | lassosum.PseudoVal | LDpred1.MultiPRS | 0.064 | 0.101 | -0.036 | 0.0000001 | 0.055 | 0.094 | -0.040 | 2.54e-06 |
Intelligence | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.100 | 0.101 | -0.001 | 0.9049437 | 0.090 | 0.094 | -0.004 | 1.40e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.090 | 0.101 | -0.010 | 0.1206724 | 0.082 | 0.094 | -0.012 | 1.43e-02 |
Intelligence | SBLUP.Inf | LDpred1.MultiPRS | 0.099 | 0.101 | -0.002 | 0.8212410 | 0.094 | 0.094 | -0.001 | 8.14e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.103 | 0.101 | 0.002 | 0.7553480 | 0.098 | 0.094 | 0.004 | 2.57e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.101 | 0.101 | 0.000 | 0.9849283 | 0.095 | 0.094 | 0.000 | 8.92e-01 |
Intelligence | LDpred2.10FCVal | LDpred1.MultiPRS | 0.102 | 0.101 | 0.001 | 0.8757274 | 0.095 | 0.094 | 0.001 | 5.07e-01 |
Intelligence | LDpred1.10FCVal | LDpred1.Inf | 0.100 | 0.099 | 0.002 | 0.0735845 | 0.094 | 0.094 | 0.000 | 8.85e-01 |
Intelligence | LDpred2.PseudoVal | LDpred1.Inf | 0.100 | 0.099 | 0.002 | 0.0660084 | 0.095 | 0.094 | 0.002 | 3.53e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.Inf | 0.101 | 0.099 | 0.002 | 0.7514086 | 0.094 | 0.094 | 0.001 | 7.67e-01 |
Intelligence | pT+clump.MultiPRS | LDpred1.Inf | 0.087 | 0.099 | -0.012 | 0.0887390 | 0.081 | 0.094 | -0.012 | 4.90e-02 |
Intelligence | MegaPRS.PseudoVal | LDpred1.Inf | 0.101 | 0.099 | 0.002 | 0.2794370 | 0.095 | 0.094 | 0.001 | 7.86e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred1.Inf | 0.104 | 0.099 | 0.005 | 0.4808305 | 0.097 | 0.094 | 0.003 | 4.23e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.Inf | 0.084 | 0.099 | -0.015 | 0.0000032 | 0.074 | 0.094 | -0.020 | 1.85e-03 |
Intelligence | lassosum.PseudoVal | LDpred1.Inf | 0.064 | 0.099 | -0.034 | 0.0000000 | 0.055 | 0.094 | -0.039 | 8.86e-05 |
Intelligence | LDpred2.Inf | LDpred1.Inf | 0.099 | 0.099 | 0.001 | 0.5228632 | 0.094 | 0.094 | 0.001 | 6.05e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred1.Inf | 0.090 | 0.099 | -0.008 | 0.0016343 | 0.082 | 0.094 | -0.012 | 2.61e-02 |
Intelligence | SBLUP.Inf | LDpred1.Inf | 0.099 | 0.099 | 0.001 | 0.4748812 | 0.094 | 0.094 | 0.000 | 9.81e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.Inf | 0.103 | 0.099 | 0.004 | 0.5413368 | 0.098 | 0.094 | 0.005 | 2.53e-01 |
Intelligence | lassosum.10FCVal | LDpred1.Inf | 0.098 | 0.099 | 0.000 | 0.8643235 | 0.096 | 0.094 | 0.002 | 5.74e-01 |
Intelligence | LDpred1.Inf | LDpred1.Inf | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | lassosum.MultiPRS | LDpred1.Inf | 0.102 | 0.099 | 0.003 | 0.6410392 | 0.099 | 0.094 | 0.005 | 1.31e-01 |
Intelligence | MegaPRS.10FCVal | LDpred1.Inf | 0.102 | 0.099 | 0.004 | 0.0441285 | 0.096 | 0.094 | 0.002 | 5.95e-01 |
Intelligence | All.MultiPRS | LDpred1.Inf | 0.104 | 0.099 | 0.005 | 0.4674685 | 0.098 | 0.094 | 0.005 | 1.84e-01 |
Intelligence | SBayesR.PseudoVal | LDpred1.Inf | 0.100 | 0.099 | 0.001 | 0.4845994 | 0.090 | 0.094 | -0.003 | 3.58e-01 |
Intelligence | LDpred2.10FCVal | LDpred1.Inf | 0.102 | 0.099 | 0.003 | 0.0331285 | 0.095 | 0.094 | 0.002 | 5.09e-01 |
Intelligence | All.MultiPRS | LDpred1.10FCVal | 0.104 | 0.100 | 0.003 | 0.6467932 | 0.098 | 0.094 | 0.004 | 1.62e-01 |
Intelligence | pT+clump.MultiPRS | LDpred1.10FCVal | 0.087 | 0.100 | -0.014 | 0.0487622 | 0.081 | 0.094 | -0.012 | 3.06e-02 |
Intelligence | LDpred1.10FCVal | LDpred1.10FCVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | SBayesR.PseudoVal | LDpred1.10FCVal | 0.100 | 0.100 | -0.001 | 0.6759178 | 0.090 | 0.094 | -0.004 | 1.79e-01 |
Intelligence | LDpred1.MultiPRS | LDpred1.10FCVal | 0.101 | 0.100 | 0.000 | 0.9744048 | 0.094 | 0.094 | 0.000 | 7.75e-01 |
Intelligence | SBLUP.Inf | LDpred1.10FCVal | 0.099 | 0.100 | -0.001 | 0.3153250 | 0.094 | 0.094 | 0.000 | 9.18e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.101 | 0.100 | 0.000 | 0.8459929 | 0.095 | 0.094 | 0.001 | 8.18e-01 |
Intelligence | LDpred2.PseudoVal | LDpred1.10FCVal | 0.100 | 0.100 | 0.000 | 0.8570794 | 0.095 | 0.094 | 0.001 | 5.15e-01 |
Intelligence | LDpred2.MultiPRS | LDpred1.10FCVal | 0.103 | 0.100 | 0.002 | 0.7327177 | 0.098 | 0.094 | 0.004 | 2.41e-01 |
Intelligence | LDpred2.Inf | LDpred1.10FCVal | 0.099 | 0.100 | -0.001 | 0.2971889 | 0.094 | 0.094 | 0.001 | 8.27e-01 |
Intelligence | LDpred1.Inf | LDpred1.10FCVal | 0.099 | 0.100 | -0.002 | 0.0735845 | 0.094 | 0.094 | 0.000 | 8.85e-01 |
Intelligence | pT+clump.10FCVal | LDpred1.10FCVal | 0.084 | 0.100 | -0.017 | 0.0000003 | 0.074 | 0.094 | -0.020 | 1.99e-03 |
Intelligence | LDpred2.10FCVal | LDpred1.10FCVal | 0.102 | 0.100 | 0.001 | 0.2064651 | 0.095 | 0.094 | 0.002 | 4.10e-01 |
Intelligence | lassosum.PseudoVal | LDpred1.10FCVal | 0.064 | 0.100 | -0.036 | 0.0000000 | 0.055 | 0.094 | -0.039 | 5.66e-06 |
Intelligence | lassosum.10FCVal | LDpred1.10FCVal | 0.098 | 0.100 | -0.002 | 0.1952154 | 0.096 | 0.094 | 0.002 | 6.22e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.104 | 0.100 | 0.003 | 0.6631819 | 0.097 | 0.094 | 0.003 | 4.44e-01 |
Intelligence | lassosum.MultiPRS | LDpred1.10FCVal | 0.102 | 0.100 | 0.001 | 0.8431186 | 0.099 | 0.094 | 0.005 | 1.02e-01 |
Intelligence | MegaPRS.10FCVal | LDpred1.10FCVal | 0.102 | 0.100 | 0.002 | 0.2927304 | 0.096 | 0.094 | 0.002 | 6.37e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.090 | 0.100 | -0.010 | 0.0000533 | 0.082 | 0.094 | -0.012 | 1.79e-02 |
Intelligence | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.103 | -0.003 | 0.6715446 | 0.090 | 0.098 | -0.008 | 4.77e-02 |
Intelligence | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.098 | 0.098 | 0.000 | 1.00e+00 |
Intelligence | pT+clump.10FCVal | LDpred2.MultiPRS | 0.084 | 0.103 | -0.019 | 0.0065111 | 0.074 | 0.098 | -0.024 | 7.49e-04 |
Intelligence | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.100 | 0.103 | -0.003 | 0.7121908 | 0.095 | 0.098 | -0.003 | 3.96e-01 |
Intelligence | LDpred2.Inf | LDpred2.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5938053 | 0.094 | 0.098 | -0.004 | 3.09e-01 |
Intelligence | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.087 | 0.103 | -0.016 | 0.0218139 | 0.081 | 0.098 | -0.017 | 8.35e-03 |
Intelligence | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.101 | 0.103 | -0.002 | 0.7691862 | 0.095 | 0.098 | -0.003 | 4.40e-01 |
Intelligence | lassosum.MultiPRS | LDpred2.MultiPRS | 0.102 | 0.103 | -0.001 | 0.8863390 | 0.099 | 0.098 | 0.001 | 7.87e-01 |
Intelligence | LDpred1.Inf | LDpred2.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5413368 | 0.094 | 0.098 | -0.005 | 2.53e-01 |
Intelligence | lassosum.10FCVal | LDpred2.MultiPRS | 0.098 | 0.103 | -0.005 | 0.5129954 | 0.096 | 0.098 | -0.003 | 5.75e-01 |
Intelligence | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.102 | 0.103 | -0.001 | 0.9359340 | 0.096 | 0.098 | -0.003 | 5.53e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.104 | 0.103 | 0.001 | 0.9255678 | 0.097 | 0.098 | -0.001 | 7.71e-01 |
Intelligence | LDpred2.10FCVal | LDpred2.MultiPRS | 0.102 | 0.103 | -0.001 | 0.8703892 | 0.095 | 0.098 | -0.003 | 3.91e-01 |
Intelligence | All.MultiPRS | LDpred2.MultiPRS | 0.104 | 0.103 | 0.001 | 0.9056328 | 0.098 | 0.098 | 0.000 | 9.42e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.MultiPRS | 0.100 | 0.103 | -0.002 | 0.7327177 | 0.094 | 0.098 | -0.004 | 2.41e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.090 | 0.103 | -0.013 | 0.0737564 | 0.082 | 0.098 | -0.016 | 1.97e-03 |
Intelligence | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.101 | 0.103 | -0.002 | 0.7553480 | 0.094 | 0.098 | -0.004 | 2.57e-01 |
Intelligence | lassosum.PseudoVal | LDpred2.MultiPRS | 0.064 | 0.103 | -0.038 | 0.0000000 | 0.055 | 0.098 | -0.043 | 6.57e-07 |
Intelligence | SBLUP.Inf | LDpred2.MultiPRS | 0.099 | 0.103 | -0.004 | 0.5995025 | 0.094 | 0.098 | -0.004 | 2.20e-01 |
Intelligence | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.101 | 0.102 | -0.001 | 0.5760032 | 0.095 | 0.095 | -0.001 | 8.09e-01 |
Intelligence | LDpred2.10FCVal | LDpred2.10FCVal | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.095 | 0.095 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.10FCVal | LDpred2.10FCVal | 0.102 | 0.102 | 0.001 | 0.7280487 | 0.096 | 0.095 | 0.000 | 9.90e-01 |
Intelligence | All.MultiPRS | LDpred2.10FCVal | 0.104 | 0.102 | 0.002 | 0.7791684 | 0.098 | 0.095 | 0.003 | 3.10e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.10FCVal | 0.100 | 0.102 | -0.002 | 0.1813107 | 0.090 | 0.095 | -0.005 | 5.17e-02 |
Intelligence | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.090 | 0.102 | -0.011 | 0.0000007 | 0.082 | 0.095 | -0.014 | 3.44e-03 |
Intelligence | pT+clump.MultiPRS | LDpred2.10FCVal | 0.087 | 0.102 | -0.015 | 0.0315427 | 0.081 | 0.095 | -0.014 | 1.67e-02 |
Intelligence | lassosum.MultiPRS | LDpred2.10FCVal | 0.102 | 0.102 | 0.000 | 0.9839519 | 0.099 | 0.095 | 0.004 | 1.67e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.10FCVal | 0.100 | 0.102 | -0.001 | 0.1263829 | 0.095 | 0.095 | 0.000 | 9.03e-01 |
Intelligence | lassosum.10FCVal | LDpred2.10FCVal | 0.098 | 0.102 | -0.003 | 0.0535441 | 0.096 | 0.095 | 0.000 | 9.86e-01 |
Intelligence | SBLUP.Inf | LDpred2.10FCVal | 0.099 | 0.102 | -0.003 | 0.0423903 | 0.094 | 0.095 | -0.002 | 4.51e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.10FCVal | 0.100 | 0.102 | -0.001 | 0.2064651 | 0.094 | 0.095 | -0.002 | 4.10e-01 |
Intelligence | pT+clump.10FCVal | LDpred2.10FCVal | 0.084 | 0.102 | -0.018 | 0.0000001 | 0.074 | 0.095 | -0.021 | 1.47e-03 |
Intelligence | LDpred1.MultiPRS | LDpred2.10FCVal | 0.101 | 0.102 | -0.001 | 0.8757274 | 0.094 | 0.095 | -0.001 | 5.07e-01 |
Intelligence | LDpred2.Inf | LDpred2.10FCVal | 0.099 | 0.102 | -0.003 | 0.0334984 | 0.094 | 0.095 | -0.001 | 6.65e-01 |
Intelligence | LDpred1.Inf | LDpred2.10FCVal | 0.099 | 0.102 | -0.003 | 0.0331285 | 0.094 | 0.095 | -0.002 | 5.09e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.104 | 0.102 | 0.002 | 0.7973903 | 0.097 | 0.095 | 0.001 | 7.02e-01 |
Intelligence | LDpred2.MultiPRS | LDpred2.10FCVal | 0.103 | 0.102 | 0.001 | 0.8703892 | 0.098 | 0.095 | 0.003 | 3.91e-01 |
Intelligence | lassosum.PseudoVal | LDpred2.10FCVal | 0.064 | 0.102 | -0.037 | 0.0000000 | 0.055 | 0.095 | -0.041 | 6.72e-07 |
Intelligence | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.087 | 0.100 | -0.014 | 0.0517529 | 0.081 | 0.095 | -0.014 | 1.83e-02 |
Intelligence | lassosum.MultiPRS | LDpred2.PseudoVal | 0.102 | 0.100 | 0.002 | 0.8219438 | 0.099 | 0.095 | 0.004 | 2.03e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 0.8120314 | 0.090 | 0.095 | -0.005 | 1.19e-01 |
Intelligence | All.MultiPRS | LDpred2.PseudoVal | 0.104 | 0.100 | 0.003 | 0.6274826 | 0.098 | 0.095 | 0.003 | 3.20e-01 |
Intelligence | SBLUP.Inf | LDpred2.PseudoVal | 0.099 | 0.100 | -0.001 | 0.0227447 | 0.094 | 0.095 | -0.002 | 8.13e-02 |
Intelligence | LDpred1.10FCVal | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 0.8570794 | 0.094 | 0.095 | -0.001 | 5.15e-01 |
Intelligence | LDpred2.10FCVal | LDpred2.PseudoVal | 0.102 | 0.100 | 0.001 | 0.1263829 | 0.095 | 0.095 | 0.000 | 9.03e-01 |
Intelligence | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.101 | 0.100 | 0.000 | 0.9513945 | 0.094 | 0.095 | -0.001 | 6.24e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.095 | 0.095 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.101 | 0.100 | 0.001 | 0.7579923 | 0.095 | 0.095 | -0.001 | 8.69e-01 |
Intelligence | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.104 | 0.100 | 0.003 | 0.6434706 | 0.097 | 0.095 | 0.002 | 6.62e-01 |
Intelligence | pT+clump.10FCVal | LDpred2.PseudoVal | 0.084 | 0.100 | -0.016 | 0.0000001 | 0.074 | 0.095 | -0.021 | 5.47e-04 |
Intelligence | lassosum.PseudoVal | LDpred2.PseudoVal | 0.064 | 0.100 | -0.036 | 0.0000000 | 0.055 | 0.095 | -0.041 | 1.64e-05 |
Intelligence | LDpred2.Inf | LDpred2.PseudoVal | 0.099 | 0.100 | -0.001 | 0.0018089 | 0.094 | 0.095 | -0.001 | 2.60e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.090 | 0.100 | -0.010 | 0.0000457 | 0.082 | 0.095 | -0.013 | 6.29e-03 |
Intelligence | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.102 | 0.100 | 0.002 | 0.1934899 | 0.096 | 0.095 | 0.000 | 9.31e-01 |
Intelligence | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.103 | 0.100 | 0.003 | 0.7121908 | 0.098 | 0.095 | 0.003 | 3.96e-01 |
Intelligence | lassosum.10FCVal | LDpred2.PseudoVal | 0.098 | 0.100 | -0.002 | 0.1686922 | 0.096 | 0.095 | 0.000 | 9.19e-01 |
Intelligence | LDpred1.Inf | LDpred2.PseudoVal | 0.099 | 0.100 | -0.002 | 0.0660084 | 0.094 | 0.095 | -0.002 | 3.53e-01 |
Intelligence | All.MultiPRS | LDpred2.Inf | 0.104 | 0.099 | 0.005 | 0.5162735 | 0.098 | 0.094 | 0.004 | 2.51e-01 |
Intelligence | LDpred1.10FCVal | LDpred2.Inf | 0.100 | 0.099 | 0.001 | 0.2971889 | 0.094 | 0.094 | -0.001 | 8.27e-01 |
Intelligence | SBayesR.PseudoVal | LDpred2.Inf | 0.100 | 0.099 | 0.001 | 0.6832249 | 0.090 | 0.094 | -0.004 | 2.52e-01 |
Intelligence | LDpred1.MultiPRS | LDpred2.Inf | 0.101 | 0.099 | 0.002 | 0.8145135 | 0.094 | 0.094 | 0.000 | 9.28e-01 |
Intelligence | LDpred2.Inf | LDpred2.Inf | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | MegaPRS.PseudoVal | LDpred2.Inf | 0.101 | 0.099 | 0.002 | 0.3812747 | 0.095 | 0.094 | 0.000 | 9.48e-01 |
Intelligence | pT+clump.10FCVal | LDpred2.Inf | 0.084 | 0.099 | -0.015 | 0.0000011 | 0.074 | 0.094 | -0.020 | 1.05e-03 |
Intelligence | LDpred2.10FCVal | LDpred2.Inf | 0.102 | 0.099 | 0.003 | 0.0334984 | 0.095 | 0.094 | 0.001 | 6.65e-01 |
Intelligence | lassosum.PseudoVal | LDpred2.Inf | 0.064 | 0.099 | -0.035 | 0.0000000 | 0.055 | 0.094 | -0.040 | 5.65e-05 |
Intelligence | pT+clump.MultiPRS | LDpred2.Inf | 0.087 | 0.099 | -0.013 | 0.0749756 | 0.081 | 0.094 | -0.013 | 3.39e-02 |
Intelligence | MegaPRS.MultiPRS | LDpred2.Inf | 0.104 | 0.099 | 0.004 | 0.5302830 | 0.097 | 0.094 | 0.002 | 5.30e-01 |
Intelligence | LDpred2.PseudoVal | LDpred2.Inf | 0.100 | 0.099 | 0.001 | 0.0018089 | 0.095 | 0.094 | 0.001 | 2.60e-01 |
Intelligence | LDpred2.MultiPRS | LDpred2.Inf | 0.103 | 0.099 | 0.004 | 0.5938053 | 0.098 | 0.094 | 0.004 | 3.09e-01 |
Intelligence | SBLUP.Inf | LDpred2.Inf | 0.099 | 0.099 | 0.000 | 0.8397970 | 0.094 | 0.094 | -0.001 | 1.42e-01 |
Intelligence | DBSLMM.PseudoVal | LDpred2.Inf | 0.090 | 0.099 | -0.009 | 0.0004771 | 0.082 | 0.094 | -0.012 | 1.29e-02 |
Intelligence | lassosum.MultiPRS | LDpred2.Inf | 0.102 | 0.099 | 0.003 | 0.6973906 | 0.099 | 0.094 | 0.005 | 1.63e-01 |
Intelligence | MegaPRS.10FCVal | LDpred2.Inf | 0.102 | 0.099 | 0.003 | 0.0606258 | 0.096 | 0.094 | 0.001 | 7.46e-01 |
Intelligence | lassosum.10FCVal | LDpred2.Inf | 0.098 | 0.099 | -0.001 | 0.6013238 | 0.096 | 0.094 | 0.001 | 7.27e-01 |
Intelligence | LDpred1.Inf | LDpred2.Inf | 0.099 | 0.099 | -0.001 | 0.5228632 | 0.094 | 0.094 | -0.001 | 6.05e-01 |
Intelligence | All.MultiPRS | pT+clump.MultiPRS | 0.104 | 0.087 | 0.017 | 0.0150942 | 0.098 | 0.081 | 0.017 | 2.75e-03 |
Intelligence | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.087 | 0.013 | 0.0589756 | 0.090 | 0.081 | 0.009 | 1.39e-01 |
Intelligence | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.104 | 0.087 | 0.017 | 0.0161177 | 0.097 | 0.081 | 0.015 | 1.39e-02 |
Intelligence | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.087 | 0.087 | 0.000 | 1.0000000 | 0.081 | 0.081 | 0.000 | 1.00e+00 |
Intelligence | lassosum.PseudoVal | pT+clump.MultiPRS | 0.064 | 0.087 | -0.022 | 0.0015975 | 0.055 | 0.081 | -0.027 | 2.40e-03 |
Intelligence | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.100 | 0.087 | 0.014 | 0.0517529 | 0.095 | 0.081 | 0.014 | 1.83e-02 |
Intelligence | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.090 | 0.087 | 0.004 | 0.6013020 | 0.082 | 0.081 | 0.001 | 9.37e-01 |
Intelligence | SBLUP.Inf | pT+clump.MultiPRS | 0.099 | 0.087 | 0.013 | 0.0736915 | 0.094 | 0.081 | 0.012 | 4.41e-02 |
Intelligence | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.103 | 0.087 | 0.016 | 0.0218139 | 0.098 | 0.081 | 0.017 | 8.35e-03 |
Intelligence | pT+clump.10FCVal | pT+clump.MultiPRS | 0.084 | 0.087 | -0.003 | 0.6865763 | 0.074 | 0.081 | -0.007 | 1.15e-02 |
Intelligence | LDpred1.Inf | pT+clump.MultiPRS | 0.099 | 0.087 | 0.012 | 0.0887390 | 0.094 | 0.081 | 0.012 | 4.90e-02 |
Intelligence | LDpred2.Inf | pT+clump.MultiPRS | 0.099 | 0.087 | 0.013 | 0.0749756 | 0.094 | 0.081 | 0.013 | 3.39e-02 |
Intelligence | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.102 | 0.087 | 0.016 | 0.0255312 | 0.096 | 0.081 | 0.014 | 1.55e-02 |
Intelligence | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.101 | 0.087 | 0.014 | 0.0434406 | 0.095 | 0.081 | 0.013 | 1.96e-02 |
Intelligence | LDpred2.10FCVal | pT+clump.MultiPRS | 0.102 | 0.087 | 0.015 | 0.0315427 | 0.095 | 0.081 | 0.014 | 1.67e-02 |
Intelligence | lassosum.10FCVal | pT+clump.MultiPRS | 0.098 | 0.087 | 0.012 | 0.0969183 | 0.096 | 0.081 | 0.014 | 9.48e-03 |
Intelligence | LDpred1.10FCVal | pT+clump.MultiPRS | 0.100 | 0.087 | 0.014 | 0.0487622 | 0.094 | 0.081 | 0.012 | 3.06e-02 |
Intelligence | lassosum.MultiPRS | pT+clump.MultiPRS | 0.102 | 0.087 | 0.015 | 0.0300499 | 0.099 | 0.081 | 0.018 | 2.04e-03 |
Intelligence | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.101 | 0.087 | 0.014 | 0.0455121 | 0.094 | 0.081 | 0.013 | 2.59e-02 |
Intelligence | LDpred1.Inf | pT+clump.10FCVal | 0.099 | 0.084 | 0.015 | 0.0000032 | 0.094 | 0.074 | 0.020 | 1.85e-03 |
Intelligence | pT+clump.MultiPRS | pT+clump.10FCVal | 0.087 | 0.084 | 0.003 | 0.6865763 | 0.081 | 0.074 | 0.007 | 1.15e-02 |
Intelligence | LDpred2.MultiPRS | pT+clump.10FCVal | 0.103 | 0.084 | 0.019 | 0.0065111 | 0.098 | 0.074 | 0.024 | 7.49e-04 |
Intelligence | SBayesR.PseudoVal | pT+clump.10FCVal | 0.100 | 0.084 | 0.016 | 0.0000029 | 0.090 | 0.074 | 0.016 | 1.84e-02 |
Intelligence | LDpred2.10FCVal | pT+clump.10FCVal | 0.102 | 0.084 | 0.018 | 0.0000001 | 0.095 | 0.074 | 0.021 | 1.47e-03 |
Intelligence | SBLUP.Inf | pT+clump.10FCVal | 0.099 | 0.084 | 0.015 | 0.0000007 | 0.094 | 0.074 | 0.020 | 1.45e-03 |
Intelligence | lassosum.MultiPRS | pT+clump.10FCVal | 0.102 | 0.084 | 0.018 | 0.0103786 | 0.099 | 0.074 | 0.025 | 1.36e-04 |
Intelligence | LDpred2.PseudoVal | pT+clump.10FCVal | 0.100 | 0.084 | 0.016 | 0.0000001 | 0.095 | 0.074 | 0.021 | 5.47e-04 |
Intelligence | LDpred1.MultiPRS | pT+clump.10FCVal | 0.101 | 0.084 | 0.017 | 0.0120525 | 0.094 | 0.074 | 0.020 | 1.88e-03 |
Intelligence | lassosum.10FCVal | pT+clump.10FCVal | 0.098 | 0.084 | 0.014 | 0.0000003 | 0.096 | 0.074 | 0.022 | 1.27e-04 |
Intelligence | LDpred1.10FCVal | pT+clump.10FCVal | 0.100 | 0.084 | 0.017 | 0.0000003 | 0.094 | 0.074 | 0.020 | 1.99e-03 |
Intelligence | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.104 | 0.084 | 0.020 | 0.0049683 | 0.097 | 0.074 | 0.023 | 9.98e-04 |
Intelligence | pT+clump.10FCVal | pT+clump.10FCVal | 0.084 | 0.084 | 0.000 | 1.0000000 | 0.074 | 0.074 | 0.000 | 1.00e+00 |
Intelligence | All.MultiPRS | pT+clump.10FCVal | 0.104 | 0.084 | 0.020 | 0.0047542 | 0.098 | 0.074 | 0.024 | 1.65e-04 |
Intelligence | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.101 | 0.084 | 0.017 | 0.0000002 | 0.095 | 0.074 | 0.021 | 1.26e-03 |
Intelligence | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.090 | 0.084 | 0.007 | 0.0943972 | 0.082 | 0.074 | 0.008 | 3.05e-01 |
Intelligence | MegaPRS.10FCVal | pT+clump.10FCVal | 0.102 | 0.084 | 0.019 | 0.0000000 | 0.096 | 0.074 | 0.022 | 6.47e-04 |
Intelligence | lassosum.PseudoVal | pT+clump.10FCVal | 0.064 | 0.084 | -0.019 | 0.0002572 | 0.055 | 0.074 | -0.019 | 6.68e-02 |
Intelligence | LDpred2.Inf | pT+clump.10FCVal | 0.099 | 0.084 | 0.015 | 0.0000011 | 0.094 | 0.074 | 0.020 | 1.05e-03 |
Intelligence | LDpred1.Inf | SBayesR.PseudoVal | 0.099 | 0.100 | -0.001 | 0.4845994 | 0.094 | 0.090 | 0.003 | 3.58e-01 |
Intelligence | LDpred2.Inf | SBayesR.PseudoVal | 0.099 | 0.100 | -0.001 | 0.6832249 | 0.094 | 0.090 | 0.004 | 2.52e-01 |
Intelligence | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.102 | 0.100 | 0.002 | 0.2052500 | 0.096 | 0.090 | 0.005 | 1.62e-01 |
Intelligence | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.103 | 0.100 | 0.003 | 0.6715446 | 0.098 | 0.090 | 0.008 | 4.77e-02 |
Intelligence | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.100 | 0.000 | 1.0000000 | 0.090 | 0.090 | 0.000 | 1.00e+00 |
Intelligence | lassosum.10FCVal | SBayesR.PseudoVal | 0.098 | 0.100 | -0.002 | 0.4096265 | 0.096 | 0.090 | 0.005 | 1.67e-01 |
Intelligence | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.087 | 0.100 | -0.013 | 0.0589756 | 0.081 | 0.090 | -0.009 | 1.39e-01 |
Intelligence | lassosum.MultiPRS | SBayesR.PseudoVal | 0.102 | 0.100 | 0.002 | 0.7792117 | 0.099 | 0.090 | 0.009 | 1.54e-02 |
Intelligence | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.100 | 0.100 | 0.000 | 0.8120314 | 0.095 | 0.090 | 0.005 | 1.19e-01 |
Intelligence | LDpred2.10FCVal | SBayesR.PseudoVal | 0.102 | 0.100 | 0.002 | 0.1813107 | 0.095 | 0.090 | 0.005 | 5.17e-02 |
Intelligence | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.104 | 0.100 | 0.004 | 0.6040372 | 0.097 | 0.090 | 0.007 | 1.03e-01 |
Intelligence | LDpred1.10FCVal | SBayesR.PseudoVal | 0.100 | 0.100 | 0.001 | 0.6759178 | 0.094 | 0.090 | 0.004 | 1.79e-01 |
Intelligence | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.101 | 0.100 | 0.001 | 0.6147771 | 0.095 | 0.090 | 0.005 | 2.20e-01 |
Intelligence | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.101 | 0.100 | 0.001 | 0.9049437 | 0.094 | 0.090 | 0.004 | 1.40e-01 |
Intelligence | All.MultiPRS | SBayesR.PseudoVal | 0.104 | 0.100 | 0.004 | 0.5888802 | 0.098 | 0.090 | 0.008 | 1.84e-02 |
Intelligence | SBLUP.Inf | SBayesR.PseudoVal | 0.099 | 0.100 | -0.001 | 0.7086238 | 0.094 | 0.090 | 0.003 | 3.59e-01 |
Intelligence | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.090 | 0.100 | -0.010 | 0.0003902 | 0.082 | 0.090 | -0.008 | 1.32e-01 |
Intelligence | pT+clump.10FCVal | SBayesR.PseudoVal | 0.084 | 0.100 | -0.016 | 0.0000029 | 0.074 | 0.090 | -0.016 | 1.84e-02 |
Intelligence | lassosum.PseudoVal | SBayesR.PseudoVal | 0.064 | 0.100 | -0.036 | 0.0000000 | 0.055 | 0.090 | -0.036 | 9.83e-06 |
Intelligence | LDpred2.PseudoVal | SBLUP.Inf | 0.100 | 0.099 | 0.001 | 0.0227447 | 0.095 | 0.094 | 0.002 | 8.13e-02 |
Intelligence | MegaPRS.10FCVal | SBLUP.Inf | 0.102 | 0.099 | 0.003 | 0.0695316 | 0.096 | 0.094 | 0.002 | 5.77e-01 |
Intelligence | lassosum.MultiPRS | SBLUP.Inf | 0.102 | 0.099 | 0.003 | 0.7034516 | 0.099 | 0.094 | 0.005 | 1.00e-01 |
Intelligence | LDpred1.MultiPRS | SBLUP.Inf | 0.101 | 0.099 | 0.002 | 0.8212410 | 0.094 | 0.094 | 0.001 | 8.14e-01 |
Intelligence | All.MultiPRS | SBLUP.Inf | 0.104 | 0.099 | 0.005 | 0.5215782 | 0.098 | 0.094 | 0.005 | 1.69e-01 |
Intelligence | LDpred2.Inf | SBLUP.Inf | 0.099 | 0.099 | 0.000 | 0.8397970 | 0.094 | 0.094 | 0.001 | 1.42e-01 |
Intelligence | MegaPRS.MultiPRS | SBLUP.Inf | 0.104 | 0.099 | 0.004 | 0.5356487 | 0.097 | 0.094 | 0.003 | 4.05e-01 |
Intelligence | pT+clump.MultiPRS | SBLUP.Inf | 0.087 | 0.099 | -0.013 | 0.0736915 | 0.081 | 0.094 | -0.012 | 4.41e-02 |
Intelligence | lassosum.PseudoVal | SBLUP.Inf | 0.064 | 0.099 | -0.035 | 0.0000000 | 0.055 | 0.094 | -0.039 | 7.96e-05 |
Intelligence | SBayesR.PseudoVal | SBLUP.Inf | 0.100 | 0.099 | 0.001 | 0.7086238 | 0.090 | 0.094 | -0.003 | 3.59e-01 |
Intelligence | DBSLMM.PseudoVal | SBLUP.Inf | 0.090 | 0.099 | -0.009 | 0.0004109 | 0.082 | 0.094 | -0.012 | 1.98e-02 |
Intelligence | SBLUP.Inf | SBLUP.Inf | 0.099 | 0.099 | 0.000 | 1.0000000 | 0.094 | 0.094 | 0.000 | 1.00e+00 |
Intelligence | LDpred2.MultiPRS | SBLUP.Inf | 0.103 | 0.099 | 0.004 | 0.5995025 | 0.098 | 0.094 | 0.004 | 2.20e-01 |
Intelligence | pT+clump.10FCVal | SBLUP.Inf | 0.084 | 0.099 | -0.015 | 0.0000007 | 0.074 | 0.094 | -0.020 | 1.45e-03 |
Intelligence | LDpred1.Inf | SBLUP.Inf | 0.099 | 0.099 | -0.001 | 0.4748812 | 0.094 | 0.094 | 0.000 | 9.81e-01 |
Intelligence | lassosum.10FCVal | SBLUP.Inf | 0.098 | 0.099 | -0.001 | 0.5754766 | 0.096 | 0.094 | 0.002 | 5.42e-01 |
Intelligence | LDpred1.10FCVal | SBLUP.Inf | 0.100 | 0.099 | 0.001 | 0.3153250 | 0.094 | 0.094 | 0.000 | 9.18e-01 |
Intelligence | MegaPRS.PseudoVal | SBLUP.Inf | 0.101 | 0.099 | 0.002 | 0.4028241 | 0.095 | 0.094 | 0.001 | 7.83e-01 |
Intelligence | LDpred2.10FCVal | SBLUP.Inf | 0.102 | 0.099 | 0.003 | 0.0423903 | 0.095 | 0.094 | 0.002 | 4.51e-01 |
Height | LDpred1.10FCVal | All.MultiPRS | 0.287 | 0.364 | -0.077 | 0.0000000 | 0.288 | 0.361 | -0.072 | 6.55e-32 |
Height | pT+clump.10FCVal | All.MultiPRS | 0.305 | 0.364 | -0.059 | 0.0000000 | 0.299 | 0.361 | -0.062 | 1.84e-29 |
Height | LDpred1.MultiPRS | All.MultiPRS | 0.304 | 0.364 | -0.060 | 0.0000000 | 0.303 | 0.361 | -0.058 | 1.12e-27 |
Height | LDpred2.Inf | All.MultiPRS | 0.302 | 0.364 | -0.062 | 0.0000000 | 0.299 | 0.361 | -0.061 | 9.46e-29 |
Height | MegaPRS.PseudoVal | All.MultiPRS | 0.346 | 0.364 | -0.018 | 0.0039749 | 0.332 | 0.361 | -0.028 | 3.69e-20 |
Height | LDpred2.10FCVal | All.MultiPRS | 0.351 | 0.364 | -0.013 | 0.0448041 | 0.343 | 0.361 | -0.017 | 5.22e-11 |
Height | LDpred2.MultiPRS | All.MultiPRS | 0.356 | 0.364 | -0.008 | 0.0000000 | 0.351 | 0.361 | -0.009 | 7.01e-06 |
Height | lassosum.PseudoVal | All.MultiPRS | 0.320 | 0.364 | -0.044 | 0.0000000 | 0.312 | 0.361 | -0.048 | 1.13e-24 |
Height | LDpred1.Inf | All.MultiPRS | 0.297 | 0.364 | -0.067 | 0.0000000 | 0.295 | 0.361 | -0.065 | 1.21e-30 |
Height | lassosum.MultiPRS | All.MultiPRS | 0.349 | 0.364 | -0.014 | 0.0234145 | 0.343 | 0.361 | -0.018 | 1.04e-10 |
Height | MegaPRS.10FCVal | All.MultiPRS | 0.348 | 0.364 | -0.016 | 0.0108879 | 0.334 | 0.361 | -0.027 | 1.54e-19 |
Height | All.MultiPRS | All.MultiPRS | 0.364 | 0.364 | 0.000 | 1.0000000 | 0.361 | 0.361 | 0.000 | 1.00e+00 |
Height | SBayesR.PseudoVal | All.MultiPRS | 0.342 | 0.364 | -0.022 | 0.0004885 | 0.335 | 0.361 | -0.025 | 2.63e-14 |
Height | MegaPRS.MultiPRS | All.MultiPRS | 0.358 | 0.364 | -0.006 | 0.3514688 | 0.349 | 0.361 | -0.011 | 3.09e-08 |
Height | pT+clump.MultiPRS | All.MultiPRS | 0.320 | 0.364 | -0.044 | 0.0000000 | 0.314 | 0.361 | -0.047 | 2.61e-23 |
Height | lassosum.10FCVal | All.MultiPRS | 0.347 | 0.364 | -0.017 | 0.0065926 | 0.340 | 0.361 | -0.021 | 1.61e-12 |
Height | LDpred2.PseudoVal | All.MultiPRS | 0.335 | 0.364 | -0.029 | 0.0000075 | 0.326 | 0.361 | -0.034 | 3.29e-19 |
Height | DBSLMM.PseudoVal | All.MultiPRS | 0.333 | 0.364 | -0.031 | 0.0000018 | 0.324 | 0.361 | -0.037 | 2.56e-20 |
Height | SBLUP.Inf | All.MultiPRS | 0.295 | 0.364 | -0.069 | 0.0000000 | 0.292 | 0.361 | -0.069 | 5.69e-33 |
Height | LDpred1.Inf | DBSLMM.PseudoVal | 0.297 | 0.333 | -0.036 | 0.0000000 | 0.295 | 0.324 | -0.029 | 1.36e-14 |
Height | LDpred2.Inf | DBSLMM.PseudoVal | 0.302 | 0.333 | -0.031 | 0.0000000 | 0.299 | 0.324 | -0.025 | 1.98e-11 |
Height | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.356 | 0.333 | 0.022 | 0.0004713 | 0.351 | 0.324 | 0.027 | 2.22e-13 |
Height | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.305 | 0.333 | -0.029 | 0.0000000 | 0.299 | 0.324 | -0.025 | 8.71e-05 |
Height | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.342 | 0.333 | 0.008 | 0.0000000 | 0.335 | 0.324 | 0.011 | 9.59e-05 |
Height | All.MultiPRS | DBSLMM.PseudoVal | 0.364 | 0.333 | 0.031 | 0.0000018 | 0.361 | 0.324 | 0.037 | 2.56e-20 |
Height | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.348 | 0.333 | 0.014 | 0.0000000 | 0.334 | 0.324 | 0.010 | 1.45e-02 |
Height | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.358 | 0.333 | 0.025 | 0.0000590 | 0.349 | 0.324 | 0.025 | 1.65e-11 |
Height | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.335 | 0.333 | 0.002 | 0.2314773 | 0.326 | 0.324 | 0.002 | 4.78e-01 |
Height | lassosum.10FCVal | DBSLMM.PseudoVal | 0.347 | 0.333 | 0.013 | 0.0000000 | 0.340 | 0.324 | 0.016 | 9.25e-05 |
Height | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.320 | 0.333 | -0.014 | 0.0331859 | 0.314 | 0.324 | -0.010 | 3.26e-02 |
Height | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.346 | 0.333 | 0.012 | 0.0000000 | 0.332 | 0.324 | 0.008 | 6.05e-02 |
Height | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.349 | 0.333 | 0.016 | 0.0121677 | 0.343 | 0.324 | 0.019 | 8.74e-08 |
Height | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.351 | 0.333 | 0.018 | 0.0000000 | 0.343 | 0.324 | 0.019 | 4.79e-08 |
Height | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.320 | 0.333 | -0.014 | 0.0000114 | 0.312 | 0.324 | -0.012 | 6.03e-02 |
Height | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.287 | 0.333 | -0.047 | 0.0000000 | 0.288 | 0.324 | -0.036 | 1.75e-16 |
Height | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.333 | 0.333 | 0.000 | 1.0000000 | 0.324 | 0.324 | 0.000 | 1.00e+00 |
Height | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.304 | 0.333 | -0.029 | 0.0000083 | 0.303 | 0.324 | -0.021 | 1.06e-08 |
Height | SBLUP.Inf | DBSLMM.PseudoVal | 0.295 | 0.333 | -0.038 | 0.0000000 | 0.292 | 0.324 | -0.032 | 2.32e-18 |
Height | SBayesR.PseudoVal | lassosum.MultiPRS | 0.342 | 0.349 | -0.008 | 0.2247318 | 0.335 | 0.343 | -0.008 | 2.32e-02 |
Height | LDpred1.Inf | lassosum.MultiPRS | 0.297 | 0.349 | -0.052 | 0.0000000 | 0.295 | 0.343 | -0.048 | 1.05e-18 |
Height | MegaPRS.10FCVal | lassosum.MultiPRS | 0.348 | 0.349 | -0.002 | 0.7843317 | 0.334 | 0.343 | -0.009 | 1.51e-02 |
Height | LDpred2.MultiPRS | lassosum.MultiPRS | 0.356 | 0.349 | 0.006 | 0.3232100 | 0.351 | 0.343 | 0.009 | 1.96e-03 |
Height | LDpred2.PseudoVal | lassosum.MultiPRS | 0.335 | 0.349 | -0.014 | 0.0273200 | 0.326 | 0.343 | -0.017 | 5.78e-05 |
Height | LDpred2.10FCVal | lassosum.MultiPRS | 0.351 | 0.349 | 0.002 | 0.7886870 | 0.343 | 0.343 | 0.000 | 8.89e-01 |
Height | pT+clump.MultiPRS | lassosum.MultiPRS | 0.320 | 0.349 | -0.030 | 0.0000035 | 0.314 | 0.343 | -0.029 | 3.64e-11 |
Height | lassosum.MultiPRS | lassosum.MultiPRS | 0.349 | 0.349 | 0.000 | 1.0000000 | 0.343 | 0.343 | 0.000 | 1.00e+00 |
Height | lassosum.10FCVal | lassosum.MultiPRS | 0.347 | 0.349 | -0.003 | 0.6559887 | 0.340 | 0.343 | -0.003 | 1.84e-02 |
Height | LDpred1.MultiPRS | lassosum.MultiPRS | 0.304 | 0.349 | -0.045 | 0.0000000 | 0.303 | 0.343 | -0.040 | 2.80e-15 |
Height | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.358 | 0.349 | 0.009 | 0.1761595 | 0.349 | 0.343 | 0.007 | 2.50e-02 |
Height | LDpred1.10FCVal | lassosum.MultiPRS | 0.287 | 0.349 | -0.063 | 0.0000000 | 0.288 | 0.343 | -0.055 | 7.32e-21 |
Height | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.346 | 0.349 | -0.004 | 0.5424183 | 0.332 | 0.343 | -0.011 | 4.48e-03 |
Height | pT+clump.10FCVal | lassosum.MultiPRS | 0.305 | 0.349 | -0.045 | 0.0000000 | 0.299 | 0.343 | -0.044 | 5.98e-16 |
Height | lassosum.PseudoVal | lassosum.MultiPRS | 0.320 | 0.349 | -0.030 | 0.0000038 | 0.312 | 0.343 | -0.031 | 7.53e-15 |
Height | SBLUP.Inf | lassosum.MultiPRS | 0.295 | 0.349 | -0.054 | 0.0000000 | 0.292 | 0.343 | -0.051 | 6.23e-21 |
Height | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.333 | 0.349 | -0.016 | 0.0121677 | 0.324 | 0.343 | -0.019 | 8.74e-08 |
Height | All.MultiPRS | lassosum.MultiPRS | 0.364 | 0.349 | 0.014 | 0.0234145 | 0.361 | 0.343 | 0.018 | 1.04e-10 |
Height | LDpred2.Inf | lassosum.MultiPRS | 0.302 | 0.349 | -0.047 | 0.0000000 | 0.299 | 0.343 | -0.044 | 2.93e-16 |
Height | MegaPRS.PseudoVal | lassosum.10FCVal | 0.346 | 0.347 | -0.001 | 0.5895269 | 0.332 | 0.340 | -0.007 | 5.76e-02 |
Height | LDpred2.PseudoVal | lassosum.10FCVal | 0.335 | 0.347 | -0.011 | 0.0000001 | 0.326 | 0.340 | -0.013 | 1.72e-03 |
Height | LDpred1.MultiPRS | lassosum.10FCVal | 0.304 | 0.347 | -0.042 | 0.0000000 | 0.303 | 0.340 | -0.037 | 4.73e-12 |
Height | lassosum.10FCVal | lassosum.10FCVal | 0.347 | 0.347 | 0.000 | 1.0000000 | 0.340 | 0.340 | 0.000 | 1.00e+00 |
Height | LDpred2.Inf | lassosum.10FCVal | 0.302 | 0.347 | -0.045 | 0.0000000 | 0.299 | 0.340 | -0.040 | 8.17e-13 |
Height | DBSLMM.PseudoVal | lassosum.10FCVal | 0.333 | 0.347 | -0.013 | 0.0000000 | 0.324 | 0.340 | -0.016 | 9.25e-05 |
Height | SBLUP.Inf | lassosum.10FCVal | 0.295 | 0.347 | -0.051 | 0.0000000 | 0.292 | 0.340 | -0.048 | 7.40e-17 |
Height | LDpred2.MultiPRS | lassosum.10FCVal | 0.356 | 0.347 | 0.009 | 0.1511535 | 0.351 | 0.340 | 0.012 | 3.24e-05 |
Height | pT+clump.10FCVal | lassosum.10FCVal | 0.305 | 0.347 | -0.042 | 0.0000000 | 0.299 | 0.340 | -0.041 | 4.20e-13 |
Height | LDpred1.Inf | lassosum.10FCVal | 0.297 | 0.347 | -0.050 | 0.0000000 | 0.295 | 0.340 | -0.045 | 5.72e-15 |
Height | lassosum.MultiPRS | lassosum.10FCVal | 0.349 | 0.347 | 0.003 | 0.6559887 | 0.343 | 0.340 | 0.003 | 1.84e-02 |
Height | MegaPRS.10FCVal | lassosum.10FCVal | 0.348 | 0.347 | 0.001 | 0.5659226 | 0.334 | 0.340 | -0.006 | 1.41e-01 |
Height | All.MultiPRS | lassosum.10FCVal | 0.364 | 0.347 | 0.017 | 0.0065926 | 0.361 | 0.340 | 0.021 | 1.61e-12 |
Height | SBayesR.PseudoVal | lassosum.10FCVal | 0.342 | 0.347 | -0.005 | 0.0068135 | 0.335 | 0.340 | -0.005 | 2.16e-01 |
Height | lassosum.PseudoVal | lassosum.10FCVal | 0.320 | 0.347 | -0.027 | 0.0000000 | 0.312 | 0.340 | -0.027 | 1.68e-11 |
Height | pT+clump.MultiPRS | lassosum.10FCVal | 0.320 | 0.347 | -0.027 | 0.0000282 | 0.314 | 0.340 | -0.026 | 6.71e-09 |
Height | LDpred1.10FCVal | lassosum.10FCVal | 0.287 | 0.347 | -0.060 | 0.0000000 | 0.288 | 0.340 | -0.051 | 3.56e-17 |
Height | MegaPRS.MultiPRS | lassosum.10FCVal | 0.358 | 0.347 | 0.011 | 0.0620302 | 0.349 | 0.340 | 0.010 | 1.97e-03 |
Height | LDpred2.10FCVal | lassosum.10FCVal | 0.351 | 0.347 | 0.005 | 0.0036023 | 0.343 | 0.340 | 0.004 | 2.42e-01 |
Height | lassosum.PseudoVal | lassosum.PseudoVal | 0.320 | 0.320 | 0.000 | 1.0000000 | 0.312 | 0.312 | 0.000 | 1.00e+00 |
Height | pT+clump.MultiPRS | lassosum.PseudoVal | 0.320 | 0.320 | 0.000 | 0.9721437 | 0.314 | 0.312 | 0.001 | 7.96e-01 |
Height | LDpred2.MultiPRS | lassosum.PseudoVal | 0.356 | 0.320 | 0.036 | 0.0000000 | 0.351 | 0.312 | 0.039 | 3.37e-14 |
Height | SBayesR.PseudoVal | lassosum.PseudoVal | 0.342 | 0.320 | 0.022 | 0.0000000 | 0.335 | 0.312 | 0.023 | 4.17e-04 |
Height | LDpred2.10FCVal | lassosum.PseudoVal | 0.351 | 0.320 | 0.031 | 0.0000000 | 0.343 | 0.312 | 0.031 | 2.13e-07 |
Height | SBLUP.Inf | lassosum.PseudoVal | 0.295 | 0.320 | -0.024 | 0.0000000 | 0.292 | 0.312 | -0.020 | 1.50e-02 |
Height | lassosum.MultiPRS | lassosum.PseudoVal | 0.349 | 0.320 | 0.030 | 0.0000038 | 0.343 | 0.312 | 0.031 | 7.53e-15 |
Height | LDpred2.PseudoVal | lassosum.PseudoVal | 0.335 | 0.320 | 0.016 | 0.0000134 | 0.326 | 0.312 | 0.014 | 5.10e-02 |
Height | LDpred1.MultiPRS | lassosum.PseudoVal | 0.304 | 0.320 | -0.016 | 0.0175832 | 0.303 | 0.312 | -0.010 | 2.19e-01 |
Height | LDpred2.Inf | lassosum.PseudoVal | 0.302 | 0.320 | -0.018 | 0.0000152 | 0.299 | 0.312 | -0.013 | 1.17e-01 |
Height | LDpred1.10FCVal | lassosum.PseudoVal | 0.287 | 0.320 | -0.033 | 0.0000000 | 0.288 | 0.312 | -0.024 | 5.12e-03 |
Height | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.358 | 0.320 | 0.038 | 0.0000000 | 0.349 | 0.312 | 0.037 | 2.54e-13 |
Height | pT+clump.10FCVal | lassosum.PseudoVal | 0.305 | 0.320 | -0.015 | 0.0000001 | 0.299 | 0.312 | -0.013 | 1.85e-02 |
Height | All.MultiPRS | lassosum.PseudoVal | 0.364 | 0.320 | 0.044 | 0.0000000 | 0.361 | 0.312 | 0.048 | 1.13e-24 |
Height | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.346 | 0.320 | 0.026 | 0.0000000 | 0.332 | 0.312 | 0.020 | 4.22e-04 |
Height | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.333 | 0.320 | 0.014 | 0.0000114 | 0.324 | 0.312 | 0.012 | 6.03e-02 |
Height | MegaPRS.10FCVal | lassosum.PseudoVal | 0.348 | 0.320 | 0.028 | 0.0000000 | 0.334 | 0.312 | 0.022 | 1.85e-04 |
Height | lassosum.10FCVal | lassosum.PseudoVal | 0.347 | 0.320 | 0.027 | 0.0000000 | 0.340 | 0.312 | 0.027 | 1.68e-11 |
Height | LDpred1.Inf | lassosum.PseudoVal | 0.297 | 0.320 | -0.023 | 0.0000000 | 0.295 | 0.312 | -0.017 | 3.80e-02 |
Height | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.346 | 0.358 | -0.012 | 0.0413073 | 0.332 | 0.349 | -0.017 | 1.34e-12 |
Height | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.333 | 0.358 | -0.025 | 0.0000590 | 0.324 | 0.349 | -0.025 | 1.65e-11 |
Height | SBLUP.Inf | MegaPRS.MultiPRS | 0.295 | 0.358 | -0.063 | 0.0000000 | 0.292 | 0.349 | -0.057 | 1.50e-27 |
Height | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.356 | 0.358 | -0.002 | 0.7219096 | 0.351 | 0.349 | 0.002 | 4.14e-01 |
Height | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.305 | 0.358 | -0.054 | 0.0000000 | 0.299 | 0.349 | -0.051 | 5.01e-18 |
Height | LDpred1.Inf | MegaPRS.MultiPRS | 0.297 | 0.358 | -0.061 | 0.0000000 | 0.295 | 0.349 | -0.054 | 4.10e-25 |
Height | LDpred2.Inf | MegaPRS.MultiPRS | 0.302 | 0.358 | -0.056 | 0.0000000 | 0.299 | 0.349 | -0.050 | 8.62e-23 |
Height | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.348 | 0.358 | -0.010 | 0.0906566 | 0.334 | 0.349 | -0.015 | 6.98e-12 |
Height | All.MultiPRS | MegaPRS.MultiPRS | 0.364 | 0.358 | 0.006 | 0.3514688 | 0.361 | 0.349 | 0.011 | 3.09e-08 |
Height | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.342 | 0.358 | -0.016 | 0.0075223 | 0.335 | 0.349 | -0.014 | 1.88e-06 |
Height | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.320 | 0.358 | -0.038 | 0.0000000 | 0.312 | 0.349 | -0.037 | 2.54e-13 |
Height | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.320 | 0.358 | -0.038 | 0.0000000 | 0.314 | 0.349 | -0.036 | 3.24e-14 |
Height | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.349 | 0.358 | -0.009 | 0.1761595 | 0.343 | 0.349 | -0.007 | 2.50e-02 |
Height | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.335 | 0.358 | -0.023 | 0.0002105 | 0.326 | 0.349 | -0.023 | 3.74e-10 |
Height | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.351 | 0.358 | -0.007 | 0.2599046 | 0.343 | 0.349 | -0.006 | 2.91e-02 |
Height | lassosum.10FCVal | MegaPRS.MultiPRS | 0.347 | 0.358 | -0.011 | 0.0620302 | 0.340 | 0.349 | -0.010 | 1.97e-03 |
Height | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.287 | 0.358 | -0.071 | 0.0000000 | 0.288 | 0.349 | -0.061 | 5.20e-27 |
Height | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.358 | 0.358 | 0.000 | 1.0000000 | 0.349 | 0.349 | 0.000 | 1.00e+00 |
Height | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.304 | 0.358 | -0.054 | 0.0000000 | 0.303 | 0.349 | -0.047 | 1.55e-21 |
Height | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.346 | 0.346 | 0.000 | 1.0000000 | 0.332 | 0.332 | 0.000 | 1.00e+00 |
Height | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.351 | 0.346 | 0.006 | 0.0003510 | 0.343 | 0.332 | 0.011 | 4.70e-04 |
Height | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.304 | 0.346 | -0.041 | 0.0000000 | 0.303 | 0.332 | -0.030 | 6.03e-08 |
Height | LDpred2.Inf | MegaPRS.PseudoVal | 0.302 | 0.346 | -0.043 | 0.0000000 | 0.299 | 0.332 | -0.033 | 1.35e-08 |
Height | LDpred1.Inf | MegaPRS.PseudoVal | 0.297 | 0.346 | -0.049 | 0.0000000 | 0.295 | 0.332 | -0.037 | 2.62e-10 |
Height | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.349 | 0.346 | 0.004 | 0.5424183 | 0.343 | 0.332 | 0.011 | 4.48e-03 |
Height | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.348 | 0.346 | 0.002 | 0.0006448 | 0.334 | 0.332 | 0.002 | 1.85e-01 |
Height | All.MultiPRS | MegaPRS.PseudoVal | 0.364 | 0.346 | 0.018 | 0.0039749 | 0.361 | 0.332 | 0.028 | 3.69e-20 |
Height | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.342 | 0.346 | -0.004 | 0.0286579 | 0.335 | 0.332 | 0.003 | 4.27e-01 |
Height | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.333 | 0.346 | -0.012 | 0.0000000 | 0.324 | 0.332 | -0.008 | 6.05e-02 |
Height | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.320 | 0.346 | -0.026 | 0.0000567 | 0.314 | 0.332 | -0.019 | 3.54e-04 |
Height | lassosum.10FCVal | MegaPRS.PseudoVal | 0.347 | 0.346 | 0.001 | 0.5895269 | 0.340 | 0.332 | 0.007 | 5.76e-02 |
Height | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.335 | 0.346 | -0.010 | 0.0000003 | 0.326 | 0.332 | -0.006 | 1.38e-01 |
Height | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.320 | 0.346 | -0.026 | 0.0000000 | 0.312 | 0.332 | -0.020 | 4.22e-04 |
Height | SBLUP.Inf | MegaPRS.PseudoVal | 0.295 | 0.346 | -0.050 | 0.0000000 | 0.292 | 0.332 | -0.040 | 8.04e-12 |
Height | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.287 | 0.346 | -0.059 | 0.0000000 | 0.288 | 0.332 | -0.044 | 1.62e-12 |
Height | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.305 | 0.346 | -0.041 | 0.0000000 | 0.299 | 0.332 | -0.033 | 6.51e-08 |
Height | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.356 | 0.346 | 0.010 | 0.1098822 | 0.351 | 0.332 | 0.019 | 2.33e-10 |
Height | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.358 | 0.346 | 0.012 | 0.0413073 | 0.349 | 0.332 | 0.017 | 1.34e-12 |
Height | lassosum.PseudoVal | MegaPRS.10FCVal | 0.320 | 0.348 | -0.028 | 0.0000000 | 0.312 | 0.334 | -0.022 | 1.85e-04 |
Height | SBLUP.Inf | MegaPRS.10FCVal | 0.295 | 0.348 | -0.052 | 0.0000000 | 0.292 | 0.334 | -0.042 | 1.86e-14 |
Height | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.342 | 0.348 | -0.006 | 0.0001750 | 0.335 | 0.334 | 0.001 | 7.26e-01 |
Height | All.MultiPRS | MegaPRS.10FCVal | 0.364 | 0.348 | 0.016 | 0.0108879 | 0.361 | 0.334 | 0.027 | 1.54e-19 |
Height | LDpred2.Inf | MegaPRS.10FCVal | 0.302 | 0.348 | -0.046 | 0.0000000 | 0.299 | 0.334 | -0.035 | 1.29e-10 |
Height | lassosum.MultiPRS | MegaPRS.10FCVal | 0.349 | 0.348 | 0.002 | 0.7843317 | 0.343 | 0.334 | 0.009 | 1.51e-02 |
Height | LDpred2.10FCVal | MegaPRS.10FCVal | 0.351 | 0.348 | 0.003 | 0.0196146 | 0.343 | 0.334 | 0.009 | 1.73e-03 |
Height | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.304 | 0.348 | -0.043 | 0.0000000 | 0.303 | 0.334 | -0.031 | 7.19e-10 |
Height | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.335 | 0.348 | -0.012 | 0.0000000 | 0.326 | 0.334 | -0.008 | 3.63e-02 |
Height | LDpred1.10FCVal | MegaPRS.10FCVal | 0.287 | 0.348 | -0.061 | 0.0000000 | 0.288 | 0.334 | -0.046 | 5.78e-15 |
Height | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.320 | 0.348 | -0.028 | 0.0000130 | 0.314 | 0.334 | -0.020 | 8.15e-05 |
Height | pT+clump.10FCVal | MegaPRS.10FCVal | 0.305 | 0.348 | -0.043 | 0.0000000 | 0.299 | 0.334 | -0.035 | 2.24e-08 |
Height | lassosum.10FCVal | MegaPRS.10FCVal | 0.347 | 0.348 | -0.001 | 0.5659226 | 0.340 | 0.334 | 0.006 | 1.41e-01 |
Height | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.346 | 0.348 | -0.002 | 0.0006448 | 0.332 | 0.334 | -0.002 | 1.85e-01 |
Height | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.358 | 0.348 | 0.010 | 0.0906566 | 0.349 | 0.334 | 0.015 | 6.98e-12 |
Height | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.348 | 0.348 | 0.000 | 1.0000000 | 0.334 | 0.334 | 0.000 | 1.00e+00 |
Height | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.356 | 0.348 | 0.008 | 0.2059940 | 0.351 | 0.334 | 0.017 | 2.59e-09 |
Height | LDpred1.Inf | MegaPRS.10FCVal | 0.297 | 0.348 | -0.051 | 0.0000000 | 0.295 | 0.334 | -0.039 | 1.22e-12 |
Height | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.333 | 0.348 | -0.014 | 0.0000000 | 0.324 | 0.334 | -0.010 | 1.45e-02 |
Height | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.320 | 0.304 | 0.015 | 0.0196400 | 0.314 | 0.303 | 0.011 | 6.22e-02 |
Height | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.348 | 0.304 | 0.043 | 0.0000000 | 0.334 | 0.303 | 0.031 | 7.19e-10 |
Height | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.335 | 0.304 | 0.031 | 0.0000020 | 0.326 | 0.303 | 0.024 | 5.93e-14 |
Height | LDpred1.Inf | LDpred1.MultiPRS | 0.297 | 0.304 | -0.007 | 0.2731225 | 0.295 | 0.303 | -0.007 | 5.76e-04 |
Height | lassosum.PseudoVal | LDpred1.MultiPRS | 0.320 | 0.304 | 0.016 | 0.0175832 | 0.312 | 0.303 | 0.010 | 2.19e-01 |
Height | LDpred1.10FCVal | LDpred1.MultiPRS | 0.287 | 0.304 | -0.018 | 0.0077756 | 0.288 | 0.303 | -0.014 | 1.50e-05 |
Height | lassosum.MultiPRS | LDpred1.MultiPRS | 0.349 | 0.304 | 0.045 | 0.0000000 | 0.343 | 0.303 | 0.040 | 2.80e-15 |
Height | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.304 | 0.304 | 0.000 | 1.0000000 | 0.303 | 0.303 | 0.000 | 1.00e+00 |
Height | All.MultiPRS | LDpred1.MultiPRS | 0.364 | 0.304 | 0.060 | 0.0000000 | 0.361 | 0.303 | 0.058 | 1.12e-27 |
Height | LDpred2.Inf | LDpred1.MultiPRS | 0.302 | 0.304 | -0.002 | 0.7410432 | 0.299 | 0.303 | -0.003 | 2.20e-01 |
Height | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.358 | 0.304 | 0.054 | 0.0000000 | 0.349 | 0.303 | 0.047 | 1.55e-21 |
Height | pT+clump.10FCVal | LDpred1.MultiPRS | 0.305 | 0.304 | 0.000 | 0.9727333 | 0.299 | 0.303 | -0.004 | 6.31e-01 |
Height | lassosum.10FCVal | LDpred1.MultiPRS | 0.347 | 0.304 | 0.042 | 0.0000000 | 0.340 | 0.303 | 0.037 | 4.73e-12 |
Height | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.342 | 0.304 | 0.037 | 0.0000000 | 0.335 | 0.303 | 0.033 | 2.05e-21 |
Height | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.333 | 0.304 | 0.029 | 0.0000083 | 0.324 | 0.303 | 0.021 | 1.06e-08 |
Height | SBLUP.Inf | LDpred1.MultiPRS | 0.295 | 0.304 | -0.009 | 0.1765460 | 0.292 | 0.303 | -0.011 | 3.62e-05 |
Height | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.356 | 0.304 | 0.052 | 0.0000000 | 0.351 | 0.303 | 0.049 | 6.12e-24 |
Height | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.346 | 0.304 | 0.041 | 0.0000000 | 0.332 | 0.303 | 0.030 | 6.03e-08 |
Height | LDpred2.10FCVal | LDpred1.MultiPRS | 0.351 | 0.304 | 0.047 | 0.0000000 | 0.343 | 0.303 | 0.041 | 1.70e-21 |
Height | LDpred1.10FCVal | LDpred1.Inf | 0.287 | 0.297 | -0.010 | 0.0000000 | 0.288 | 0.295 | -0.007 | 1.02e-02 |
Height | LDpred2.PseudoVal | LDpred1.Inf | 0.335 | 0.297 | 0.038 | 0.0000000 | 0.326 | 0.295 | 0.031 | 3.20e-21 |
Height | LDpred1.MultiPRS | LDpred1.Inf | 0.304 | 0.297 | 0.007 | 0.2731225 | 0.303 | 0.295 | 0.007 | 5.76e-04 |
Height | pT+clump.MultiPRS | LDpred1.Inf | 0.320 | 0.297 | 0.023 | 0.0006014 | 0.314 | 0.295 | 0.019 | 2.57e-03 |
Height | MegaPRS.PseudoVal | LDpred1.Inf | 0.346 | 0.297 | 0.049 | 0.0000000 | 0.332 | 0.295 | 0.037 | 2.62e-10 |
Height | MegaPRS.MultiPRS | LDpred1.Inf | 0.358 | 0.297 | 0.061 | 0.0000000 | 0.349 | 0.295 | 0.054 | 4.10e-25 |
Height | pT+clump.10FCVal | LDpred1.Inf | 0.305 | 0.297 | 0.007 | 0.0574906 | 0.299 | 0.295 | 0.004 | 6.35e-01 |
Height | lassosum.10FCVal | LDpred1.Inf | 0.347 | 0.297 | 0.050 | 0.0000000 | 0.340 | 0.295 | 0.045 | 5.72e-15 |
Height | LDpred2.Inf | LDpred1.Inf | 0.302 | 0.297 | 0.005 | 0.0000000 | 0.299 | 0.295 | 0.004 | 5.96e-03 |
Height | DBSLMM.PseudoVal | LDpred1.Inf | 0.333 | 0.297 | 0.036 | 0.0000000 | 0.324 | 0.295 | 0.029 | 1.36e-14 |
Height | SBLUP.Inf | LDpred1.Inf | 0.295 | 0.297 | -0.002 | 0.0330981 | 0.292 | 0.295 | -0.003 | 4.65e-02 |
Height | LDpred2.MultiPRS | LDpred1.Inf | 0.356 | 0.297 | 0.059 | 0.0000000 | 0.351 | 0.295 | 0.056 | 9.59e-27 |
Height | lassosum.PseudoVal | LDpred1.Inf | 0.320 | 0.297 | 0.023 | 0.0000000 | 0.312 | 0.295 | 0.017 | 3.80e-02 |
Height | LDpred1.Inf | LDpred1.Inf | 0.297 | 0.297 | 0.000 | 1.0000000 | 0.295 | 0.295 | 0.000 | 1.00e+00 |
Height | lassosum.MultiPRS | LDpred1.Inf | 0.349 | 0.297 | 0.052 | 0.0000000 | 0.343 | 0.295 | 0.048 | 1.05e-18 |
Height | MegaPRS.10FCVal | LDpred1.Inf | 0.348 | 0.297 | 0.051 | 0.0000000 | 0.334 | 0.295 | 0.039 | 1.22e-12 |
Height | All.MultiPRS | LDpred1.Inf | 0.364 | 0.297 | 0.067 | 0.0000000 | 0.361 | 0.295 | 0.065 | 1.21e-30 |
Height | SBayesR.PseudoVal | LDpred1.Inf | 0.342 | 0.297 | 0.045 | 0.0000000 | 0.335 | 0.295 | 0.040 | 2.27e-28 |
Height | LDpred2.10FCVal | LDpred1.Inf | 0.351 | 0.297 | 0.054 | 0.0000000 | 0.343 | 0.295 | 0.048 | 3.39e-25 |
Height | All.MultiPRS | LDpred1.10FCVal | 0.364 | 0.287 | 0.077 | 0.0000000 | 0.361 | 0.288 | 0.072 | 6.55e-32 |
Height | pT+clump.MultiPRS | LDpred1.10FCVal | 0.320 | 0.287 | 0.033 | 0.0000006 | 0.314 | 0.288 | 0.025 | 1.23e-04 |
Height | LDpred1.10FCVal | LDpred1.10FCVal | 0.287 | 0.287 | 0.000 | 1.0000000 | 0.288 | 0.288 | 0.000 | 1.00e+00 |
Height | SBayesR.PseudoVal | LDpred1.10FCVal | 0.342 | 0.287 | 0.055 | 0.0000000 | 0.335 | 0.288 | 0.047 | 2.46e-28 |
Height | LDpred1.MultiPRS | LDpred1.10FCVal | 0.304 | 0.287 | 0.018 | 0.0077756 | 0.303 | 0.288 | 0.014 | 1.50e-05 |
Height | SBLUP.Inf | LDpred1.10FCVal | 0.295 | 0.287 | 0.009 | 0.0000000 | 0.292 | 0.288 | 0.004 | 1.74e-01 |
Height | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.346 | 0.287 | 0.059 | 0.0000000 | 0.332 | 0.288 | 0.044 | 1.62e-12 |
Height | LDpred2.PseudoVal | LDpred1.10FCVal | 0.335 | 0.287 | 0.049 | 0.0000000 | 0.326 | 0.288 | 0.038 | 2.46e-22 |
Height | LDpred2.MultiPRS | LDpred1.10FCVal | 0.356 | 0.287 | 0.069 | 0.0000000 | 0.351 | 0.288 | 0.063 | 1.43e-28 |
Height | LDpred2.Inf | LDpred1.10FCVal | 0.302 | 0.287 | 0.015 | 0.0000000 | 0.299 | 0.288 | 0.011 | 5.01e-05 |
Height | LDpred1.Inf | LDpred1.10FCVal | 0.297 | 0.287 | 0.010 | 0.0000000 | 0.295 | 0.288 | 0.007 | 1.02e-02 |
Height | pT+clump.10FCVal | LDpred1.10FCVal | 0.305 | 0.287 | 0.018 | 0.0000121 | 0.299 | 0.288 | 0.010 | 2.05e-01 |
Height | LDpred2.10FCVal | LDpred1.10FCVal | 0.351 | 0.287 | 0.065 | 0.0000000 | 0.343 | 0.288 | 0.055 | 5.93e-27 |
Height | lassosum.10FCVal | LDpred1.10FCVal | 0.347 | 0.287 | 0.060 | 0.0000000 | 0.340 | 0.288 | 0.051 | 3.56e-17 |
Height | lassosum.PseudoVal | LDpred1.10FCVal | 0.320 | 0.287 | 0.033 | 0.0000000 | 0.312 | 0.288 | 0.024 | 5.12e-03 |
Height | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.358 | 0.287 | 0.071 | 0.0000000 | 0.349 | 0.288 | 0.061 | 5.20e-27 |
Height | lassosum.MultiPRS | LDpred1.10FCVal | 0.349 | 0.287 | 0.063 | 0.0000000 | 0.343 | 0.288 | 0.055 | 7.32e-21 |
Height | MegaPRS.10FCVal | LDpred1.10FCVal | 0.348 | 0.287 | 0.061 | 0.0000000 | 0.334 | 0.288 | 0.046 | 5.78e-15 |
Height | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.333 | 0.287 | 0.047 | 0.0000000 | 0.324 | 0.288 | 0.036 | 1.75e-16 |
Height | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.342 | 0.356 | -0.014 | 0.0274351 | 0.335 | 0.351 | -0.016 | 7.51e-10 |
Height | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.356 | 0.356 | 0.000 | 1.0000000 | 0.351 | 0.351 | 0.000 | 1.00e+00 |
Height | pT+clump.10FCVal | LDpred2.MultiPRS | 0.305 | 0.356 | -0.051 | 0.0000000 | 0.299 | 0.351 | -0.053 | 2.82e-19 |
Height | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.335 | 0.356 | -0.020 | 0.0013861 | 0.326 | 0.351 | -0.025 | 1.76e-16 |
Height | LDpred2.Inf | LDpred2.MultiPRS | 0.302 | 0.356 | -0.054 | 0.0000000 | 0.299 | 0.351 | -0.052 | 1.14e-24 |
Height | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.320 | 0.356 | -0.036 | 0.0000000 | 0.314 | 0.351 | -0.038 | 1.20e-15 |
Height | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.346 | 0.356 | -0.010 | 0.1098822 | 0.332 | 0.351 | -0.019 | 2.33e-10 |
Height | lassosum.MultiPRS | LDpred2.MultiPRS | 0.349 | 0.356 | -0.006 | 0.3232100 | 0.343 | 0.351 | -0.009 | 1.96e-03 |
Height | LDpred1.Inf | LDpred2.MultiPRS | 0.297 | 0.356 | -0.059 | 0.0000000 | 0.295 | 0.351 | -0.056 | 9.59e-27 |
Height | lassosum.PseudoVal | LDpred2.MultiPRS | 0.320 | 0.356 | -0.036 | 0.0000000 | 0.312 | 0.351 | -0.039 | 3.37e-14 |
Height | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.348 | 0.356 | -0.008 | 0.2059940 | 0.334 | 0.351 | -0.017 | 2.59e-09 |
Height | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.358 | 0.356 | 0.002 | 0.7219096 | 0.349 | 0.351 | -0.002 | 4.14e-01 |
Height | LDpred2.10FCVal | LDpred2.MultiPRS | 0.351 | 0.356 | -0.005 | 0.4690197 | 0.343 | 0.351 | -0.008 | 4.00e-08 |
Height | All.MultiPRS | LDpred2.MultiPRS | 0.364 | 0.356 | 0.008 | 0.0000000 | 0.361 | 0.351 | 0.009 | 7.01e-06 |
Height | LDpred1.10FCVal | LDpred2.MultiPRS | 0.287 | 0.356 | -0.069 | 0.0000000 | 0.288 | 0.351 | -0.063 | 1.43e-28 |
Height | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.333 | 0.356 | -0.022 | 0.0004713 | 0.324 | 0.351 | -0.027 | 2.22e-13 |
Height | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.304 | 0.356 | -0.052 | 0.0000000 | 0.303 | 0.351 | -0.049 | 6.12e-24 |
Height | lassosum.10FCVal | LDpred2.MultiPRS | 0.347 | 0.356 | -0.009 | 0.1511535 | 0.340 | 0.351 | -0.012 | 3.24e-05 |
Height | SBLUP.Inf | LDpred2.MultiPRS | 0.295 | 0.356 | -0.060 | 0.0000000 | 0.292 | 0.351 | -0.059 | 1.79e-29 |
Height | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.346 | 0.351 | -0.006 | 0.0003510 | 0.332 | 0.343 | -0.011 | 4.70e-04 |
Height | LDpred2.10FCVal | LDpred2.10FCVal | 0.351 | 0.351 | 0.000 | 1.0000000 | 0.343 | 0.343 | 0.000 | 1.00e+00 |
Height | MegaPRS.10FCVal | LDpred2.10FCVal | 0.348 | 0.351 | -0.003 | 0.0196146 | 0.334 | 0.343 | -0.009 | 1.73e-03 |
Height | All.MultiPRS | LDpred2.10FCVal | 0.364 | 0.351 | 0.013 | 0.0448041 | 0.361 | 0.343 | 0.017 | 5.22e-11 |
Height | SBayesR.PseudoVal | LDpred2.10FCVal | 0.342 | 0.351 | -0.009 | 0.0000000 | 0.335 | 0.343 | -0.008 | 1.26e-04 |
Height | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.333 | 0.351 | -0.018 | 0.0000000 | 0.324 | 0.343 | -0.019 | 4.79e-08 |
Height | pT+clump.MultiPRS | LDpred2.10FCVal | 0.320 | 0.351 | -0.032 | 0.0000009 | 0.314 | 0.343 | -0.030 | 1.69e-09 |
Height | lassosum.MultiPRS | LDpred2.10FCVal | 0.349 | 0.351 | -0.002 | 0.7886870 | 0.343 | 0.343 | 0.000 | 8.89e-01 |
Height | LDpred2.PseudoVal | LDpred2.10FCVal | 0.335 | 0.351 | -0.016 | 0.0000000 | 0.326 | 0.343 | -0.017 | 6.38e-16 |
Height | lassosum.PseudoVal | LDpred2.10FCVal | 0.320 | 0.351 | -0.031 | 0.0000000 | 0.312 | 0.343 | -0.031 | 2.13e-07 |
Height | SBLUP.Inf | LDpred2.10FCVal | 0.295 | 0.351 | -0.056 | 0.0000000 | 0.292 | 0.343 | -0.051 | 1.05e-28 |
Height | LDpred1.10FCVal | LDpred2.10FCVal | 0.287 | 0.351 | -0.065 | 0.0000000 | 0.288 | 0.343 | -0.055 | 5.93e-27 |
Height | pT+clump.10FCVal | LDpred2.10FCVal | 0.305 | 0.351 | -0.047 | 0.0000000 | 0.299 | 0.343 | -0.045 | 1.32e-12 |
Height | LDpred1.MultiPRS | LDpred2.10FCVal | 0.304 | 0.351 | -0.047 | 0.0000000 | 0.303 | 0.343 | -0.041 | 1.70e-21 |
Height | LDpred2.Inf | LDpred2.10FCVal | 0.302 | 0.351 | -0.049 | 0.0000000 | 0.299 | 0.343 | -0.044 | 3.82e-23 |
Height | LDpred1.Inf | LDpred2.10FCVal | 0.297 | 0.351 | -0.054 | 0.0000000 | 0.295 | 0.343 | -0.048 | 3.39e-25 |
Height | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.358 | 0.351 | 0.007 | 0.2599046 | 0.349 | 0.343 | 0.006 | 2.91e-02 |
Height | LDpred2.MultiPRS | LDpred2.10FCVal | 0.356 | 0.351 | 0.005 | 0.4690197 | 0.351 | 0.343 | 0.008 | 4.00e-08 |
Height | lassosum.10FCVal | LDpred2.10FCVal | 0.347 | 0.351 | -0.005 | 0.0036023 | 0.340 | 0.343 | -0.004 | 2.42e-01 |
Height | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.320 | 0.335 | -0.016 | 0.0151639 | 0.314 | 0.326 | -0.013 | 2.36e-02 |
Height | lassosum.MultiPRS | LDpred2.PseudoVal | 0.349 | 0.335 | 0.014 | 0.0273200 | 0.343 | 0.326 | 0.017 | 5.78e-05 |
Height | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.342 | 0.335 | 0.006 | 0.0000000 | 0.335 | 0.326 | 0.009 | 1.32e-05 |
Height | All.MultiPRS | LDpred2.PseudoVal | 0.364 | 0.335 | 0.029 | 0.0000075 | 0.361 | 0.326 | 0.034 | 3.29e-19 |
Height | SBLUP.Inf | LDpred2.PseudoVal | 0.295 | 0.335 | -0.040 | 0.0000000 | 0.292 | 0.326 | -0.034 | 1.72e-27 |
Height | LDpred1.10FCVal | LDpred2.PseudoVal | 0.287 | 0.335 | -0.049 | 0.0000000 | 0.288 | 0.326 | -0.038 | 2.46e-22 |
Height | LDpred2.10FCVal | LDpred2.PseudoVal | 0.351 | 0.335 | 0.016 | 0.0000000 | 0.343 | 0.326 | 0.017 | 6.38e-16 |
Height | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.304 | 0.335 | -0.031 | 0.0000020 | 0.303 | 0.326 | -0.024 | 5.93e-14 |
Height | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.335 | 0.335 | 0.000 | 1.0000000 | 0.326 | 0.326 | 0.000 | 1.00e+00 |
Height | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.346 | 0.335 | 0.010 | 0.0000003 | 0.332 | 0.326 | 0.006 | 1.38e-01 |
Height | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.358 | 0.335 | 0.023 | 0.0002105 | 0.349 | 0.326 | 0.023 | 3.74e-10 |
Height | pT+clump.10FCVal | LDpred2.PseudoVal | 0.305 | 0.335 | -0.031 | 0.0000000 | 0.299 | 0.326 | -0.027 | 1.40e-04 |
Height | lassosum.10FCVal | LDpred2.PseudoVal | 0.347 | 0.335 | 0.011 | 0.0000001 | 0.340 | 0.326 | 0.013 | 1.72e-03 |
Height | LDpred2.Inf | LDpred2.PseudoVal | 0.302 | 0.335 | -0.033 | 0.0000000 | 0.299 | 0.326 | -0.027 | 3.36e-19 |
Height | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.333 | 0.335 | -0.002 | 0.2314773 | 0.324 | 0.326 | -0.002 | 4.78e-01 |
Height | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.348 | 0.335 | 0.012 | 0.0000000 | 0.334 | 0.326 | 0.008 | 3.63e-02 |
Height | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.356 | 0.335 | 0.020 | 0.0013861 | 0.351 | 0.326 | 0.025 | 1.76e-16 |
Height | lassosum.PseudoVal | LDpred2.PseudoVal | 0.320 | 0.335 | -0.016 | 0.0000134 | 0.312 | 0.326 | -0.014 | 5.10e-02 |
Height | LDpred1.Inf | LDpred2.PseudoVal | 0.297 | 0.335 | -0.038 | 0.0000000 | 0.295 | 0.326 | -0.031 | 3.20e-21 |
Height | All.MultiPRS | LDpred2.Inf | 0.364 | 0.302 | 0.062 | 0.0000000 | 0.361 | 0.299 | 0.061 | 9.46e-29 |
Height | LDpred1.10FCVal | LDpred2.Inf | 0.287 | 0.302 | -0.015 | 0.0000000 | 0.288 | 0.299 | -0.011 | 5.01e-05 |
Height | SBayesR.PseudoVal | LDpred2.Inf | 0.342 | 0.302 | 0.040 | 0.0000000 | 0.335 | 0.299 | 0.036 | 6.09e-24 |
Height | LDpred1.MultiPRS | LDpred2.Inf | 0.304 | 0.302 | 0.002 | 0.7410432 | 0.303 | 0.299 | 0.003 | 2.20e-01 |
Height | LDpred2.Inf | LDpred2.Inf | 0.302 | 0.302 | 0.000 | 1.0000000 | 0.299 | 0.299 | 0.000 | 1.00e+00 |
Height | MegaPRS.PseudoVal | LDpred2.Inf | 0.346 | 0.302 | 0.043 | 0.0000000 | 0.332 | 0.299 | 0.033 | 1.35e-08 |
Height | pT+clump.10FCVal | LDpred2.Inf | 0.305 | 0.302 | 0.002 | 0.5439198 | 0.299 | 0.299 | -0.001 | 9.45e-01 |
Height | LDpred2.10FCVal | LDpred2.Inf | 0.351 | 0.302 | 0.049 | 0.0000000 | 0.343 | 0.299 | 0.044 | 3.82e-23 |
Height | lassosum.10FCVal | LDpred2.Inf | 0.347 | 0.302 | 0.045 | 0.0000000 | 0.340 | 0.299 | 0.040 | 8.17e-13 |
Height | pT+clump.MultiPRS | LDpred2.Inf | 0.320 | 0.302 | 0.017 | 0.0077161 | 0.314 | 0.299 | 0.014 | 2.19e-02 |
Height | MegaPRS.MultiPRS | LDpred2.Inf | 0.358 | 0.302 | 0.056 | 0.0000000 | 0.349 | 0.299 | 0.050 | 8.62e-23 |
Height | LDpred2.PseudoVal | LDpred2.Inf | 0.335 | 0.302 | 0.033 | 0.0000000 | 0.326 | 0.299 | 0.027 | 3.36e-19 |
Height | LDpred2.MultiPRS | LDpred2.Inf | 0.356 | 0.302 | 0.054 | 0.0000000 | 0.351 | 0.299 | 0.052 | 1.14e-24 |
Height | SBLUP.Inf | LDpred2.Inf | 0.295 | 0.302 | -0.007 | 0.0000000 | 0.292 | 0.299 | -0.007 | 2.22e-09 |
Height | DBSLMM.PseudoVal | LDpred2.Inf | 0.333 | 0.302 | 0.031 | 0.0000000 | 0.324 | 0.299 | 0.025 | 1.98e-11 |
Height | lassosum.MultiPRS | LDpred2.Inf | 0.349 | 0.302 | 0.047 | 0.0000000 | 0.343 | 0.299 | 0.044 | 2.93e-16 |
Height | MegaPRS.10FCVal | LDpred2.Inf | 0.348 | 0.302 | 0.046 | 0.0000000 | 0.334 | 0.299 | 0.035 | 1.29e-10 |
Height | lassosum.PseudoVal | LDpred2.Inf | 0.320 | 0.302 | 0.018 | 0.0000152 | 0.312 | 0.299 | 0.013 | 1.17e-01 |
Height | LDpred1.Inf | LDpred2.Inf | 0.297 | 0.302 | -0.005 | 0.0000000 | 0.295 | 0.299 | -0.004 | 5.96e-03 |
Height | All.MultiPRS | pT+clump.MultiPRS | 0.364 | 0.320 | 0.044 | 0.0000000 | 0.361 | 0.314 | 0.047 | 2.61e-23 |
Height | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.342 | 0.320 | 0.022 | 0.0006229 | 0.335 | 0.314 | 0.021 | 7.74e-06 |
Height | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.358 | 0.320 | 0.038 | 0.0000000 | 0.349 | 0.314 | 0.036 | 3.24e-14 |
Height | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.320 | 0.320 | 0.000 | 1.0000000 | 0.314 | 0.314 | 0.000 | 1.00e+00 |
Height | lassosum.10FCVal | pT+clump.MultiPRS | 0.347 | 0.320 | 0.027 | 0.0000282 | 0.340 | 0.314 | 0.026 | 6.71e-09 |
Height | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.335 | 0.320 | 0.016 | 0.0151639 | 0.326 | 0.314 | 0.013 | 2.36e-02 |
Height | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.333 | 0.320 | 0.014 | 0.0331859 | 0.324 | 0.314 | 0.010 | 3.26e-02 |
Height | SBLUP.Inf | pT+clump.MultiPRS | 0.295 | 0.320 | -0.024 | 0.0002273 | 0.292 | 0.314 | -0.022 | 4.55e-04 |
Height | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.356 | 0.320 | 0.036 | 0.0000000 | 0.351 | 0.314 | 0.038 | 1.20e-15 |
Height | pT+clump.10FCVal | pT+clump.MultiPRS | 0.305 | 0.320 | -0.015 | 0.0216825 | 0.299 | 0.314 | -0.015 | 4.59e-07 |
Height | LDpred1.Inf | pT+clump.MultiPRS | 0.297 | 0.320 | -0.023 | 0.0006014 | 0.295 | 0.314 | -0.019 | 2.57e-03 |
Height | LDpred2.Inf | pT+clump.MultiPRS | 0.302 | 0.320 | -0.017 | 0.0077161 | 0.299 | 0.314 | -0.014 | 2.19e-02 |
Height | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.348 | 0.320 | 0.028 | 0.0000130 | 0.334 | 0.314 | 0.020 | 8.15e-05 |
Height | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.346 | 0.320 | 0.026 | 0.0000567 | 0.332 | 0.314 | 0.019 | 3.54e-04 |
Height | LDpred2.10FCVal | pT+clump.MultiPRS | 0.351 | 0.320 | 0.032 | 0.0000009 | 0.343 | 0.314 | 0.030 | 1.69e-09 |
Height | lassosum.PseudoVal | pT+clump.MultiPRS | 0.320 | 0.320 | 0.000 | 0.9721437 | 0.312 | 0.314 | -0.001 | 7.96e-01 |
Height | LDpred1.10FCVal | pT+clump.MultiPRS | 0.287 | 0.320 | -0.033 | 0.0000006 | 0.288 | 0.314 | -0.025 | 1.23e-04 |
Height | lassosum.MultiPRS | pT+clump.MultiPRS | 0.349 | 0.320 | 0.030 | 0.0000035 | 0.343 | 0.314 | 0.029 | 3.64e-11 |
Height | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.304 | 0.320 | -0.015 | 0.0196400 | 0.303 | 0.314 | -0.011 | 6.22e-02 |
Height | LDpred1.Inf | pT+clump.10FCVal | 0.297 | 0.305 | -0.007 | 0.0574906 | 0.295 | 0.299 | -0.004 | 6.35e-01 |
Height | pT+clump.MultiPRS | pT+clump.10FCVal | 0.320 | 0.305 | 0.015 | 0.0216825 | 0.314 | 0.299 | 0.015 | 4.59e-07 |
Height | LDpred2.MultiPRS | pT+clump.10FCVal | 0.356 | 0.305 | 0.051 | 0.0000000 | 0.351 | 0.299 | 0.053 | 2.82e-19 |
Height | SBayesR.PseudoVal | pT+clump.10FCVal | 0.342 | 0.305 | 0.037 | 0.0000000 | 0.335 | 0.299 | 0.036 | 1.46e-08 |
Height | LDpred2.10FCVal | pT+clump.10FCVal | 0.351 | 0.305 | 0.047 | 0.0000000 | 0.343 | 0.299 | 0.045 | 1.32e-12 |
Height | SBLUP.Inf | pT+clump.10FCVal | 0.295 | 0.305 | -0.009 | 0.0210632 | 0.292 | 0.299 | -0.007 | 3.89e-01 |
Height | lassosum.MultiPRS | pT+clump.10FCVal | 0.349 | 0.305 | 0.045 | 0.0000000 | 0.343 | 0.299 | 0.044 | 5.98e-16 |
Height | LDpred2.PseudoVal | pT+clump.10FCVal | 0.335 | 0.305 | 0.031 | 0.0000000 | 0.326 | 0.299 | 0.027 | 1.40e-04 |
Height | LDpred1.MultiPRS | pT+clump.10FCVal | 0.304 | 0.305 | 0.000 | 0.9727333 | 0.303 | 0.299 | 0.004 | 6.31e-01 |
Height | lassosum.PseudoVal | pT+clump.10FCVal | 0.320 | 0.305 | 0.015 | 0.0000001 | 0.312 | 0.299 | 0.013 | 1.85e-02 |
Height | LDpred1.10FCVal | pT+clump.10FCVal | 0.287 | 0.305 | -0.018 | 0.0000121 | 0.288 | 0.299 | -0.010 | 2.05e-01 |
Height | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.358 | 0.305 | 0.054 | 0.0000000 | 0.349 | 0.299 | 0.051 | 5.01e-18 |
Height | pT+clump.10FCVal | pT+clump.10FCVal | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.299 | 0.299 | 0.000 | 1.00e+00 |
Height | All.MultiPRS | pT+clump.10FCVal | 0.364 | 0.305 | 0.059 | 0.0000000 | 0.361 | 0.299 | 0.062 | 1.84e-29 |
Height | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.346 | 0.305 | 0.041 | 0.0000000 | 0.332 | 0.299 | 0.033 | 6.51e-08 |
Height | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.333 | 0.305 | 0.029 | 0.0000000 | 0.324 | 0.299 | 0.025 | 8.71e-05 |
Height | MegaPRS.10FCVal | pT+clump.10FCVal | 0.348 | 0.305 | 0.043 | 0.0000000 | 0.334 | 0.299 | 0.035 | 2.24e-08 |
Height | lassosum.10FCVal | pT+clump.10FCVal | 0.347 | 0.305 | 0.042 | 0.0000000 | 0.340 | 0.299 | 0.041 | 4.20e-13 |
Height | LDpred2.Inf | pT+clump.10FCVal | 0.302 | 0.305 | -0.002 | 0.5439198 | 0.299 | 0.299 | 0.001 | 9.45e-01 |
Height | LDpred1.Inf | SBayesR.PseudoVal | 0.297 | 0.342 | -0.045 | 0.0000000 | 0.295 | 0.335 | -0.040 | 2.27e-28 |
Height | LDpred2.Inf | SBayesR.PseudoVal | 0.302 | 0.342 | -0.040 | 0.0000000 | 0.299 | 0.335 | -0.036 | 6.09e-24 |
Height | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.348 | 0.342 | 0.006 | 0.0001750 | 0.334 | 0.335 | -0.001 | 7.26e-01 |
Height | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.356 | 0.342 | 0.014 | 0.0274351 | 0.351 | 0.335 | 0.016 | 7.51e-10 |
Height | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.342 | 0.342 | 0.000 | 1.0000000 | 0.335 | 0.335 | 0.000 | 1.00e+00 |
Height | lassosum.PseudoVal | SBayesR.PseudoVal | 0.320 | 0.342 | -0.022 | 0.0000000 | 0.312 | 0.335 | -0.023 | 4.17e-04 |
Height | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.320 | 0.342 | -0.022 | 0.0006229 | 0.314 | 0.335 | -0.021 | 7.74e-06 |
Height | lassosum.MultiPRS | SBayesR.PseudoVal | 0.349 | 0.342 | 0.008 | 0.2247318 | 0.343 | 0.335 | 0.008 | 2.32e-02 |
Height | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.335 | 0.342 | -0.006 | 0.0000000 | 0.326 | 0.335 | -0.009 | 1.32e-05 |
Height | LDpred2.10FCVal | SBayesR.PseudoVal | 0.351 | 0.342 | 0.009 | 0.0000000 | 0.343 | 0.335 | 0.008 | 1.26e-04 |
Height | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.358 | 0.342 | 0.016 | 0.0075223 | 0.349 | 0.335 | 0.014 | 1.88e-06 |
Height | LDpred1.10FCVal | SBayesR.PseudoVal | 0.287 | 0.342 | -0.055 | 0.0000000 | 0.288 | 0.335 | -0.047 | 2.46e-28 |
Height | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.346 | 0.342 | 0.004 | 0.0286579 | 0.332 | 0.335 | -0.003 | 4.27e-01 |
Height | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.304 | 0.342 | -0.037 | 0.0000000 | 0.303 | 0.335 | -0.033 | 2.05e-21 |
Height | All.MultiPRS | SBayesR.PseudoVal | 0.364 | 0.342 | 0.022 | 0.0004885 | 0.361 | 0.335 | 0.025 | 2.63e-14 |
Height | SBLUP.Inf | SBayesR.PseudoVal | 0.295 | 0.342 | -0.046 | 0.0000000 | 0.292 | 0.335 | -0.043 | 1.21e-32 |
Height | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.333 | 0.342 | -0.008 | 0.0000000 | 0.324 | 0.335 | -0.011 | 9.59e-05 |
Height | pT+clump.10FCVal | SBayesR.PseudoVal | 0.305 | 0.342 | -0.037 | 0.0000000 | 0.299 | 0.335 | -0.036 | 1.46e-08 |
Height | lassosum.10FCVal | SBayesR.PseudoVal | 0.347 | 0.342 | 0.005 | 0.0068135 | 0.340 | 0.335 | 0.005 | 2.16e-01 |
Height | LDpred2.PseudoVal | SBLUP.Inf | 0.335 | 0.295 | 0.040 | 0.0000000 | 0.326 | 0.292 | 0.034 | 1.72e-27 |
Height | MegaPRS.10FCVal | SBLUP.Inf | 0.348 | 0.295 | 0.052 | 0.0000000 | 0.334 | 0.292 | 0.042 | 1.86e-14 |
Height | lassosum.MultiPRS | SBLUP.Inf | 0.349 | 0.295 | 0.054 | 0.0000000 | 0.343 | 0.292 | 0.051 | 6.23e-21 |
Height | LDpred1.MultiPRS | SBLUP.Inf | 0.304 | 0.295 | 0.009 | 0.1765460 | 0.303 | 0.292 | 0.011 | 3.62e-05 |
Height | All.MultiPRS | SBLUP.Inf | 0.364 | 0.295 | 0.069 | 0.0000000 | 0.361 | 0.292 | 0.069 | 5.69e-33 |
Height | LDpred2.Inf | SBLUP.Inf | 0.302 | 0.295 | 0.007 | 0.0000000 | 0.299 | 0.292 | 0.007 | 2.22e-09 |
Height | MegaPRS.MultiPRS | SBLUP.Inf | 0.358 | 0.295 | 0.063 | 0.0000000 | 0.349 | 0.292 | 0.057 | 1.50e-27 |
Height | pT+clump.MultiPRS | SBLUP.Inf | 0.320 | 0.295 | 0.024 | 0.0002273 | 0.314 | 0.292 | 0.022 | 4.55e-04 |
Height | lassosum.10FCVal | SBLUP.Inf | 0.347 | 0.295 | 0.051 | 0.0000000 | 0.340 | 0.292 | 0.048 | 7.40e-17 |
Height | SBayesR.PseudoVal | SBLUP.Inf | 0.342 | 0.295 | 0.046 | 0.0000000 | 0.335 | 0.292 | 0.043 | 1.21e-32 |
Height | DBSLMM.PseudoVal | SBLUP.Inf | 0.333 | 0.295 | 0.038 | 0.0000000 | 0.324 | 0.292 | 0.032 | 2.32e-18 |
Height | SBLUP.Inf | SBLUP.Inf | 0.295 | 0.295 | 0.000 | 1.0000000 | 0.292 | 0.292 | 0.000 | 1.00e+00 |
Height | LDpred2.MultiPRS | SBLUP.Inf | 0.356 | 0.295 | 0.060 | 0.0000000 | 0.351 | 0.292 | 0.059 | 1.79e-29 |
Height | pT+clump.10FCVal | SBLUP.Inf | 0.305 | 0.295 | 0.009 | 0.0210632 | 0.299 | 0.292 | 0.007 | 3.89e-01 |
Height | LDpred1.Inf | SBLUP.Inf | 0.297 | 0.295 | 0.002 | 0.0330981 | 0.295 | 0.292 | 0.003 | 4.65e-02 |
Height | lassosum.PseudoVal | SBLUP.Inf | 0.320 | 0.295 | 0.024 | 0.0000000 | 0.312 | 0.292 | 0.020 | 1.50e-02 |
Height | LDpred1.10FCVal | SBLUP.Inf | 0.287 | 0.295 | -0.009 | 0.0000000 | 0.288 | 0.292 | -0.004 | 1.74e-01 |
Height | MegaPRS.PseudoVal | SBLUP.Inf | 0.346 | 0.295 | 0.050 | 0.0000000 | 0.332 | 0.292 | 0.040 | 8.04e-12 |
Height | LDpred2.10FCVal | SBLUP.Inf | 0.351 | 0.295 | 0.056 | 0.0000000 | 0.343 | 0.292 | 0.051 | 1.05e-28 |
BMI | LDpred1.10FCVal | All.MultiPRS | 0.277 | 0.311 | -0.034 | 0.0000002 | 0.273 | 0.312 | -0.040 | 6.57e-18 |
BMI | pT+clump.10FCVal | All.MultiPRS | 0.248 | 0.311 | -0.063 | 0.0000000 | 0.245 | 0.312 | -0.067 | 2.03e-28 |
BMI | LDpred1.MultiPRS | All.MultiPRS | 0.286 | 0.311 | -0.025 | 0.0001500 | 0.282 | 0.312 | -0.030 | 5.10e-14 |
BMI | LDpred2.Inf | All.MultiPRS | 0.293 | 0.311 | -0.018 | 0.0060241 | 0.287 | 0.312 | -0.025 | 8.37e-14 |
BMI | MegaPRS.10FCVal | All.MultiPRS | 0.297 | 0.311 | -0.014 | 0.0325069 | 0.296 | 0.312 | -0.016 | 9.68e-08 |
BMI | LDpred2.10FCVal | All.MultiPRS | 0.305 | 0.311 | -0.006 | 0.3663342 | 0.302 | 0.312 | -0.010 | 2.65e-06 |
BMI | LDpred2.MultiPRS | All.MultiPRS | 0.305 | 0.311 | -0.005 | 0.0000000 | 0.303 | 0.312 | -0.009 | 1.63e-06 |
BMI | lassosum.10FCVal | All.MultiPRS | 0.300 | 0.311 | -0.010 | 0.1235012 | 0.300 | 0.312 | -0.012 | 2.08e-06 |
BMI | LDpred1.Inf | All.MultiPRS | 0.272 | 0.311 | -0.038 | 0.0000000 | 0.264 | 0.312 | -0.048 | 1.43e-23 |
BMI | lassosum.MultiPRS | All.MultiPRS | 0.305 | 0.311 | -0.006 | 0.3857024 | 0.308 | 0.312 | -0.005 | 1.87e-02 |
BMI | MegaPRS.PseudoVal | All.MultiPRS | 0.279 | 0.311 | -0.032 | 0.0000014 | 0.280 | 0.312 | -0.032 | 3.77e-13 |
BMI | All.MultiPRS | All.MultiPRS | 0.311 | 0.311 | 0.000 | 1.0000000 | 0.312 | 0.312 | 0.000 | 1.00e+00 |
BMI | SBayesR.PseudoVal | All.MultiPRS | 0.241 | 0.311 | -0.069 | 0.0000000 | 0.250 | 0.312 | -0.062 | 5.92e-22 |
BMI | MegaPRS.MultiPRS | All.MultiPRS | 0.302 | 0.311 | -0.008 | 0.2143289 | 0.301 | 0.312 | -0.011 | 4.97e-06 |
BMI | pT+clump.MultiPRS | All.MultiPRS | 0.271 | 0.311 | -0.040 | 0.0000000 | 0.275 | 0.312 | -0.037 | 3.16e-14 |
BMI | lassosum.PseudoVal | All.MultiPRS | 0.253 | 0.311 | -0.058 | 0.0000000 | 0.261 | 0.312 | -0.051 | 1.08e-17 |
BMI | LDpred2.PseudoVal | All.MultiPRS | 0.237 | 0.311 | -0.073 | 0.0000000 | 0.243 | 0.312 | -0.069 | 3.01e-25 |
BMI | DBSLMM.PseudoVal | All.MultiPRS | 0.283 | 0.311 | -0.028 | 0.0000223 | 0.283 | 0.312 | -0.029 | 1.55e-12 |
BMI | SBLUP.Inf | All.MultiPRS | 0.292 | 0.311 | -0.018 | 0.0054762 | 0.287 | 0.312 | -0.026 | 3.87e-14 |
BMI | LDpred1.Inf | DBSLMM.PseudoVal | 0.272 | 0.283 | -0.010 | 0.0001969 | 0.264 | 0.283 | -0.019 | 7.19e-04 |
BMI | LDpred2.Inf | DBSLMM.PseudoVal | 0.293 | 0.283 | 0.010 | 0.0000813 | 0.287 | 0.283 | 0.004 | 4.05e-01 |
BMI | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.305 | 0.283 | 0.023 | 0.0006127 | 0.303 | 0.283 | 0.020 | 5.43e-07 |
BMI | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.248 | 0.283 | -0.035 | 0.0000000 | 0.245 | 0.283 | -0.038 | 2.53e-07 |
BMI | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.241 | 0.283 | -0.041 | 0.0000000 | 0.250 | 0.283 | -0.033 | 6.28e-09 |
BMI | All.MultiPRS | DBSLMM.PseudoVal | 0.311 | 0.283 | 0.028 | 0.0000223 | 0.312 | 0.283 | 0.029 | 1.55e-12 |
BMI | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.279 | 0.283 | -0.004 | 0.0603590 | 0.280 | 0.283 | -0.003 | 5.35e-01 |
BMI | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.302 | 0.283 | 0.020 | 0.0027941 | 0.301 | 0.283 | 0.018 | 6.92e-05 |
BMI | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.237 | 0.283 | -0.045 | 0.0000000 | 0.243 | 0.283 | -0.040 | 5.39e-12 |
BMI | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.253 | 0.283 | -0.030 | 0.0000000 | 0.261 | 0.283 | -0.022 | 2.05e-04 |
BMI | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.271 | 0.283 | -0.012 | 0.0684538 | 0.275 | 0.283 | -0.008 | 1.60e-01 |
BMI | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.297 | 0.283 | 0.014 | 0.0000000 | 0.296 | 0.283 | 0.013 | 8.02e-03 |
BMI | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.305 | 0.283 | 0.022 | 0.0007653 | 0.308 | 0.283 | 0.025 | 7.44e-09 |
BMI | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.305 | 0.283 | 0.022 | 0.0000000 | 0.302 | 0.283 | 0.019 | 1.21e-06 |
BMI | lassosum.10FCVal | DBSLMM.PseudoVal | 0.300 | 0.283 | 0.018 | 0.0000000 | 0.300 | 0.283 | 0.017 | 2.77e-04 |
BMI | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.277 | 0.283 | -0.006 | 0.0036431 | 0.273 | 0.283 | -0.010 | 1.70e-02 |
BMI | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.283 | 0.283 | 0.000 | 1.0000000 | 0.283 | 0.283 | 0.000 | 1.00e+00 |
BMI | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.286 | 0.283 | 0.003 | 0.6591662 | 0.282 | 0.283 | -0.001 | 8.64e-01 |
BMI | SBLUP.Inf | DBSLMM.PseudoVal | 0.292 | 0.283 | 0.010 | 0.0001065 | 0.287 | 0.283 | 0.004 | 4.76e-01 |
BMI | SBayesR.PseudoVal | lassosum.MultiPRS | 0.241 | 0.305 | -0.063 | 0.0000000 | 0.250 | 0.308 | -0.058 | 3.34e-18 |
BMI | LDpred1.Inf | lassosum.MultiPRS | 0.272 | 0.305 | -0.032 | 0.0000010 | 0.264 | 0.308 | -0.044 | 4.32e-19 |
BMI | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.279 | 0.305 | -0.026 | 0.0000784 | 0.280 | 0.308 | -0.027 | 2.29e-08 |
BMI | LDpred2.MultiPRS | lassosum.MultiPRS | 0.305 | 0.305 | 0.000 | 0.9548313 | 0.303 | 0.308 | -0.004 | 7.62e-02 |
BMI | LDpred2.PseudoVal | lassosum.MultiPRS | 0.237 | 0.305 | -0.067 | 0.0000000 | 0.243 | 0.308 | -0.065 | 3.22e-21 |
BMI | LDpred2.10FCVal | lassosum.MultiPRS | 0.305 | 0.305 | 0.000 | 0.9735118 | 0.302 | 0.308 | -0.006 | 2.64e-02 |
BMI | pT+clump.MultiPRS | lassosum.MultiPRS | 0.271 | 0.305 | -0.034 | 0.0000002 | 0.275 | 0.308 | -0.033 | 1.45e-12 |
BMI | lassosum.MultiPRS | lassosum.MultiPRS | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.308 | 0.308 | 0.000 | 1.00e+00 |
BMI | lassosum.PseudoVal | lassosum.MultiPRS | 0.253 | 0.305 | -0.052 | 0.0000000 | 0.261 | 0.308 | -0.046 | 3.78e-16 |
BMI | LDpred1.MultiPRS | lassosum.MultiPRS | 0.286 | 0.305 | -0.019 | 0.0034867 | 0.282 | 0.308 | -0.026 | 6.42e-10 |
BMI | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.302 | 0.305 | -0.002 | 0.7072640 | 0.301 | 0.308 | -0.006 | 6.43e-02 |
BMI | LDpred1.10FCVal | lassosum.MultiPRS | 0.277 | 0.305 | -0.028 | 0.0000179 | 0.273 | 0.308 | -0.035 | 7.43e-14 |
BMI | MegaPRS.10FCVal | lassosum.MultiPRS | 0.297 | 0.305 | -0.008 | 0.2062785 | 0.296 | 0.308 | -0.012 | 3.52e-03 |
BMI | pT+clump.10FCVal | lassosum.MultiPRS | 0.248 | 0.305 | -0.057 | 0.0000000 | 0.245 | 0.308 | -0.063 | 2.38e-27 |
BMI | lassosum.10FCVal | lassosum.MultiPRS | 0.300 | 0.305 | -0.004 | 0.5041305 | 0.300 | 0.308 | -0.008 | 8.54e-06 |
BMI | SBLUP.Inf | lassosum.MultiPRS | 0.292 | 0.305 | -0.013 | 0.0572257 | 0.287 | 0.308 | -0.021 | 7.98e-10 |
BMI | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.283 | 0.305 | -0.022 | 0.0007653 | 0.283 | 0.308 | -0.025 | 7.44e-09 |
BMI | All.MultiPRS | lassosum.MultiPRS | 0.311 | 0.305 | 0.006 | 0.3857024 | 0.312 | 0.308 | 0.005 | 1.87e-02 |
BMI | LDpred2.Inf | lassosum.MultiPRS | 0.293 | 0.305 | -0.012 | 0.0614332 | 0.287 | 0.308 | -0.021 | 5.70e-09 |
BMI | MegaPRS.10FCVal | lassosum.PseudoVal | 0.297 | 0.253 | 0.044 | 0.0000000 | 0.296 | 0.261 | 0.035 | 1.23e-06 |
BMI | LDpred2.PseudoVal | lassosum.PseudoVal | 0.237 | 0.253 | -0.016 | 0.0000000 | 0.243 | 0.261 | -0.018 | 7.20e-06 |
BMI | LDpred1.MultiPRS | lassosum.PseudoVal | 0.286 | 0.253 | 0.033 | 0.0000011 | 0.282 | 0.261 | 0.021 | 6.11e-04 |
BMI | lassosum.PseudoVal | lassosum.PseudoVal | 0.253 | 0.253 | 0.000 | 1.0000000 | 0.261 | 0.261 | 0.000 | 1.00e+00 |
BMI | LDpred2.Inf | lassosum.PseudoVal | 0.293 | 0.253 | 0.040 | 0.0000000 | 0.287 | 0.261 | 0.026 | 1.23e-03 |
BMI | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.283 | 0.253 | 0.030 | 0.0000000 | 0.283 | 0.261 | 0.022 | 2.05e-04 |
BMI | SBLUP.Inf | lassosum.PseudoVal | 0.292 | 0.253 | 0.039 | 0.0000000 | 0.287 | 0.261 | 0.025 | 1.55e-03 |
BMI | LDpred2.MultiPRS | lassosum.PseudoVal | 0.305 | 0.253 | 0.052 | 0.0000000 | 0.303 | 0.261 | 0.042 | 4.05e-12 |
BMI | pT+clump.10FCVal | lassosum.PseudoVal | 0.248 | 0.253 | -0.005 | 0.2192952 | 0.245 | 0.261 | -0.016 | 4.70e-02 |
BMI | LDpred1.Inf | lassosum.PseudoVal | 0.272 | 0.253 | 0.019 | 0.0000004 | 0.264 | 0.261 | 0.002 | 7.51e-01 |
BMI | lassosum.MultiPRS | lassosum.PseudoVal | 0.305 | 0.253 | 0.052 | 0.0000000 | 0.308 | 0.261 | 0.046 | 3.78e-16 |
BMI | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.279 | 0.253 | 0.026 | 0.0000000 | 0.280 | 0.261 | 0.019 | 1.68e-04 |
BMI | All.MultiPRS | lassosum.PseudoVal | 0.311 | 0.253 | 0.058 | 0.0000000 | 0.312 | 0.261 | 0.051 | 1.08e-17 |
BMI | SBayesR.PseudoVal | lassosum.PseudoVal | 0.241 | 0.253 | -0.012 | 0.0000009 | 0.250 | 0.261 | -0.011 | 1.65e-02 |
BMI | lassosum.10FCVal | lassosum.PseudoVal | 0.300 | 0.253 | 0.047 | 0.0000000 | 0.300 | 0.261 | 0.039 | 8.34e-09 |
BMI | pT+clump.MultiPRS | lassosum.PseudoVal | 0.271 | 0.253 | 0.017 | 0.0093003 | 0.275 | 0.261 | 0.014 | 2.69e-02 |
BMI | LDpred1.10FCVal | lassosum.PseudoVal | 0.277 | 0.253 | 0.023 | 0.0000000 | 0.273 | 0.261 | 0.011 | 3.34e-02 |
BMI | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.302 | 0.253 | 0.049 | 0.0000000 | 0.301 | 0.261 | 0.040 | 2.21e-09 |
BMI | LDpred2.10FCVal | lassosum.PseudoVal | 0.305 | 0.253 | 0.052 | 0.0000000 | 0.302 | 0.261 | 0.041 | 6.94e-11 |
BMI | lassosum.10FCVal | lassosum.10FCVal | 0.300 | 0.300 | 0.000 | 1.0000000 | 0.300 | 0.300 | 0.000 | 1.00e+00 |
BMI | pT+clump.MultiPRS | lassosum.10FCVal | 0.271 | 0.300 | -0.030 | 0.0000063 | 0.275 | 0.300 | -0.025 | 9.80e-07 |
BMI | LDpred2.MultiPRS | lassosum.10FCVal | 0.305 | 0.300 | 0.005 | 0.4670619 | 0.303 | 0.300 | 0.003 | 2.52e-01 |
BMI | SBayesR.PseudoVal | lassosum.10FCVal | 0.241 | 0.300 | -0.059 | 0.0000000 | 0.250 | 0.300 | -0.050 | 1.81e-11 |
BMI | LDpred2.10FCVal | lassosum.10FCVal | 0.305 | 0.300 | 0.004 | 0.0010907 | 0.302 | 0.300 | 0.002 | 4.29e-01 |
BMI | SBLUP.Inf | lassosum.10FCVal | 0.292 | 0.300 | -0.008 | 0.0000000 | 0.287 | 0.300 | -0.013 | 2.68e-07 |
BMI | lassosum.MultiPRS | lassosum.10FCVal | 0.305 | 0.300 | 0.004 | 0.5041305 | 0.308 | 0.300 | 0.008 | 8.54e-06 |
BMI | LDpred2.PseudoVal | lassosum.10FCVal | 0.237 | 0.300 | -0.063 | 0.0000000 | 0.243 | 0.300 | -0.057 | 8.68e-14 |
BMI | LDpred1.MultiPRS | lassosum.10FCVal | 0.286 | 0.300 | -0.015 | 0.0244796 | 0.282 | 0.300 | -0.018 | 1.45e-05 |
BMI | LDpred2.Inf | lassosum.10FCVal | 0.293 | 0.300 | -0.008 | 0.0000000 | 0.287 | 0.300 | -0.013 | 1.83e-06 |
BMI | LDpred1.10FCVal | lassosum.10FCVal | 0.277 | 0.300 | -0.024 | 0.0000000 | 0.273 | 0.300 | -0.027 | 8.08e-09 |
BMI | MegaPRS.MultiPRS | lassosum.10FCVal | 0.302 | 0.300 | 0.002 | 0.7683868 | 0.301 | 0.300 | 0.001 | 7.28e-01 |
BMI | pT+clump.10FCVal | lassosum.10FCVal | 0.248 | 0.300 | -0.052 | 0.0000000 | 0.245 | 0.300 | -0.055 | 2.11e-20 |
BMI | All.MultiPRS | lassosum.10FCVal | 0.311 | 0.300 | 0.010 | 0.1235012 | 0.312 | 0.300 | 0.012 | 2.08e-06 |
BMI | MegaPRS.10FCVal | lassosum.10FCVal | 0.297 | 0.300 | -0.004 | 0.0231327 | 0.296 | 0.300 | -0.004 | 2.72e-01 |
BMI | DBSLMM.PseudoVal | lassosum.10FCVal | 0.283 | 0.300 | -0.018 | 0.0000000 | 0.283 | 0.300 | -0.017 | 2.77e-04 |
BMI | MegaPRS.PseudoVal | lassosum.10FCVal | 0.279 | 0.300 | -0.022 | 0.0000000 | 0.280 | 0.300 | -0.020 | 1.85e-04 |
BMI | lassosum.PseudoVal | lassosum.10FCVal | 0.253 | 0.300 | -0.047 | 0.0000000 | 0.261 | 0.300 | -0.039 | 8.34e-09 |
BMI | LDpred1.Inf | lassosum.10FCVal | 0.272 | 0.300 | -0.028 | 0.0000000 | 0.264 | 0.300 | -0.036 | 1.72e-17 |
BMI | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.297 | 0.302 | -0.006 | 0.3728964 | 0.296 | 0.301 | -0.005 | 1.05e-02 |
BMI | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.283 | 0.302 | -0.020 | 0.0027941 | 0.283 | 0.301 | -0.018 | 6.92e-05 |
BMI | SBLUP.Inf | MegaPRS.MultiPRS | 0.292 | 0.302 | -0.010 | 0.1261010 | 0.287 | 0.301 | -0.015 | 9.93e-05 |
BMI | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.305 | 0.302 | 0.003 | 0.6660017 | 0.303 | 0.301 | 0.002 | 5.29e-01 |
BMI | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.248 | 0.302 | -0.054 | 0.0000000 | 0.245 | 0.301 | -0.056 | 1.49e-15 |
BMI | LDpred1.Inf | MegaPRS.MultiPRS | 0.272 | 0.302 | -0.030 | 0.0000059 | 0.264 | 0.301 | -0.037 | 3.83e-14 |
BMI | LDpred2.Inf | MegaPRS.MultiPRS | 0.293 | 0.302 | -0.010 | 0.1340807 | 0.287 | 0.301 | -0.014 | 1.34e-04 |
BMI | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.279 | 0.302 | -0.024 | 0.0003422 | 0.280 | 0.301 | -0.021 | 3.81e-08 |
BMI | All.MultiPRS | MegaPRS.MultiPRS | 0.311 | 0.302 | 0.008 | 0.2143289 | 0.312 | 0.301 | 0.011 | 4.97e-06 |
BMI | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.241 | 0.302 | -0.061 | 0.0000000 | 0.250 | 0.301 | -0.051 | 7.55e-14 |
BMI | lassosum.10FCVal | MegaPRS.MultiPRS | 0.300 | 0.302 | -0.002 | 0.7683868 | 0.300 | 0.301 | -0.001 | 7.28e-01 |
BMI | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.271 | 0.302 | -0.032 | 0.0000015 | 0.275 | 0.301 | -0.026 | 1.55e-05 |
BMI | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.305 | 0.302 | 0.002 | 0.7072640 | 0.308 | 0.301 | 0.006 | 6.43e-02 |
BMI | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.237 | 0.302 | -0.065 | 0.0000000 | 0.243 | 0.301 | -0.058 | 8.73e-17 |
BMI | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.305 | 0.302 | 0.002 | 0.7320099 | 0.302 | 0.301 | 0.001 | 7.94e-01 |
BMI | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.253 | 0.302 | -0.049 | 0.0000000 | 0.261 | 0.301 | -0.040 | 2.21e-09 |
BMI | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.277 | 0.302 | -0.026 | 0.0000879 | 0.273 | 0.301 | -0.029 | 2.34e-09 |
BMI | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.302 | 0.302 | 0.000 | 1.0000000 | 0.301 | 0.301 | 0.000 | 1.00e+00 |
BMI | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.286 | 0.302 | -0.017 | 0.0000000 | 0.282 | 0.301 | -0.019 | 1.02e-05 |
BMI | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.297 | 0.297 | 0.000 | 1.0000000 | 0.296 | 0.296 | 0.000 | 1.00e+00 |
BMI | LDpred2.10FCVal | MegaPRS.10FCVal | 0.305 | 0.297 | 0.008 | 0.0000019 | 0.302 | 0.296 | 0.006 | 8.76e-02 |
BMI | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.286 | 0.297 | -0.011 | 0.0981852 | 0.282 | 0.296 | -0.014 | 1.46e-03 |
BMI | LDpred2.Inf | MegaPRS.10FCVal | 0.293 | 0.297 | -0.004 | 0.0189790 | 0.287 | 0.296 | -0.009 | 8.54e-03 |
BMI | LDpred1.Inf | MegaPRS.10FCVal | 0.272 | 0.297 | -0.024 | 0.0000000 | 0.264 | 0.296 | -0.032 | 4.07e-13 |
BMI | lassosum.MultiPRS | MegaPRS.10FCVal | 0.305 | 0.297 | 0.008 | 0.2062785 | 0.308 | 0.296 | 0.012 | 3.52e-03 |
BMI | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.279 | 0.297 | -0.018 | 0.0000000 | 0.280 | 0.296 | -0.016 | 2.78e-04 |
BMI | All.MultiPRS | MegaPRS.10FCVal | 0.311 | 0.297 | 0.014 | 0.0325069 | 0.312 | 0.296 | 0.016 | 9.68e-08 |
BMI | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.241 | 0.297 | -0.055 | 0.0000000 | 0.250 | 0.296 | -0.046 | 7.78e-10 |
BMI | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.283 | 0.297 | -0.014 | 0.0000000 | 0.283 | 0.296 | -0.013 | 8.02e-03 |
BMI | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.271 | 0.297 | -0.026 | 0.0000872 | 0.275 | 0.296 | -0.021 | 9.76e-04 |
BMI | lassosum.PseudoVal | MegaPRS.10FCVal | 0.253 | 0.297 | -0.044 | 0.0000000 | 0.261 | 0.296 | -0.035 | 1.23e-06 |
BMI | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.237 | 0.297 | -0.059 | 0.0000000 | 0.243 | 0.296 | -0.053 | 4.52e-12 |
BMI | lassosum.10FCVal | MegaPRS.10FCVal | 0.300 | 0.297 | 0.004 | 0.0231327 | 0.300 | 0.296 | 0.004 | 2.72e-01 |
BMI | SBLUP.Inf | MegaPRS.10FCVal | 0.292 | 0.297 | -0.004 | 0.0167280 | 0.287 | 0.296 | -0.010 | 6.44e-03 |
BMI | LDpred1.10FCVal | MegaPRS.10FCVal | 0.277 | 0.297 | -0.020 | 0.0000000 | 0.273 | 0.296 | -0.024 | 1.20e-06 |
BMI | pT+clump.10FCVal | MegaPRS.10FCVal | 0.248 | 0.297 | -0.049 | 0.0000000 | 0.245 | 0.296 | -0.051 | 1.25e-12 |
BMI | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.305 | 0.297 | 0.009 | 0.1851316 | 0.303 | 0.296 | 0.007 | 5.30e-02 |
BMI | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.302 | 0.297 | 0.006 | 0.3728964 | 0.301 | 0.296 | 0.005 | 1.05e-02 |
BMI | lassosum.10FCVal | MegaPRS.PseudoVal | 0.300 | 0.279 | 0.022 | 0.0000000 | 0.300 | 0.280 | 0.020 | 1.85e-04 |
BMI | SBLUP.Inf | MegaPRS.PseudoVal | 0.292 | 0.279 | 0.014 | 0.0000052 | 0.287 | 0.280 | 0.006 | 3.03e-01 |
BMI | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.241 | 0.279 | -0.037 | 0.0000000 | 0.250 | 0.280 | -0.030 | 2.06e-08 |
BMI | All.MultiPRS | MegaPRS.PseudoVal | 0.311 | 0.279 | 0.032 | 0.0000014 | 0.312 | 0.280 | 0.032 | 3.77e-13 |
BMI | LDpred2.Inf | MegaPRS.PseudoVal | 0.293 | 0.279 | 0.014 | 0.0000030 | 0.287 | 0.280 | 0.007 | 2.53e-01 |
BMI | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.305 | 0.279 | 0.026 | 0.0000784 | 0.308 | 0.280 | 0.027 | 2.29e-08 |
BMI | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.305 | 0.279 | 0.026 | 0.0000000 | 0.302 | 0.280 | 0.022 | 1.91e-06 |
BMI | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.286 | 0.279 | 0.007 | 0.3040983 | 0.282 | 0.280 | 0.002 | 6.93e-01 |
BMI | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.237 | 0.279 | -0.041 | 0.0000000 | 0.243 | 0.280 | -0.037 | 1.90e-13 |
BMI | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.277 | 0.279 | -0.002 | 0.2371869 | 0.273 | 0.280 | -0.008 | 4.89e-02 |
BMI | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.271 | 0.279 | -0.008 | 0.2169410 | 0.275 | 0.280 | -0.005 | 4.24e-01 |
BMI | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.248 | 0.279 | -0.031 | 0.0000000 | 0.245 | 0.280 | -0.035 | 1.17e-05 |
BMI | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.253 | 0.279 | -0.026 | 0.0000000 | 0.261 | 0.280 | -0.019 | 1.68e-04 |
BMI | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.297 | 0.279 | 0.018 | 0.0000000 | 0.296 | 0.280 | 0.016 | 2.78e-04 |
BMI | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.302 | 0.279 | 0.024 | 0.0003422 | 0.301 | 0.280 | 0.021 | 3.81e-08 |
BMI | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.279 | 0.279 | 0.000 | 1.0000000 | 0.280 | 0.280 | 0.000 | 1.00e+00 |
BMI | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.305 | 0.279 | 0.026 | 0.0000598 | 0.303 | 0.280 | 0.023 | 6.59e-07 |
BMI | LDpred1.Inf | MegaPRS.PseudoVal | 0.272 | 0.279 | -0.006 | 0.0309063 | 0.264 | 0.280 | -0.017 | 5.83e-03 |
BMI | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.283 | 0.279 | 0.004 | 0.0603590 | 0.283 | 0.280 | 0.003 | 5.35e-01 |
BMI | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.271 | 0.286 | -0.015 | 0.0233505 | 0.275 | 0.282 | -0.007 | 2.09e-01 |
BMI | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.279 | 0.286 | -0.007 | 0.3040983 | 0.280 | 0.282 | -0.002 | 6.93e-01 |
BMI | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.237 | 0.286 | -0.048 | 0.0000000 | 0.243 | 0.282 | -0.039 | 1.01e-09 |
BMI | LDpred1.Inf | LDpred1.MultiPRS | 0.272 | 0.286 | -0.013 | 0.0478204 | 0.264 | 0.282 | -0.018 | 8.04e-11 |
BMI | lassosum.10FCVal | LDpred1.MultiPRS | 0.300 | 0.286 | 0.015 | 0.0244796 | 0.300 | 0.282 | 0.018 | 1.45e-05 |
BMI | LDpred1.10FCVal | LDpred1.MultiPRS | 0.277 | 0.286 | -0.009 | 0.1713654 | 0.273 | 0.282 | -0.010 | 4.92e-05 |
BMI | lassosum.MultiPRS | LDpred1.MultiPRS | 0.305 | 0.286 | 0.019 | 0.0034867 | 0.308 | 0.282 | 0.026 | 6.42e-10 |
BMI | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.286 | 0.286 | 0.000 | 1.0000000 | 0.282 | 0.282 | 0.000 | 1.00e+00 |
BMI | All.MultiPRS | LDpred1.MultiPRS | 0.311 | 0.286 | 0.025 | 0.0001500 | 0.312 | 0.282 | 0.030 | 5.10e-14 |
BMI | LDpred2.Inf | LDpred1.MultiPRS | 0.293 | 0.286 | 0.007 | 0.2944474 | 0.287 | 0.282 | 0.005 | 2.53e-01 |
BMI | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.302 | 0.286 | 0.017 | 0.0000000 | 0.301 | 0.282 | 0.019 | 1.02e-05 |
BMI | pT+clump.10FCVal | LDpred1.MultiPRS | 0.248 | 0.286 | -0.038 | 0.0000000 | 0.245 | 0.282 | -0.037 | 9.20e-08 |
BMI | lassosum.PseudoVal | LDpred1.MultiPRS | 0.253 | 0.286 | -0.033 | 0.0000011 | 0.261 | 0.282 | -0.021 | 6.11e-04 |
BMI | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.241 | 0.286 | -0.044 | 0.0000000 | 0.250 | 0.282 | -0.032 | 8.25e-08 |
BMI | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.283 | 0.286 | -0.003 | 0.6591662 | 0.283 | 0.282 | 0.001 | 8.64e-01 |
BMI | SBLUP.Inf | LDpred1.MultiPRS | 0.292 | 0.286 | 0.007 | 0.3092679 | 0.287 | 0.282 | 0.004 | 3.15e-01 |
BMI | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.305 | 0.286 | 0.020 | 0.0028760 | 0.303 | 0.282 | 0.021 | 1.26e-08 |
BMI | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.297 | 0.286 | 0.011 | 0.0981852 | 0.296 | 0.282 | 0.014 | 1.46e-03 |
BMI | LDpred2.10FCVal | LDpred1.MultiPRS | 0.305 | 0.286 | 0.019 | 0.0038939 | 0.302 | 0.282 | 0.020 | 4.91e-08 |
BMI | LDpred1.10FCVal | LDpred1.Inf | 0.277 | 0.272 | 0.004 | 0.0336702 | 0.273 | 0.264 | 0.009 | 2.44e-02 |
BMI | LDpred2.PseudoVal | LDpred1.Inf | 0.237 | 0.272 | -0.035 | 0.0000000 | 0.243 | 0.264 | -0.021 | 1.22e-02 |
BMI | LDpred1.MultiPRS | LDpred1.Inf | 0.286 | 0.272 | 0.013 | 0.0478204 | 0.282 | 0.264 | 0.018 | 8.04e-11 |
BMI | pT+clump.MultiPRS | LDpred1.Inf | 0.271 | 0.272 | -0.002 | 0.7753798 | 0.275 | 0.264 | 0.011 | 7.03e-02 |
BMI | MegaPRS.10FCVal | LDpred1.Inf | 0.297 | 0.272 | 0.024 | 0.0000000 | 0.296 | 0.264 | 0.032 | 4.07e-13 |
BMI | MegaPRS.MultiPRS | LDpred1.Inf | 0.302 | 0.272 | 0.030 | 0.0000059 | 0.301 | 0.264 | 0.037 | 3.83e-14 |
BMI | pT+clump.10FCVal | LDpred1.Inf | 0.248 | 0.272 | -0.024 | 0.0000000 | 0.245 | 0.264 | -0.019 | 8.04e-03 |
BMI | lassosum.PseudoVal | LDpred1.Inf | 0.253 | 0.272 | -0.019 | 0.0000004 | 0.261 | 0.264 | -0.002 | 7.51e-01 |
BMI | LDpred2.Inf | LDpred1.Inf | 0.293 | 0.272 | 0.020 | 0.0000000 | 0.287 | 0.264 | 0.023 | 1.46e-09 |
BMI | DBSLMM.PseudoVal | LDpred1.Inf | 0.283 | 0.272 | 0.010 | 0.0001969 | 0.283 | 0.264 | 0.019 | 7.19e-04 |
BMI | SBLUP.Inf | LDpred1.Inf | 0.292 | 0.272 | 0.020 | 0.0000000 | 0.287 | 0.264 | 0.023 | 2.97e-09 |
BMI | LDpred2.MultiPRS | LDpred1.Inf | 0.305 | 0.272 | 0.033 | 0.0000007 | 0.303 | 0.264 | 0.039 | 3.08e-18 |
BMI | lassosum.10FCVal | LDpred1.Inf | 0.300 | 0.272 | 0.028 | 0.0000000 | 0.300 | 0.264 | 0.036 | 1.72e-17 |
BMI | LDpred1.Inf | LDpred1.Inf | 0.272 | 0.272 | 0.000 | 1.0000000 | 0.264 | 0.264 | 0.000 | 1.00e+00 |
BMI | lassosum.MultiPRS | LDpred1.Inf | 0.305 | 0.272 | 0.032 | 0.0000010 | 0.308 | 0.264 | 0.044 | 4.32e-19 |
BMI | MegaPRS.PseudoVal | LDpred1.Inf | 0.279 | 0.272 | 0.006 | 0.0309063 | 0.280 | 0.264 | 0.017 | 5.83e-03 |
BMI | All.MultiPRS | LDpred1.Inf | 0.311 | 0.272 | 0.038 | 0.0000000 | 0.312 | 0.264 | 0.048 | 1.43e-23 |
BMI | SBayesR.PseudoVal | LDpred1.Inf | 0.241 | 0.272 | -0.031 | 0.0000000 | 0.250 | 0.264 | -0.014 | 7.83e-02 |
BMI | LDpred2.10FCVal | LDpred1.Inf | 0.305 | 0.272 | 0.032 | 0.0000000 | 0.302 | 0.264 | 0.038 | 5.11e-19 |
BMI | All.MultiPRS | LDpred1.10FCVal | 0.311 | 0.277 | 0.034 | 0.0000002 | 0.312 | 0.273 | 0.040 | 6.57e-18 |
BMI | pT+clump.MultiPRS | LDpred1.10FCVal | 0.271 | 0.277 | -0.006 | 0.3707406 | 0.275 | 0.273 | 0.003 | 6.63e-01 |
BMI | LDpred1.10FCVal | LDpred1.10FCVal | 0.277 | 0.277 | 0.000 | 1.0000000 | 0.273 | 0.273 | 0.000 | 1.00e+00 |
BMI | SBayesR.PseudoVal | LDpred1.10FCVal | 0.241 | 0.277 | -0.035 | 0.0000000 | 0.250 | 0.273 | -0.023 | 7.29e-05 |
BMI | LDpred1.MultiPRS | LDpred1.10FCVal | 0.286 | 0.277 | 0.009 | 0.1713654 | 0.282 | 0.273 | 0.010 | 4.92e-05 |
BMI | SBLUP.Inf | LDpred1.10FCVal | 0.292 | 0.277 | 0.016 | 0.0000000 | 0.287 | 0.273 | 0.014 | 9.42e-03 |
BMI | MegaPRS.10FCVal | LDpred1.10FCVal | 0.297 | 0.277 | 0.020 | 0.0000000 | 0.296 | 0.273 | 0.024 | 1.20e-06 |
BMI | LDpred2.PseudoVal | LDpred1.10FCVal | 0.237 | 0.277 | -0.039 | 0.0000000 | 0.243 | 0.273 | -0.030 | 2.53e-07 |
BMI | LDpred2.MultiPRS | LDpred1.10FCVal | 0.305 | 0.277 | 0.029 | 0.0000132 | 0.303 | 0.273 | 0.031 | 4.66e-13 |
BMI | LDpred2.Inf | LDpred1.10FCVal | 0.293 | 0.277 | 0.016 | 0.0000000 | 0.287 | 0.273 | 0.015 | 6.63e-03 |
BMI | LDpred1.Inf | LDpred1.10FCVal | 0.272 | 0.277 | -0.004 | 0.0336702 | 0.264 | 0.273 | -0.009 | 2.44e-02 |
BMI | pT+clump.10FCVal | LDpred1.10FCVal | 0.248 | 0.277 | -0.028 | 0.0000000 | 0.245 | 0.273 | -0.028 | 2.23e-04 |
BMI | LDpred2.10FCVal | LDpred1.10FCVal | 0.305 | 0.277 | 0.028 | 0.0000000 | 0.302 | 0.273 | 0.029 | 6.42e-13 |
BMI | lassosum.PseudoVal | LDpred1.10FCVal | 0.253 | 0.277 | -0.023 | 0.0000000 | 0.261 | 0.273 | -0.011 | 3.34e-02 |
BMI | lassosum.10FCVal | LDpred1.10FCVal | 0.300 | 0.277 | 0.024 | 0.0000000 | 0.300 | 0.273 | 0.027 | 8.08e-09 |
BMI | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.302 | 0.277 | 0.026 | 0.0000879 | 0.301 | 0.273 | 0.029 | 2.34e-09 |
BMI | lassosum.MultiPRS | LDpred1.10FCVal | 0.305 | 0.277 | 0.028 | 0.0000179 | 0.308 | 0.273 | 0.035 | 7.43e-14 |
BMI | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.279 | 0.277 | 0.002 | 0.2371869 | 0.280 | 0.273 | 0.008 | 4.89e-02 |
BMI | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.283 | 0.277 | 0.006 | 0.0036431 | 0.283 | 0.273 | 0.010 | 1.70e-02 |
BMI | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.241 | 0.305 | -0.064 | 0.0000000 | 0.250 | 0.303 | -0.053 | 6.15e-17 |
BMI | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.303 | 0.303 | 0.000 | 1.00e+00 |
BMI | pT+clump.10FCVal | LDpred2.MultiPRS | 0.248 | 0.305 | -0.057 | 0.0000000 | 0.245 | 0.303 | -0.058 | 1.19e-21 |
BMI | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.237 | 0.305 | -0.068 | 0.0000000 | 0.243 | 0.303 | -0.060 | 1.37e-20 |
BMI | LDpred2.Inf | LDpred2.MultiPRS | 0.293 | 0.305 | -0.013 | 0.0532383 | 0.287 | 0.303 | -0.016 | 1.80e-08 |
BMI | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.271 | 0.305 | -0.035 | 0.0000001 | 0.275 | 0.303 | -0.028 | 6.58e-09 |
BMI | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.297 | 0.305 | -0.009 | 0.1851316 | 0.296 | 0.303 | -0.007 | 5.30e-02 |
BMI | lassosum.MultiPRS | LDpred2.MultiPRS | 0.305 | 0.305 | 0.000 | 0.9548313 | 0.308 | 0.303 | 0.004 | 7.62e-02 |
BMI | LDpred1.Inf | LDpred2.MultiPRS | 0.272 | 0.305 | -0.033 | 0.0000007 | 0.264 | 0.303 | -0.039 | 3.08e-18 |
BMI | lassosum.10FCVal | LDpred2.MultiPRS | 0.300 | 0.305 | -0.005 | 0.4670619 | 0.300 | 0.303 | -0.003 | 2.52e-01 |
BMI | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.279 | 0.305 | -0.026 | 0.0000598 | 0.280 | 0.303 | -0.023 | 6.59e-07 |
BMI | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.302 | 0.305 | -0.003 | 0.6660017 | 0.301 | 0.303 | -0.002 | 5.29e-01 |
BMI | LDpred2.10FCVal | LDpred2.MultiPRS | 0.305 | 0.305 | -0.001 | 0.9282163 | 0.302 | 0.303 | -0.001 | 2.68e-01 |
BMI | All.MultiPRS | LDpred2.MultiPRS | 0.311 | 0.305 | 0.005 | 0.0000000 | 0.312 | 0.303 | 0.009 | 1.63e-06 |
BMI | LDpred1.10FCVal | LDpred2.MultiPRS | 0.277 | 0.305 | -0.029 | 0.0000132 | 0.273 | 0.303 | -0.031 | 4.66e-13 |
BMI | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.283 | 0.305 | -0.023 | 0.0006127 | 0.283 | 0.303 | -0.020 | 5.43e-07 |
BMI | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.286 | 0.305 | -0.020 | 0.0028760 | 0.282 | 0.303 | -0.021 | 1.26e-08 |
BMI | lassosum.PseudoVal | LDpred2.MultiPRS | 0.253 | 0.305 | -0.052 | 0.0000000 | 0.261 | 0.303 | -0.042 | 4.05e-12 |
BMI | SBLUP.Inf | LDpred2.MultiPRS | 0.292 | 0.305 | -0.013 | 0.0494971 | 0.287 | 0.303 | -0.017 | 2.75e-08 |
BMI | MegaPRS.10FCVal | LDpred2.10FCVal | 0.297 | 0.305 | -0.008 | 0.0000019 | 0.296 | 0.302 | -0.006 | 8.76e-02 |
BMI | LDpred2.10FCVal | LDpred2.10FCVal | 0.305 | 0.305 | 0.000 | 1.0000000 | 0.302 | 0.302 | 0.000 | 1.00e+00 |
BMI | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.279 | 0.305 | -0.026 | 0.0000000 | 0.280 | 0.302 | -0.022 | 1.91e-06 |
BMI | All.MultiPRS | LDpred2.10FCVal | 0.311 | 0.305 | 0.006 | 0.3663342 | 0.312 | 0.302 | 0.010 | 2.65e-06 |
BMI | SBayesR.PseudoVal | LDpred2.10FCVal | 0.241 | 0.305 | -0.063 | 0.0000000 | 0.250 | 0.302 | -0.052 | 4.22e-15 |
BMI | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.283 | 0.305 | -0.022 | 0.0000000 | 0.283 | 0.302 | -0.019 | 1.21e-06 |
BMI | pT+clump.MultiPRS | LDpred2.10FCVal | 0.271 | 0.305 | -0.034 | 0.0000003 | 0.275 | 0.302 | -0.027 | 3.13e-08 |
BMI | lassosum.MultiPRS | LDpred2.10FCVal | 0.305 | 0.305 | 0.000 | 0.9735118 | 0.308 | 0.302 | 0.006 | 2.64e-02 |
BMI | LDpred2.PseudoVal | LDpred2.10FCVal | 0.237 | 0.305 | -0.067 | 0.0000000 | 0.243 | 0.302 | -0.059 | 2.06e-18 |
BMI | lassosum.10FCVal | LDpred2.10FCVal | 0.300 | 0.305 | -0.004 | 0.0010907 | 0.300 | 0.302 | -0.002 | 4.29e-01 |
BMI | SBLUP.Inf | LDpred2.10FCVal | 0.292 | 0.305 | -0.012 | 0.0000000 | 0.287 | 0.302 | -0.016 | 8.32e-09 |
BMI | LDpred1.10FCVal | LDpred2.10FCVal | 0.277 | 0.305 | -0.028 | 0.0000000 | 0.273 | 0.302 | -0.029 | 6.42e-13 |
BMI | pT+clump.10FCVal | LDpred2.10FCVal | 0.248 | 0.305 | -0.057 | 0.0000000 | 0.245 | 0.302 | -0.057 | 5.09e-21 |
BMI | LDpred1.MultiPRS | LDpred2.10FCVal | 0.286 | 0.305 | -0.019 | 0.0038939 | 0.282 | 0.302 | -0.020 | 4.91e-08 |
BMI | LDpred2.Inf | LDpred2.10FCVal | 0.293 | 0.305 | -0.012 | 0.0000000 | 0.287 | 0.302 | -0.015 | 3.20e-09 |
BMI | LDpred1.Inf | LDpred2.10FCVal | 0.272 | 0.305 | -0.032 | 0.0000000 | 0.264 | 0.302 | -0.038 | 5.11e-19 |
BMI | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.302 | 0.305 | -0.002 | 0.7320099 | 0.301 | 0.302 | -0.001 | 7.94e-01 |
BMI | LDpred2.MultiPRS | LDpred2.10FCVal | 0.305 | 0.305 | 0.001 | 0.9282163 | 0.303 | 0.302 | 0.001 | 2.68e-01 |
BMI | lassosum.PseudoVal | LDpred2.10FCVal | 0.253 | 0.305 | -0.052 | 0.0000000 | 0.261 | 0.302 | -0.041 | 6.94e-11 |
BMI | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.271 | 0.237 | 0.033 | 0.0000009 | 0.275 | 0.243 | 0.032 | 9.74e-06 |
BMI | lassosum.MultiPRS | LDpred2.PseudoVal | 0.305 | 0.237 | 0.067 | 0.0000000 | 0.308 | 0.243 | 0.065 | 3.22e-21 |
BMI | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.241 | 0.237 | 0.004 | 0.0066772 | 0.250 | 0.243 | 0.007 | 2.04e-02 |
BMI | All.MultiPRS | LDpred2.PseudoVal | 0.311 | 0.237 | 0.073 | 0.0000000 | 0.312 | 0.243 | 0.069 | 3.01e-25 |
BMI | SBLUP.Inf | LDpred2.PseudoVal | 0.292 | 0.237 | 0.055 | 0.0000000 | 0.287 | 0.243 | 0.044 | 3.08e-07 |
BMI | LDpred1.10FCVal | LDpred2.PseudoVal | 0.277 | 0.237 | 0.039 | 0.0000000 | 0.273 | 0.243 | 0.030 | 2.53e-07 |
BMI | LDpred2.10FCVal | LDpred2.PseudoVal | 0.305 | 0.237 | 0.067 | 0.0000000 | 0.302 | 0.243 | 0.059 | 2.06e-18 |
BMI | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.286 | 0.237 | 0.048 | 0.0000000 | 0.282 | 0.243 | 0.039 | 1.01e-09 |
BMI | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.237 | 0.237 | 0.000 | 1.0000000 | 0.243 | 0.243 | 0.000 | 1.00e+00 |
BMI | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.297 | 0.237 | 0.059 | 0.0000000 | 0.296 | 0.243 | 0.053 | 4.52e-12 |
BMI | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.302 | 0.237 | 0.065 | 0.0000000 | 0.301 | 0.243 | 0.058 | 8.73e-17 |
BMI | pT+clump.10FCVal | LDpred2.PseudoVal | 0.248 | 0.237 | 0.011 | 0.0204169 | 0.245 | 0.243 | 0.002 | 8.32e-01 |
BMI | lassosum.PseudoVal | LDpred2.PseudoVal | 0.253 | 0.237 | 0.016 | 0.0000000 | 0.261 | 0.243 | 0.018 | 7.20e-06 |
BMI | LDpred2.Inf | LDpred2.PseudoVal | 0.293 | 0.237 | 0.055 | 0.0000000 | 0.287 | 0.243 | 0.044 | 1.90e-07 |
BMI | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.283 | 0.237 | 0.045 | 0.0000000 | 0.283 | 0.243 | 0.040 | 5.39e-12 |
BMI | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.279 | 0.237 | 0.041 | 0.0000000 | 0.280 | 0.243 | 0.037 | 1.90e-13 |
BMI | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.305 | 0.237 | 0.068 | 0.0000000 | 0.303 | 0.243 | 0.060 | 1.37e-20 |
BMI | lassosum.10FCVal | LDpred2.PseudoVal | 0.300 | 0.237 | 0.063 | 0.0000000 | 0.300 | 0.243 | 0.057 | 8.68e-14 |
BMI | LDpred1.Inf | LDpred2.PseudoVal | 0.272 | 0.237 | 0.035 | 0.0000000 | 0.264 | 0.243 | 0.021 | 1.22e-02 |
BMI | All.MultiPRS | LDpred2.Inf | 0.311 | 0.293 | 0.018 | 0.0060241 | 0.312 | 0.287 | 0.025 | 8.37e-14 |
BMI | LDpred1.10FCVal | LDpred2.Inf | 0.277 | 0.293 | -0.016 | 0.0000000 | 0.273 | 0.287 | -0.015 | 6.63e-03 |
BMI | SBayesR.PseudoVal | LDpred2.Inf | 0.241 | 0.293 | -0.051 | 0.0000000 | 0.250 | 0.287 | -0.037 | 5.73e-06 |
BMI | LDpred1.MultiPRS | LDpred2.Inf | 0.286 | 0.293 | -0.007 | 0.2944474 | 0.282 | 0.287 | -0.005 | 2.53e-01 |
BMI | LDpred2.Inf | LDpred2.Inf | 0.293 | 0.293 | 0.000 | 1.0000000 | 0.287 | 0.287 | 0.000 | 1.00e+00 |
BMI | MegaPRS.10FCVal | LDpred2.Inf | 0.297 | 0.293 | 0.004 | 0.0189790 | 0.296 | 0.287 | 0.009 | 8.54e-03 |
BMI | pT+clump.10FCVal | LDpred2.Inf | 0.248 | 0.293 | -0.045 | 0.0000000 | 0.245 | 0.287 | -0.042 | 1.29e-11 |
BMI | LDpred2.10FCVal | LDpred2.Inf | 0.305 | 0.293 | 0.012 | 0.0000000 | 0.302 | 0.287 | 0.015 | 3.20e-09 |
BMI | lassosum.PseudoVal | LDpred2.Inf | 0.253 | 0.293 | -0.040 | 0.0000000 | 0.261 | 0.287 | -0.026 | 1.23e-03 |
BMI | pT+clump.MultiPRS | LDpred2.Inf | 0.271 | 0.293 | -0.022 | 0.0009025 | 0.275 | 0.287 | -0.012 | 3.12e-02 |
BMI | MegaPRS.MultiPRS | LDpred2.Inf | 0.302 | 0.293 | 0.010 | 0.1340807 | 0.301 | 0.287 | 0.014 | 1.34e-04 |
BMI | LDpred2.PseudoVal | LDpred2.Inf | 0.237 | 0.293 | -0.055 | 0.0000000 | 0.243 | 0.287 | -0.044 | 1.90e-07 |
BMI | LDpred2.MultiPRS | LDpred2.Inf | 0.305 | 0.293 | 0.013 | 0.0532383 | 0.303 | 0.287 | 0.016 | 1.80e-08 |
BMI | SBLUP.Inf | LDpred2.Inf | 0.292 | 0.293 | 0.000 | 0.6162266 | 0.287 | 0.287 | -0.001 | 4.62e-01 |
BMI | DBSLMM.PseudoVal | LDpred2.Inf | 0.283 | 0.293 | -0.010 | 0.0000813 | 0.283 | 0.287 | -0.004 | 4.05e-01 |
BMI | lassosum.MultiPRS | LDpred2.Inf | 0.305 | 0.293 | 0.012 | 0.0614332 | 0.308 | 0.287 | 0.021 | 5.70e-09 |
BMI | MegaPRS.PseudoVal | LDpred2.Inf | 0.279 | 0.293 | -0.014 | 0.0000030 | 0.280 | 0.287 | -0.007 | 2.53e-01 |
BMI | lassosum.10FCVal | LDpred2.Inf | 0.300 | 0.293 | 0.008 | 0.0000000 | 0.300 | 0.287 | 0.013 | 1.83e-06 |
BMI | LDpred1.Inf | LDpred2.Inf | 0.272 | 0.293 | -0.020 | 0.0000000 | 0.264 | 0.287 | -0.023 | 1.46e-09 |
BMI | All.MultiPRS | pT+clump.MultiPRS | 0.311 | 0.271 | 0.040 | 0.0000000 | 0.312 | 0.275 | 0.037 | 3.16e-14 |
BMI | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.241 | 0.271 | -0.029 | 0.0000161 | 0.250 | 0.275 | -0.025 | 4.01e-04 |
BMI | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.302 | 0.271 | 0.032 | 0.0000015 | 0.301 | 0.275 | 0.026 | 1.55e-05 |
BMI | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.271 | 0.271 | 0.000 | 1.0000000 | 0.275 | 0.275 | 0.000 | 1.00e+00 |
BMI | lassosum.PseudoVal | pT+clump.MultiPRS | 0.253 | 0.271 | -0.017 | 0.0093003 | 0.261 | 0.275 | -0.014 | 2.69e-02 |
BMI | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.237 | 0.271 | -0.033 | 0.0000009 | 0.243 | 0.275 | -0.032 | 9.74e-06 |
BMI | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.283 | 0.271 | 0.012 | 0.0684538 | 0.283 | 0.275 | 0.008 | 1.60e-01 |
BMI | SBLUP.Inf | pT+clump.MultiPRS | 0.292 | 0.271 | 0.022 | 0.0010108 | 0.287 | 0.275 | 0.011 | 3.64e-02 |
BMI | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.305 | 0.271 | 0.035 | 0.0000001 | 0.303 | 0.275 | 0.028 | 6.58e-09 |
BMI | pT+clump.10FCVal | pT+clump.MultiPRS | 0.248 | 0.271 | -0.023 | 0.0007861 | 0.245 | 0.275 | -0.030 | 2.91e-14 |
BMI | LDpred1.Inf | pT+clump.MultiPRS | 0.272 | 0.271 | 0.002 | 0.7753798 | 0.264 | 0.275 | -0.011 | 7.03e-02 |
BMI | LDpred2.Inf | pT+clump.MultiPRS | 0.293 | 0.271 | 0.022 | 0.0009025 | 0.287 | 0.275 | 0.012 | 3.12e-02 |
BMI | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.279 | 0.271 | 0.008 | 0.2169410 | 0.280 | 0.275 | 0.005 | 4.24e-01 |
BMI | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.297 | 0.271 | 0.026 | 0.0000872 | 0.296 | 0.275 | 0.021 | 9.76e-04 |
BMI | LDpred2.10FCVal | pT+clump.MultiPRS | 0.305 | 0.271 | 0.034 | 0.0000003 | 0.302 | 0.275 | 0.027 | 3.13e-08 |
BMI | lassosum.10FCVal | pT+clump.MultiPRS | 0.300 | 0.271 | 0.030 | 0.0000063 | 0.300 | 0.275 | 0.025 | 9.80e-07 |
BMI | LDpred1.10FCVal | pT+clump.MultiPRS | 0.277 | 0.271 | 0.006 | 0.3707406 | 0.273 | 0.275 | -0.003 | 6.63e-01 |
BMI | lassosum.MultiPRS | pT+clump.MultiPRS | 0.305 | 0.271 | 0.034 | 0.0000002 | 0.308 | 0.275 | 0.033 | 1.45e-12 |
BMI | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.286 | 0.271 | 0.015 | 0.0233505 | 0.282 | 0.275 | 0.007 | 2.09e-01 |
BMI | LDpred1.Inf | pT+clump.10FCVal | 0.272 | 0.248 | 0.024 | 0.0000000 | 0.264 | 0.245 | 0.019 | 8.04e-03 |
BMI | pT+clump.MultiPRS | pT+clump.10FCVal | 0.271 | 0.248 | 0.023 | 0.0007861 | 0.275 | 0.245 | 0.030 | 2.91e-14 |
BMI | LDpred2.MultiPRS | pT+clump.10FCVal | 0.305 | 0.248 | 0.057 | 0.0000000 | 0.303 | 0.245 | 0.058 | 1.19e-21 |
BMI | SBayesR.PseudoVal | pT+clump.10FCVal | 0.241 | 0.248 | -0.007 | 0.1405196 | 0.250 | 0.245 | 0.005 | 5.80e-01 |
BMI | LDpred2.10FCVal | pT+clump.10FCVal | 0.305 | 0.248 | 0.057 | 0.0000000 | 0.302 | 0.245 | 0.057 | 5.09e-21 |
BMI | SBLUP.Inf | pT+clump.10FCVal | 0.292 | 0.248 | 0.044 | 0.0000000 | 0.287 | 0.245 | 0.042 | 1.02e-11 |
BMI | lassosum.MultiPRS | pT+clump.10FCVal | 0.305 | 0.248 | 0.057 | 0.0000000 | 0.308 | 0.245 | 0.063 | 2.38e-27 |
BMI | LDpred2.PseudoVal | pT+clump.10FCVal | 0.237 | 0.248 | -0.011 | 0.0204169 | 0.243 | 0.245 | -0.002 | 8.32e-01 |
BMI | LDpred1.MultiPRS | pT+clump.10FCVal | 0.286 | 0.248 | 0.038 | 0.0000000 | 0.282 | 0.245 | 0.037 | 9.20e-08 |
BMI | lassosum.10FCVal | pT+clump.10FCVal | 0.300 | 0.248 | 0.052 | 0.0000000 | 0.300 | 0.245 | 0.055 | 2.11e-20 |
BMI | LDpred1.10FCVal | pT+clump.10FCVal | 0.277 | 0.248 | 0.028 | 0.0000000 | 0.273 | 0.245 | 0.028 | 2.23e-04 |
BMI | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.302 | 0.248 | 0.054 | 0.0000000 | 0.301 | 0.245 | 0.056 | 1.49e-15 |
BMI | pT+clump.10FCVal | pT+clump.10FCVal | 0.248 | 0.248 | 0.000 | 1.0000000 | 0.245 | 0.245 | 0.000 | 1.00e+00 |
BMI | All.MultiPRS | pT+clump.10FCVal | 0.311 | 0.248 | 0.063 | 0.0000000 | 0.312 | 0.245 | 0.067 | 2.03e-28 |
BMI | MegaPRS.10FCVal | pT+clump.10FCVal | 0.297 | 0.248 | 0.049 | 0.0000000 | 0.296 | 0.245 | 0.051 | 1.25e-12 |
BMI | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.283 | 0.248 | 0.035 | 0.0000000 | 0.283 | 0.245 | 0.038 | 2.53e-07 |
BMI | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.279 | 0.248 | 0.031 | 0.0000000 | 0.280 | 0.245 | 0.035 | 1.17e-05 |
BMI | lassosum.PseudoVal | pT+clump.10FCVal | 0.253 | 0.248 | 0.005 | 0.2192952 | 0.261 | 0.245 | 0.016 | 4.70e-02 |
BMI | LDpred2.Inf | pT+clump.10FCVal | 0.293 | 0.248 | 0.045 | 0.0000000 | 0.287 | 0.245 | 0.042 | 1.29e-11 |
BMI | LDpred1.Inf | SBayesR.PseudoVal | 0.272 | 0.241 | 0.031 | 0.0000000 | 0.264 | 0.250 | 0.014 | 7.83e-02 |
BMI | LDpred2.Inf | SBayesR.PseudoVal | 0.293 | 0.241 | 0.051 | 0.0000000 | 0.287 | 0.250 | 0.037 | 5.73e-06 |
BMI | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.279 | 0.241 | 0.037 | 0.0000000 | 0.280 | 0.250 | 0.030 | 2.06e-08 |
BMI | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.305 | 0.241 | 0.064 | 0.0000000 | 0.303 | 0.250 | 0.053 | 6.15e-17 |
BMI | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.241 | 0.241 | 0.000 | 1.0000000 | 0.250 | 0.250 | 0.000 | 1.00e+00 |
BMI | lassosum.10FCVal | SBayesR.PseudoVal | 0.300 | 0.241 | 0.059 | 0.0000000 | 0.300 | 0.250 | 0.050 | 1.81e-11 |
BMI | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.271 | 0.241 | 0.029 | 0.0000161 | 0.275 | 0.250 | 0.025 | 4.01e-04 |
BMI | lassosum.MultiPRS | SBayesR.PseudoVal | 0.305 | 0.241 | 0.063 | 0.0000000 | 0.308 | 0.250 | 0.058 | 3.34e-18 |
BMI | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.237 | 0.241 | -0.004 | 0.0066772 | 0.243 | 0.250 | -0.007 | 2.04e-02 |
BMI | LDpred2.10FCVal | SBayesR.PseudoVal | 0.305 | 0.241 | 0.063 | 0.0000000 | 0.302 | 0.250 | 0.052 | 4.22e-15 |
BMI | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.302 | 0.241 | 0.061 | 0.0000000 | 0.301 | 0.250 | 0.051 | 7.55e-14 |
BMI | LDpred1.10FCVal | SBayesR.PseudoVal | 0.277 | 0.241 | 0.035 | 0.0000000 | 0.273 | 0.250 | 0.023 | 7.29e-05 |
BMI | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.297 | 0.241 | 0.055 | 0.0000000 | 0.296 | 0.250 | 0.046 | 7.78e-10 |
BMI | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.286 | 0.241 | 0.044 | 0.0000000 | 0.282 | 0.250 | 0.032 | 8.25e-08 |
BMI | All.MultiPRS | SBayesR.PseudoVal | 0.311 | 0.241 | 0.069 | 0.0000000 | 0.312 | 0.250 | 0.062 | 5.92e-22 |
BMI | SBLUP.Inf | SBayesR.PseudoVal | 0.292 | 0.241 | 0.051 | 0.0000000 | 0.287 | 0.250 | 0.037 | 8.33e-06 |
BMI | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.283 | 0.241 | 0.041 | 0.0000000 | 0.283 | 0.250 | 0.033 | 6.28e-09 |
BMI | pT+clump.10FCVal | SBayesR.PseudoVal | 0.248 | 0.241 | 0.007 | 0.1405196 | 0.245 | 0.250 | -0.005 | 5.80e-01 |
BMI | lassosum.PseudoVal | SBayesR.PseudoVal | 0.253 | 0.241 | 0.012 | 0.0000009 | 0.261 | 0.250 | 0.011 | 1.65e-02 |
BMI | LDpred2.PseudoVal | SBLUP.Inf | 0.237 | 0.292 | -0.055 | 0.0000000 | 0.243 | 0.287 | -0.044 | 3.08e-07 |
BMI | MegaPRS.PseudoVal | SBLUP.Inf | 0.279 | 0.292 | -0.014 | 0.0000052 | 0.280 | 0.287 | -0.006 | 3.03e-01 |
BMI | lassosum.MultiPRS | SBLUP.Inf | 0.305 | 0.292 | 0.013 | 0.0572257 | 0.308 | 0.287 | 0.021 | 7.98e-10 |
BMI | LDpred1.MultiPRS | SBLUP.Inf | 0.286 | 0.292 | -0.007 | 0.3092679 | 0.282 | 0.287 | -0.004 | 3.15e-01 |
BMI | All.MultiPRS | SBLUP.Inf | 0.311 | 0.292 | 0.018 | 0.0054762 | 0.312 | 0.287 | 0.026 | 3.87e-14 |
BMI | LDpred2.Inf | SBLUP.Inf | 0.293 | 0.292 | 0.000 | 0.6162266 | 0.287 | 0.287 | 0.001 | 4.62e-01 |
BMI | MegaPRS.MultiPRS | SBLUP.Inf | 0.302 | 0.292 | 0.010 | 0.1261010 | 0.301 | 0.287 | 0.015 | 9.93e-05 |
BMI | pT+clump.MultiPRS | SBLUP.Inf | 0.271 | 0.292 | -0.022 | 0.0010108 | 0.275 | 0.287 | -0.011 | 3.64e-02 |
BMI | lassosum.PseudoVal | SBLUP.Inf | 0.253 | 0.292 | -0.039 | 0.0000000 | 0.261 | 0.287 | -0.025 | 1.55e-03 |
BMI | SBayesR.PseudoVal | SBLUP.Inf | 0.241 | 0.292 | -0.051 | 0.0000000 | 0.250 | 0.287 | -0.037 | 8.33e-06 |
BMI | DBSLMM.PseudoVal | SBLUP.Inf | 0.283 | 0.292 | -0.010 | 0.0001065 | 0.283 | 0.287 | -0.004 | 4.76e-01 |
BMI | SBLUP.Inf | SBLUP.Inf | 0.292 | 0.292 | 0.000 | 1.0000000 | 0.287 | 0.287 | 0.000 | 1.00e+00 |
BMI | LDpred2.MultiPRS | SBLUP.Inf | 0.305 | 0.292 | 0.013 | 0.0494971 | 0.303 | 0.287 | 0.017 | 2.75e-08 |
BMI | pT+clump.10FCVal | SBLUP.Inf | 0.248 | 0.292 | -0.044 | 0.0000000 | 0.245 | 0.287 | -0.042 | 1.02e-11 |
BMI | LDpred1.Inf | SBLUP.Inf | 0.272 | 0.292 | -0.020 | 0.0000000 | 0.264 | 0.287 | -0.023 | 2.97e-09 |
BMI | lassosum.10FCVal | SBLUP.Inf | 0.300 | 0.292 | 0.008 | 0.0000000 | 0.300 | 0.287 | 0.013 | 2.68e-07 |
BMI | LDpred1.10FCVal | SBLUP.Inf | 0.277 | 0.292 | -0.016 | 0.0000000 | 0.273 | 0.287 | -0.014 | 9.42e-03 |
BMI | MegaPRS.10FCVal | SBLUP.Inf | 0.297 | 0.292 | 0.004 | 0.0167280 | 0.296 | 0.287 | 0.010 | 6.44e-03 |
BMI | LDpred2.10FCVal | SBLUP.Inf | 0.305 | 0.292 | 0.012 | 0.0000000 | 0.302 | 0.287 | 0.016 | 8.32e-09 |
T2D | LDpred1.10FCVal | All.MultiPRS | 0.224 | 0.247 | -0.023 | 0.0005716 | 0.224 | 0.248 | -0.024 | 1.03e-09 |
T2D | pT+clump.10FCVal | All.MultiPRS | 0.170 | 0.247 | -0.077 | 0.0000000 | 0.174 | 0.248 | -0.073 | 2.05e-21 |
T2D | LDpred1.MultiPRS | All.MultiPRS | 0.230 | 0.247 | -0.017 | 0.0117978 | 0.234 | 0.248 | -0.014 | 4.97e-05 |
T2D | LDpred2.Inf | All.MultiPRS | 0.189 | 0.247 | -0.059 | 0.0000000 | 0.185 | 0.248 | -0.063 | 1.51e-22 |
T2D | MegaPRS.PseudoVal | All.MultiPRS | 0.241 | 0.247 | -0.007 | 0.3295049 | 0.243 | 0.248 | -0.004 | 2.30e-02 |
T2D | LDpred2.10FCVal | All.MultiPRS | 0.237 | 0.247 | -0.011 | 0.1096016 | 0.239 | 0.248 | -0.009 | 2.04e-03 |
T2D | LDpred2.MultiPRS | All.MultiPRS | 0.241 | 0.247 | -0.007 | 0.3322763 | 0.243 | 0.248 | -0.005 | 5.96e-02 |
T2D | lassosum.10FCVal | All.MultiPRS | 0.213 | 0.247 | -0.035 | 0.0000003 | 0.217 | 0.248 | -0.031 | 7.54e-11 |
T2D | LDpred1.Inf | All.MultiPRS | 0.185 | 0.247 | -0.062 | 0.0000000 | 0.181 | 0.248 | -0.067 | 7.55e-25 |
T2D | lassosum.MultiPRS | All.MultiPRS | 0.239 | 0.247 | -0.008 | 0.2148677 | 0.243 | 0.248 | -0.004 | 1.11e-01 |
T2D | MegaPRS.10FCVal | All.MultiPRS | 0.245 | 0.247 | -0.002 | 0.7468518 | 0.245 | 0.248 | -0.002 | 1.76e-02 |
T2D | All.MultiPRS | All.MultiPRS | 0.247 | 0.247 | 0.000 | 1.0000000 | 0.248 | 0.248 | 0.000 | 1.00e+00 |
T2D | SBayesR.PseudoVal | All.MultiPRS | 0.236 | 0.247 | -0.011 | 0.1064638 | 0.236 | 0.248 | -0.012 | 1.17e-04 |
T2D | MegaPRS.MultiPRS | All.MultiPRS | 0.246 | 0.247 | -0.002 | 0.8018498 | 0.246 | 0.248 | -0.002 | 2.14e-02 |
T2D | pT+clump.MultiPRS | All.MultiPRS | 0.217 | 0.247 | -0.030 | 0.0000087 | 0.221 | 0.248 | -0.027 | 8.74e-08 |
T2D | lassosum.PseudoVal | All.MultiPRS | 0.205 | 0.247 | -0.043 | 0.0000000 | 0.215 | 0.248 | -0.033 | 4.77e-09 |
T2D | LDpred2.PseudoVal | All.MultiPRS | 0.227 | 0.247 | -0.020 | 0.0026025 | 0.229 | 0.248 | -0.018 | 4.92e-06 |
T2D | DBSLMM.PseudoVal | All.MultiPRS | 0.230 | 0.247 | -0.017 | 0.0100585 | 0.232 | 0.248 | -0.016 | 1.63e-05 |
T2D | SBLUP.Inf | All.MultiPRS | 0.189 | 0.247 | -0.059 | 0.0000000 | 0.183 | 0.248 | -0.064 | 4.00e-23 |
T2D | LDpred1.Inf | DBSLMM.PseudoVal | 0.185 | 0.230 | -0.045 | 0.0000000 | 0.181 | 0.232 | -0.051 | 1.44e-18 |
T2D | LDpred2.Inf | DBSLMM.PseudoVal | 0.189 | 0.230 | -0.041 | 0.0000000 | 0.185 | 0.232 | -0.047 | 9.65e-17 |
T2D | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.241 | 0.230 | 0.011 | 0.1074679 | 0.243 | 0.232 | 0.011 | 2.33e-04 |
T2D | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.170 | 0.230 | -0.060 | 0.0000000 | 0.174 | 0.232 | -0.057 | 7.63e-12 |
T2D | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.236 | 0.230 | 0.007 | 0.0011045 | 0.236 | 0.232 | 0.004 | 3.01e-01 |
T2D | All.MultiPRS | DBSLMM.PseudoVal | 0.247 | 0.230 | 0.017 | 0.0100585 | 0.248 | 0.232 | 0.016 | 1.63e-05 |
T2D | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.245 | 0.230 | 0.015 | 0.0000000 | 0.245 | 0.232 | 0.014 | 1.05e-03 |
T2D | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.246 | 0.230 | 0.016 | 0.0204619 | 0.246 | 0.232 | 0.014 | 5.85e-04 |
T2D | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.227 | 0.230 | -0.003 | 0.2774453 | 0.229 | 0.232 | -0.002 | 6.56e-01 |
T2D | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.205 | 0.230 | -0.025 | 0.0000000 | 0.215 | 0.232 | -0.017 | 1.43e-02 |
T2D | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.217 | 0.230 | -0.013 | 0.0640191 | 0.221 | 0.232 | -0.011 | 2.98e-02 |
T2D | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.241 | 0.230 | 0.011 | 0.0000020 | 0.243 | 0.232 | 0.011 | 1.01e-02 |
T2D | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.239 | 0.230 | 0.009 | 0.1833008 | 0.243 | 0.232 | 0.012 | 3.99e-04 |
T2D | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.237 | 0.230 | 0.007 | 0.0003020 | 0.239 | 0.232 | 0.007 | 5.31e-02 |
T2D | lassosum.10FCVal | DBSLMM.PseudoVal | 0.213 | 0.230 | -0.017 | 0.0000000 | 0.217 | 0.232 | -0.015 | 8.97e-03 |
T2D | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.224 | 0.230 | -0.006 | 0.0024778 | 0.224 | 0.232 | -0.008 | 3.52e-02 |
T2D | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.230 | 0.230 | 0.000 | 1.0000000 | 0.232 | 0.232 | 0.000 | 1.00e+00 |
T2D | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.230 | 0.230 | 0.000 | 0.9568038 | 0.234 | 0.232 | 0.002 | 5.96e-01 |
T2D | SBLUP.Inf | DBSLMM.PseudoVal | 0.189 | 0.230 | -0.041 | 0.0000000 | 0.183 | 0.232 | -0.048 | 1.53e-17 |
T2D | SBayesR.PseudoVal | lassosum.MultiPRS | 0.236 | 0.239 | -0.003 | 0.7096447 | 0.236 | 0.243 | -0.008 | 8.48e-03 |
T2D | LDpred1.Inf | lassosum.MultiPRS | 0.185 | 0.239 | -0.054 | 0.0000000 | 0.181 | 0.243 | -0.062 | 9.28e-22 |
T2D | MegaPRS.10FCVal | lassosum.MultiPRS | 0.245 | 0.239 | 0.006 | 0.3620014 | 0.245 | 0.243 | 0.002 | 5.61e-01 |
T2D | LDpred2.MultiPRS | lassosum.MultiPRS | 0.241 | 0.239 | 0.002 | 0.7878820 | 0.243 | 0.243 | 0.000 | 8.38e-01 |
T2D | LDpred2.PseudoVal | lassosum.MultiPRS | 0.227 | 0.239 | -0.012 | 0.0791169 | 0.229 | 0.243 | -0.014 | 5.03e-04 |
T2D | LDpred2.10FCVal | lassosum.MultiPRS | 0.237 | 0.239 | -0.002 | 0.7208290 | 0.239 | 0.243 | -0.005 | 8.85e-02 |
T2D | pT+clump.MultiPRS | lassosum.MultiPRS | 0.217 | 0.239 | -0.022 | 0.0013977 | 0.221 | 0.243 | -0.022 | 7.21e-07 |
T2D | lassosum.MultiPRS | lassosum.MultiPRS | 0.239 | 0.239 | 0.000 | 1.0000000 | 0.243 | 0.243 | 0.000 | 1.00e+00 |
T2D | lassosum.PseudoVal | lassosum.MultiPRS | 0.205 | 0.239 | -0.034 | 0.0000005 | 0.215 | 0.243 | -0.029 | 4.08e-08 |
T2D | LDpred1.MultiPRS | lassosum.MultiPRS | 0.230 | 0.239 | -0.009 | 0.2031807 | 0.234 | 0.243 | -0.009 | 2.50e-03 |
T2D | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.246 | 0.239 | 0.007 | 0.0000371 | 0.246 | 0.243 | 0.002 | 4.40e-01 |
T2D | LDpred1.10FCVal | lassosum.MultiPRS | 0.224 | 0.239 | -0.015 | 0.0280061 | 0.224 | 0.243 | -0.020 | 2.11e-07 |
T2D | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.241 | 0.239 | 0.002 | 0.7933547 | 0.243 | 0.243 | 0.000 | 9.84e-01 |
T2D | pT+clump.10FCVal | lassosum.MultiPRS | 0.170 | 0.239 | -0.069 | 0.0000000 | 0.174 | 0.243 | -0.069 | 4.63e-20 |
T2D | lassosum.10FCVal | lassosum.MultiPRS | 0.213 | 0.239 | -0.026 | 0.0001184 | 0.217 | 0.243 | -0.027 | 3.08e-09 |
T2D | SBLUP.Inf | lassosum.MultiPRS | 0.189 | 0.239 | -0.051 | 0.0000000 | 0.183 | 0.243 | -0.060 | 1.96e-20 |
T2D | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.230 | 0.239 | -0.009 | 0.1833008 | 0.232 | 0.243 | -0.012 | 3.99e-04 |
T2D | All.MultiPRS | lassosum.MultiPRS | 0.247 | 0.239 | 0.008 | 0.2148677 | 0.248 | 0.243 | 0.004 | 1.11e-01 |
T2D | LDpred2.Inf | lassosum.MultiPRS | 0.189 | 0.239 | -0.050 | 0.0000000 | 0.185 | 0.243 | -0.059 | 1.37e-19 |
T2D | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.241 | 0.205 | 0.036 | 0.0000000 | 0.243 | 0.215 | 0.029 | 3.30e-08 |
T2D | LDpred2.PseudoVal | lassosum.PseudoVal | 0.227 | 0.205 | 0.022 | 0.0000000 | 0.229 | 0.215 | 0.015 | 3.81e-04 |
T2D | LDpred1.MultiPRS | lassosum.PseudoVal | 0.230 | 0.205 | 0.026 | 0.0001654 | 0.234 | 0.215 | 0.019 | 8.25e-04 |
T2D | lassosum.PseudoVal | lassosum.PseudoVal | 0.205 | 0.205 | 0.000 | 1.0000000 | 0.215 | 0.215 | 0.000 | 1.00e+00 |
T2D | LDpred2.Inf | lassosum.PseudoVal | 0.189 | 0.205 | -0.016 | 0.0018246 | 0.185 | 0.215 | -0.030 | 3.10e-03 |
T2D | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.230 | 0.205 | 0.025 | 0.0000000 | 0.232 | 0.215 | 0.017 | 1.43e-02 |
T2D | SBLUP.Inf | lassosum.PseudoVal | 0.189 | 0.205 | -0.016 | 0.0016967 | 0.183 | 0.215 | -0.031 | 2.06e-03 |
T2D | LDpred2.MultiPRS | lassosum.PseudoVal | 0.241 | 0.205 | 0.036 | 0.0000001 | 0.243 | 0.215 | 0.028 | 9.20e-08 |
T2D | pT+clump.10FCVal | lassosum.PseudoVal | 0.170 | 0.205 | -0.035 | 0.0000000 | 0.174 | 0.215 | -0.040 | 1.14e-10 |
T2D | LDpred1.Inf | lassosum.PseudoVal | 0.185 | 0.205 | -0.019 | 0.0001586 | 0.181 | 0.215 | -0.034 | 8.19e-04 |
T2D | lassosum.MultiPRS | lassosum.PseudoVal | 0.239 | 0.205 | 0.034 | 0.0000005 | 0.243 | 0.215 | 0.029 | 4.08e-08 |
T2D | MegaPRS.10FCVal | lassosum.PseudoVal | 0.245 | 0.205 | 0.041 | 0.0000000 | 0.245 | 0.215 | 0.031 | 4.73e-07 |
T2D | All.MultiPRS | lassosum.PseudoVal | 0.247 | 0.205 | 0.043 | 0.0000000 | 0.248 | 0.215 | 0.033 | 4.77e-09 |
T2D | SBayesR.PseudoVal | lassosum.PseudoVal | 0.236 | 0.205 | 0.032 | 0.0000000 | 0.236 | 0.215 | 0.021 | 3.50e-05 |
T2D | lassosum.10FCVal | lassosum.PseudoVal | 0.213 | 0.205 | 0.008 | 0.0060771 | 0.217 | 0.215 | 0.002 | 7.50e-01 |
T2D | pT+clump.MultiPRS | lassosum.PseudoVal | 0.217 | 0.205 | 0.013 | 0.0646772 | 0.221 | 0.215 | 0.006 | 2.77e-01 |
T2D | LDpred1.10FCVal | lassosum.PseudoVal | 0.224 | 0.205 | 0.019 | 0.0000001 | 0.224 | 0.215 | 0.009 | 2.11e-01 |
T2D | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.246 | 0.205 | 0.041 | 0.0000000 | 0.246 | 0.215 | 0.031 | 1.65e-07 |
T2D | LDpred2.10FCVal | lassosum.PseudoVal | 0.237 | 0.205 | 0.032 | 0.0000000 | 0.239 | 0.215 | 0.024 | 7.65e-06 |
T2D | lassosum.10FCVal | lassosum.10FCVal | 0.213 | 0.213 | 0.000 | 1.0000000 | 0.217 | 0.217 | 0.000 | 1.00e+00 |
T2D | pT+clump.MultiPRS | lassosum.10FCVal | 0.217 | 0.213 | 0.005 | 0.5004972 | 0.221 | 0.217 | 0.005 | 4.70e-01 |
T2D | LDpred2.MultiPRS | lassosum.10FCVal | 0.241 | 0.213 | 0.028 | 0.0000322 | 0.243 | 0.217 | 0.026 | 2.69e-09 |
T2D | SBayesR.PseudoVal | lassosum.10FCVal | 0.236 | 0.213 | 0.024 | 0.0000000 | 0.236 | 0.217 | 0.019 | 1.67e-05 |
T2D | LDpred2.10FCVal | lassosum.10FCVal | 0.237 | 0.213 | 0.024 | 0.0000000 | 0.239 | 0.217 | 0.022 | 1.74e-09 |
T2D | SBLUP.Inf | lassosum.10FCVal | 0.189 | 0.213 | -0.024 | 0.0000000 | 0.183 | 0.217 | -0.033 | 8.70e-07 |
T2D | lassosum.MultiPRS | lassosum.10FCVal | 0.239 | 0.213 | 0.026 | 0.0001184 | 0.243 | 0.217 | 0.027 | 3.08e-09 |
T2D | LDpred2.PseudoVal | lassosum.10FCVal | 0.227 | 0.213 | 0.014 | 0.0000000 | 0.229 | 0.217 | 0.013 | 3.29e-03 |
T2D | LDpred1.MultiPRS | lassosum.10FCVal | 0.230 | 0.213 | 0.018 | 0.0097947 | 0.234 | 0.217 | 0.017 | 2.43e-05 |
T2D | LDpred2.Inf | lassosum.10FCVal | 0.189 | 0.213 | -0.024 | 0.0000000 | 0.185 | 0.217 | -0.032 | 2.44e-06 |
T2D | LDpred1.10FCVal | lassosum.10FCVal | 0.224 | 0.213 | 0.011 | 0.0000007 | 0.224 | 0.217 | 0.007 | 1.14e-01 |
T2D | MegaPRS.MultiPRS | lassosum.10FCVal | 0.246 | 0.213 | 0.033 | 0.0000013 | 0.246 | 0.217 | 0.029 | 4.52e-09 |
T2D | pT+clump.10FCVal | lassosum.10FCVal | 0.170 | 0.213 | -0.043 | 0.0000000 | 0.174 | 0.217 | -0.042 | 1.01e-06 |
T2D | All.MultiPRS | lassosum.10FCVal | 0.247 | 0.213 | 0.035 | 0.0000003 | 0.248 | 0.217 | 0.031 | 7.54e-11 |
T2D | MegaPRS.PseudoVal | lassosum.10FCVal | 0.241 | 0.213 | 0.028 | 0.0000000 | 0.243 | 0.217 | 0.027 | 5.43e-07 |
T2D | DBSLMM.PseudoVal | lassosum.10FCVal | 0.230 | 0.213 | 0.017 | 0.0000000 | 0.232 | 0.217 | 0.015 | 8.97e-03 |
T2D | MegaPRS.10FCVal | lassosum.10FCVal | 0.245 | 0.213 | 0.032 | 0.0000000 | 0.245 | 0.217 | 0.029 | 1.67e-08 |
T2D | lassosum.PseudoVal | lassosum.10FCVal | 0.205 | 0.213 | -0.008 | 0.0060771 | 0.215 | 0.217 | -0.002 | 7.50e-01 |
T2D | LDpred1.Inf | lassosum.10FCVal | 0.185 | 0.213 | -0.027 | 0.0000000 | 0.181 | 0.217 | -0.036 | 1.48e-07 |
T2D | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.241 | 0.246 | -0.005 | 0.4704548 | 0.243 | 0.246 | -0.003 | 1.79e-01 |
T2D | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.230 | 0.246 | -0.016 | 0.0204619 | 0.232 | 0.246 | -0.014 | 5.85e-04 |
T2D | SBLUP.Inf | MegaPRS.MultiPRS | 0.189 | 0.246 | -0.057 | 0.0000000 | 0.183 | 0.246 | -0.062 | 8.73e-22 |
T2D | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.241 | 0.246 | -0.005 | 0.4767217 | 0.243 | 0.246 | -0.003 | 3.60e-01 |
T2D | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.170 | 0.246 | -0.076 | 0.0000000 | 0.174 | 0.246 | -0.071 | 2.95e-19 |
T2D | LDpred1.Inf | MegaPRS.MultiPRS | 0.185 | 0.246 | -0.060 | 0.0000000 | 0.181 | 0.246 | -0.065 | 2.23e-23 |
T2D | LDpred2.Inf | MegaPRS.MultiPRS | 0.189 | 0.246 | -0.057 | 0.0000000 | 0.185 | 0.246 | -0.061 | 3.15e-21 |
T2D | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.245 | 0.246 | 0.000 | 0.9424751 | 0.245 | 0.246 | -0.001 | 4.93e-01 |
T2D | All.MultiPRS | MegaPRS.MultiPRS | 0.247 | 0.246 | 0.002 | 0.8018498 | 0.248 | 0.246 | 0.002 | 2.14e-02 |
T2D | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.236 | 0.246 | -0.009 | 0.1747915 | 0.236 | 0.246 | -0.010 | 6.12e-03 |
T2D | lassosum.10FCVal | MegaPRS.MultiPRS | 0.213 | 0.246 | -0.033 | 0.0000013 | 0.217 | 0.246 | -0.029 | 4.52e-09 |
T2D | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.217 | 0.246 | -0.028 | 0.0000288 | 0.221 | 0.246 | -0.025 | 3.06e-06 |
T2D | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.239 | 0.246 | -0.007 | 0.0000371 | 0.243 | 0.246 | -0.002 | 4.40e-01 |
T2D | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.227 | 0.246 | -0.019 | 0.0061442 | 0.229 | 0.246 | -0.016 | 2.06e-04 |
T2D | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.237 | 0.246 | -0.009 | 0.1797214 | 0.239 | 0.246 | -0.007 | 3.67e-02 |
T2D | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.205 | 0.246 | -0.041 | 0.0000000 | 0.215 | 0.246 | -0.031 | 1.65e-07 |
T2D | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.224 | 0.246 | -0.022 | 0.0014450 | 0.224 | 0.246 | -0.022 | 1.15e-07 |
T2D | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.246 | 0.246 | 0.000 | 1.0000000 | 0.246 | 0.246 | 0.000 | 1.00e+00 |
T2D | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.230 | 0.246 | -0.015 | 0.0239046 | 0.234 | 0.246 | -0.012 | 1.64e-03 |
T2D | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.241 | 0.241 | 0.000 | 1.0000000 | 0.243 | 0.243 | 0.000 | 1.00e+00 |
T2D | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.237 | 0.241 | -0.004 | 0.0260495 | 0.239 | 0.243 | -0.005 | 2.29e-01 |
T2D | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.230 | 0.241 | -0.010 | 0.1236492 | 0.234 | 0.243 | -0.009 | 2.88e-02 |
T2D | LDpred2.Inf | MegaPRS.PseudoVal | 0.189 | 0.241 | -0.052 | 0.0000000 | 0.185 | 0.243 | -0.059 | 1.28e-14 |
T2D | LDpred1.Inf | MegaPRS.PseudoVal | 0.185 | 0.241 | -0.055 | 0.0000000 | 0.181 | 0.243 | -0.062 | 2.80e-16 |
T2D | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.239 | 0.241 | -0.002 | 0.7933547 | 0.243 | 0.243 | 0.000 | 9.84e-01 |
T2D | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.245 | 0.241 | 0.004 | 0.0000079 | 0.245 | 0.243 | 0.002 | 2.99e-01 |
T2D | All.MultiPRS | MegaPRS.PseudoVal | 0.247 | 0.241 | 0.007 | 0.3295049 | 0.248 | 0.243 | 0.004 | 2.30e-02 |
T2D | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.236 | 0.241 | -0.004 | 0.0162391 | 0.236 | 0.243 | -0.007 | 3.70e-02 |
T2D | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.230 | 0.241 | -0.011 | 0.0000020 | 0.232 | 0.243 | -0.011 | 1.01e-02 |
T2D | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.217 | 0.241 | -0.023 | 0.0005756 | 0.221 | 0.243 | -0.022 | 1.03e-05 |
T2D | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.205 | 0.241 | -0.036 | 0.0000000 | 0.215 | 0.243 | -0.029 | 3.30e-08 |
T2D | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.227 | 0.241 | -0.014 | 0.0000000 | 0.229 | 0.243 | -0.014 | 3.06e-04 |
T2D | lassosum.10FCVal | MegaPRS.PseudoVal | 0.213 | 0.241 | -0.028 | 0.0000000 | 0.217 | 0.243 | -0.027 | 5.43e-07 |
T2D | SBLUP.Inf | MegaPRS.PseudoVal | 0.189 | 0.241 | -0.052 | 0.0000000 | 0.183 | 0.243 | -0.060 | 4.52e-15 |
T2D | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.224 | 0.241 | -0.017 | 0.0000000 | 0.224 | 0.243 | -0.020 | 1.26e-04 |
T2D | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.170 | 0.241 | -0.071 | 0.0000000 | 0.174 | 0.243 | -0.069 | 6.04e-22 |
T2D | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.241 | 0.241 | 0.000 | 0.9937560 | 0.243 | 0.243 | 0.000 | 8.99e-01 |
T2D | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.246 | 0.241 | 0.005 | 0.4704548 | 0.246 | 0.243 | 0.003 | 1.79e-01 |
T2D | lassosum.10FCVal | MegaPRS.10FCVal | 0.213 | 0.245 | -0.032 | 0.0000000 | 0.217 | 0.245 | -0.029 | 1.67e-08 |
T2D | SBLUP.Inf | MegaPRS.10FCVal | 0.189 | 0.245 | -0.057 | 0.0000000 | 0.183 | 0.245 | -0.062 | 3.05e-21 |
T2D | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.236 | 0.245 | -0.009 | 0.0000049 | 0.236 | 0.245 | -0.009 | 1.25e-02 |
T2D | All.MultiPRS | MegaPRS.10FCVal | 0.247 | 0.245 | 0.002 | 0.7468518 | 0.248 | 0.245 | 0.002 | 1.76e-02 |
T2D | LDpred2.Inf | MegaPRS.10FCVal | 0.189 | 0.245 | -0.057 | 0.0000000 | 0.185 | 0.245 | -0.061 | 1.05e-20 |
T2D | lassosum.MultiPRS | MegaPRS.10FCVal | 0.239 | 0.245 | -0.006 | 0.3620014 | 0.243 | 0.245 | -0.002 | 5.61e-01 |
T2D | LDpred2.10FCVal | MegaPRS.10FCVal | 0.237 | 0.245 | -0.009 | 0.0000013 | 0.239 | 0.245 | -0.007 | 6.51e-02 |
T2D | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.230 | 0.245 | -0.015 | 0.0285510 | 0.234 | 0.245 | -0.011 | 4.06e-03 |
T2D | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.227 | 0.245 | -0.018 | 0.0000000 | 0.229 | 0.245 | -0.016 | 4.60e-04 |
T2D | LDpred1.10FCVal | MegaPRS.10FCVal | 0.224 | 0.245 | -0.021 | 0.0000000 | 0.224 | 0.245 | -0.022 | 5.41e-07 |
T2D | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.217 | 0.245 | -0.028 | 0.0000422 | 0.221 | 0.245 | -0.024 | 6.62e-06 |
T2D | pT+clump.10FCVal | MegaPRS.10FCVal | 0.170 | 0.245 | -0.075 | 0.0000000 | 0.174 | 0.245 | -0.071 | 1.53e-18 |
T2D | lassosum.PseudoVal | MegaPRS.10FCVal | 0.205 | 0.245 | -0.041 | 0.0000000 | 0.215 | 0.245 | -0.031 | 4.73e-07 |
T2D | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.241 | 0.245 | -0.004 | 0.0000079 | 0.243 | 0.245 | -0.002 | 2.99e-01 |
T2D | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.246 | 0.245 | 0.000 | 0.9424751 | 0.246 | 0.245 | 0.001 | 4.93e-01 |
T2D | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.245 | 0.245 | 0.000 | 1.0000000 | 0.245 | 0.245 | 0.000 | 1.00e+00 |
T2D | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.241 | 0.245 | -0.004 | 0.5172654 | 0.243 | 0.245 | -0.002 | 4.69e-01 |
T2D | LDpred1.Inf | MegaPRS.10FCVal | 0.185 | 0.245 | -0.060 | 0.0000000 | 0.181 | 0.245 | -0.064 | 1.01e-22 |
T2D | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.230 | 0.245 | -0.015 | 0.0000000 | 0.232 | 0.245 | -0.014 | 1.05e-03 |
T2D | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.217 | 0.230 | -0.013 | 0.0550364 | 0.221 | 0.234 | -0.013 | 1.21e-02 |
T2D | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.245 | 0.230 | 0.015 | 0.0285510 | 0.245 | 0.234 | 0.011 | 4.06e-03 |
T2D | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.227 | 0.230 | -0.003 | 0.6289921 | 0.229 | 0.234 | -0.004 | 2.73e-01 |
T2D | LDpred1.Inf | LDpred1.MultiPRS | 0.185 | 0.230 | -0.045 | 0.0000000 | 0.181 | 0.234 | -0.053 | 3.39e-20 |
T2D | lassosum.10FCVal | LDpred1.MultiPRS | 0.213 | 0.230 | -0.018 | 0.0097947 | 0.217 | 0.234 | -0.017 | 2.43e-05 |
T2D | LDpred1.10FCVal | LDpred1.MultiPRS | 0.224 | 0.230 | -0.006 | 0.3572395 | 0.224 | 0.234 | -0.010 | 1.12e-06 |
T2D | lassosum.MultiPRS | LDpred1.MultiPRS | 0.239 | 0.230 | 0.009 | 0.2031807 | 0.243 | 0.234 | 0.009 | 2.50e-03 |
T2D | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.230 | 0.230 | 0.000 | 1.0000000 | 0.234 | 0.234 | 0.000 | 1.00e+00 |
T2D | All.MultiPRS | LDpred1.MultiPRS | 0.247 | 0.230 | 0.017 | 0.0117978 | 0.248 | 0.234 | 0.014 | 4.97e-05 |
T2D | LDpred2.Inf | LDpred1.MultiPRS | 0.189 | 0.230 | -0.042 | 0.0000000 | 0.185 | 0.234 | -0.049 | 2.63e-16 |
T2D | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.246 | 0.230 | 0.015 | 0.0239046 | 0.246 | 0.234 | 0.012 | 1.64e-03 |
T2D | pT+clump.10FCVal | LDpred1.MultiPRS | 0.170 | 0.230 | -0.060 | 0.0000000 | 0.174 | 0.234 | -0.060 | 3.51e-13 |
T2D | lassosum.PseudoVal | LDpred1.MultiPRS | 0.205 | 0.230 | -0.026 | 0.0001654 | 0.215 | 0.234 | -0.019 | 8.25e-04 |
T2D | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.236 | 0.230 | 0.006 | 0.3666712 | 0.236 | 0.234 | 0.002 | 5.14e-01 |
T2D | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.230 | 0.230 | 0.000 | 0.9568038 | 0.232 | 0.234 | -0.002 | 5.96e-01 |
T2D | SBLUP.Inf | LDpred1.MultiPRS | 0.189 | 0.230 | -0.042 | 0.0000000 | 0.183 | 0.234 | -0.050 | 4.23e-17 |
T2D | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.241 | 0.230 | 0.010 | 0.1183623 | 0.243 | 0.234 | 0.009 | 7.05e-04 |
T2D | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.241 | 0.230 | 0.010 | 0.1236492 | 0.243 | 0.234 | 0.009 | 2.88e-02 |
T2D | LDpred2.10FCVal | LDpred1.MultiPRS | 0.237 | 0.230 | 0.006 | 0.3584380 | 0.239 | 0.234 | 0.005 | 1.90e-02 |
T2D | LDpred1.10FCVal | LDpred1.Inf | 0.224 | 0.185 | 0.039 | 0.0000000 | 0.224 | 0.181 | 0.043 | 5.83e-30 |
T2D | LDpred2.PseudoVal | LDpred1.Inf | 0.227 | 0.185 | 0.042 | 0.0000000 | 0.229 | 0.181 | 0.048 | 8.23e-10 |
T2D | LDpred1.MultiPRS | LDpred1.Inf | 0.230 | 0.185 | 0.045 | 0.0000000 | 0.234 | 0.181 | 0.053 | 3.39e-20 |
T2D | pT+clump.MultiPRS | LDpred1.Inf | 0.217 | 0.185 | 0.032 | 0.0000032 | 0.221 | 0.181 | 0.040 | 7.86e-07 |
T2D | MegaPRS.PseudoVal | LDpred1.Inf | 0.241 | 0.185 | 0.055 | 0.0000000 | 0.243 | 0.181 | 0.062 | 2.80e-16 |
T2D | MegaPRS.MultiPRS | LDpred1.Inf | 0.246 | 0.185 | 0.060 | 0.0000000 | 0.246 | 0.181 | 0.065 | 2.23e-23 |
T2D | pT+clump.10FCVal | LDpred1.Inf | 0.170 | 0.185 | -0.015 | 0.0069572 | 0.174 | 0.181 | -0.007 | 5.51e-01 |
T2D | lassosum.PseudoVal | LDpred1.Inf | 0.205 | 0.185 | 0.019 | 0.0001586 | 0.215 | 0.181 | 0.034 | 8.19e-04 |
T2D | LDpred2.Inf | LDpred1.Inf | 0.189 | 0.185 | 0.003 | 0.0030403 | 0.185 | 0.181 | 0.004 | 8.52e-02 |
T2D | DBSLMM.PseudoVal | LDpred1.Inf | 0.230 | 0.185 | 0.045 | 0.0000000 | 0.232 | 0.181 | 0.051 | 1.44e-18 |
T2D | SBLUP.Inf | LDpred1.Inf | 0.189 | 0.185 | 0.003 | 0.0026819 | 0.183 | 0.181 | 0.002 | 2.39e-01 |
T2D | LDpred2.MultiPRS | LDpred1.Inf | 0.241 | 0.185 | 0.055 | 0.0000000 | 0.243 | 0.181 | 0.062 | 1.89e-22 |
T2D | lassosum.10FCVal | LDpred1.Inf | 0.213 | 0.185 | 0.027 | 0.0000000 | 0.217 | 0.181 | 0.036 | 1.48e-07 |
T2D | LDpred1.Inf | LDpred1.Inf | 0.185 | 0.185 | 0.000 | 1.0000000 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
T2D | lassosum.MultiPRS | LDpred1.Inf | 0.239 | 0.185 | 0.054 | 0.0000000 | 0.243 | 0.181 | 0.062 | 9.28e-22 |
T2D | MegaPRS.10FCVal | LDpred1.Inf | 0.245 | 0.185 | 0.060 | 0.0000000 | 0.245 | 0.181 | 0.064 | 1.01e-22 |
T2D | All.MultiPRS | LDpred1.Inf | 0.247 | 0.185 | 0.062 | 0.0000000 | 0.248 | 0.181 | 0.067 | 7.55e-25 |
T2D | SBayesR.PseudoVal | LDpred1.Inf | 0.236 | 0.185 | 0.051 | 0.0000000 | 0.236 | 0.181 | 0.055 | 1.24e-16 |
T2D | LDpred2.10FCVal | LDpred1.Inf | 0.237 | 0.185 | 0.051 | 0.0000000 | 0.239 | 0.181 | 0.058 | 2.30e-22 |
T2D | All.MultiPRS | LDpred1.10FCVal | 0.247 | 0.224 | 0.023 | 0.0005716 | 0.248 | 0.224 | 0.024 | 1.03e-09 |
T2D | pT+clump.MultiPRS | LDpred1.10FCVal | 0.217 | 0.224 | -0.007 | 0.3218965 | 0.221 | 0.224 | -0.003 | 6.62e-01 |
T2D | LDpred1.10FCVal | LDpred1.10FCVal | 0.224 | 0.224 | 0.000 | 1.0000000 | 0.224 | 0.224 | 0.000 | 1.00e+00 |
T2D | SBayesR.PseudoVal | LDpred1.10FCVal | 0.236 | 0.224 | 0.012 | 0.0000000 | 0.236 | 0.224 | 0.012 | 1.39e-03 |
T2D | LDpred1.MultiPRS | LDpred1.10FCVal | 0.230 | 0.224 | 0.006 | 0.3572395 | 0.234 | 0.224 | 0.010 | 1.12e-06 |
T2D | SBLUP.Inf | LDpred1.10FCVal | 0.189 | 0.224 | -0.036 | 0.0000000 | 0.183 | 0.224 | -0.040 | 8.61e-22 |
T2D | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.241 | 0.224 | 0.017 | 0.0000000 | 0.243 | 0.224 | 0.020 | 1.26e-04 |
T2D | LDpred2.PseudoVal | LDpred1.10FCVal | 0.227 | 0.224 | 0.003 | 0.2531528 | 0.229 | 0.224 | 0.006 | 2.67e-01 |
T2D | LDpred2.MultiPRS | LDpred1.10FCVal | 0.241 | 0.224 | 0.017 | 0.0130087 | 0.243 | 0.224 | 0.019 | 2.14e-08 |
T2D | LDpred2.Inf | LDpred1.10FCVal | 0.189 | 0.224 | -0.035 | 0.0000000 | 0.185 | 0.224 | -0.039 | 2.16e-20 |
T2D | LDpred1.Inf | LDpred1.10FCVal | 0.185 | 0.224 | -0.039 | 0.0000000 | 0.181 | 0.224 | -0.043 | 5.83e-30 |
T2D | pT+clump.10FCVal | LDpred1.10FCVal | 0.170 | 0.224 | -0.054 | 0.0000000 | 0.174 | 0.224 | -0.049 | 7.56e-08 |
T2D | LDpred2.10FCVal | LDpred1.10FCVal | 0.237 | 0.224 | 0.013 | 0.0000000 | 0.239 | 0.224 | 0.015 | 1.01e-07 |
T2D | lassosum.PseudoVal | LDpred1.10FCVal | 0.205 | 0.224 | -0.019 | 0.0000001 | 0.215 | 0.224 | -0.009 | 2.11e-01 |
T2D | lassosum.10FCVal | LDpred1.10FCVal | 0.213 | 0.224 | -0.011 | 0.0000007 | 0.217 | 0.224 | -0.007 | 1.14e-01 |
T2D | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.246 | 0.224 | 0.022 | 0.0014450 | 0.246 | 0.224 | 0.022 | 1.15e-07 |
T2D | lassosum.MultiPRS | LDpred1.10FCVal | 0.239 | 0.224 | 0.015 | 0.0280061 | 0.243 | 0.224 | 0.020 | 2.11e-07 |
T2D | MegaPRS.10FCVal | LDpred1.10FCVal | 0.245 | 0.224 | 0.021 | 0.0000000 | 0.245 | 0.224 | 0.022 | 5.41e-07 |
T2D | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.230 | 0.224 | 0.006 | 0.0024778 | 0.232 | 0.224 | 0.008 | 3.52e-02 |
T2D | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.236 | 0.241 | -0.004 | 0.5170482 | 0.236 | 0.243 | -0.007 | 8.31e-04 |
T2D | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.241 | 0.241 | 0.000 | 1.0000000 | 0.243 | 0.243 | 0.000 | 1.00e+00 |
T2D | pT+clump.10FCVal | LDpred2.MultiPRS | 0.170 | 0.241 | -0.071 | 0.0000000 | 0.174 | 0.243 | -0.069 | 1.09e-20 |
T2D | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.227 | 0.241 | -0.014 | 0.0408326 | 0.229 | 0.243 | -0.013 | 1.49e-05 |
T2D | LDpred2.Inf | LDpred2.MultiPRS | 0.189 | 0.241 | -0.052 | 0.0000000 | 0.185 | 0.243 | -0.058 | 1.41e-20 |
T2D | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.217 | 0.241 | -0.024 | 0.0005526 | 0.221 | 0.243 | -0.022 | 8.74e-07 |
T2D | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.241 | 0.241 | 0.000 | 0.9937560 | 0.243 | 0.243 | 0.000 | 8.99e-01 |
T2D | lassosum.MultiPRS | LDpred2.MultiPRS | 0.239 | 0.241 | -0.002 | 0.7878820 | 0.243 | 0.243 | 0.000 | 8.38e-01 |
T2D | LDpred1.Inf | LDpred2.MultiPRS | 0.185 | 0.241 | -0.055 | 0.0000000 | 0.181 | 0.243 | -0.062 | 1.89e-22 |
T2D | lassosum.10FCVal | LDpred2.MultiPRS | 0.213 | 0.241 | -0.028 | 0.0000322 | 0.217 | 0.243 | -0.026 | 2.69e-09 |
T2D | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.245 | 0.241 | 0.004 | 0.5172654 | 0.245 | 0.243 | 0.002 | 4.69e-01 |
T2D | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.246 | 0.241 | 0.005 | 0.4767217 | 0.246 | 0.243 | 0.003 | 3.60e-01 |
T2D | LDpred2.10FCVal | LDpred2.MultiPRS | 0.237 | 0.241 | -0.004 | 0.5268515 | 0.239 | 0.243 | -0.004 | 1.19e-02 |
T2D | All.MultiPRS | LDpred2.MultiPRS | 0.247 | 0.241 | 0.007 | 0.3322763 | 0.248 | 0.243 | 0.005 | 5.96e-02 |
T2D | LDpred1.10FCVal | LDpred2.MultiPRS | 0.224 | 0.241 | -0.017 | 0.0130087 | 0.224 | 0.243 | -0.019 | 2.14e-08 |
T2D | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.230 | 0.241 | -0.011 | 0.1074679 | 0.232 | 0.243 | -0.011 | 2.33e-04 |
T2D | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.230 | 0.241 | -0.010 | 0.1183623 | 0.234 | 0.243 | -0.009 | 7.05e-04 |
T2D | lassosum.PseudoVal | LDpred2.MultiPRS | 0.205 | 0.241 | -0.036 | 0.0000001 | 0.215 | 0.243 | -0.028 | 9.20e-08 |
T2D | SBLUP.Inf | LDpred2.MultiPRS | 0.189 | 0.241 | -0.052 | 0.0000000 | 0.183 | 0.243 | -0.059 | 4.66e-21 |
T2D | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.241 | 0.237 | 0.004 | 0.0260495 | 0.243 | 0.239 | 0.005 | 2.29e-01 |
T2D | LDpred2.10FCVal | LDpred2.10FCVal | 0.237 | 0.237 | 0.000 | 1.0000000 | 0.239 | 0.239 | 0.000 | 1.00e+00 |
T2D | MegaPRS.10FCVal | LDpred2.10FCVal | 0.245 | 0.237 | 0.009 | 0.0000013 | 0.245 | 0.239 | 0.007 | 6.51e-02 |
T2D | All.MultiPRS | LDpred2.10FCVal | 0.247 | 0.237 | 0.011 | 0.1096016 | 0.248 | 0.239 | 0.009 | 2.04e-03 |
T2D | SBayesR.PseudoVal | LDpred2.10FCVal | 0.236 | 0.237 | 0.000 | 0.9304202 | 0.236 | 0.239 | -0.003 | 2.01e-01 |
T2D | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.230 | 0.237 | -0.007 | 0.0003020 | 0.232 | 0.239 | -0.007 | 5.31e-02 |
T2D | pT+clump.MultiPRS | LDpred2.10FCVal | 0.217 | 0.237 | -0.019 | 0.0046837 | 0.221 | 0.239 | -0.018 | 2.73e-04 |
T2D | lassosum.MultiPRS | LDpred2.10FCVal | 0.239 | 0.237 | 0.002 | 0.7208290 | 0.243 | 0.239 | 0.005 | 8.85e-02 |
T2D | LDpred2.PseudoVal | LDpred2.10FCVal | 0.227 | 0.237 | -0.010 | 0.0000000 | 0.229 | 0.239 | -0.009 | 2.01e-03 |
T2D | lassosum.10FCVal | LDpred2.10FCVal | 0.213 | 0.237 | -0.024 | 0.0000000 | 0.217 | 0.239 | -0.022 | 1.74e-09 |
T2D | SBLUP.Inf | LDpred2.10FCVal | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.183 | 0.239 | -0.055 | 5.49e-21 |
T2D | LDpred1.10FCVal | LDpred2.10FCVal | 0.224 | 0.237 | -0.013 | 0.0000000 | 0.224 | 0.239 | -0.015 | 1.01e-07 |
T2D | pT+clump.10FCVal | LDpred2.10FCVal | 0.170 | 0.237 | -0.066 | 0.0000000 | 0.174 | 0.239 | -0.064 | 1.30e-16 |
T2D | LDpred1.MultiPRS | LDpred2.10FCVal | 0.230 | 0.237 | -0.006 | 0.3584380 | 0.234 | 0.239 | -0.005 | 1.90e-02 |
T2D | LDpred2.Inf | LDpred2.10FCVal | 0.189 | 0.237 | -0.048 | 0.0000000 | 0.185 | 0.239 | -0.054 | 2.15e-20 |
T2D | LDpred1.Inf | LDpred2.10FCVal | 0.185 | 0.237 | -0.051 | 0.0000000 | 0.181 | 0.239 | -0.058 | 2.30e-22 |
T2D | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.246 | 0.237 | 0.009 | 0.1797214 | 0.246 | 0.239 | 0.007 | 3.67e-02 |
T2D | LDpred2.MultiPRS | LDpred2.10FCVal | 0.241 | 0.237 | 0.004 | 0.5268515 | 0.243 | 0.239 | 0.004 | 1.19e-02 |
T2D | lassosum.PseudoVal | LDpred2.10FCVal | 0.205 | 0.237 | -0.032 | 0.0000000 | 0.215 | 0.239 | -0.024 | 7.65e-06 |
T2D | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.217 | 0.227 | -0.010 | 0.1541495 | 0.221 | 0.229 | -0.008 | 1.16e-01 |
T2D | lassosum.MultiPRS | LDpred2.PseudoVal | 0.239 | 0.227 | 0.012 | 0.0791169 | 0.243 | 0.229 | 0.014 | 5.03e-04 |
T2D | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.236 | 0.227 | 0.009 | 0.0000000 | 0.236 | 0.229 | 0.006 | 2.19e-02 |
T2D | All.MultiPRS | LDpred2.PseudoVal | 0.247 | 0.227 | 0.020 | 0.0026025 | 0.248 | 0.229 | 0.018 | 4.92e-06 |
T2D | SBLUP.Inf | LDpred2.PseudoVal | 0.189 | 0.227 | -0.039 | 0.0000000 | 0.183 | 0.229 | -0.046 | 5.36e-09 |
T2D | LDpred1.10FCVal | LDpred2.PseudoVal | 0.224 | 0.227 | -0.003 | 0.2531528 | 0.224 | 0.229 | -0.006 | 2.67e-01 |
T2D | LDpred2.10FCVal | LDpred2.PseudoVal | 0.237 | 0.227 | 0.010 | 0.0000000 | 0.239 | 0.229 | 0.009 | 2.01e-03 |
T2D | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.230 | 0.227 | 0.003 | 0.6289921 | 0.234 | 0.229 | 0.004 | 2.73e-01 |
T2D | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.227 | 0.227 | 0.000 | 1.0000000 | 0.229 | 0.229 | 0.000 | 1.00e+00 |
T2D | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.241 | 0.227 | 0.014 | 0.0000000 | 0.243 | 0.229 | 0.014 | 3.06e-04 |
T2D | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.246 | 0.227 | 0.019 | 0.0061442 | 0.246 | 0.229 | 0.016 | 2.06e-04 |
T2D | pT+clump.10FCVal | LDpred2.PseudoVal | 0.170 | 0.227 | -0.057 | 0.0000000 | 0.174 | 0.229 | -0.055 | 5.90e-17 |
T2D | lassosum.PseudoVal | LDpred2.PseudoVal | 0.205 | 0.227 | -0.022 | 0.0000000 | 0.215 | 0.229 | -0.015 | 3.81e-04 |
T2D | LDpred2.Inf | LDpred2.PseudoVal | 0.189 | 0.227 | -0.038 | 0.0000000 | 0.185 | 0.229 | -0.045 | 1.20e-08 |
T2D | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.230 | 0.227 | 0.003 | 0.2774453 | 0.232 | 0.229 | 0.002 | 6.56e-01 |
T2D | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.245 | 0.227 | 0.018 | 0.0000000 | 0.245 | 0.229 | 0.016 | 4.60e-04 |
T2D | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.241 | 0.227 | 0.014 | 0.0408326 | 0.243 | 0.229 | 0.013 | 1.49e-05 |
T2D | lassosum.10FCVal | LDpred2.PseudoVal | 0.213 | 0.227 | -0.014 | 0.0000000 | 0.217 | 0.229 | -0.013 | 3.29e-03 |
T2D | LDpred1.Inf | LDpred2.PseudoVal | 0.185 | 0.227 | -0.042 | 0.0000000 | 0.181 | 0.229 | -0.048 | 8.23e-10 |
T2D | All.MultiPRS | LDpred2.Inf | 0.247 | 0.189 | 0.059 | 0.0000000 | 0.248 | 0.185 | 0.063 | 1.51e-22 |
T2D | LDpred1.10FCVal | LDpred2.Inf | 0.224 | 0.189 | 0.035 | 0.0000000 | 0.224 | 0.185 | 0.039 | 2.16e-20 |
T2D | SBayesR.PseudoVal | LDpred2.Inf | 0.236 | 0.189 | 0.048 | 0.0000000 | 0.236 | 0.185 | 0.051 | 1.92e-14 |
T2D | LDpred1.MultiPRS | LDpred2.Inf | 0.230 | 0.189 | 0.042 | 0.0000000 | 0.234 | 0.185 | 0.049 | 2.63e-16 |
T2D | LDpred2.Inf | LDpred2.Inf | 0.189 | 0.189 | 0.000 | 1.0000000 | 0.185 | 0.185 | 0.000 | 1.00e+00 |
T2D | MegaPRS.PseudoVal | LDpred2.Inf | 0.241 | 0.189 | 0.052 | 0.0000000 | 0.243 | 0.185 | 0.059 | 1.28e-14 |
T2D | pT+clump.10FCVal | LDpred2.Inf | 0.170 | 0.189 | -0.019 | 0.0011983 | 0.174 | 0.185 | -0.010 | 3.63e-01 |
T2D | LDpred2.10FCVal | LDpred2.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.239 | 0.185 | 0.054 | 2.15e-20 |
T2D | lassosum.PseudoVal | LDpred2.Inf | 0.205 | 0.189 | 0.016 | 0.0018246 | 0.215 | 0.185 | 0.030 | 3.10e-03 |
T2D | pT+clump.MultiPRS | LDpred2.Inf | 0.217 | 0.189 | 0.029 | 0.0000279 | 0.221 | 0.185 | 0.037 | 7.10e-06 |
T2D | MegaPRS.MultiPRS | LDpred2.Inf | 0.246 | 0.189 | 0.057 | 0.0000000 | 0.246 | 0.185 | 0.061 | 3.15e-21 |
T2D | LDpred2.PseudoVal | LDpred2.Inf | 0.227 | 0.189 | 0.038 | 0.0000000 | 0.229 | 0.185 | 0.045 | 1.20e-08 |
T2D | LDpred2.MultiPRS | LDpred2.Inf | 0.241 | 0.189 | 0.052 | 0.0000000 | 0.243 | 0.185 | 0.058 | 1.41e-20 |
T2D | SBLUP.Inf | LDpred2.Inf | 0.189 | 0.189 | 0.000 | 0.7926018 | 0.183 | 0.185 | -0.001 | 1.28e-01 |
T2D | DBSLMM.PseudoVal | LDpred2.Inf | 0.230 | 0.189 | 0.041 | 0.0000000 | 0.232 | 0.185 | 0.047 | 9.65e-17 |
T2D | lassosum.MultiPRS | LDpred2.Inf | 0.239 | 0.189 | 0.050 | 0.0000000 | 0.243 | 0.185 | 0.059 | 1.37e-19 |
T2D | MegaPRS.10FCVal | LDpred2.Inf | 0.245 | 0.189 | 0.057 | 0.0000000 | 0.245 | 0.185 | 0.061 | 1.05e-20 |
T2D | lassosum.10FCVal | LDpred2.Inf | 0.213 | 0.189 | 0.024 | 0.0000000 | 0.217 | 0.185 | 0.032 | 2.44e-06 |
T2D | LDpred1.Inf | LDpred2.Inf | 0.185 | 0.189 | -0.003 | 0.0030403 | 0.181 | 0.185 | -0.004 | 8.52e-02 |
T2D | All.MultiPRS | pT+clump.MultiPRS | 0.247 | 0.217 | 0.030 | 0.0000087 | 0.248 | 0.221 | 0.027 | 8.74e-08 |
T2D | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.236 | 0.217 | 0.019 | 0.0049568 | 0.236 | 0.221 | 0.015 | 1.84e-03 |
T2D | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.246 | 0.217 | 0.028 | 0.0000288 | 0.246 | 0.221 | 0.025 | 3.06e-06 |
T2D | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.217 | 0.217 | 0.000 | 1.0000000 | 0.221 | 0.221 | 0.000 | 1.00e+00 |
T2D | lassosum.PseudoVal | pT+clump.MultiPRS | 0.205 | 0.217 | -0.013 | 0.0646772 | 0.215 | 0.221 | -0.006 | 2.77e-01 |
T2D | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.227 | 0.217 | 0.010 | 0.1541495 | 0.229 | 0.221 | 0.008 | 1.16e-01 |
T2D | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.230 | 0.217 | 0.013 | 0.0640191 | 0.232 | 0.221 | 0.011 | 2.98e-02 |
T2D | SBLUP.Inf | pT+clump.MultiPRS | 0.189 | 0.217 | -0.029 | 0.0000260 | 0.183 | 0.221 | -0.038 | 3.43e-06 |
T2D | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.241 | 0.217 | 0.024 | 0.0005526 | 0.243 | 0.221 | 0.022 | 8.74e-07 |
T2D | pT+clump.10FCVal | pT+clump.MultiPRS | 0.170 | 0.217 | -0.047 | 0.0000000 | 0.174 | 0.221 | -0.047 | 4.13e-13 |
T2D | LDpred1.Inf | pT+clump.MultiPRS | 0.185 | 0.217 | -0.032 | 0.0000032 | 0.181 | 0.221 | -0.040 | 7.86e-07 |
T2D | LDpred2.Inf | pT+clump.MultiPRS | 0.189 | 0.217 | -0.029 | 0.0000279 | 0.185 | 0.221 | -0.037 | 7.10e-06 |
T2D | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.245 | 0.217 | 0.028 | 0.0000422 | 0.245 | 0.221 | 0.024 | 6.62e-06 |
T2D | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.241 | 0.217 | 0.023 | 0.0005756 | 0.243 | 0.221 | 0.022 | 1.03e-05 |
T2D | LDpred2.10FCVal | pT+clump.MultiPRS | 0.237 | 0.217 | 0.019 | 0.0046837 | 0.239 | 0.221 | 0.018 | 2.73e-04 |
T2D | lassosum.10FCVal | pT+clump.MultiPRS | 0.213 | 0.217 | -0.005 | 0.5004972 | 0.217 | 0.221 | -0.005 | 4.70e-01 |
T2D | LDpred1.10FCVal | pT+clump.MultiPRS | 0.224 | 0.217 | 0.007 | 0.3218965 | 0.224 | 0.221 | 0.003 | 6.62e-01 |
T2D | lassosum.MultiPRS | pT+clump.MultiPRS | 0.239 | 0.217 | 0.022 | 0.0013977 | 0.243 | 0.221 | 0.022 | 7.21e-07 |
T2D | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.230 | 0.217 | 0.013 | 0.0550364 | 0.234 | 0.221 | 0.013 | 1.21e-02 |
T2D | LDpred1.Inf | pT+clump.10FCVal | 0.185 | 0.170 | 0.015 | 0.0069572 | 0.181 | 0.174 | 0.007 | 5.51e-01 |
T2D | pT+clump.MultiPRS | pT+clump.10FCVal | 0.217 | 0.170 | 0.047 | 0.0000000 | 0.221 | 0.174 | 0.047 | 4.13e-13 |
T2D | LDpred2.MultiPRS | pT+clump.10FCVal | 0.241 | 0.170 | 0.071 | 0.0000000 | 0.243 | 0.174 | 0.069 | 1.09e-20 |
T2D | SBayesR.PseudoVal | pT+clump.10FCVal | 0.236 | 0.170 | 0.066 | 0.0000000 | 0.236 | 0.174 | 0.061 | 2.70e-17 |
T2D | LDpred2.10FCVal | pT+clump.10FCVal | 0.237 | 0.170 | 0.066 | 0.0000000 | 0.239 | 0.174 | 0.064 | 1.30e-16 |
T2D | SBLUP.Inf | pT+clump.10FCVal | 0.189 | 0.170 | 0.018 | 0.0012726 | 0.183 | 0.174 | 0.009 | 4.24e-01 |
T2D | lassosum.MultiPRS | pT+clump.10FCVal | 0.239 | 0.170 | 0.069 | 0.0000000 | 0.243 | 0.174 | 0.069 | 4.63e-20 |
T2D | LDpred2.PseudoVal | pT+clump.10FCVal | 0.227 | 0.170 | 0.057 | 0.0000000 | 0.229 | 0.174 | 0.055 | 5.90e-17 |
T2D | LDpred1.MultiPRS | pT+clump.10FCVal | 0.230 | 0.170 | 0.060 | 0.0000000 | 0.234 | 0.174 | 0.060 | 3.51e-13 |
T2D | lassosum.10FCVal | pT+clump.10FCVal | 0.213 | 0.170 | 0.043 | 0.0000000 | 0.217 | 0.174 | 0.042 | 1.01e-06 |
T2D | LDpred1.10FCVal | pT+clump.10FCVal | 0.224 | 0.170 | 0.054 | 0.0000000 | 0.224 | 0.174 | 0.049 | 7.56e-08 |
T2D | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.246 | 0.170 | 0.076 | 0.0000000 | 0.246 | 0.174 | 0.071 | 2.95e-19 |
T2D | pT+clump.10FCVal | pT+clump.10FCVal | 0.170 | 0.170 | 0.000 | 1.0000000 | 0.174 | 0.174 | 0.000 | 1.00e+00 |
T2D | All.MultiPRS | pT+clump.10FCVal | 0.247 | 0.170 | 0.077 | 0.0000000 | 0.248 | 0.174 | 0.073 | 2.05e-21 |
T2D | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.241 | 0.170 | 0.071 | 0.0000000 | 0.243 | 0.174 | 0.069 | 6.04e-22 |
T2D | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.230 | 0.170 | 0.060 | 0.0000000 | 0.232 | 0.174 | 0.057 | 7.63e-12 |
T2D | MegaPRS.10FCVal | pT+clump.10FCVal | 0.245 | 0.170 | 0.075 | 0.0000000 | 0.245 | 0.174 | 0.071 | 1.53e-18 |
T2D | lassosum.PseudoVal | pT+clump.10FCVal | 0.205 | 0.170 | 0.035 | 0.0000000 | 0.215 | 0.174 | 0.040 | 1.14e-10 |
T2D | LDpred2.Inf | pT+clump.10FCVal | 0.189 | 0.170 | 0.019 | 0.0011983 | 0.185 | 0.174 | 0.010 | 3.63e-01 |
T2D | LDpred1.Inf | SBayesR.PseudoVal | 0.185 | 0.236 | -0.051 | 0.0000000 | 0.181 | 0.236 | -0.055 | 1.24e-16 |
T2D | LDpred2.Inf | SBayesR.PseudoVal | 0.189 | 0.236 | -0.048 | 0.0000000 | 0.185 | 0.236 | -0.051 | 1.92e-14 |
T2D | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.245 | 0.236 | 0.009 | 0.0000049 | 0.245 | 0.236 | 0.009 | 1.25e-02 |
T2D | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.241 | 0.236 | 0.004 | 0.5170482 | 0.243 | 0.236 | 0.007 | 8.31e-04 |
T2D | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.236 | 0.236 | 0.000 | 1.0000000 | 0.236 | 0.236 | 0.000 | 1.00e+00 |
T2D | lassosum.10FCVal | SBayesR.PseudoVal | 0.213 | 0.236 | -0.024 | 0.0000000 | 0.217 | 0.236 | -0.019 | 1.67e-05 |
T2D | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.217 | 0.236 | -0.019 | 0.0049568 | 0.221 | 0.236 | -0.015 | 1.84e-03 |
T2D | lassosum.MultiPRS | SBayesR.PseudoVal | 0.239 | 0.236 | 0.003 | 0.7096447 | 0.243 | 0.236 | 0.008 | 8.48e-03 |
T2D | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.227 | 0.236 | -0.009 | 0.0000000 | 0.229 | 0.236 | -0.006 | 2.19e-02 |
T2D | LDpred2.10FCVal | SBayesR.PseudoVal | 0.237 | 0.236 | 0.000 | 0.9304202 | 0.239 | 0.236 | 0.003 | 2.01e-01 |
T2D | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.246 | 0.236 | 0.009 | 0.1747915 | 0.246 | 0.236 | 0.010 | 6.12e-03 |
T2D | LDpred1.10FCVal | SBayesR.PseudoVal | 0.224 | 0.236 | -0.012 | 0.0000000 | 0.224 | 0.236 | -0.012 | 1.39e-03 |
T2D | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.241 | 0.236 | 0.004 | 0.0162391 | 0.243 | 0.236 | 0.007 | 3.70e-02 |
T2D | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.230 | 0.236 | -0.006 | 0.3666712 | 0.234 | 0.236 | -0.002 | 5.14e-01 |
T2D | All.MultiPRS | SBayesR.PseudoVal | 0.247 | 0.236 | 0.011 | 0.1064638 | 0.248 | 0.236 | 0.012 | 1.17e-04 |
T2D | SBLUP.Inf | SBayesR.PseudoVal | 0.189 | 0.236 | -0.048 | 0.0000000 | 0.183 | 0.236 | -0.052 | 5.16e-15 |
T2D | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.230 | 0.236 | -0.007 | 0.0011045 | 0.232 | 0.236 | -0.004 | 3.01e-01 |
T2D | pT+clump.10FCVal | SBayesR.PseudoVal | 0.170 | 0.236 | -0.066 | 0.0000000 | 0.174 | 0.236 | -0.061 | 2.70e-17 |
T2D | lassosum.PseudoVal | SBayesR.PseudoVal | 0.205 | 0.236 | -0.032 | 0.0000000 | 0.215 | 0.236 | -0.021 | 3.50e-05 |
T2D | LDpred2.PseudoVal | SBLUP.Inf | 0.227 | 0.189 | 0.039 | 0.0000000 | 0.229 | 0.183 | 0.046 | 5.36e-09 |
T2D | MegaPRS.10FCVal | SBLUP.Inf | 0.245 | 0.189 | 0.057 | 0.0000000 | 0.245 | 0.183 | 0.062 | 3.05e-21 |
T2D | lassosum.MultiPRS | SBLUP.Inf | 0.239 | 0.189 | 0.051 | 0.0000000 | 0.243 | 0.183 | 0.060 | 1.96e-20 |
T2D | LDpred1.MultiPRS | SBLUP.Inf | 0.230 | 0.189 | 0.042 | 0.0000000 | 0.234 | 0.183 | 0.050 | 4.23e-17 |
T2D | All.MultiPRS | SBLUP.Inf | 0.247 | 0.189 | 0.059 | 0.0000000 | 0.248 | 0.183 | 0.064 | 4.00e-23 |
T2D | LDpred2.Inf | SBLUP.Inf | 0.189 | 0.189 | 0.000 | 0.7926018 | 0.185 | 0.183 | 0.001 | 1.28e-01 |
T2D | MegaPRS.MultiPRS | SBLUP.Inf | 0.246 | 0.189 | 0.057 | 0.0000000 | 0.246 | 0.183 | 0.062 | 8.73e-22 |
T2D | pT+clump.MultiPRS | SBLUP.Inf | 0.217 | 0.189 | 0.029 | 0.0000260 | 0.221 | 0.183 | 0.038 | 3.43e-06 |
T2D | lassosum.PseudoVal | SBLUP.Inf | 0.205 | 0.189 | 0.016 | 0.0016967 | 0.215 | 0.183 | 0.031 | 2.06e-03 |
T2D | SBayesR.PseudoVal | SBLUP.Inf | 0.236 | 0.189 | 0.048 | 0.0000000 | 0.236 | 0.183 | 0.052 | 5.16e-15 |
T2D | DBSLMM.PseudoVal | SBLUP.Inf | 0.230 | 0.189 | 0.041 | 0.0000000 | 0.232 | 0.183 | 0.048 | 1.53e-17 |
T2D | SBLUP.Inf | SBLUP.Inf | 0.189 | 0.189 | 0.000 | 1.0000000 | 0.183 | 0.183 | 0.000 | 1.00e+00 |
T2D | LDpred2.MultiPRS | SBLUP.Inf | 0.241 | 0.189 | 0.052 | 0.0000000 | 0.243 | 0.183 | 0.059 | 4.66e-21 |
T2D | pT+clump.10FCVal | SBLUP.Inf | 0.170 | 0.189 | -0.018 | 0.0012726 | 0.174 | 0.183 | -0.009 | 4.24e-01 |
T2D | LDpred1.Inf | SBLUP.Inf | 0.185 | 0.189 | -0.003 | 0.0026819 | 0.181 | 0.183 | -0.002 | 2.39e-01 |
T2D | lassosum.10FCVal | SBLUP.Inf | 0.213 | 0.189 | 0.024 | 0.0000000 | 0.217 | 0.183 | 0.033 | 8.70e-07 |
T2D | LDpred1.10FCVal | SBLUP.Inf | 0.224 | 0.189 | 0.036 | 0.0000000 | 0.224 | 0.183 | 0.040 | 8.61e-22 |
T2D | MegaPRS.PseudoVal | SBLUP.Inf | 0.241 | 0.189 | 0.052 | 0.0000000 | 0.243 | 0.183 | 0.060 | 4.52e-15 |
T2D | LDpred2.10FCVal | SBLUP.Inf | 0.237 | 0.189 | 0.048 | 0.0000000 | 0.239 | 0.183 | 0.055 | 5.49e-21 |
CAD | LDpred1.10FCVal | All.MultiPRS | 0.172 | 0.193 | -0.022 | 0.0017736 | 0.171 | 0.190 | -0.019 | 1.66e-05 |
CAD | pT+clump.10FCVal | All.MultiPRS | 0.139 | 0.193 | -0.055 | 0.0000000 | 0.126 | 0.190 | -0.064 | 8.83e-18 |
CAD | LDpred1.MultiPRS | All.MultiPRS | 0.173 | 0.193 | -0.021 | 0.0027064 | 0.173 | 0.190 | -0.017 | 3.57e-05 |
CAD | LDpred2.Inf | All.MultiPRS | 0.161 | 0.193 | -0.032 | 0.0000027 | 0.157 | 0.190 | -0.034 | 5.07e-10 |
CAD | MegaPRS.PseudoVal | All.MultiPRS | 0.153 | 0.193 | -0.040 | 0.0000000 | 0.158 | 0.190 | -0.033 | 2.04e-07 |
CAD | LDpred2.10FCVal | All.MultiPRS | 0.187 | 0.193 | -0.006 | 0.3587154 | 0.184 | 0.190 | -0.006 | 6.09e-03 |
CAD | LDpred2.MultiPRS | All.MultiPRS | 0.190 | 0.193 | -0.004 | 0.6087768 | 0.188 | 0.190 | -0.002 | 3.17e-01 |
CAD | lassosum.10FCVal | All.MultiPRS | 0.174 | 0.193 | -0.019 | 0.0064990 | 0.171 | 0.190 | -0.020 | 8.11e-07 |
CAD | LDpred1.Inf | All.MultiPRS | 0.147 | 0.193 | -0.046 | 0.0000000 | 0.148 | 0.190 | -0.043 | 4.21e-11 |
CAD | lassosum.MultiPRS | All.MultiPRS | 0.187 | 0.193 | -0.007 | 0.3381573 | 0.182 | 0.190 | -0.009 | 1.69e-04 |
CAD | MegaPRS.10FCVal | All.MultiPRS | 0.182 | 0.193 | -0.011 | 0.1094024 | 0.177 | 0.190 | -0.014 | 2.67e-05 |
CAD | All.MultiPRS | All.MultiPRS | 0.193 | 0.193 | 0.000 | 1.0000000 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
CAD | SBayesR.PseudoVal | All.MultiPRS | 0.164 | 0.193 | -0.029 | 0.0000208 | 0.170 | 0.190 | -0.020 | 2.00e-04 |
CAD | MegaPRS.MultiPRS | All.MultiPRS | 0.184 | 0.193 | -0.009 | 0.0000000 | 0.181 | 0.190 | -0.010 | 1.47e-03 |
CAD | pT+clump.MultiPRS | All.MultiPRS | 0.170 | 0.193 | -0.023 | 0.0007826 | 0.166 | 0.190 | -0.025 | 3.49e-07 |
CAD | lassosum.PseudoVal | All.MultiPRS | 0.161 | 0.193 | -0.032 | 0.0000040 | 0.158 | 0.190 | -0.033 | 6.91e-09 |
CAD | LDpred2.PseudoVal | All.MultiPRS | 0.052 | 0.193 | -0.141 | 0.0000000 | 0.060 | 0.190 | -0.131 | 3.31e-28 |
CAD | DBSLMM.PseudoVal | All.MultiPRS | 0.169 | 0.193 | -0.024 | 0.0005013 | 0.163 | 0.190 | -0.028 | 4.21e-08 |
CAD | SBLUP.Inf | All.MultiPRS | 0.161 | 0.193 | -0.033 | 0.0000023 | 0.156 | 0.190 | -0.034 | 1.60e-10 |
CAD | LDpred1.Inf | DBSLMM.PseudoVal | 0.147 | 0.169 | -0.022 | 0.0000002 | 0.148 | 0.163 | -0.015 | 7.54e-02 |
CAD | LDpred2.Inf | DBSLMM.PseudoVal | 0.161 | 0.169 | -0.008 | 0.0355195 | 0.157 | 0.163 | -0.006 | 4.59e-01 |
CAD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.190 | 0.169 | 0.020 | 0.0030263 | 0.188 | 0.163 | 0.025 | 8.10e-07 |
CAD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.139 | 0.169 | -0.031 | 0.0000000 | 0.126 | 0.163 | -0.036 | 6.89e-05 |
CAD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.164 | 0.169 | -0.005 | 0.0349168 | 0.170 | 0.163 | 0.007 | 1.66e-01 |
CAD | All.MultiPRS | DBSLMM.PseudoVal | 0.193 | 0.169 | 0.024 | 0.0005013 | 0.190 | 0.163 | 0.028 | 4.21e-08 |
CAD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.182 | 0.169 | 0.013 | 0.0000263 | 0.177 | 0.163 | 0.014 | 2.76e-02 |
CAD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.184 | 0.169 | 0.015 | 0.0277851 | 0.181 | 0.163 | 0.018 | 4.27e-03 |
CAD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.052 | 0.169 | -0.117 | 0.0000000 | 0.060 | 0.163 | -0.103 | 6.58e-17 |
CAD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.161 | 0.169 | -0.008 | 0.0201091 | 0.158 | 0.163 | -0.005 | 4.52e-01 |
CAD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.170 | 0.169 | 0.001 | 0.8922817 | 0.166 | 0.163 | 0.003 | 6.15e-01 |
CAD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.153 | 0.169 | -0.016 | 0.0000029 | 0.158 | 0.163 | -0.005 | 4.58e-01 |
CAD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.187 | 0.169 | 0.017 | 0.0119833 | 0.182 | 0.163 | 0.019 | 8.49e-04 |
CAD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.187 | 0.169 | 0.018 | 0.0000000 | 0.184 | 0.163 | 0.021 | 5.78e-05 |
CAD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.174 | 0.169 | 0.005 | 0.1506247 | 0.171 | 0.163 | 0.008 | 2.91e-01 |
CAD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.172 | 0.169 | 0.002 | 0.3804460 | 0.171 | 0.163 | 0.008 | 1.33e-01 |
CAD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.169 | 0.169 | 0.000 | 1.0000000 | 0.163 | 0.163 | 0.000 | 1.00e+00 |
CAD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.173 | 0.169 | 0.003 | 0.6281272 | 0.173 | 0.163 | 0.010 | 7.89e-02 |
CAD | SBLUP.Inf | DBSLMM.PseudoVal | 0.161 | 0.169 | -0.009 | 0.0296994 | 0.156 | 0.163 | -0.007 | 3.88e-01 |
CAD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.164 | 0.187 | -0.023 | 0.0010234 | 0.170 | 0.182 | -0.012 | 4.36e-02 |
CAD | LDpred1.Inf | lassosum.MultiPRS | 0.147 | 0.187 | -0.039 | 0.0000000 | 0.148 | 0.182 | -0.034 | 5.03e-07 |
CAD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.182 | 0.187 | -0.004 | 0.5228859 | 0.177 | 0.182 | -0.005 | 2.65e-01 |
CAD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.190 | 0.187 | 0.003 | 0.6525745 | 0.188 | 0.182 | 0.007 | 1.93e-02 |
CAD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.052 | 0.187 | -0.135 | 0.0000000 | 0.060 | 0.182 | -0.122 | 4.64e-23 |
CAD | LDpred2.10FCVal | lassosum.MultiPRS | 0.187 | 0.187 | 0.000 | 0.9647610 | 0.184 | 0.182 | 0.002 | 4.28e-01 |
CAD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.170 | 0.187 | -0.016 | 0.0173875 | 0.166 | 0.182 | -0.016 | 1.48e-03 |
CAD | lassosum.MultiPRS | lassosum.MultiPRS | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
CAD | lassosum.PseudoVal | lassosum.MultiPRS | 0.161 | 0.187 | -0.025 | 0.0002678 | 0.158 | 0.182 | -0.024 | 3.53e-06 |
CAD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.173 | 0.187 | -0.014 | 0.0412179 | 0.173 | 0.182 | -0.009 | 5.62e-02 |
CAD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.184 | 0.187 | -0.002 | 0.7515304 | 0.181 | 0.182 | -0.001 | 8.30e-01 |
CAD | LDpred1.10FCVal | lassosum.MultiPRS | 0.172 | 0.187 | -0.015 | 0.0309359 | 0.171 | 0.182 | -0.010 | 2.96e-02 |
CAD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.153 | 0.187 | -0.034 | 0.0000011 | 0.158 | 0.182 | -0.024 | 4.40e-04 |
CAD | pT+clump.10FCVal | lassosum.MultiPRS | 0.139 | 0.187 | -0.048 | 0.0000000 | 0.126 | 0.182 | -0.055 | 1.76e-13 |
CAD | lassosum.10FCVal | lassosum.MultiPRS | 0.174 | 0.187 | -0.012 | 0.0779264 | 0.171 | 0.182 | -0.011 | 1.16e-03 |
CAD | SBLUP.Inf | lassosum.MultiPRS | 0.161 | 0.187 | -0.026 | 0.0001704 | 0.156 | 0.182 | -0.026 | 4.54e-06 |
CAD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.169 | 0.187 | -0.017 | 0.0119833 | 0.163 | 0.182 | -0.019 | 8.49e-04 |
CAD | All.MultiPRS | lassosum.MultiPRS | 0.193 | 0.187 | 0.007 | 0.3381573 | 0.190 | 0.182 | 0.009 | 1.69e-04 |
CAD | LDpred2.Inf | lassosum.MultiPRS | 0.161 | 0.187 | -0.026 | 0.0001912 | 0.157 | 0.182 | -0.025 | 1.16e-05 |
CAD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.153 | 0.161 | -0.009 | 0.0039528 | 0.158 | 0.158 | 0.000 | 9.84e-01 |
CAD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.052 | 0.161 | -0.109 | 0.0000000 | 0.060 | 0.158 | -0.098 | 7.19e-16 |
CAD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.173 | 0.161 | 0.011 | 0.1068112 | 0.173 | 0.158 | 0.015 | 1.03e-02 |
CAD | lassosum.PseudoVal | lassosum.PseudoVal | 0.161 | 0.161 | 0.000 | 1.0000000 | 0.158 | 0.158 | 0.000 | 1.00e+00 |
CAD | LDpred2.Inf | lassosum.PseudoVal | 0.161 | 0.161 | -0.001 | 0.9023275 | 0.157 | 0.158 | -0.001 | 9.23e-01 |
CAD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.169 | 0.161 | 0.008 | 0.0201091 | 0.163 | 0.158 | 0.005 | 4.52e-01 |
CAD | SBLUP.Inf | lassosum.PseudoVal | 0.161 | 0.161 | -0.001 | 0.8684250 | 0.156 | 0.158 | -0.002 | 8.47e-01 |
CAD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.190 | 0.161 | 0.028 | 0.0000409 | 0.188 | 0.158 | 0.030 | 1.15e-08 |
CAD | pT+clump.10FCVal | lassosum.PseudoVal | 0.139 | 0.161 | -0.023 | 0.0000000 | 0.126 | 0.158 | -0.031 | 1.33e-06 |
CAD | LDpred1.Inf | lassosum.PseudoVal | 0.147 | 0.161 | -0.014 | 0.0034066 | 0.148 | 0.158 | -0.010 | 2.98e-01 |
CAD | lassosum.MultiPRS | lassosum.PseudoVal | 0.187 | 0.161 | 0.025 | 0.0002678 | 0.182 | 0.158 | 0.024 | 3.53e-06 |
CAD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.182 | 0.161 | 0.021 | 0.0000000 | 0.177 | 0.158 | 0.019 | 4.69e-03 |
CAD | All.MultiPRS | lassosum.PseudoVal | 0.193 | 0.161 | 0.032 | 0.0000040 | 0.190 | 0.158 | 0.033 | 6.91e-09 |
CAD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.164 | 0.161 | 0.002 | 0.3525548 | 0.170 | 0.158 | 0.012 | 2.22e-02 |
CAD | lassosum.10FCVal | lassosum.PseudoVal | 0.174 | 0.161 | 0.013 | 0.0001107 | 0.171 | 0.158 | 0.013 | 5.91e-02 |
CAD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.170 | 0.161 | 0.009 | 0.2063456 | 0.166 | 0.158 | 0.008 | 1.92e-01 |
CAD | LDpred1.10FCVal | lassosum.PseudoVal | 0.172 | 0.161 | 0.010 | 0.0003285 | 0.171 | 0.158 | 0.014 | 1.72e-02 |
CAD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.184 | 0.161 | 0.023 | 0.0008792 | 0.181 | 0.158 | 0.023 | 6.00e-04 |
CAD | LDpred2.10FCVal | lassosum.PseudoVal | 0.187 | 0.161 | 0.026 | 0.0000000 | 0.184 | 0.158 | 0.026 | 1.23e-05 |
CAD | lassosum.10FCVal | lassosum.10FCVal | 0.174 | 0.174 | 0.000 | 1.0000000 | 0.171 | 0.171 | 0.000 | 1.00e+00 |
CAD | pT+clump.MultiPRS | lassosum.10FCVal | 0.170 | 0.174 | -0.004 | 0.5353328 | 0.166 | 0.171 | -0.005 | 4.49e-01 |
CAD | LDpred2.MultiPRS | lassosum.10FCVal | 0.190 | 0.174 | 0.015 | 0.0268358 | 0.188 | 0.171 | 0.018 | 8.01e-06 |
CAD | SBayesR.PseudoVal | lassosum.10FCVal | 0.164 | 0.174 | -0.011 | 0.0046724 | 0.170 | 0.171 | -0.001 | 9.32e-01 |
CAD | LDpred2.10FCVal | lassosum.10FCVal | 0.187 | 0.174 | 0.012 | 0.0000000 | 0.184 | 0.171 | 0.013 | 1.68e-04 |
CAD | SBLUP.Inf | lassosum.10FCVal | 0.161 | 0.174 | -0.014 | 0.0000000 | 0.156 | 0.171 | -0.015 | 1.92e-03 |
CAD | lassosum.MultiPRS | lassosum.10FCVal | 0.187 | 0.174 | 0.012 | 0.0779264 | 0.182 | 0.171 | 0.011 | 1.16e-03 |
CAD | LDpred2.PseudoVal | lassosum.10FCVal | 0.052 | 0.174 | -0.122 | 0.0000000 | 0.060 | 0.171 | -0.111 | 8.09e-20 |
CAD | LDpred1.MultiPRS | lassosum.10FCVal | 0.173 | 0.174 | -0.002 | 0.7849811 | 0.173 | 0.171 | 0.002 | 6.81e-01 |
CAD | LDpred2.Inf | lassosum.10FCVal | 0.161 | 0.174 | -0.014 | 0.0000000 | 0.157 | 0.171 | -0.014 | 3.91e-03 |
CAD | LDpred1.10FCVal | lassosum.10FCVal | 0.172 | 0.174 | -0.003 | 0.3554868 | 0.171 | 0.171 | 0.001 | 9.02e-01 |
CAD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.184 | 0.174 | 0.010 | 0.1489352 | 0.181 | 0.171 | 0.010 | 4.49e-02 |
CAD | pT+clump.10FCVal | lassosum.10FCVal | 0.139 | 0.174 | -0.036 | 0.0000000 | 0.126 | 0.171 | -0.044 | 2.29e-09 |
CAD | All.MultiPRS | lassosum.10FCVal | 0.193 | 0.174 | 0.019 | 0.0064990 | 0.190 | 0.171 | 0.020 | 8.11e-07 |
CAD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.153 | 0.174 | -0.022 | 0.0000002 | 0.158 | 0.171 | -0.013 | 1.15e-01 |
CAD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.169 | 0.174 | -0.005 | 0.1506247 | 0.163 | 0.171 | -0.008 | 2.91e-01 |
CAD | MegaPRS.10FCVal | lassosum.10FCVal | 0.182 | 0.174 | 0.008 | 0.0020496 | 0.177 | 0.171 | 0.006 | 2.36e-01 |
CAD | lassosum.PseudoVal | lassosum.10FCVal | 0.161 | 0.174 | -0.013 | 0.0001107 | 0.158 | 0.171 | -0.013 | 5.91e-02 |
CAD | LDpred1.Inf | lassosum.10FCVal | 0.147 | 0.174 | -0.027 | 0.0000000 | 0.148 | 0.171 | -0.023 | 2.10e-04 |
CAD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.153 | 0.184 | -0.032 | 0.0000050 | 0.158 | 0.181 | -0.023 | 6.28e-05 |
CAD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.169 | 0.184 | -0.015 | 0.0277851 | 0.163 | 0.181 | -0.018 | 4.27e-03 |
CAD | SBLUP.Inf | MegaPRS.MultiPRS | 0.161 | 0.184 | -0.024 | 0.0005788 | 0.156 | 0.181 | -0.025 | 1.72e-05 |
CAD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.190 | 0.184 | 0.005 | 0.4421593 | 0.188 | 0.181 | 0.008 | 6.91e-02 |
CAD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.139 | 0.184 | -0.046 | 0.0000000 | 0.126 | 0.181 | -0.054 | 1.53e-10 |
CAD | LDpred1.Inf | MegaPRS.MultiPRS | 0.147 | 0.184 | -0.037 | 0.0000001 | 0.148 | 0.181 | -0.033 | 5.13e-07 |
CAD | LDpred2.Inf | MegaPRS.MultiPRS | 0.161 | 0.184 | -0.024 | 0.0006420 | 0.157 | 0.181 | -0.024 | 3.97e-05 |
CAD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.182 | 0.184 | -0.002 | 0.7478976 | 0.177 | 0.181 | -0.004 | 9.65e-04 |
CAD | All.MultiPRS | MegaPRS.MultiPRS | 0.193 | 0.184 | 0.009 | 0.0000000 | 0.190 | 0.181 | 0.010 | 1.47e-03 |
CAD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.164 | 0.184 | -0.021 | 0.0029416 | 0.170 | 0.181 | -0.011 | 9.40e-02 |
CAD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.174 | 0.184 | -0.010 | 0.1489352 | 0.171 | 0.181 | -0.010 | 4.49e-02 |
CAD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.170 | 0.184 | -0.014 | 0.0381359 | 0.166 | 0.181 | -0.015 | 2.76e-02 |
CAD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.187 | 0.184 | 0.002 | 0.7515304 | 0.182 | 0.181 | 0.001 | 8.30e-01 |
CAD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.052 | 0.184 | -0.132 | 0.0000000 | 0.060 | 0.181 | -0.121 | 2.83e-23 |
CAD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.187 | 0.184 | 0.002 | 0.7172075 | 0.184 | 0.181 | 0.003 | 4.03e-01 |
CAD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.161 | 0.184 | -0.023 | 0.0008792 | 0.158 | 0.181 | -0.023 | 6.00e-04 |
CAD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.172 | 0.184 | -0.013 | 0.0651572 | 0.171 | 0.181 | -0.009 | 6.96e-02 |
CAD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.184 | 0.184 | 0.000 | 1.0000000 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
CAD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.173 | 0.184 | -0.012 | 0.0857335 | 0.173 | 0.181 | -0.008 | 1.12e-01 |
CAD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.153 | 0.153 | 0.000 | 1.0000000 | 0.158 | 0.158 | 0.000 | 1.00e+00 |
CAD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.187 | 0.153 | 0.034 | 0.0000000 | 0.184 | 0.158 | 0.026 | 1.76e-04 |
CAD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.173 | 0.153 | 0.020 | 0.0042518 | 0.173 | 0.158 | 0.015 | 1.87e-02 |
CAD | LDpred2.Inf | MegaPRS.PseudoVal | 0.161 | 0.153 | 0.008 | 0.1051197 | 0.157 | 0.158 | -0.001 | 9.36e-01 |
CAD | LDpred1.Inf | MegaPRS.PseudoVal | 0.147 | 0.153 | -0.005 | 0.2762991 | 0.148 | 0.158 | -0.010 | 3.20e-01 |
CAD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.187 | 0.153 | 0.034 | 0.0000011 | 0.182 | 0.158 | 0.024 | 4.40e-04 |
CAD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.182 | 0.153 | 0.029 | 0.0000000 | 0.177 | 0.158 | 0.019 | 1.82e-03 |
CAD | All.MultiPRS | MegaPRS.PseudoVal | 0.193 | 0.153 | 0.040 | 0.0000000 | 0.190 | 0.158 | 0.033 | 2.04e-07 |
CAD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.164 | 0.153 | 0.011 | 0.0002289 | 0.170 | 0.158 | 0.012 | 4.19e-02 |
CAD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.169 | 0.153 | 0.016 | 0.0000029 | 0.163 | 0.158 | 0.005 | 4.58e-01 |
CAD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.170 | 0.153 | 0.017 | 0.0121648 | 0.166 | 0.158 | 0.008 | 2.88e-01 |
CAD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.161 | 0.153 | 0.009 | 0.0039528 | 0.158 | 0.158 | 0.000 | 9.84e-01 |
CAD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.052 | 0.153 | -0.101 | 0.0000000 | 0.060 | 0.158 | -0.098 | 2.72e-17 |
CAD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.174 | 0.153 | 0.022 | 0.0000002 | 0.171 | 0.158 | 0.013 | 1.15e-01 |
CAD | SBLUP.Inf | MegaPRS.PseudoVal | 0.161 | 0.153 | 0.008 | 0.1122044 | 0.156 | 0.158 | -0.002 | 8.63e-01 |
CAD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.172 | 0.153 | 0.019 | 0.0000000 | 0.171 | 0.158 | 0.014 | 3.25e-02 |
CAD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.139 | 0.153 | -0.014 | 0.0024973 | 0.126 | 0.158 | -0.031 | 7.27e-04 |
CAD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.190 | 0.153 | 0.037 | 0.0000001 | 0.188 | 0.158 | 0.031 | 4.67e-06 |
CAD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.184 | 0.153 | 0.032 | 0.0000050 | 0.181 | 0.158 | 0.023 | 6.28e-05 |
CAD | lassosum.10FCVal | MegaPRS.10FCVal | 0.174 | 0.182 | -0.008 | 0.0020496 | 0.171 | 0.177 | -0.006 | 2.36e-01 |
CAD | SBLUP.Inf | MegaPRS.10FCVal | 0.161 | 0.182 | -0.022 | 0.0000000 | 0.156 | 0.177 | -0.021 | 4.89e-04 |
CAD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.164 | 0.182 | -0.018 | 0.0000000 | 0.170 | 0.177 | -0.007 | 3.03e-01 |
CAD | All.MultiPRS | MegaPRS.10FCVal | 0.193 | 0.182 | 0.011 | 0.1094024 | 0.190 | 0.177 | 0.014 | 2.67e-05 |
CAD | LDpred2.Inf | MegaPRS.10FCVal | 0.161 | 0.182 | -0.021 | 0.0000000 | 0.157 | 0.177 | -0.020 | 9.60e-04 |
CAD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.187 | 0.182 | 0.004 | 0.5228859 | 0.182 | 0.177 | 0.005 | 2.65e-01 |
CAD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.187 | 0.182 | 0.005 | 0.0179515 | 0.184 | 0.177 | 0.007 | 6.39e-02 |
CAD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.173 | 0.182 | -0.010 | 0.1617527 | 0.173 | 0.177 | -0.004 | 4.60e-01 |
CAD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.052 | 0.182 | -0.130 | 0.0000000 | 0.060 | 0.177 | -0.117 | 1.53e-21 |
CAD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.172 | 0.182 | -0.011 | 0.0000546 | 0.171 | 0.177 | -0.005 | 3.11e-01 |
CAD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.170 | 0.182 | -0.012 | 0.0800944 | 0.166 | 0.177 | -0.011 | 1.15e-01 |
CAD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.139 | 0.182 | -0.043 | 0.0000000 | 0.126 | 0.177 | -0.050 | 3.34e-09 |
CAD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.161 | 0.182 | -0.021 | 0.0000000 | 0.158 | 0.177 | -0.019 | 4.69e-03 |
CAD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.153 | 0.182 | -0.029 | 0.0000000 | 0.158 | 0.177 | -0.019 | 1.82e-03 |
CAD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.184 | 0.182 | 0.002 | 0.7478976 | 0.181 | 0.177 | 0.004 | 9.65e-04 |
CAD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.182 | 0.182 | 0.000 | 1.0000000 | 0.177 | 0.177 | 0.000 | 1.00e+00 |
CAD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.190 | 0.182 | 0.008 | 0.2756476 | 0.188 | 0.177 | 0.012 | 6.19e-03 |
CAD | LDpred1.Inf | MegaPRS.10FCVal | 0.147 | 0.182 | -0.035 | 0.0000000 | 0.148 | 0.177 | -0.029 | 1.62e-05 |
CAD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.169 | 0.182 | -0.013 | 0.0000263 | 0.163 | 0.177 | -0.014 | 2.76e-02 |
CAD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.170 | 0.173 | -0.002 | 0.7287047 | 0.166 | 0.173 | -0.007 | 2.48e-01 |
CAD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.182 | 0.173 | 0.010 | 0.1617527 | 0.177 | 0.173 | 0.004 | 4.60e-01 |
CAD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.052 | 0.173 | -0.121 | 0.0000000 | 0.060 | 0.173 | -0.113 | 3.87e-20 |
CAD | LDpred1.Inf | LDpred1.MultiPRS | 0.147 | 0.173 | -0.025 | 0.0002687 | 0.148 | 0.173 | -0.025 | 5.30e-06 |
CAD | lassosum.10FCVal | LDpred1.MultiPRS | 0.174 | 0.173 | 0.002 | 0.7849811 | 0.171 | 0.173 | -0.002 | 6.81e-01 |
CAD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.172 | 0.173 | -0.001 | 0.9000591 | 0.171 | 0.173 | -0.002 | 9.11e-02 |
CAD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.187 | 0.173 | 0.014 | 0.0412179 | 0.182 | 0.173 | 0.009 | 5.62e-02 |
CAD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.173 | 0.173 | 0.000 | 1.0000000 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
CAD | All.MultiPRS | LDpred1.MultiPRS | 0.193 | 0.173 | 0.021 | 0.0027064 | 0.190 | 0.173 | 0.017 | 3.57e-05 |
CAD | LDpred2.Inf | LDpred1.MultiPRS | 0.161 | 0.173 | -0.012 | 0.0891301 | 0.157 | 0.173 | -0.016 | 1.87e-02 |
CAD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.184 | 0.173 | 0.012 | 0.0857335 | 0.181 | 0.173 | 0.008 | 1.12e-01 |
CAD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.139 | 0.173 | -0.034 | 0.0000011 | 0.126 | 0.173 | -0.046 | 9.11e-09 |
CAD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.161 | 0.173 | -0.011 | 0.1068112 | 0.158 | 0.173 | -0.015 | 1.03e-02 |
CAD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.164 | 0.173 | -0.009 | 0.2083198 | 0.170 | 0.173 | -0.003 | 5.54e-01 |
CAD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.169 | 0.173 | -0.003 | 0.6281272 | 0.163 | 0.173 | -0.010 | 7.89e-02 |
CAD | SBLUP.Inf | LDpred1.MultiPRS | 0.161 | 0.173 | -0.012 | 0.0840128 | 0.156 | 0.173 | -0.017 | 1.17e-02 |
CAD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.190 | 0.173 | 0.017 | 0.0129594 | 0.188 | 0.173 | 0.015 | 1.52e-04 |
CAD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.153 | 0.173 | -0.020 | 0.0042518 | 0.158 | 0.173 | -0.015 | 1.87e-02 |
CAD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.187 | 0.173 | 0.014 | 0.0369354 | 0.184 | 0.173 | 0.011 | 6.92e-03 |
CAD | LDpred1.10FCVal | LDpred1.Inf | 0.172 | 0.147 | 0.024 | 0.0000000 | 0.171 | 0.148 | 0.023 | 1.49e-04 |
CAD | LDpred2.PseudoVal | LDpred1.Inf | 0.052 | 0.147 | -0.095 | 0.0000000 | 0.060 | 0.148 | -0.088 | 1.73e-12 |
CAD | LDpred1.MultiPRS | LDpred1.Inf | 0.173 | 0.147 | 0.025 | 0.0002687 | 0.173 | 0.148 | 0.025 | 5.30e-06 |
CAD | pT+clump.MultiPRS | LDpred1.Inf | 0.170 | 0.147 | 0.023 | 0.0010093 | 0.166 | 0.148 | 0.018 | 2.49e-02 |
CAD | MegaPRS.PseudoVal | LDpred1.Inf | 0.153 | 0.147 | 0.005 | 0.2762991 | 0.158 | 0.148 | 0.010 | 3.20e-01 |
CAD | MegaPRS.MultiPRS | LDpred1.Inf | 0.184 | 0.147 | 0.037 | 0.0000001 | 0.181 | 0.148 | 0.033 | 5.13e-07 |
CAD | pT+clump.10FCVal | LDpred1.Inf | 0.139 | 0.147 | -0.009 | 0.0658285 | 0.126 | 0.148 | -0.021 | 2.25e-02 |
CAD | lassosum.PseudoVal | LDpred1.Inf | 0.161 | 0.147 | 0.014 | 0.0034066 | 0.158 | 0.148 | 0.010 | 2.98e-01 |
CAD | LDpred2.Inf | LDpred1.Inf | 0.161 | 0.147 | 0.013 | 0.0000000 | 0.157 | 0.148 | 0.009 | 4.81e-02 |
CAD | DBSLMM.PseudoVal | LDpred1.Inf | 0.169 | 0.147 | 0.022 | 0.0000002 | 0.163 | 0.148 | 0.015 | 7.54e-02 |
CAD | SBLUP.Inf | LDpred1.Inf | 0.161 | 0.147 | 0.013 | 0.0000000 | 0.156 | 0.148 | 0.008 | 7.19e-02 |
CAD | LDpred2.MultiPRS | LDpred1.Inf | 0.190 | 0.147 | 0.042 | 0.0000000 | 0.188 | 0.148 | 0.040 | 4.12e-10 |
CAD | lassosum.10FCVal | LDpred1.Inf | 0.174 | 0.147 | 0.027 | 0.0000000 | 0.171 | 0.148 | 0.023 | 2.10e-04 |
CAD | LDpred1.Inf | LDpred1.Inf | 0.147 | 0.147 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
CAD | lassosum.MultiPRS | LDpred1.Inf | 0.187 | 0.147 | 0.039 | 0.0000000 | 0.182 | 0.148 | 0.034 | 5.03e-07 |
CAD | MegaPRS.10FCVal | LDpred1.Inf | 0.182 | 0.147 | 0.035 | 0.0000000 | 0.177 | 0.148 | 0.029 | 1.62e-05 |
CAD | All.MultiPRS | LDpred1.Inf | 0.193 | 0.147 | 0.046 | 0.0000000 | 0.190 | 0.148 | 0.043 | 4.21e-11 |
CAD | SBayesR.PseudoVal | LDpred1.Inf | 0.164 | 0.147 | 0.017 | 0.0002379 | 0.170 | 0.148 | 0.022 | 1.36e-02 |
CAD | LDpred2.10FCVal | LDpred1.Inf | 0.187 | 0.147 | 0.040 | 0.0000000 | 0.184 | 0.148 | 0.036 | 8.85e-10 |
CAD | All.MultiPRS | LDpred1.10FCVal | 0.193 | 0.172 | 0.022 | 0.0017736 | 0.190 | 0.171 | 0.019 | 1.66e-05 |
CAD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.170 | 0.172 | -0.002 | 0.8239545 | 0.166 | 0.171 | -0.005 | 3.74e-01 |
CAD | LDpred1.10FCVal | LDpred1.10FCVal | 0.172 | 0.172 | 0.000 | 1.0000000 | 0.171 | 0.171 | 0.000 | 1.00e+00 |
CAD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.164 | 0.172 | -0.008 | 0.0010599 | 0.170 | 0.171 | -0.001 | 7.73e-01 |
CAD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.173 | 0.172 | 0.001 | 0.9000591 | 0.173 | 0.171 | 0.002 | 9.11e-02 |
CAD | SBLUP.Inf | LDpred1.10FCVal | 0.161 | 0.172 | -0.011 | 0.0020680 | 0.156 | 0.171 | -0.015 | 3.39e-02 |
CAD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.153 | 0.172 | -0.019 | 0.0000000 | 0.158 | 0.171 | -0.014 | 3.25e-02 |
CAD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.052 | 0.172 | -0.120 | 0.0000000 | 0.060 | 0.171 | -0.112 | 2.11e-19 |
CAD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.190 | 0.172 | 0.018 | 0.0089484 | 0.188 | 0.171 | 0.017 | 5.89e-05 |
CAD | LDpred2.Inf | LDpred1.10FCVal | 0.161 | 0.172 | -0.011 | 0.0028415 | 0.157 | 0.171 | -0.014 | 4.90e-02 |
CAD | LDpred1.Inf | LDpred1.10FCVal | 0.147 | 0.172 | -0.024 | 0.0000000 | 0.148 | 0.171 | -0.023 | 1.49e-04 |
CAD | pT+clump.10FCVal | LDpred1.10FCVal | 0.139 | 0.172 | -0.033 | 0.0000000 | 0.126 | 0.171 | -0.045 | 3.09e-08 |
CAD | LDpred2.10FCVal | LDpred1.10FCVal | 0.187 | 0.172 | 0.015 | 0.0000000 | 0.184 | 0.171 | 0.013 | 3.67e-03 |
CAD | lassosum.PseudoVal | LDpred1.10FCVal | 0.161 | 0.172 | -0.010 | 0.0003285 | 0.158 | 0.171 | -0.014 | 1.72e-02 |
CAD | lassosum.10FCVal | LDpred1.10FCVal | 0.174 | 0.172 | 0.003 | 0.3554868 | 0.171 | 0.171 | -0.001 | 9.02e-01 |
CAD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.184 | 0.172 | 0.013 | 0.0651572 | 0.181 | 0.171 | 0.009 | 6.96e-02 |
CAD | lassosum.MultiPRS | LDpred1.10FCVal | 0.187 | 0.172 | 0.015 | 0.0309359 | 0.182 | 0.171 | 0.010 | 2.96e-02 |
CAD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.182 | 0.172 | 0.011 | 0.0000546 | 0.177 | 0.171 | 0.005 | 3.11e-01 |
CAD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.169 | 0.172 | -0.002 | 0.3804460 | 0.163 | 0.171 | -0.008 | 1.33e-01 |
CAD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.164 | 0.190 | -0.026 | 0.0001784 | 0.170 | 0.188 | -0.018 | 5.37e-04 |
CAD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.190 | 0.190 | 0.000 | 1.0000000 | 0.188 | 0.188 | 0.000 | 1.00e+00 |
CAD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.139 | 0.190 | -0.051 | 0.0000000 | 0.126 | 0.188 | -0.062 | 6.16e-18 |
CAD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.052 | 0.190 | -0.138 | 0.0000000 | 0.060 | 0.188 | -0.129 | 1.75e-27 |
CAD | LDpred2.Inf | LDpred2.MultiPRS | 0.161 | 0.190 | -0.029 | 0.0000303 | 0.157 | 0.188 | -0.031 | 2.95e-09 |
CAD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.170 | 0.190 | -0.020 | 0.0046123 | 0.166 | 0.188 | -0.022 | 7.91e-06 |
CAD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.153 | 0.190 | -0.037 | 0.0000001 | 0.158 | 0.188 | -0.031 | 4.67e-06 |
CAD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.187 | 0.190 | -0.003 | 0.6525745 | 0.182 | 0.188 | -0.007 | 1.93e-02 |
CAD | LDpred1.Inf | LDpred2.MultiPRS | 0.147 | 0.190 | -0.042 | 0.0000000 | 0.148 | 0.188 | -0.040 | 4.12e-10 |
CAD | lassosum.10FCVal | LDpred2.MultiPRS | 0.174 | 0.190 | -0.015 | 0.0268358 | 0.171 | 0.188 | -0.018 | 8.01e-06 |
CAD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.182 | 0.190 | -0.008 | 0.2756476 | 0.177 | 0.188 | -0.012 | 6.19e-03 |
CAD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.184 | 0.190 | -0.005 | 0.4421593 | 0.181 | 0.188 | -0.008 | 6.91e-02 |
CAD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.187 | 0.190 | -0.003 | 0.6848895 | 0.184 | 0.188 | -0.004 | 2.13e-03 |
CAD | All.MultiPRS | LDpred2.MultiPRS | 0.193 | 0.190 | 0.004 | 0.6087768 | 0.190 | 0.188 | 0.002 | 3.17e-01 |
CAD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.172 | 0.190 | -0.018 | 0.0089484 | 0.171 | 0.188 | -0.017 | 5.89e-05 |
CAD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.169 | 0.190 | -0.020 | 0.0030263 | 0.163 | 0.188 | -0.025 | 8.10e-07 |
CAD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.173 | 0.190 | -0.017 | 0.0129594 | 0.173 | 0.188 | -0.015 | 1.52e-04 |
CAD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.161 | 0.190 | -0.028 | 0.0000409 | 0.158 | 0.188 | -0.030 | 1.15e-08 |
CAD | SBLUP.Inf | LDpred2.MultiPRS | 0.161 | 0.190 | -0.029 | 0.0000266 | 0.156 | 0.188 | -0.032 | 9.35e-10 |
CAD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.153 | 0.187 | -0.034 | 0.0000000 | 0.158 | 0.184 | -0.026 | 1.76e-04 |
CAD | LDpred2.10FCVal | LDpred2.10FCVal | 0.187 | 0.187 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
CAD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.182 | 0.187 | -0.005 | 0.0179515 | 0.177 | 0.184 | -0.007 | 6.39e-02 |
CAD | All.MultiPRS | LDpred2.10FCVal | 0.193 | 0.187 | 0.006 | 0.3587154 | 0.190 | 0.184 | 0.006 | 6.09e-03 |
CAD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.164 | 0.187 | -0.023 | 0.0000000 | 0.170 | 0.184 | -0.014 | 1.47e-02 |
CAD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.169 | 0.187 | -0.018 | 0.0000000 | 0.163 | 0.184 | -0.021 | 5.78e-05 |
CAD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.170 | 0.187 | -0.017 | 0.0150179 | 0.166 | 0.184 | -0.018 | 4.99e-04 |
CAD | lassosum.MultiPRS | LDpred2.10FCVal | 0.187 | 0.187 | 0.000 | 0.9647610 | 0.182 | 0.184 | -0.002 | 4.28e-01 |
CAD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.052 | 0.187 | -0.135 | 0.0000000 | 0.060 | 0.184 | -0.124 | 3.62e-26 |
CAD | lassosum.10FCVal | LDpred2.10FCVal | 0.174 | 0.187 | -0.012 | 0.0000000 | 0.171 | 0.184 | -0.013 | 1.68e-04 |
CAD | SBLUP.Inf | LDpred2.10FCVal | 0.161 | 0.187 | -0.026 | 0.0000000 | 0.156 | 0.184 | -0.028 | 4.55e-10 |
CAD | LDpred1.10FCVal | LDpred2.10FCVal | 0.172 | 0.187 | -0.015 | 0.0000000 | 0.171 | 0.184 | -0.013 | 3.67e-03 |
CAD | pT+clump.10FCVal | LDpred2.10FCVal | 0.139 | 0.187 | -0.048 | 0.0000000 | 0.126 | 0.184 | -0.058 | 7.14e-15 |
CAD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.173 | 0.187 | -0.014 | 0.0369354 | 0.173 | 0.184 | -0.011 | 6.92e-03 |
CAD | LDpred2.Inf | LDpred2.10FCVal | 0.161 | 0.187 | -0.026 | 0.0000000 | 0.157 | 0.184 | -0.027 | 1.93e-09 |
CAD | LDpred1.Inf | LDpred2.10FCVal | 0.147 | 0.187 | -0.040 | 0.0000000 | 0.148 | 0.184 | -0.036 | 8.85e-10 |
CAD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.184 | 0.187 | -0.002 | 0.7172075 | 0.181 | 0.184 | -0.003 | 4.03e-01 |
CAD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.190 | 0.187 | 0.003 | 0.6848895 | 0.188 | 0.184 | 0.004 | 2.13e-03 |
CAD | lassosum.PseudoVal | LDpred2.10FCVal | 0.161 | 0.187 | -0.026 | 0.0000000 | 0.158 | 0.184 | -0.026 | 1.23e-05 |
CAD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.170 | 0.052 | 0.118 | 0.0000000 | 0.166 | 0.060 | 0.106 | 1.72e-19 |
CAD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.187 | 0.052 | 0.135 | 0.0000000 | 0.182 | 0.060 | 0.122 | 4.64e-23 |
CAD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.164 | 0.052 | 0.112 | 0.0000000 | 0.170 | 0.060 | 0.110 | 7.78e-20 |
CAD | All.MultiPRS | LDpred2.PseudoVal | 0.193 | 0.052 | 0.141 | 0.0000000 | 0.190 | 0.060 | 0.131 | 3.31e-28 |
CAD | SBLUP.Inf | LDpred2.PseudoVal | 0.161 | 0.052 | 0.109 | 0.0000000 | 0.156 | 0.060 | 0.096 | 1.28e-14 |
CAD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.172 | 0.052 | 0.120 | 0.0000000 | 0.171 | 0.060 | 0.112 | 2.11e-19 |
CAD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.187 | 0.052 | 0.135 | 0.0000000 | 0.184 | 0.060 | 0.124 | 3.62e-26 |
CAD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.173 | 0.052 | 0.121 | 0.0000000 | 0.173 | 0.060 | 0.113 | 3.87e-20 |
CAD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.052 | 0.052 | 0.000 | 1.0000000 | 0.060 | 0.060 | 0.000 | 1.00e+00 |
CAD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.153 | 0.052 | 0.101 | 0.0000000 | 0.158 | 0.060 | 0.098 | 2.72e-17 |
CAD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.184 | 0.052 | 0.132 | 0.0000000 | 0.181 | 0.060 | 0.121 | 2.83e-23 |
CAD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.139 | 0.052 | 0.087 | 0.0000000 | 0.126 | 0.060 | 0.067 | 1.49e-08 |
CAD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.161 | 0.052 | 0.109 | 0.0000000 | 0.158 | 0.060 | 0.098 | 7.19e-16 |
CAD | LDpred2.Inf | LDpred2.PseudoVal | 0.161 | 0.052 | 0.109 | 0.0000000 | 0.157 | 0.060 | 0.097 | 3.76e-15 |
CAD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.169 | 0.052 | 0.117 | 0.0000000 | 0.163 | 0.060 | 0.103 | 6.58e-17 |
CAD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.182 | 0.052 | 0.130 | 0.0000000 | 0.177 | 0.060 | 0.117 | 1.53e-21 |
CAD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.190 | 0.052 | 0.138 | 0.0000000 | 0.188 | 0.060 | 0.129 | 1.75e-27 |
CAD | lassosum.10FCVal | LDpred2.PseudoVal | 0.174 | 0.052 | 0.122 | 0.0000000 | 0.171 | 0.060 | 0.111 | 8.09e-20 |
CAD | LDpred1.Inf | LDpred2.PseudoVal | 0.147 | 0.052 | 0.095 | 0.0000000 | 0.148 | 0.060 | 0.088 | 1.73e-12 |
CAD | All.MultiPRS | LDpred2.Inf | 0.193 | 0.161 | 0.032 | 0.0000027 | 0.190 | 0.157 | 0.034 | 5.07e-10 |
CAD | LDpred1.10FCVal | LDpred2.Inf | 0.172 | 0.161 | 0.011 | 0.0028415 | 0.171 | 0.157 | 0.014 | 4.90e-02 |
CAD | SBayesR.PseudoVal | LDpred2.Inf | 0.164 | 0.161 | 0.003 | 0.5070777 | 0.170 | 0.157 | 0.013 | 1.56e-01 |
CAD | LDpred1.MultiPRS | LDpred2.Inf | 0.173 | 0.161 | 0.012 | 0.0891301 | 0.173 | 0.157 | 0.016 | 1.87e-02 |
CAD | LDpred2.Inf | LDpred2.Inf | 0.161 | 0.161 | 0.000 | 1.0000000 | 0.157 | 0.157 | 0.000 | 1.00e+00 |
CAD | MegaPRS.PseudoVal | LDpred2.Inf | 0.153 | 0.161 | -0.008 | 0.1051197 | 0.158 | 0.157 | 0.001 | 9.36e-01 |
CAD | pT+clump.10FCVal | LDpred2.Inf | 0.139 | 0.161 | -0.022 | 0.0000010 | 0.126 | 0.157 | -0.030 | 7.51e-04 |
CAD | LDpred2.10FCVal | LDpred2.Inf | 0.187 | 0.161 | 0.026 | 0.0000000 | 0.184 | 0.157 | 0.027 | 1.93e-09 |
CAD | lassosum.PseudoVal | LDpred2.Inf | 0.161 | 0.161 | 0.001 | 0.9023275 | 0.158 | 0.157 | 0.001 | 9.23e-01 |
CAD | pT+clump.MultiPRS | LDpred2.Inf | 0.170 | 0.161 | 0.009 | 0.1771650 | 0.166 | 0.157 | 0.009 | 2.30e-01 |
CAD | MegaPRS.MultiPRS | LDpred2.Inf | 0.184 | 0.161 | 0.024 | 0.0006420 | 0.181 | 0.157 | 0.024 | 3.97e-05 |
CAD | LDpred2.PseudoVal | LDpred2.Inf | 0.052 | 0.161 | -0.109 | 0.0000000 | 0.060 | 0.157 | -0.097 | 3.76e-15 |
CAD | LDpred2.MultiPRS | LDpred2.Inf | 0.190 | 0.161 | 0.029 | 0.0000303 | 0.188 | 0.157 | 0.031 | 2.95e-09 |
CAD | SBLUP.Inf | LDpred2.Inf | 0.161 | 0.161 | 0.000 | 0.6433747 | 0.156 | 0.157 | -0.001 | 2.91e-01 |
CAD | DBSLMM.PseudoVal | LDpred2.Inf | 0.169 | 0.161 | 0.008 | 0.0355195 | 0.163 | 0.157 | 0.006 | 4.59e-01 |
CAD | lassosum.MultiPRS | LDpred2.Inf | 0.187 | 0.161 | 0.026 | 0.0001912 | 0.182 | 0.157 | 0.025 | 1.16e-05 |
CAD | MegaPRS.10FCVal | LDpred2.Inf | 0.182 | 0.161 | 0.021 | 0.0000000 | 0.177 | 0.157 | 0.020 | 9.60e-04 |
CAD | lassosum.10FCVal | LDpred2.Inf | 0.174 | 0.161 | 0.014 | 0.0000000 | 0.171 | 0.157 | 0.014 | 3.91e-03 |
CAD | LDpred1.Inf | LDpred2.Inf | 0.147 | 0.161 | -0.013 | 0.0000000 | 0.148 | 0.157 | -0.009 | 4.81e-02 |
CAD | All.MultiPRS | pT+clump.MultiPRS | 0.193 | 0.170 | 0.023 | 0.0007826 | 0.190 | 0.166 | 0.025 | 3.49e-07 |
CAD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.164 | 0.170 | -0.006 | 0.3633332 | 0.170 | 0.166 | 0.004 | 5.30e-01 |
CAD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.184 | 0.170 | 0.014 | 0.0381359 | 0.181 | 0.166 | 0.015 | 2.76e-02 |
CAD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.170 | 0.170 | 0.000 | 1.0000000 | 0.166 | 0.166 | 0.000 | 1.00e+00 |
CAD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.161 | 0.170 | -0.009 | 0.2063456 | 0.158 | 0.166 | -0.008 | 1.92e-01 |
CAD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.052 | 0.170 | -0.118 | 0.0000000 | 0.060 | 0.166 | -0.106 | 1.72e-19 |
CAD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.169 | 0.170 | -0.001 | 0.8922817 | 0.163 | 0.166 | -0.003 | 6.15e-01 |
CAD | SBLUP.Inf | pT+clump.MultiPRS | 0.161 | 0.170 | -0.010 | 0.1684104 | 0.156 | 0.166 | -0.010 | 1.81e-01 |
CAD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.190 | 0.170 | 0.020 | 0.0046123 | 0.188 | 0.166 | 0.022 | 7.91e-06 |
CAD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.139 | 0.170 | -0.031 | 0.0000061 | 0.126 | 0.166 | -0.039 | 9.07e-11 |
CAD | LDpred1.Inf | pT+clump.MultiPRS | 0.147 | 0.170 | -0.023 | 0.0010093 | 0.148 | 0.166 | -0.018 | 2.49e-02 |
CAD | LDpred2.Inf | pT+clump.MultiPRS | 0.161 | 0.170 | -0.009 | 0.1771650 | 0.157 | 0.166 | -0.009 | 2.30e-01 |
CAD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.182 | 0.170 | 0.012 | 0.0800944 | 0.177 | 0.166 | 0.011 | 1.15e-01 |
CAD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.153 | 0.170 | -0.017 | 0.0121648 | 0.158 | 0.166 | -0.008 | 2.88e-01 |
CAD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.187 | 0.170 | 0.017 | 0.0150179 | 0.184 | 0.166 | 0.018 | 4.99e-04 |
CAD | lassosum.10FCVal | pT+clump.MultiPRS | 0.174 | 0.170 | 0.004 | 0.5353328 | 0.171 | 0.166 | 0.005 | 4.49e-01 |
CAD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.172 | 0.170 | 0.002 | 0.8239545 | 0.171 | 0.166 | 0.005 | 3.74e-01 |
CAD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.187 | 0.170 | 0.016 | 0.0173875 | 0.182 | 0.166 | 0.016 | 1.48e-03 |
CAD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.173 | 0.170 | 0.002 | 0.7287047 | 0.173 | 0.166 | 0.007 | 2.48e-01 |
CAD | LDpred1.Inf | pT+clump.10FCVal | 0.147 | 0.139 | 0.009 | 0.0658285 | 0.148 | 0.126 | 0.021 | 2.25e-02 |
CAD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.170 | 0.139 | 0.031 | 0.0000061 | 0.166 | 0.126 | 0.039 | 9.07e-11 |
CAD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.190 | 0.139 | 0.051 | 0.0000000 | 0.188 | 0.126 | 0.062 | 6.16e-18 |
CAD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.164 | 0.139 | 0.025 | 0.0000000 | 0.170 | 0.126 | 0.044 | 5.28e-07 |
CAD | LDpred2.10FCVal | pT+clump.10FCVal | 0.187 | 0.139 | 0.048 | 0.0000000 | 0.184 | 0.126 | 0.058 | 7.14e-15 |
CAD | SBLUP.Inf | pT+clump.10FCVal | 0.161 | 0.139 | 0.022 | 0.0000010 | 0.156 | 0.126 | 0.030 | 9.66e-04 |
CAD | lassosum.MultiPRS | pT+clump.10FCVal | 0.187 | 0.139 | 0.048 | 0.0000000 | 0.182 | 0.126 | 0.055 | 1.76e-13 |
CAD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.052 | 0.139 | -0.087 | 0.0000000 | 0.060 | 0.126 | -0.067 | 1.49e-08 |
CAD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.173 | 0.139 | 0.034 | 0.0000011 | 0.173 | 0.126 | 0.046 | 9.11e-09 |
CAD | lassosum.10FCVal | pT+clump.10FCVal | 0.174 | 0.139 | 0.036 | 0.0000000 | 0.171 | 0.126 | 0.044 | 2.29e-09 |
CAD | LDpred1.10FCVal | pT+clump.10FCVal | 0.172 | 0.139 | 0.033 | 0.0000000 | 0.171 | 0.126 | 0.045 | 3.09e-08 |
CAD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.184 | 0.139 | 0.046 | 0.0000000 | 0.181 | 0.126 | 0.054 | 1.53e-10 |
CAD | pT+clump.10FCVal | pT+clump.10FCVal | 0.139 | 0.139 | 0.000 | 1.0000000 | 0.126 | 0.126 | 0.000 | 1.00e+00 |
CAD | All.MultiPRS | pT+clump.10FCVal | 0.193 | 0.139 | 0.055 | 0.0000000 | 0.190 | 0.126 | 0.064 | 8.83e-18 |
CAD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.153 | 0.139 | 0.014 | 0.0024973 | 0.158 | 0.126 | 0.031 | 7.27e-04 |
CAD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.169 | 0.139 | 0.031 | 0.0000000 | 0.163 | 0.126 | 0.036 | 6.89e-05 |
CAD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.182 | 0.139 | 0.043 | 0.0000000 | 0.177 | 0.126 | 0.050 | 3.34e-09 |
CAD | lassosum.PseudoVal | pT+clump.10FCVal | 0.161 | 0.139 | 0.023 | 0.0000000 | 0.158 | 0.126 | 0.031 | 1.33e-06 |
CAD | LDpred2.Inf | pT+clump.10FCVal | 0.161 | 0.139 | 0.022 | 0.0000010 | 0.157 | 0.126 | 0.030 | 7.51e-04 |
CAD | LDpred1.Inf | SBayesR.PseudoVal | 0.147 | 0.164 | -0.017 | 0.0002379 | 0.148 | 0.170 | -0.022 | 1.36e-02 |
CAD | LDpred2.Inf | SBayesR.PseudoVal | 0.161 | 0.164 | -0.003 | 0.5070777 | 0.157 | 0.170 | -0.013 | 1.56e-01 |
CAD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.182 | 0.164 | 0.018 | 0.0000000 | 0.177 | 0.170 | 0.007 | 3.03e-01 |
CAD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.190 | 0.164 | 0.026 | 0.0001784 | 0.188 | 0.170 | 0.018 | 5.37e-04 |
CAD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.164 | 0.164 | 0.000 | 1.0000000 | 0.170 | 0.170 | 0.000 | 1.00e+00 |
CAD | lassosum.10FCVal | SBayesR.PseudoVal | 0.174 | 0.164 | 0.011 | 0.0046724 | 0.171 | 0.170 | 0.001 | 9.32e-01 |
CAD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.170 | 0.164 | 0.006 | 0.3633332 | 0.166 | 0.170 | -0.004 | 5.30e-01 |
CAD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.187 | 0.164 | 0.023 | 0.0010234 | 0.182 | 0.170 | 0.012 | 4.36e-02 |
CAD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.052 | 0.164 | -0.112 | 0.0000000 | 0.060 | 0.170 | -0.110 | 7.78e-20 |
CAD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.187 | 0.164 | 0.023 | 0.0000000 | 0.184 | 0.170 | 0.014 | 1.47e-02 |
CAD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.184 | 0.164 | 0.021 | 0.0029416 | 0.181 | 0.170 | 0.011 | 9.40e-02 |
CAD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.172 | 0.164 | 0.008 | 0.0010599 | 0.171 | 0.170 | 0.001 | 7.73e-01 |
CAD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.153 | 0.164 | -0.011 | 0.0002289 | 0.158 | 0.170 | -0.012 | 4.19e-02 |
CAD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.173 | 0.164 | 0.009 | 0.2083198 | 0.173 | 0.170 | 0.003 | 5.54e-01 |
CAD | All.MultiPRS | SBayesR.PseudoVal | 0.193 | 0.164 | 0.029 | 0.0000208 | 0.190 | 0.170 | 0.020 | 2.00e-04 |
CAD | SBLUP.Inf | SBayesR.PseudoVal | 0.161 | 0.164 | -0.003 | 0.4765664 | 0.156 | 0.170 | -0.014 | 1.26e-01 |
CAD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.169 | 0.164 | 0.005 | 0.0349168 | 0.163 | 0.170 | -0.007 | 1.66e-01 |
CAD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.139 | 0.164 | -0.025 | 0.0000000 | 0.126 | 0.170 | -0.044 | 5.28e-07 |
CAD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.161 | 0.164 | -0.002 | 0.3525548 | 0.158 | 0.170 | -0.012 | 2.22e-02 |
CAD | LDpred2.PseudoVal | SBLUP.Inf | 0.052 | 0.161 | -0.109 | 0.0000000 | 0.060 | 0.156 | -0.096 | 1.28e-14 |
CAD | MegaPRS.10FCVal | SBLUP.Inf | 0.182 | 0.161 | 0.022 | 0.0000000 | 0.177 | 0.156 | 0.021 | 4.89e-04 |
CAD | lassosum.MultiPRS | SBLUP.Inf | 0.187 | 0.161 | 0.026 | 0.0001704 | 0.182 | 0.156 | 0.026 | 4.54e-06 |
CAD | LDpred1.MultiPRS | SBLUP.Inf | 0.173 | 0.161 | 0.012 | 0.0840128 | 0.173 | 0.156 | 0.017 | 1.17e-02 |
CAD | All.MultiPRS | SBLUP.Inf | 0.193 | 0.161 | 0.033 | 0.0000023 | 0.190 | 0.156 | 0.034 | 1.60e-10 |
CAD | LDpred2.Inf | SBLUP.Inf | 0.161 | 0.161 | 0.000 | 0.6433747 | 0.157 | 0.156 | 0.001 | 2.91e-01 |
CAD | MegaPRS.MultiPRS | SBLUP.Inf | 0.184 | 0.161 | 0.024 | 0.0005788 | 0.181 | 0.156 | 0.025 | 1.72e-05 |
CAD | pT+clump.MultiPRS | SBLUP.Inf | 0.170 | 0.161 | 0.010 | 0.1684104 | 0.166 | 0.156 | 0.010 | 1.81e-01 |
CAD | lassosum.PseudoVal | SBLUP.Inf | 0.161 | 0.161 | 0.001 | 0.8684250 | 0.158 | 0.156 | 0.002 | 8.47e-01 |
CAD | SBayesR.PseudoVal | SBLUP.Inf | 0.164 | 0.161 | 0.003 | 0.4765664 | 0.170 | 0.156 | 0.014 | 1.26e-01 |
CAD | DBSLMM.PseudoVal | SBLUP.Inf | 0.169 | 0.161 | 0.009 | 0.0296994 | 0.163 | 0.156 | 0.007 | 3.88e-01 |
CAD | SBLUP.Inf | SBLUP.Inf | 0.161 | 0.161 | 0.000 | 1.0000000 | 0.156 | 0.156 | 0.000 | 1.00e+00 |
CAD | LDpred2.MultiPRS | SBLUP.Inf | 0.190 | 0.161 | 0.029 | 0.0000266 | 0.188 | 0.156 | 0.032 | 9.35e-10 |
CAD | pT+clump.10FCVal | SBLUP.Inf | 0.139 | 0.161 | -0.022 | 0.0000010 | 0.126 | 0.156 | -0.030 | 9.66e-04 |
CAD | LDpred1.Inf | SBLUP.Inf | 0.147 | 0.161 | -0.013 | 0.0000000 | 0.148 | 0.156 | -0.008 | 7.19e-02 |
CAD | lassosum.10FCVal | SBLUP.Inf | 0.174 | 0.161 | 0.014 | 0.0000000 | 0.171 | 0.156 | 0.015 | 1.92e-03 |
CAD | LDpred1.10FCVal | SBLUP.Inf | 0.172 | 0.161 | 0.011 | 0.0020680 | 0.171 | 0.156 | 0.015 | 3.39e-02 |
CAD | MegaPRS.PseudoVal | SBLUP.Inf | 0.153 | 0.161 | -0.008 | 0.1122044 | 0.158 | 0.156 | 0.002 | 8.63e-01 |
CAD | LDpred2.10FCVal | SBLUP.Inf | 0.187 | 0.161 | 0.026 | 0.0000000 | 0.184 | 0.156 | 0.028 | 4.55e-10 |
IBD | LDpred1.10FCVal | All.MultiPRS | 0.129 | 0.154 | -0.025 | 0.0004111 | 0.137 | 0.159 | -0.022 | 4.44e-05 |
IBD | pT+clump.10FCVal | All.MultiPRS | 0.111 | 0.154 | -0.043 | 0.0000000 | 0.109 | 0.159 | -0.051 | 5.22e-12 |
IBD | LDpred1.MultiPRS | All.MultiPRS | 0.130 | 0.154 | -0.024 | 0.0000000 | 0.138 | 0.159 | -0.021 | 4.81e-05 |
IBD | LDpred2.Inf | All.MultiPRS | 0.096 | 0.154 | -0.058 | 0.0000000 | 0.100 | 0.159 | -0.059 | 6.46e-13 |
IBD | MegaPRS.PseudoVal | All.MultiPRS | 0.148 | 0.154 | -0.006 | 0.4118363 | 0.154 | 0.159 | -0.006 | 4.04e-02 |
IBD | LDpred2.10FCVal | All.MultiPRS | 0.143 | 0.154 | -0.011 | 0.1190235 | 0.149 | 0.159 | -0.010 | 7.64e-03 |
IBD | LDpred2.MultiPRS | All.MultiPRS | 0.143 | 0.154 | -0.011 | 0.0000000 | 0.150 | 0.159 | -0.009 | 9.33e-03 |
IBD | lassosum.10FCVal | All.MultiPRS | 0.134 | 0.154 | -0.020 | 0.0047577 | 0.140 | 0.159 | -0.019 | 1.72e-04 |
IBD | LDpred1.Inf | All.MultiPRS | 0.098 | 0.154 | -0.056 | 0.0000000 | 0.103 | 0.159 | -0.056 | 2.95e-12 |
IBD | lassosum.MultiPRS | All.MultiPRS | 0.144 | 0.154 | -0.010 | 0.0000000 | 0.148 | 0.159 | -0.011 | 1.52e-03 |
IBD | MegaPRS.10FCVal | All.MultiPRS | 0.149 | 0.154 | -0.005 | 0.5070129 | 0.156 | 0.159 | -0.003 | 1.51e-01 |
IBD | All.MultiPRS | All.MultiPRS | 0.154 | 0.154 | 0.000 | 1.0000000 | 0.159 | 0.159 | 0.000 | 1.00e+00 |
IBD | SBayesR.PseudoVal | All.MultiPRS | 0.128 | 0.154 | -0.026 | 0.0001651 | 0.143 | 0.159 | -0.016 | 2.50e-03 |
IBD | MegaPRS.MultiPRS | All.MultiPRS | 0.150 | 0.154 | -0.004 | 0.0000567 | 0.156 | 0.159 | -0.004 | 9.33e-02 |
IBD | pT+clump.MultiPRS | All.MultiPRS | 0.127 | 0.154 | -0.026 | 0.0001563 | 0.136 | 0.159 | -0.023 | 3.54e-05 |
IBD | lassosum.PseudoVal | All.MultiPRS | 0.133 | 0.154 | -0.021 | 0.0029666 | 0.140 | 0.159 | -0.020 | 1.17e-04 |
IBD | LDpred2.PseudoVal | All.MultiPRS | 0.140 | 0.154 | -0.014 | 0.0458543 | 0.145 | 0.159 | -0.014 | 6.98e-04 |
IBD | DBSLMM.PseudoVal | All.MultiPRS | 0.130 | 0.154 | -0.024 | 0.0005731 | 0.136 | 0.159 | -0.023 | 8.90e-06 |
IBD | SBLUP.Inf | All.MultiPRS | 0.097 | 0.154 | -0.057 | 0.0000000 | 0.102 | 0.159 | -0.057 | 2.42e-12 |
IBD | LDpred1.Inf | DBSLMM.PseudoVal | 0.098 | 0.130 | -0.031 | 0.0000000 | 0.103 | 0.136 | -0.033 | 1.32e-04 |
IBD | LDpred2.Inf | DBSLMM.PseudoVal | 0.096 | 0.130 | -0.034 | 0.0000000 | 0.100 | 0.136 | -0.036 | 4.87e-05 |
IBD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.143 | 0.130 | 0.013 | 0.0662268 | 0.150 | 0.136 | 0.014 | 2.22e-03 |
IBD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.111 | 0.130 | -0.019 | 0.0000003 | 0.109 | 0.136 | -0.027 | 1.73e-04 |
IBD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.128 | 0.130 | -0.002 | 0.4591074 | 0.143 | 0.136 | 0.008 | 2.05e-01 |
IBD | All.MultiPRS | DBSLMM.PseudoVal | 0.154 | 0.130 | 0.024 | 0.0005731 | 0.159 | 0.136 | 0.023 | 8.90e-06 |
IBD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.149 | 0.130 | 0.019 | 0.0000000 | 0.156 | 0.136 | 0.020 | 3.42e-04 |
IBD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.150 | 0.130 | 0.020 | 0.0045482 | 0.156 | 0.136 | 0.020 | 2.52e-04 |
IBD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.140 | 0.130 | 0.010 | 0.0002824 | 0.145 | 0.136 | 0.010 | 8.69e-02 |
IBD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.133 | 0.130 | 0.003 | 0.2538426 | 0.140 | 0.136 | 0.004 | 5.21e-01 |
IBD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.127 | 0.130 | -0.002 | 0.7414075 | 0.136 | 0.136 | 0.000 | 9.70e-01 |
IBD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.148 | 0.130 | 0.018 | 0.0000000 | 0.154 | 0.136 | 0.018 | 2.16e-03 |
IBD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.144 | 0.130 | 0.014 | 0.0476597 | 0.148 | 0.136 | 0.012 | 2.08e-02 |
IBD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.143 | 0.130 | 0.013 | 0.0000003 | 0.149 | 0.136 | 0.013 | 9.22e-03 |
IBD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.134 | 0.130 | 0.004 | 0.1846104 | 0.140 | 0.136 | 0.005 | 4.80e-01 |
IBD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.129 | 0.130 | -0.001 | 0.8399492 | 0.137 | 0.136 | 0.001 | 8.45e-01 |
IBD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.136 | 0.136 | 0.000 | 1.00e+00 |
IBD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.130 | 0.130 | 0.000 | 0.9652032 | 0.138 | 0.136 | 0.002 | 6.86e-01 |
IBD | SBLUP.Inf | DBSLMM.PseudoVal | 0.097 | 0.130 | -0.033 | 0.0000000 | 0.102 | 0.136 | -0.034 | 1.24e-04 |
IBD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.128 | 0.144 | -0.016 | 0.0214889 | 0.143 | 0.148 | -0.004 | 3.78e-01 |
IBD | LDpred1.Inf | lassosum.MultiPRS | 0.098 | 0.144 | -0.045 | 0.0000000 | 0.103 | 0.148 | -0.045 | 1.04e-08 |
IBD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.149 | 0.144 | 0.006 | 0.4215430 | 0.156 | 0.148 | 0.008 | 7.12e-02 |
IBD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.5566609 | 0.150 | 0.148 | 0.002 | 4.55e-01 |
IBD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.140 | 0.144 | -0.004 | 0.5976997 | 0.145 | 0.148 | -0.002 | 5.49e-01 |
IBD | LDpred2.10FCVal | lassosum.MultiPRS | 0.143 | 0.144 | -0.001 | 0.9270913 | 0.149 | 0.148 | 0.001 | 6.78e-01 |
IBD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.127 | 0.144 | -0.016 | 0.0205501 | 0.136 | 0.148 | -0.012 | 2.19e-02 |
IBD | lassosum.MultiPRS | lassosum.MultiPRS | 0.144 | 0.144 | 0.000 | 1.0000000 | 0.148 | 0.148 | 0.000 | 1.00e+00 |
IBD | lassosum.PseudoVal | lassosum.MultiPRS | 0.133 | 0.144 | -0.010 | 0.1328697 | 0.140 | 0.148 | -0.008 | 2.65e-02 |
IBD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.130 | 0.144 | -0.014 | 0.0000000 | 0.138 | 0.148 | -0.010 | 4.54e-02 |
IBD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.150 | 0.144 | 0.006 | 0.0047085 | 0.156 | 0.148 | 0.008 | 6.22e-02 |
IBD | LDpred1.10FCVal | lassosum.MultiPRS | 0.129 | 0.144 | -0.014 | 0.0385543 | 0.137 | 0.148 | -0.011 | 3.26e-02 |
IBD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.148 | 0.144 | 0.005 | 0.5186758 | 0.154 | 0.148 | 0.006 | 2.24e-01 |
IBD | pT+clump.10FCVal | lassosum.MultiPRS | 0.111 | 0.144 | -0.033 | 0.0000029 | 0.109 | 0.148 | -0.039 | 5.45e-08 |
IBD | lassosum.10FCVal | lassosum.MultiPRS | 0.134 | 0.144 | -0.009 | 0.1746509 | 0.140 | 0.148 | -0.007 | 2.94e-02 |
IBD | SBLUP.Inf | lassosum.MultiPRS | 0.097 | 0.144 | -0.046 | 0.0000000 | 0.102 | 0.148 | -0.046 | 6.21e-09 |
IBD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.130 | 0.144 | -0.014 | 0.0476597 | 0.136 | 0.148 | -0.012 | 2.08e-02 |
IBD | All.MultiPRS | lassosum.MultiPRS | 0.154 | 0.144 | 0.010 | 0.0000000 | 0.159 | 0.148 | 0.011 | 1.52e-03 |
IBD | LDpred2.Inf | lassosum.MultiPRS | 0.096 | 0.144 | -0.048 | 0.0000000 | 0.100 | 0.148 | -0.048 | 2.35e-09 |
IBD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.148 | 0.133 | 0.015 | 0.0000024 | 0.154 | 0.140 | 0.014 | 2.36e-02 |
IBD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.140 | 0.133 | 0.007 | 0.0002660 | 0.145 | 0.140 | 0.006 | 1.22e-01 |
IBD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.130 | 0.133 | -0.003 | 0.6605448 | 0.138 | 0.140 | -0.001 | 8.25e-01 |
IBD | lassosum.PseudoVal | lassosum.PseudoVal | 0.133 | 0.133 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
IBD | LDpred2.Inf | lassosum.PseudoVal | 0.096 | 0.133 | -0.037 | 0.0000000 | 0.100 | 0.140 | -0.039 | 9.86e-05 |
IBD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.130 | 0.133 | -0.003 | 0.2538426 | 0.136 | 0.140 | -0.004 | 5.21e-01 |
IBD | SBLUP.Inf | lassosum.PseudoVal | 0.097 | 0.133 | -0.036 | 0.0000000 | 0.102 | 0.140 | -0.037 | 2.07e-04 |
IBD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.143 | 0.133 | 0.010 | 0.1737172 | 0.150 | 0.140 | 0.011 | 8.21e-03 |
IBD | pT+clump.10FCVal | lassosum.PseudoVal | 0.111 | 0.133 | -0.022 | 0.0000000 | 0.109 | 0.140 | -0.031 | 2.25e-06 |
IBD | LDpred1.Inf | lassosum.PseudoVal | 0.098 | 0.133 | -0.035 | 0.0000000 | 0.103 | 0.140 | -0.037 | 1.94e-04 |
IBD | lassosum.MultiPRS | lassosum.PseudoVal | 0.144 | 0.133 | 0.010 | 0.1328697 | 0.148 | 0.140 | 0.008 | 2.65e-02 |
IBD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.149 | 0.133 | 0.016 | 0.0000000 | 0.156 | 0.140 | 0.016 | 3.32e-03 |
IBD | All.MultiPRS | lassosum.PseudoVal | 0.154 | 0.133 | 0.021 | 0.0029666 | 0.159 | 0.140 | 0.020 | 1.17e-04 |
IBD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.128 | 0.133 | -0.006 | 0.0333499 | 0.143 | 0.140 | 0.004 | 4.66e-01 |
IBD | lassosum.10FCVal | lassosum.PseudoVal | 0.134 | 0.133 | 0.001 | 0.5891758 | 0.140 | 0.140 | 0.001 | 8.09e-01 |
IBD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.127 | 0.133 | -0.006 | 0.4168278 | 0.136 | 0.140 | -0.004 | 5.45e-01 |
IBD | LDpred1.10FCVal | lassosum.PseudoVal | 0.129 | 0.133 | -0.004 | 0.2450662 | 0.137 | 0.140 | -0.003 | 7.02e-01 |
IBD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.150 | 0.133 | 0.016 | 0.0182102 | 0.156 | 0.140 | 0.016 | 2.68e-03 |
IBD | LDpred2.10FCVal | lassosum.PseudoVal | 0.143 | 0.133 | 0.010 | 0.0000066 | 0.149 | 0.140 | 0.010 | 2.60e-02 |
IBD | lassosum.10FCVal | lassosum.10FCVal | 0.134 | 0.134 | 0.000 | 1.0000000 | 0.140 | 0.140 | 0.000 | 1.00e+00 |
IBD | pT+clump.MultiPRS | lassosum.10FCVal | 0.127 | 0.134 | -0.007 | 0.3389522 | 0.136 | 0.140 | -0.004 | 4.32e-01 |
IBD | LDpred2.MultiPRS | lassosum.10FCVal | 0.143 | 0.134 | 0.008 | 0.2242513 | 0.150 | 0.140 | 0.010 | 1.80e-02 |
IBD | SBayesR.PseudoVal | lassosum.10FCVal | 0.128 | 0.134 | -0.007 | 0.0210893 | 0.143 | 0.140 | 0.003 | 6.16e-01 |
IBD | LDpred2.10FCVal | lassosum.10FCVal | 0.143 | 0.134 | 0.009 | 0.0000029 | 0.149 | 0.140 | 0.009 | 2.12e-02 |
IBD | SBLUP.Inf | lassosum.10FCVal | 0.097 | 0.134 | -0.037 | 0.0000000 | 0.102 | 0.140 | -0.038 | 6.02e-06 |
IBD | lassosum.MultiPRS | lassosum.10FCVal | 0.144 | 0.134 | 0.009 | 0.1746509 | 0.148 | 0.140 | 0.007 | 2.94e-02 |
IBD | LDpred2.PseudoVal | lassosum.10FCVal | 0.140 | 0.134 | 0.006 | 0.0097363 | 0.145 | 0.140 | 0.005 | 2.78e-01 |
IBD | LDpred1.MultiPRS | lassosum.10FCVal | 0.130 | 0.134 | -0.004 | 0.5605556 | 0.138 | 0.140 | -0.002 | 6.72e-01 |
IBD | LDpred2.Inf | lassosum.10FCVal | 0.096 | 0.134 | -0.038 | 0.0000000 | 0.100 | 0.140 | -0.040 | 2.32e-06 |
IBD | LDpred1.10FCVal | lassosum.10FCVal | 0.129 | 0.134 | -0.005 | 0.0823417 | 0.137 | 0.140 | -0.003 | 5.42e-01 |
IBD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.150 | 0.134 | 0.015 | 0.0268119 | 0.156 | 0.140 | 0.015 | 2.77e-03 |
IBD | pT+clump.10FCVal | lassosum.10FCVal | 0.111 | 0.134 | -0.023 | 0.0000000 | 0.109 | 0.140 | -0.032 | 5.42e-05 |
IBD | All.MultiPRS | lassosum.10FCVal | 0.154 | 0.134 | 0.020 | 0.0047577 | 0.159 | 0.140 | 0.019 | 1.72e-04 |
IBD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.148 | 0.134 | 0.014 | 0.0000011 | 0.154 | 0.140 | 0.013 | 2.01e-02 |
IBD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.130 | 0.134 | -0.004 | 0.1846104 | 0.136 | 0.140 | -0.005 | 4.80e-01 |
IBD | MegaPRS.10FCVal | lassosum.10FCVal | 0.149 | 0.134 | 0.015 | 0.0000000 | 0.156 | 0.140 | 0.015 | 3.11e-03 |
IBD | lassosum.PseudoVal | lassosum.10FCVal | 0.133 | 0.134 | -0.001 | 0.5891758 | 0.140 | 0.140 | -0.001 | 8.09e-01 |
IBD | LDpred1.Inf | lassosum.10FCVal | 0.098 | 0.134 | -0.036 | 0.0000000 | 0.103 | 0.140 | -0.037 | 8.33e-06 |
IBD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.148 | 0.150 | -0.001 | 0.8316843 | 0.154 | 0.156 | -0.002 | 2.05e-01 |
IBD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.130 | 0.150 | -0.020 | 0.0045482 | 0.136 | 0.156 | -0.020 | 2.52e-04 |
IBD | SBLUP.Inf | MegaPRS.MultiPRS | 0.097 | 0.150 | -0.052 | 0.0000000 | 0.102 | 0.156 | -0.054 | 2.22e-12 |
IBD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.143 | 0.150 | -0.007 | 0.0002502 | 0.150 | 0.156 | -0.005 | 1.46e-01 |
IBD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.111 | 0.150 | -0.039 | 0.0000000 | 0.109 | 0.156 | -0.047 | 2.78e-09 |
IBD | LDpred1.Inf | MegaPRS.MultiPRS | 0.098 | 0.150 | -0.051 | 0.0000000 | 0.103 | 0.156 | -0.053 | 3.44e-12 |
IBD | LDpred2.Inf | MegaPRS.MultiPRS | 0.096 | 0.150 | -0.054 | 0.0000000 | 0.100 | 0.156 | -0.055 | 4.62e-13 |
IBD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.149 | 0.150 | 0.000 | 0.9561964 | 0.156 | 0.156 | 0.000 | 9.57e-01 |
IBD | All.MultiPRS | MegaPRS.MultiPRS | 0.154 | 0.150 | 0.004 | 0.0000567 | 0.159 | 0.156 | 0.004 | 9.33e-02 |
IBD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.128 | 0.150 | -0.022 | 0.0015893 | 0.143 | 0.156 | -0.012 | 2.12e-02 |
IBD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.134 | 0.150 | -0.015 | 0.0268119 | 0.140 | 0.156 | -0.015 | 2.77e-03 |
IBD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.127 | 0.150 | -0.022 | 0.0015103 | 0.136 | 0.156 | -0.020 | 9.11e-04 |
IBD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.144 | 0.150 | -0.006 | 0.0047085 | 0.148 | 0.156 | -0.008 | 6.22e-02 |
IBD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.140 | 0.150 | -0.010 | 0.1653684 | 0.145 | 0.156 | -0.010 | 2.33e-02 |
IBD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.143 | 0.150 | -0.007 | 0.3420012 | 0.149 | 0.156 | -0.006 | 8.07e-02 |
IBD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.133 | 0.150 | -0.016 | 0.0182102 | 0.140 | 0.156 | -0.016 | 2.68e-03 |
IBD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.129 | 0.150 | -0.020 | 0.0034472 | 0.137 | 0.156 | -0.019 | 1.24e-04 |
IBD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.150 | 0.150 | 0.000 | 1.0000000 | 0.156 | 0.156 | 0.000 | 1.00e+00 |
IBD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.130 | 0.150 | -0.020 | 0.0000000 | 0.138 | 0.156 | -0.018 | 1.87e-04 |
IBD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.148 | 0.148 | 0.000 | 1.0000000 | 0.154 | 0.154 | 0.000 | 1.00e+00 |
IBD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.0225291 | 0.149 | 0.154 | -0.004 | 3.07e-01 |
IBD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.130 | 0.148 | -0.018 | 0.0098575 | 0.138 | 0.154 | -0.016 | 1.25e-03 |
IBD | LDpred2.Inf | MegaPRS.PseudoVal | 0.096 | 0.148 | -0.052 | 0.0000000 | 0.100 | 0.154 | -0.053 | 1.50e-13 |
IBD | LDpred1.Inf | MegaPRS.PseudoVal | 0.098 | 0.148 | -0.050 | 0.0000000 | 0.103 | 0.154 | -0.051 | 2.08e-12 |
IBD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.144 | 0.148 | -0.005 | 0.5186758 | 0.148 | 0.154 | -0.006 | 2.24e-01 |
IBD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.149 | 0.148 | 0.001 | 0.2394788 | 0.156 | 0.154 | 0.002 | 2.73e-01 |
IBD | All.MultiPRS | MegaPRS.PseudoVal | 0.154 | 0.148 | 0.006 | 0.4118363 | 0.159 | 0.154 | 0.006 | 4.04e-02 |
IBD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.128 | 0.148 | -0.021 | 0.0000000 | 0.143 | 0.154 | -0.010 | 8.22e-02 |
IBD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.130 | 0.148 | -0.018 | 0.0000000 | 0.136 | 0.154 | -0.018 | 2.16e-03 |
IBD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.127 | 0.148 | -0.021 | 0.0030939 | 0.136 | 0.154 | -0.018 | 5.33e-03 |
IBD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.133 | 0.148 | -0.015 | 0.0000024 | 0.140 | 0.154 | -0.014 | 2.36e-02 |
IBD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.140 | 0.148 | -0.008 | 0.0034739 | 0.145 | 0.154 | -0.008 | 1.26e-01 |
IBD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.134 | 0.148 | -0.014 | 0.0000011 | 0.140 | 0.154 | -0.013 | 2.01e-02 |
IBD | SBLUP.Inf | MegaPRS.PseudoVal | 0.097 | 0.148 | -0.051 | 0.0000000 | 0.102 | 0.154 | -0.052 | 7.33e-13 |
IBD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.129 | 0.148 | -0.019 | 0.0000000 | 0.137 | 0.154 | -0.017 | 6.11e-04 |
IBD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.111 | 0.148 | -0.037 | 0.0000000 | 0.109 | 0.154 | -0.045 | 1.29e-07 |
IBD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.143 | 0.148 | -0.005 | 0.4324948 | 0.150 | 0.154 | -0.003 | 4.52e-01 |
IBD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.150 | 0.148 | 0.001 | 0.8316843 | 0.156 | 0.154 | 0.002 | 2.05e-01 |
IBD | lassosum.10FCVal | MegaPRS.10FCVal | 0.134 | 0.149 | -0.015 | 0.0000000 | 0.140 | 0.156 | -0.015 | 3.11e-03 |
IBD | SBLUP.Inf | MegaPRS.10FCVal | 0.097 | 0.149 | -0.052 | 0.0000000 | 0.102 | 0.156 | -0.054 | 3.29e-12 |
IBD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.128 | 0.149 | -0.022 | 0.0000000 | 0.143 | 0.156 | -0.012 | 2.54e-02 |
IBD | All.MultiPRS | MegaPRS.10FCVal | 0.154 | 0.149 | 0.005 | 0.5070129 | 0.159 | 0.156 | 0.003 | 1.51e-01 |
IBD | LDpred2.Inf | MegaPRS.10FCVal | 0.096 | 0.149 | -0.053 | 0.0000000 | 0.100 | 0.156 | -0.055 | 6.93e-13 |
IBD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.144 | 0.149 | -0.006 | 0.4215430 | 0.148 | 0.156 | -0.008 | 7.12e-02 |
IBD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.143 | 0.149 | -0.006 | 0.0018409 | 0.149 | 0.156 | -0.007 | 9.44e-02 |
IBD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.130 | 0.149 | -0.019 | 0.0061344 | 0.138 | 0.156 | -0.018 | 2.93e-04 |
IBD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.140 | 0.149 | -0.009 | 0.0001443 | 0.145 | 0.156 | -0.010 | 2.90e-02 |
IBD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.129 | 0.149 | -0.020 | 0.0000000 | 0.137 | 0.156 | -0.019 | 1.91e-04 |
IBD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.127 | 0.149 | -0.022 | 0.0018334 | 0.136 | 0.156 | -0.020 | 1.10e-03 |
IBD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.111 | 0.149 | -0.038 | 0.0000000 | 0.109 | 0.156 | -0.047 | 5.16e-09 |
IBD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.133 | 0.149 | -0.016 | 0.0000000 | 0.140 | 0.156 | -0.016 | 3.32e-03 |
IBD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.148 | 0.149 | -0.001 | 0.2394788 | 0.154 | 0.156 | -0.002 | 2.73e-01 |
IBD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.150 | 0.149 | 0.000 | 0.9561964 | 0.156 | 0.156 | 0.000 | 9.57e-01 |
IBD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.149 | 0.149 | 0.000 | 1.0000000 | 0.156 | 0.156 | 0.000 | 1.00e+00 |
IBD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.143 | 0.149 | -0.007 | 0.3455521 | 0.150 | 0.156 | -0.005 | 1.67e-01 |
IBD | LDpred1.Inf | MegaPRS.10FCVal | 0.098 | 0.149 | -0.051 | 0.0000000 | 0.103 | 0.156 | -0.053 | 5.49e-12 |
IBD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.130 | 0.149 | -0.019 | 0.0000000 | 0.136 | 0.156 | -0.020 | 3.42e-04 |
IBD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.127 | 0.130 | -0.003 | 0.7080726 | 0.136 | 0.138 | -0.002 | 7.07e-01 |
IBD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.149 | 0.130 | 0.019 | 0.0061344 | 0.156 | 0.138 | 0.018 | 2.93e-04 |
IBD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.140 | 0.130 | 0.010 | 0.1572826 | 0.145 | 0.138 | 0.007 | 2.01e-01 |
IBD | LDpred1.Inf | LDpred1.MultiPRS | 0.098 | 0.130 | -0.032 | 0.0000062 | 0.103 | 0.138 | -0.035 | 5.33e-12 |
IBD | lassosum.10FCVal | LDpred1.MultiPRS | 0.134 | 0.130 | 0.004 | 0.5605556 | 0.140 | 0.138 | 0.002 | 6.72e-01 |
IBD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.129 | 0.130 | -0.001 | 0.8960838 | 0.137 | 0.138 | -0.001 | 4.56e-01 |
IBD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.144 | 0.130 | 0.014 | 0.0000000 | 0.148 | 0.138 | 0.010 | 4.54e-02 |
IBD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.130 | 0.130 | 0.000 | 1.0000000 | 0.138 | 0.138 | 0.000 | 1.00e+00 |
IBD | All.MultiPRS | LDpred1.MultiPRS | 0.154 | 0.130 | 0.024 | 0.0000000 | 0.159 | 0.138 | 0.021 | 4.81e-05 |
IBD | LDpred2.Inf | LDpred1.MultiPRS | 0.096 | 0.130 | -0.034 | 0.0000013 | 0.100 | 0.138 | -0.038 | 1.94e-10 |
IBD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.150 | 0.130 | 0.020 | 0.0000000 | 0.156 | 0.138 | 0.018 | 1.87e-04 |
IBD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.111 | 0.130 | -0.019 | 0.0062723 | 0.109 | 0.138 | -0.030 | 3.59e-04 |
IBD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.133 | 0.130 | 0.003 | 0.6605448 | 0.140 | 0.138 | 0.001 | 8.25e-01 |
IBD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.128 | 0.130 | -0.002 | 0.7211151 | 0.143 | 0.138 | 0.005 | 3.38e-01 |
IBD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.130 | 0.130 | 0.000 | 0.9652032 | 0.136 | 0.138 | -0.002 | 6.86e-01 |
IBD | SBLUP.Inf | LDpred1.MultiPRS | 0.097 | 0.130 | -0.033 | 0.0000030 | 0.102 | 0.138 | -0.036 | 1.27e-09 |
IBD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.143 | 0.130 | 0.013 | 0.0000000 | 0.150 | 0.138 | 0.012 | 5.10e-03 |
IBD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.148 | 0.130 | 0.018 | 0.0098575 | 0.154 | 0.138 | 0.016 | 1.25e-03 |
IBD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.143 | 0.130 | 0.013 | 0.0646066 | 0.149 | 0.138 | 0.011 | 4.92e-03 |
IBD | LDpred1.10FCVal | LDpred1.Inf | 0.129 | 0.098 | 0.031 | 0.0000000 | 0.137 | 0.103 | 0.034 | 3.86e-15 |
IBD | LDpred2.PseudoVal | LDpred1.Inf | 0.140 | 0.098 | 0.042 | 0.0000000 | 0.145 | 0.103 | 0.042 | 3.57e-06 |
IBD | LDpred1.MultiPRS | LDpred1.Inf | 0.130 | 0.098 | 0.032 | 0.0000062 | 0.138 | 0.103 | 0.035 | 5.33e-12 |
IBD | pT+clump.MultiPRS | LDpred1.Inf | 0.127 | 0.098 | 0.029 | 0.0000314 | 0.136 | 0.103 | 0.033 | 5.55e-05 |
IBD | MegaPRS.PseudoVal | LDpred1.Inf | 0.148 | 0.098 | 0.050 | 0.0000000 | 0.154 | 0.103 | 0.051 | 2.08e-12 |
IBD | MegaPRS.MultiPRS | LDpred1.Inf | 0.150 | 0.098 | 0.051 | 0.0000000 | 0.156 | 0.103 | 0.053 | 3.44e-12 |
IBD | pT+clump.10FCVal | LDpred1.Inf | 0.111 | 0.098 | 0.013 | 0.0198605 | 0.109 | 0.103 | 0.006 | 6.03e-01 |
IBD | lassosum.PseudoVal | LDpred1.Inf | 0.133 | 0.098 | 0.035 | 0.0000000 | 0.140 | 0.103 | 0.037 | 1.94e-04 |
IBD | LDpred2.Inf | LDpred1.Inf | 0.096 | 0.098 | -0.002 | 0.1397461 | 0.100 | 0.103 | -0.003 | 3.79e-01 |
IBD | DBSLMM.PseudoVal | LDpred1.Inf | 0.130 | 0.098 | 0.031 | 0.0000000 | 0.136 | 0.103 | 0.033 | 1.32e-04 |
IBD | SBLUP.Inf | LDpred1.Inf | 0.097 | 0.098 | -0.001 | 0.4918531 | 0.102 | 0.103 | -0.001 | 7.84e-01 |
IBD | LDpred2.MultiPRS | LDpred1.Inf | 0.143 | 0.098 | 0.044 | 0.0000000 | 0.150 | 0.103 | 0.047 | 2.87e-09 |
IBD | lassosum.10FCVal | LDpred1.Inf | 0.134 | 0.098 | 0.036 | 0.0000000 | 0.140 | 0.103 | 0.037 | 8.33e-06 |
IBD | LDpred1.Inf | LDpred1.Inf | 0.098 | 0.098 | 0.000 | 1.0000000 | 0.103 | 0.103 | 0.000 | 1.00e+00 |
IBD | lassosum.MultiPRS | LDpred1.Inf | 0.144 | 0.098 | 0.045 | 0.0000000 | 0.148 | 0.103 | 0.045 | 1.04e-08 |
IBD | MegaPRS.10FCVal | LDpred1.Inf | 0.149 | 0.098 | 0.051 | 0.0000000 | 0.156 | 0.103 | 0.053 | 5.49e-12 |
IBD | All.MultiPRS | LDpred1.Inf | 0.154 | 0.098 | 0.056 | 0.0000000 | 0.159 | 0.103 | 0.056 | 2.95e-12 |
IBD | SBayesR.PseudoVal | LDpred1.Inf | 0.128 | 0.098 | 0.029 | 0.0000000 | 0.143 | 0.103 | 0.040 | 2.28e-06 |
IBD | LDpred2.10FCVal | LDpred1.Inf | 0.143 | 0.098 | 0.045 | 0.0000000 | 0.149 | 0.103 | 0.046 | 6.70e-10 |
IBD | All.MultiPRS | LDpred1.10FCVal | 0.154 | 0.129 | 0.025 | 0.0004111 | 0.159 | 0.137 | 0.022 | 4.44e-05 |
IBD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.127 | 0.129 | -0.002 | 0.8078136 | 0.136 | 0.137 | -0.001 | 8.72e-01 |
IBD | LDpred1.10FCVal | LDpred1.10FCVal | 0.129 | 0.129 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
IBD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.128 | 0.129 | -0.002 | 0.5754796 | 0.143 | 0.137 | 0.006 | 2.63e-01 |
IBD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.130 | 0.129 | 0.001 | 0.8960838 | 0.138 | 0.137 | 0.001 | 4.56e-01 |
IBD | SBLUP.Inf | LDpred1.10FCVal | 0.097 | 0.129 | -0.032 | 0.0000000 | 0.102 | 0.137 | -0.035 | 6.36e-11 |
IBD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.148 | 0.129 | 0.019 | 0.0000000 | 0.154 | 0.137 | 0.017 | 6.11e-04 |
IBD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.140 | 0.129 | 0.011 | 0.0004255 | 0.145 | 0.137 | 0.008 | 1.69e-01 |
IBD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.143 | 0.129 | 0.013 | 0.0541994 | 0.150 | 0.137 | 0.013 | 4.77e-03 |
IBD | LDpred2.Inf | LDpred1.10FCVal | 0.096 | 0.129 | -0.033 | 0.0000000 | 0.100 | 0.137 | -0.037 | 6.92e-12 |
IBD | LDpred1.Inf | LDpred1.10FCVal | 0.098 | 0.129 | -0.031 | 0.0000000 | 0.103 | 0.137 | -0.034 | 3.86e-15 |
IBD | pT+clump.10FCVal | LDpred1.10FCVal | 0.111 | 0.129 | -0.018 | 0.0000340 | 0.109 | 0.137 | -0.028 | 1.04e-03 |
IBD | LDpred2.10FCVal | LDpred1.10FCVal | 0.143 | 0.129 | 0.014 | 0.0000000 | 0.149 | 0.137 | 0.012 | 3.99e-03 |
IBD | lassosum.PseudoVal | LDpred1.10FCVal | 0.133 | 0.129 | 0.004 | 0.2450662 | 0.140 | 0.137 | 0.003 | 7.02e-01 |
IBD | lassosum.10FCVal | LDpred1.10FCVal | 0.134 | 0.129 | 0.005 | 0.0823417 | 0.140 | 0.137 | 0.003 | 5.42e-01 |
IBD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.150 | 0.129 | 0.020 | 0.0034472 | 0.156 | 0.137 | 0.019 | 1.24e-04 |
IBD | lassosum.MultiPRS | LDpred1.10FCVal | 0.144 | 0.129 | 0.014 | 0.0385543 | 0.148 | 0.137 | 0.011 | 3.26e-02 |
IBD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.149 | 0.129 | 0.020 | 0.0000000 | 0.156 | 0.137 | 0.019 | 1.91e-04 |
IBD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.130 | 0.129 | 0.001 | 0.8399492 | 0.136 | 0.137 | -0.001 | 8.45e-01 |
IBD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.128 | 0.143 | -0.015 | 0.0311652 | 0.143 | 0.150 | -0.007 | 9.69e-02 |
IBD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.150 | 0.150 | 0.000 | 1.00e+00 |
IBD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.111 | 0.143 | -0.032 | 0.0000059 | 0.109 | 0.150 | -0.042 | 1.01e-09 |
IBD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.140 | 0.143 | -0.003 | 0.6993715 | 0.145 | 0.150 | -0.005 | 1.09e-02 |
IBD | LDpred2.Inf | LDpred2.MultiPRS | 0.096 | 0.143 | -0.047 | 0.0000000 | 0.100 | 0.150 | -0.050 | 4.79e-10 |
IBD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.127 | 0.143 | -0.015 | 0.0296261 | 0.136 | 0.150 | -0.014 | 6.14e-03 |
IBD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.148 | 0.143 | 0.005 | 0.4324948 | 0.154 | 0.150 | 0.003 | 4.52e-01 |
IBD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.144 | 0.143 | 0.001 | 0.5566609 | 0.148 | 0.150 | -0.002 | 4.55e-01 |
IBD | LDpred1.Inf | LDpred2.MultiPRS | 0.098 | 0.143 | -0.044 | 0.0000000 | 0.103 | 0.150 | -0.047 | 2.87e-09 |
IBD | lassosum.10FCVal | LDpred2.MultiPRS | 0.134 | 0.143 | -0.008 | 0.2242513 | 0.140 | 0.150 | -0.010 | 1.80e-02 |
IBD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.149 | 0.143 | 0.007 | 0.3455521 | 0.156 | 0.150 | 0.005 | 1.67e-01 |
IBD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.150 | 0.143 | 0.007 | 0.0002502 | 0.156 | 0.150 | 0.005 | 1.46e-01 |
IBD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.143 | 0.143 | 0.000 | 0.9607417 | 0.149 | 0.150 | -0.001 | 4.47e-01 |
IBD | All.MultiPRS | LDpred2.MultiPRS | 0.154 | 0.143 | 0.011 | 0.0000000 | 0.159 | 0.150 | 0.009 | 9.33e-03 |
IBD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.129 | 0.143 | -0.013 | 0.0541994 | 0.137 | 0.150 | -0.013 | 4.77e-03 |
IBD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.130 | 0.143 | -0.013 | 0.0662268 | 0.136 | 0.150 | -0.014 | 2.22e-03 |
IBD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.130 | 0.143 | -0.013 | 0.0000000 | 0.138 | 0.150 | -0.012 | 5.10e-03 |
IBD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.133 | 0.143 | -0.010 | 0.1737172 | 0.140 | 0.150 | -0.011 | 8.21e-03 |
IBD | SBLUP.Inf | LDpred2.MultiPRS | 0.097 | 0.143 | -0.045 | 0.0000000 | 0.102 | 0.150 | -0.048 | 2.15e-09 |
IBD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.148 | 0.143 | 0.005 | 0.0225291 | 0.154 | 0.149 | 0.004 | 3.07e-01 |
IBD | LDpred2.10FCVal | LDpred2.10FCVal | 0.143 | 0.143 | 0.000 | 1.0000000 | 0.149 | 0.149 | 0.000 | 1.00e+00 |
IBD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.149 | 0.143 | 0.006 | 0.0018409 | 0.156 | 0.149 | 0.007 | 9.44e-02 |
IBD | All.MultiPRS | LDpred2.10FCVal | 0.154 | 0.143 | 0.011 | 0.1190235 | 0.159 | 0.149 | 0.010 | 7.64e-03 |
IBD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.128 | 0.143 | -0.015 | 0.0000000 | 0.143 | 0.149 | -0.006 | 2.05e-01 |
IBD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.130 | 0.143 | -0.013 | 0.0000003 | 0.136 | 0.149 | -0.013 | 9.22e-03 |
IBD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.127 | 0.143 | -0.016 | 0.0263884 | 0.136 | 0.149 | -0.013 | 1.25e-02 |
IBD | lassosum.MultiPRS | LDpred2.10FCVal | 0.144 | 0.143 | 0.001 | 0.9270913 | 0.148 | 0.149 | -0.001 | 6.78e-01 |
IBD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.140 | 0.143 | -0.003 | 0.0200925 | 0.145 | 0.149 | -0.004 | 1.35e-01 |
IBD | lassosum.10FCVal | LDpred2.10FCVal | 0.134 | 0.143 | -0.009 | 0.0000029 | 0.140 | 0.149 | -0.009 | 2.12e-02 |
IBD | SBLUP.Inf | LDpred2.10FCVal | 0.097 | 0.143 | -0.046 | 0.0000000 | 0.102 | 0.149 | -0.047 | 3.33e-10 |
IBD | LDpred1.10FCVal | LDpred2.10FCVal | 0.129 | 0.143 | -0.014 | 0.0000000 | 0.137 | 0.149 | -0.012 | 3.99e-03 |
IBD | pT+clump.10FCVal | LDpred2.10FCVal | 0.111 | 0.143 | -0.032 | 0.0000000 | 0.109 | 0.149 | -0.041 | 2.40e-08 |
IBD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.130 | 0.143 | -0.013 | 0.0646066 | 0.138 | 0.149 | -0.011 | 4.92e-03 |
IBD | LDpred2.Inf | LDpred2.10FCVal | 0.096 | 0.143 | -0.047 | 0.0000000 | 0.100 | 0.149 | -0.049 | 6.16e-11 |
IBD | LDpred1.Inf | LDpred2.10FCVal | 0.098 | 0.143 | -0.045 | 0.0000000 | 0.103 | 0.149 | -0.046 | 6.70e-10 |
IBD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.150 | 0.143 | 0.007 | 0.3420012 | 0.156 | 0.149 | 0.006 | 8.07e-02 |
IBD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.143 | 0.143 | 0.000 | 0.9607417 | 0.150 | 0.149 | 0.001 | 4.47e-01 |
IBD | lassosum.PseudoVal | LDpred2.10FCVal | 0.133 | 0.143 | -0.010 | 0.0000066 | 0.140 | 0.149 | -0.010 | 2.60e-02 |
IBD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.127 | 0.140 | -0.012 | 0.0740107 | 0.136 | 0.145 | -0.009 | 1.08e-01 |
IBD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.144 | 0.140 | 0.004 | 0.5976997 | 0.148 | 0.145 | 0.002 | 5.49e-01 |
IBD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.128 | 0.140 | -0.012 | 0.0000001 | 0.143 | 0.145 | -0.002 | 6.60e-01 |
IBD | All.MultiPRS | LDpred2.PseudoVal | 0.154 | 0.140 | 0.014 | 0.0458543 | 0.159 | 0.145 | 0.014 | 6.98e-04 |
IBD | SBLUP.Inf | LDpred2.PseudoVal | 0.097 | 0.140 | -0.043 | 0.0000000 | 0.102 | 0.145 | -0.043 | 3.15e-06 |
IBD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.129 | 0.140 | -0.011 | 0.0004255 | 0.137 | 0.145 | -0.008 | 1.69e-01 |
IBD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.143 | 0.140 | 0.003 | 0.0200925 | 0.149 | 0.145 | 0.004 | 1.35e-01 |
IBD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.130 | 0.140 | -0.010 | 0.1572826 | 0.138 | 0.145 | -0.007 | 2.01e-01 |
IBD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.140 | 0.140 | 0.000 | 1.0000000 | 0.145 | 0.145 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.148 | 0.140 | 0.008 | 0.0034739 | 0.154 | 0.145 | 0.008 | 1.26e-01 |
IBD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.150 | 0.140 | 0.010 | 0.1653684 | 0.156 | 0.145 | 0.010 | 2.33e-02 |
IBD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.111 | 0.140 | -0.029 | 0.0000000 | 0.109 | 0.145 | -0.037 | 2.09e-08 |
IBD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.133 | 0.140 | -0.007 | 0.0002660 | 0.140 | 0.145 | -0.006 | 1.22e-01 |
IBD | LDpred2.Inf | LDpred2.PseudoVal | 0.096 | 0.140 | -0.044 | 0.0000000 | 0.100 | 0.145 | -0.045 | 1.12e-06 |
IBD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.130 | 0.140 | -0.010 | 0.0002824 | 0.136 | 0.145 | -0.010 | 8.69e-02 |
IBD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.149 | 0.140 | 0.009 | 0.0001443 | 0.156 | 0.145 | 0.010 | 2.90e-02 |
IBD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.143 | 0.140 | 0.003 | 0.6993715 | 0.150 | 0.145 | 0.005 | 1.09e-02 |
IBD | lassosum.10FCVal | LDpred2.PseudoVal | 0.134 | 0.140 | -0.006 | 0.0097363 | 0.140 | 0.145 | -0.005 | 2.78e-01 |
IBD | LDpred1.Inf | LDpred2.PseudoVal | 0.098 | 0.140 | -0.042 | 0.0000000 | 0.103 | 0.145 | -0.042 | 3.57e-06 |
IBD | All.MultiPRS | LDpred2.Inf | 0.154 | 0.096 | 0.058 | 0.0000000 | 0.159 | 0.100 | 0.059 | 6.46e-13 |
IBD | LDpred1.10FCVal | LDpred2.Inf | 0.129 | 0.096 | 0.033 | 0.0000000 | 0.137 | 0.100 | 0.037 | 6.92e-12 |
IBD | SBayesR.PseudoVal | LDpred2.Inf | 0.128 | 0.096 | 0.032 | 0.0000000 | 0.143 | 0.100 | 0.043 | 1.71e-06 |
IBD | LDpred1.MultiPRS | LDpred2.Inf | 0.130 | 0.096 | 0.034 | 0.0000013 | 0.138 | 0.100 | 0.038 | 1.94e-10 |
IBD | LDpred2.Inf | LDpred2.Inf | 0.096 | 0.096 | 0.000 | 1.0000000 | 0.100 | 0.100 | 0.000 | 1.00e+00 |
IBD | MegaPRS.PseudoVal | LDpred2.Inf | 0.148 | 0.096 | 0.052 | 0.0000000 | 0.154 | 0.100 | 0.053 | 1.50e-13 |
IBD | pT+clump.10FCVal | LDpred2.Inf | 0.111 | 0.096 | 0.015 | 0.0081408 | 0.109 | 0.100 | 0.008 | 4.56e-01 |
IBD | LDpred2.10FCVal | LDpred2.Inf | 0.143 | 0.096 | 0.047 | 0.0000000 | 0.149 | 0.100 | 0.049 | 6.16e-11 |
IBD | lassosum.PseudoVal | LDpred2.Inf | 0.133 | 0.096 | 0.037 | 0.0000000 | 0.140 | 0.100 | 0.039 | 9.86e-05 |
IBD | pT+clump.MultiPRS | LDpred2.Inf | 0.127 | 0.096 | 0.031 | 0.0000071 | 0.136 | 0.100 | 0.036 | 2.73e-05 |
IBD | MegaPRS.MultiPRS | LDpred2.Inf | 0.150 | 0.096 | 0.054 | 0.0000000 | 0.156 | 0.100 | 0.055 | 4.62e-13 |
IBD | LDpred2.PseudoVal | LDpred2.Inf | 0.140 | 0.096 | 0.044 | 0.0000000 | 0.145 | 0.100 | 0.045 | 1.12e-06 |
IBD | LDpred2.MultiPRS | LDpred2.Inf | 0.143 | 0.096 | 0.047 | 0.0000000 | 0.150 | 0.100 | 0.050 | 4.79e-10 |
IBD | SBLUP.Inf | LDpred2.Inf | 0.097 | 0.096 | 0.001 | 0.0123438 | 0.102 | 0.100 | 0.002 | 5.05e-02 |
IBD | DBSLMM.PseudoVal | LDpred2.Inf | 0.130 | 0.096 | 0.034 | 0.0000000 | 0.136 | 0.100 | 0.036 | 4.87e-05 |
IBD | lassosum.MultiPRS | LDpred2.Inf | 0.144 | 0.096 | 0.048 | 0.0000000 | 0.148 | 0.100 | 0.048 | 2.35e-09 |
IBD | MegaPRS.10FCVal | LDpred2.Inf | 0.149 | 0.096 | 0.053 | 0.0000000 | 0.156 | 0.100 | 0.055 | 6.93e-13 |
IBD | lassosum.10FCVal | LDpred2.Inf | 0.134 | 0.096 | 0.038 | 0.0000000 | 0.140 | 0.100 | 0.040 | 2.32e-06 |
IBD | LDpred1.Inf | LDpred2.Inf | 0.098 | 0.096 | 0.002 | 0.1397461 | 0.103 | 0.100 | 0.003 | 3.79e-01 |
IBD | All.MultiPRS | pT+clump.MultiPRS | 0.154 | 0.127 | 0.026 | 0.0001563 | 0.159 | 0.136 | 0.023 | 3.54e-05 |
IBD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.128 | 0.127 | 0.000 | 0.9861299 | 0.143 | 0.136 | 0.007 | 2.52e-01 |
IBD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.150 | 0.127 | 0.022 | 0.0015103 | 0.156 | 0.136 | 0.020 | 9.11e-04 |
IBD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.127 | 0.127 | 0.000 | 1.0000000 | 0.136 | 0.136 | 0.000 | 1.00e+00 |
IBD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.133 | 0.127 | 0.006 | 0.4168278 | 0.140 | 0.136 | 0.004 | 5.45e-01 |
IBD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.140 | 0.127 | 0.012 | 0.0740107 | 0.145 | 0.136 | 0.009 | 1.08e-01 |
IBD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.130 | 0.127 | 0.002 | 0.7414075 | 0.136 | 0.136 | 0.000 | 9.70e-01 |
IBD | SBLUP.Inf | pT+clump.MultiPRS | 0.097 | 0.127 | -0.030 | 0.0000157 | 0.102 | 0.136 | -0.034 | 6.41e-05 |
IBD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.143 | 0.127 | 0.015 | 0.0296261 | 0.150 | 0.136 | 0.014 | 6.14e-03 |
IBD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.111 | 0.127 | -0.017 | 0.0184451 | 0.109 | 0.136 | -0.027 | 1.36e-07 |
IBD | LDpred1.Inf | pT+clump.MultiPRS | 0.098 | 0.127 | -0.029 | 0.0000314 | 0.103 | 0.136 | -0.033 | 5.55e-05 |
IBD | LDpred2.Inf | pT+clump.MultiPRS | 0.096 | 0.127 | -0.031 | 0.0000071 | 0.100 | 0.136 | -0.036 | 2.73e-05 |
IBD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.149 | 0.127 | 0.022 | 0.0018334 | 0.156 | 0.136 | 0.020 | 1.10e-03 |
IBD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.148 | 0.127 | 0.021 | 0.0030939 | 0.154 | 0.136 | 0.018 | 5.33e-03 |
IBD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.143 | 0.127 | 0.016 | 0.0263884 | 0.149 | 0.136 | 0.013 | 1.25e-02 |
IBD | lassosum.10FCVal | pT+clump.MultiPRS | 0.134 | 0.127 | 0.007 | 0.3389522 | 0.140 | 0.136 | 0.004 | 4.32e-01 |
IBD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.129 | 0.127 | 0.002 | 0.8078136 | 0.137 | 0.136 | 0.001 | 8.72e-01 |
IBD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.144 | 0.127 | 0.016 | 0.0205501 | 0.148 | 0.136 | 0.012 | 2.19e-02 |
IBD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.130 | 0.127 | 0.003 | 0.7080726 | 0.138 | 0.136 | 0.002 | 7.07e-01 |
IBD | LDpred1.Inf | pT+clump.10FCVal | 0.098 | 0.111 | -0.013 | 0.0198605 | 0.103 | 0.109 | -0.006 | 6.03e-01 |
IBD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.127 | 0.111 | 0.017 | 0.0184451 | 0.136 | 0.109 | 0.027 | 1.36e-07 |
IBD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.143 | 0.111 | 0.032 | 0.0000059 | 0.150 | 0.109 | 0.042 | 1.01e-09 |
IBD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.128 | 0.111 | 0.017 | 0.0000087 | 0.143 | 0.109 | 0.035 | 2.07e-06 |
IBD | LDpred2.10FCVal | pT+clump.10FCVal | 0.143 | 0.111 | 0.032 | 0.0000000 | 0.149 | 0.109 | 0.041 | 2.40e-08 |
IBD | SBLUP.Inf | pT+clump.10FCVal | 0.097 | 0.111 | -0.014 | 0.0153935 | 0.102 | 0.109 | -0.006 | 5.65e-01 |
IBD | lassosum.MultiPRS | pT+clump.10FCVal | 0.144 | 0.111 | 0.033 | 0.0000029 | 0.148 | 0.109 | 0.039 | 5.45e-08 |
IBD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.140 | 0.111 | 0.029 | 0.0000000 | 0.145 | 0.109 | 0.037 | 2.09e-08 |
IBD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.130 | 0.111 | 0.019 | 0.0062723 | 0.138 | 0.109 | 0.030 | 3.59e-04 |
IBD | lassosum.10FCVal | pT+clump.10FCVal | 0.134 | 0.111 | 0.023 | 0.0000000 | 0.140 | 0.109 | 0.032 | 5.42e-05 |
IBD | LDpred1.10FCVal | pT+clump.10FCVal | 0.129 | 0.111 | 0.018 | 0.0000340 | 0.137 | 0.109 | 0.028 | 1.04e-03 |
IBD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.150 | 0.111 | 0.039 | 0.0000000 | 0.156 | 0.109 | 0.047 | 2.78e-09 |
IBD | pT+clump.10FCVal | pT+clump.10FCVal | 0.111 | 0.111 | 0.000 | 1.0000000 | 0.109 | 0.109 | 0.000 | 1.00e+00 |
IBD | All.MultiPRS | pT+clump.10FCVal | 0.154 | 0.111 | 0.043 | 0.0000000 | 0.159 | 0.109 | 0.051 | 5.22e-12 |
IBD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.148 | 0.111 | 0.037 | 0.0000000 | 0.154 | 0.109 | 0.045 | 1.29e-07 |
IBD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.130 | 0.111 | 0.019 | 0.0000003 | 0.136 | 0.109 | 0.027 | 1.73e-04 |
IBD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.149 | 0.111 | 0.038 | 0.0000000 | 0.156 | 0.109 | 0.047 | 5.16e-09 |
IBD | lassosum.PseudoVal | pT+clump.10FCVal | 0.133 | 0.111 | 0.022 | 0.0000000 | 0.140 | 0.109 | 0.031 | 2.25e-06 |
IBD | LDpred2.Inf | pT+clump.10FCVal | 0.096 | 0.111 | -0.015 | 0.0081408 | 0.100 | 0.109 | -0.008 | 4.56e-01 |
IBD | LDpred1.Inf | SBayesR.PseudoVal | 0.098 | 0.128 | -0.029 | 0.0000000 | 0.103 | 0.143 | -0.040 | 2.28e-06 |
IBD | LDpred2.Inf | SBayesR.PseudoVal | 0.096 | 0.128 | -0.032 | 0.0000000 | 0.100 | 0.143 | -0.043 | 1.71e-06 |
IBD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.149 | 0.128 | 0.022 | 0.0000000 | 0.156 | 0.143 | 0.012 | 2.54e-02 |
IBD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.143 | 0.128 | 0.015 | 0.0311652 | 0.150 | 0.143 | 0.007 | 9.69e-02 |
IBD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.128 | 0.128 | 0.000 | 1.0000000 | 0.143 | 0.143 | 0.000 | 1.00e+00 |
IBD | lassosum.10FCVal | SBayesR.PseudoVal | 0.134 | 0.128 | 0.007 | 0.0210893 | 0.140 | 0.143 | -0.003 | 6.16e-01 |
IBD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.127 | 0.128 | 0.000 | 0.9861299 | 0.136 | 0.143 | -0.007 | 2.52e-01 |
IBD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.144 | 0.128 | 0.016 | 0.0214889 | 0.148 | 0.143 | 0.004 | 3.78e-01 |
IBD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.140 | 0.128 | 0.012 | 0.0000001 | 0.145 | 0.143 | 0.002 | 6.60e-01 |
IBD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.143 | 0.128 | 0.015 | 0.0000000 | 0.149 | 0.143 | 0.006 | 2.05e-01 |
IBD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.150 | 0.128 | 0.022 | 0.0015893 | 0.156 | 0.143 | 0.012 | 2.12e-02 |
IBD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.129 | 0.128 | 0.002 | 0.5754796 | 0.137 | 0.143 | -0.006 | 2.63e-01 |
IBD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.148 | 0.128 | 0.021 | 0.0000000 | 0.154 | 0.143 | 0.010 | 8.22e-02 |
IBD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.130 | 0.128 | 0.002 | 0.7211151 | 0.138 | 0.143 | -0.005 | 3.38e-01 |
IBD | All.MultiPRS | SBayesR.PseudoVal | 0.154 | 0.128 | 0.026 | 0.0001651 | 0.159 | 0.143 | 0.016 | 2.50e-03 |
IBD | SBLUP.Inf | SBayesR.PseudoVal | 0.097 | 0.128 | -0.030 | 0.0000000 | 0.102 | 0.143 | -0.041 | 4.96e-06 |
IBD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.130 | 0.128 | 0.002 | 0.4591074 | 0.136 | 0.143 | -0.008 | 2.05e-01 |
IBD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.111 | 0.128 | -0.017 | 0.0000087 | 0.109 | 0.143 | -0.035 | 2.07e-06 |
IBD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.133 | 0.128 | 0.006 | 0.0333499 | 0.140 | 0.143 | -0.004 | 4.66e-01 |
IBD | LDpred2.PseudoVal | SBLUP.Inf | 0.140 | 0.097 | 0.043 | 0.0000000 | 0.145 | 0.102 | 0.043 | 3.15e-06 |
IBD | MegaPRS.10FCVal | SBLUP.Inf | 0.149 | 0.097 | 0.052 | 0.0000000 | 0.156 | 0.102 | 0.054 | 3.29e-12 |
IBD | lassosum.MultiPRS | SBLUP.Inf | 0.144 | 0.097 | 0.046 | 0.0000000 | 0.148 | 0.102 | 0.046 | 6.21e-09 |
IBD | LDpred1.MultiPRS | SBLUP.Inf | 0.130 | 0.097 | 0.033 | 0.0000030 | 0.138 | 0.102 | 0.036 | 1.27e-09 |
IBD | All.MultiPRS | SBLUP.Inf | 0.154 | 0.097 | 0.057 | 0.0000000 | 0.159 | 0.102 | 0.057 | 2.42e-12 |
IBD | LDpred2.Inf | SBLUP.Inf | 0.096 | 0.097 | -0.001 | 0.0123438 | 0.100 | 0.102 | -0.002 | 5.05e-02 |
IBD | MegaPRS.MultiPRS | SBLUP.Inf | 0.150 | 0.097 | 0.052 | 0.0000000 | 0.156 | 0.102 | 0.054 | 2.22e-12 |
IBD | pT+clump.MultiPRS | SBLUP.Inf | 0.127 | 0.097 | 0.030 | 0.0000157 | 0.136 | 0.102 | 0.034 | 6.41e-05 |
IBD | lassosum.PseudoVal | SBLUP.Inf | 0.133 | 0.097 | 0.036 | 0.0000000 | 0.140 | 0.102 | 0.037 | 2.07e-04 |
IBD | SBayesR.PseudoVal | SBLUP.Inf | 0.128 | 0.097 | 0.030 | 0.0000000 | 0.143 | 0.102 | 0.041 | 4.96e-06 |
IBD | DBSLMM.PseudoVal | SBLUP.Inf | 0.130 | 0.097 | 0.033 | 0.0000000 | 0.136 | 0.102 | 0.034 | 1.24e-04 |
IBD | SBLUP.Inf | SBLUP.Inf | 0.097 | 0.097 | 0.000 | 1.0000000 | 0.102 | 0.102 | 0.000 | 1.00e+00 |
IBD | LDpred2.MultiPRS | SBLUP.Inf | 0.143 | 0.097 | 0.045 | 0.0000000 | 0.150 | 0.102 | 0.048 | 2.15e-09 |
IBD | pT+clump.10FCVal | SBLUP.Inf | 0.111 | 0.097 | 0.014 | 0.0153935 | 0.109 | 0.102 | 0.006 | 5.65e-01 |
IBD | LDpred1.Inf | SBLUP.Inf | 0.098 | 0.097 | 0.001 | 0.4918531 | 0.103 | 0.102 | 0.001 | 7.84e-01 |
IBD | lassosum.10FCVal | SBLUP.Inf | 0.134 | 0.097 | 0.037 | 0.0000000 | 0.140 | 0.102 | 0.038 | 6.02e-06 |
IBD | LDpred1.10FCVal | SBLUP.Inf | 0.129 | 0.097 | 0.032 | 0.0000000 | 0.137 | 0.102 | 0.035 | 6.36e-11 |
IBD | MegaPRS.PseudoVal | SBLUP.Inf | 0.148 | 0.097 | 0.051 | 0.0000000 | 0.154 | 0.102 | 0.052 | 7.33e-13 |
IBD | LDpred2.10FCVal | SBLUP.Inf | 0.143 | 0.097 | 0.046 | 0.0000000 | 0.149 | 0.102 | 0.047 | 3.33e-10 |
MultiScler | LDpred1.10FCVal | All.MultiPRS | 0.107 | 0.141 | -0.034 | 0.0000012 | 0.096 | 0.122 | -0.027 | 9.89e-05 |
MultiScler | pT+clump.10FCVal | All.MultiPRS | 0.090 | 0.141 | -0.051 | 0.0000000 | 0.092 | 0.122 | -0.031 | 4.55e-04 |
MultiScler | LDpred1.MultiPRS | All.MultiPRS | 0.112 | 0.141 | -0.029 | 0.0000000 | 0.096 | 0.122 | -0.027 | 4.88e-05 |
MultiScler | LDpred2.Inf | All.MultiPRS | 0.094 | 0.141 | -0.047 | 0.0000000 | 0.076 | 0.122 | -0.046 | 4.76e-07 |
MultiScler | MegaPRS.PseudoVal | All.MultiPRS | 0.129 | 0.141 | -0.013 | 0.0693485 | 0.116 | 0.122 | -0.006 | 8.53e-02 |
MultiScler | LDpred2.10FCVal | All.MultiPRS | 0.120 | 0.141 | -0.021 | 0.0025190 | 0.108 | 0.122 | -0.015 | 5.08e-03 |
MultiScler | LDpred2.MultiPRS | All.MultiPRS | 0.133 | 0.141 | -0.009 | 0.0000001 | 0.119 | 0.122 | -0.003 | 2.96e-01 |
MultiScler | lassosum.10FCVal | All.MultiPRS | 0.115 | 0.141 | -0.026 | 0.0001846 | 0.097 | 0.122 | -0.026 | 1.35e-04 |
MultiScler | LDpred1.Inf | All.MultiPRS | 0.090 | 0.141 | -0.052 | 0.0000000 | 0.078 | 0.122 | -0.044 | 3.06e-07 |
MultiScler | lassosum.MultiPRS | All.MultiPRS | 0.128 | 0.141 | -0.014 | 0.0000000 | 0.119 | 0.122 | -0.004 | 4.24e-01 |
MultiScler | MegaPRS.10FCVal | All.MultiPRS | 0.138 | 0.141 | -0.003 | 0.6743261 | 0.115 | 0.122 | -0.008 | 2.43e-02 |
MultiScler | All.MultiPRS | All.MultiPRS | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.122 | 0.122 | 0.000 | 1.00e+00 |
MultiScler | SBayesR.PseudoVal | All.MultiPRS | 0.102 | 0.141 | -0.040 | 0.0000000 | 0.083 | 0.122 | -0.039 | 5.72e-07 |
MultiScler | MegaPRS.MultiPRS | All.MultiPRS | 0.137 | 0.141 | -0.005 | 0.0002446 | 0.119 | 0.122 | -0.004 | 1.49e-01 |
MultiScler | pT+clump.MultiPRS | All.MultiPRS | 0.114 | 0.141 | -0.027 | 0.0001039 | 0.108 | 0.122 | -0.014 | 2.21e-02 |
MultiScler | lassosum.PseudoVal | All.MultiPRS | 0.103 | 0.141 | -0.038 | 0.0000001 | 0.102 | 0.122 | -0.020 | 4.75e-03 |
MultiScler | LDpred2.PseudoVal | All.MultiPRS | 0.119 | 0.141 | -0.023 | 0.0011440 | 0.110 | 0.122 | -0.012 | 1.24e-02 |
MultiScler | DBSLMM.PseudoVal | All.MultiPRS | 0.091 | 0.141 | -0.050 | 0.0000000 | 0.088 | 0.122 | -0.034 | 7.52e-05 |
MultiScler | SBLUP.Inf | All.MultiPRS | 0.094 | 0.141 | -0.048 | 0.0000000 | 0.076 | 0.122 | -0.047 | 3.27e-07 |
MultiScler | LDpred1.Inf | DBSLMM.PseudoVal | 0.090 | 0.091 | -0.002 | 0.7303156 | 0.078 | 0.088 | -0.010 | 3.60e-01 |
MultiScler | LDpred2.Inf | DBSLMM.PseudoVal | 0.094 | 0.091 | 0.003 | 0.6736561 | 0.076 | 0.088 | -0.012 | 3.57e-01 |
MultiScler | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.133 | 0.091 | 0.041 | 0.0000000 | 0.119 | 0.088 | 0.031 | 7.58e-05 |
MultiScler | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.090 | 0.091 | -0.001 | 0.7364770 | 0.092 | 0.088 | 0.004 | 5.67e-01 |
MultiScler | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.102 | 0.091 | 0.010 | 0.1018057 | 0.083 | 0.088 | -0.005 | 6.88e-01 |
MultiScler | All.MultiPRS | DBSLMM.PseudoVal | 0.141 | 0.091 | 0.050 | 0.0000000 | 0.122 | 0.088 | 0.034 | 7.52e-05 |
MultiScler | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.138 | 0.091 | 0.047 | 0.0000000 | 0.115 | 0.088 | 0.027 | 3.25e-03 |
MultiScler | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.137 | 0.091 | 0.045 | 0.0000000 | 0.119 | 0.088 | 0.031 | 2.88e-04 |
MultiScler | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.119 | 0.091 | 0.027 | 0.0000000 | 0.110 | 0.088 | 0.022 | 7.23e-03 |
MultiScler | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.103 | 0.091 | 0.012 | 0.0000002 | 0.102 | 0.088 | 0.014 | 3.17e-03 |
MultiScler | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.114 | 0.091 | 0.023 | 0.0010101 | 0.108 | 0.088 | 0.020 | 1.81e-02 |
MultiScler | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.129 | 0.091 | 0.037 | 0.0000000 | 0.116 | 0.088 | 0.028 | 8.02e-04 |
MultiScler | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.128 | 0.091 | 0.036 | 0.0000002 | 0.119 | 0.088 | 0.030 | 6.93e-05 |
MultiScler | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.120 | 0.091 | 0.029 | 0.0000000 | 0.108 | 0.088 | 0.020 | 3.35e-04 |
MultiScler | lassosum.10FCVal | DBSLMM.PseudoVal | 0.115 | 0.091 | 0.024 | 0.0000008 | 0.097 | 0.088 | 0.009 | 3.77e-01 |
MultiScler | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.107 | 0.091 | 0.016 | 0.0000147 | 0.096 | 0.088 | 0.007 | 3.11e-01 |
MultiScler | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.091 | 0.091 | 0.000 | 1.0000000 | 0.088 | 0.088 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.112 | 0.091 | 0.021 | 0.0028501 | 0.096 | 0.088 | 0.008 | 3.09e-01 |
MultiScler | SBLUP.Inf | DBSLMM.PseudoVal | 0.094 | 0.091 | 0.002 | 0.6959269 | 0.076 | 0.088 | -0.012 | 3.28e-01 |
MultiScler | SBayesR.PseudoVal | lassosum.MultiPRS | 0.102 | 0.128 | -0.026 | 0.0001750 | 0.083 | 0.119 | -0.036 | 2.18e-05 |
MultiScler | LDpred1.Inf | lassosum.MultiPRS | 0.090 | 0.128 | -0.038 | 0.0000001 | 0.078 | 0.119 | -0.040 | 1.39e-07 |
MultiScler | MegaPRS.10FCVal | lassosum.MultiPRS | 0.138 | 0.128 | 0.011 | 0.1219866 | 0.115 | 0.119 | -0.004 | 5.14e-01 |
MultiScler | LDpred2.MultiPRS | lassosum.MultiPRS | 0.133 | 0.128 | 0.005 | 0.0197635 | 0.119 | 0.119 | 0.001 | 9.05e-01 |
MultiScler | LDpred2.PseudoVal | lassosum.MultiPRS | 0.119 | 0.128 | -0.009 | 0.1974836 | 0.110 | 0.119 | -0.008 | 1.48e-01 |
MultiScler | LDpred2.10FCVal | lassosum.MultiPRS | 0.120 | 0.128 | -0.007 | 0.2892921 | 0.108 | 0.119 | -0.011 | 5.45e-02 |
MultiScler | pT+clump.MultiPRS | lassosum.MultiPRS | 0.114 | 0.128 | -0.013 | 0.0550331 | 0.108 | 0.119 | -0.010 | 7.50e-02 |
MultiScler | lassosum.MultiPRS | lassosum.MultiPRS | 0.128 | 0.128 | 0.000 | 1.0000000 | 0.119 | 0.119 | 0.000 | 1.00e+00 |
MultiScler | lassosum.PseudoVal | lassosum.MultiPRS | 0.103 | 0.128 | -0.024 | 0.0005133 | 0.102 | 0.119 | -0.016 | 1.39e-03 |
MultiScler | LDpred1.MultiPRS | lassosum.MultiPRS | 0.112 | 0.128 | -0.015 | 0.0000002 | 0.096 | 0.119 | -0.023 | 1.10e-04 |
MultiScler | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.137 | 0.128 | 0.009 | 0.0006343 | 0.119 | 0.119 | 0.000 | 9.43e-01 |
MultiScler | LDpred1.10FCVal | lassosum.MultiPRS | 0.107 | 0.128 | -0.020 | 0.0036524 | 0.096 | 0.119 | -0.023 | 5.29e-05 |
MultiScler | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.129 | 0.128 | 0.001 | 0.8816071 | 0.116 | 0.119 | -0.002 | 7.00e-01 |
MultiScler | pT+clump.10FCVal | lassosum.MultiPRS | 0.090 | 0.128 | -0.038 | 0.0000001 | 0.092 | 0.119 | -0.027 | 3.25e-03 |
MultiScler | lassosum.10FCVal | lassosum.MultiPRS | 0.115 | 0.128 | -0.012 | 0.0748585 | 0.097 | 0.119 | -0.022 | 1.66e-06 |
MultiScler | SBLUP.Inf | lassosum.MultiPRS | 0.094 | 0.128 | -0.034 | 0.0000014 | 0.076 | 0.119 | -0.043 | 1.85e-07 |
MultiScler | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.091 | 0.128 | -0.036 | 0.0000002 | 0.088 | 0.119 | -0.030 | 6.93e-05 |
MultiScler | All.MultiPRS | lassosum.MultiPRS | 0.141 | 0.128 | 0.014 | 0.0000000 | 0.122 | 0.119 | 0.004 | 4.24e-01 |
MultiScler | LDpred2.Inf | lassosum.MultiPRS | 0.094 | 0.128 | -0.034 | 0.0000016 | 0.076 | 0.119 | -0.042 | 2.91e-07 |
MultiScler | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.129 | 0.103 | 0.025 | 0.0000000 | 0.116 | 0.102 | 0.014 | 3.51e-02 |
MultiScler | LDpred2.PseudoVal | lassosum.PseudoVal | 0.119 | 0.103 | 0.015 | 0.0000012 | 0.110 | 0.102 | 0.008 | 1.84e-01 |
MultiScler | LDpred1.MultiPRS | lassosum.PseudoVal | 0.112 | 0.103 | 0.009 | 0.2060329 | 0.096 | 0.102 | -0.007 | 3.04e-01 |
MultiScler | lassosum.PseudoVal | lassosum.PseudoVal | 0.103 | 0.103 | 0.000 | 1.0000000 | 0.102 | 0.102 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.Inf | lassosum.PseudoVal | 0.094 | 0.103 | -0.009 | 0.0986022 | 0.076 | 0.102 | -0.026 | 2.48e-02 |
MultiScler | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.091 | 0.103 | -0.012 | 0.0000002 | 0.088 | 0.102 | -0.014 | 3.17e-03 |
MultiScler | SBLUP.Inf | lassosum.PseudoVal | 0.094 | 0.103 | -0.010 | 0.0920583 | 0.076 | 0.102 | -0.027 | 2.11e-02 |
MultiScler | LDpred2.MultiPRS | lassosum.PseudoVal | 0.133 | 0.103 | 0.029 | 0.0000289 | 0.119 | 0.102 | 0.017 | 9.00e-03 |
MultiScler | pT+clump.10FCVal | lassosum.PseudoVal | 0.090 | 0.103 | -0.013 | 0.0012138 | 0.092 | 0.102 | -0.010 | 2.21e-01 |
MultiScler | LDpred1.Inf | lassosum.PseudoVal | 0.090 | 0.103 | -0.014 | 0.0038063 | 0.078 | 0.102 | -0.024 | 1.32e-02 |
MultiScler | lassosum.MultiPRS | lassosum.PseudoVal | 0.128 | 0.103 | 0.024 | 0.0005133 | 0.119 | 0.102 | 0.016 | 1.39e-03 |
MultiScler | MegaPRS.10FCVal | lassosum.PseudoVal | 0.138 | 0.103 | 0.035 | 0.0000000 | 0.115 | 0.102 | 0.013 | 8.43e-02 |
MultiScler | All.MultiPRS | lassosum.PseudoVal | 0.141 | 0.103 | 0.038 | 0.0000001 | 0.122 | 0.102 | 0.020 | 4.75e-03 |
MultiScler | SBayesR.PseudoVal | lassosum.PseudoVal | 0.102 | 0.103 | -0.002 | 0.7300457 | 0.083 | 0.102 | -0.019 | 8.51e-02 |
MultiScler | lassosum.10FCVal | lassosum.PseudoVal | 0.115 | 0.103 | 0.012 | 0.0020645 | 0.097 | 0.102 | -0.006 | 4.57e-01 |
MultiScler | pT+clump.MultiPRS | lassosum.PseudoVal | 0.114 | 0.103 | 0.011 | 0.1204833 | 0.108 | 0.102 | 0.006 | 4.28e-01 |
MultiScler | LDpred1.10FCVal | lassosum.PseudoVal | 0.107 | 0.103 | 0.004 | 0.2183114 | 0.096 | 0.102 | -0.007 | 2.89e-01 |
MultiScler | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.137 | 0.103 | 0.033 | 0.0000019 | 0.119 | 0.102 | 0.017 | 1.34e-02 |
MultiScler | LDpred2.10FCVal | lassosum.PseudoVal | 0.120 | 0.103 | 0.017 | 0.0000000 | 0.108 | 0.102 | 0.006 | 2.21e-01 |
MultiScler | lassosum.10FCVal | lassosum.10FCVal | 0.115 | 0.115 | 0.000 | 1.0000000 | 0.097 | 0.097 | 0.000 | 1.00e+00 |
MultiScler | pT+clump.MultiPRS | lassosum.10FCVal | 0.114 | 0.115 | -0.001 | 0.8938588 | 0.108 | 0.097 | 0.012 | 9.64e-02 |
MultiScler | LDpred2.MultiPRS | lassosum.10FCVal | 0.133 | 0.115 | 0.017 | 0.0126529 | 0.119 | 0.097 | 0.022 | 7.35e-04 |
MultiScler | SBayesR.PseudoVal | lassosum.10FCVal | 0.102 | 0.115 | -0.014 | 0.0019914 | 0.083 | 0.097 | -0.014 | 1.26e-01 |
MultiScler | LDpred2.10FCVal | lassosum.10FCVal | 0.120 | 0.115 | 0.005 | 0.2281728 | 0.108 | 0.097 | 0.011 | 1.76e-01 |
MultiScler | SBLUP.Inf | lassosum.10FCVal | 0.094 | 0.115 | -0.021 | 0.0000000 | 0.076 | 0.097 | -0.021 | 3.62e-03 |
MultiScler | lassosum.MultiPRS | lassosum.10FCVal | 0.128 | 0.115 | 0.012 | 0.0748585 | 0.119 | 0.097 | 0.022 | 1.66e-06 |
MultiScler | LDpred2.PseudoVal | lassosum.10FCVal | 0.119 | 0.115 | 0.003 | 0.3861490 | 0.110 | 0.097 | 0.014 | 8.02e-02 |
MultiScler | LDpred1.MultiPRS | lassosum.10FCVal | 0.112 | 0.115 | -0.003 | 0.6768082 | 0.096 | 0.097 | -0.001 | 9.00e-01 |
MultiScler | LDpred2.Inf | lassosum.10FCVal | 0.094 | 0.115 | -0.021 | 0.0000000 | 0.076 | 0.097 | -0.020 | 4.82e-03 |
MultiScler | LDpred1.10FCVal | lassosum.10FCVal | 0.107 | 0.115 | -0.008 | 0.0186675 | 0.096 | 0.097 | -0.001 | 8.78e-01 |
MultiScler | MegaPRS.MultiPRS | lassosum.10FCVal | 0.137 | 0.115 | 0.022 | 0.0021120 | 0.119 | 0.097 | 0.022 | 8.62e-04 |
MultiScler | pT+clump.10FCVal | lassosum.10FCVal | 0.090 | 0.115 | -0.025 | 0.0000035 | 0.092 | 0.097 | -0.005 | 6.70e-01 |
MultiScler | All.MultiPRS | lassosum.10FCVal | 0.141 | 0.115 | 0.026 | 0.0001846 | 0.122 | 0.097 | 0.026 | 1.35e-04 |
MultiScler | MegaPRS.PseudoVal | lassosum.10FCVal | 0.129 | 0.115 | 0.014 | 0.0003559 | 0.116 | 0.097 | 0.020 | 8.34e-03 |
MultiScler | DBSLMM.PseudoVal | lassosum.10FCVal | 0.091 | 0.115 | -0.024 | 0.0000008 | 0.088 | 0.097 | -0.009 | 3.77e-01 |
MultiScler | MegaPRS.10FCVal | lassosum.10FCVal | 0.138 | 0.115 | 0.023 | 0.0000000 | 0.115 | 0.097 | 0.018 | 4.39e-03 |
MultiScler | lassosum.PseudoVal | lassosum.10FCVal | 0.103 | 0.115 | -0.012 | 0.0020645 | 0.102 | 0.097 | 0.006 | 4.57e-01 |
MultiScler | LDpred1.Inf | lassosum.10FCVal | 0.090 | 0.115 | -0.026 | 0.0000000 | 0.078 | 0.097 | -0.018 | 1.38e-02 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.129 | 0.137 | -0.008 | 0.2509106 | 0.116 | 0.119 | -0.003 | 2.80e-01 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.091 | 0.137 | -0.045 | 0.0000000 | 0.088 | 0.119 | -0.031 | 2.88e-04 |
MultiScler | SBLUP.Inf | MegaPRS.MultiPRS | 0.094 | 0.137 | -0.043 | 0.0000000 | 0.076 | 0.119 | -0.043 | 5.28e-06 |
MultiScler | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.133 | 0.137 | -0.004 | 0.0858154 | 0.119 | 0.119 | 0.000 | 9.78e-01 |
MultiScler | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.090 | 0.137 | -0.047 | 0.0000000 | 0.092 | 0.119 | -0.027 | 3.31e-03 |
MultiScler | LDpred1.Inf | MegaPRS.MultiPRS | 0.090 | 0.137 | -0.047 | 0.0000000 | 0.078 | 0.119 | -0.041 | 3.39e-06 |
MultiScler | LDpred2.Inf | MegaPRS.MultiPRS | 0.094 | 0.137 | -0.043 | 0.0000000 | 0.076 | 0.119 | -0.043 | 7.29e-06 |
MultiScler | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.138 | 0.137 | 0.002 | 0.8037331 | 0.115 | 0.119 | -0.004 | 7.03e-02 |
MultiScler | All.MultiPRS | MegaPRS.MultiPRS | 0.141 | 0.137 | 0.005 | 0.0002446 | 0.122 | 0.119 | 0.004 | 1.49e-01 |
MultiScler | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.102 | 0.137 | -0.035 | 0.0000004 | 0.083 | 0.119 | -0.036 | 4.17e-05 |
MultiScler | lassosum.10FCVal | MegaPRS.MultiPRS | 0.115 | 0.137 | -0.022 | 0.0021120 | 0.097 | 0.119 | -0.022 | 8.62e-04 |
MultiScler | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.114 | 0.137 | -0.022 | 0.0013112 | 0.108 | 0.119 | -0.011 | 1.15e-01 |
MultiScler | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.128 | 0.137 | -0.009 | 0.0006343 | 0.119 | 0.119 | 0.000 | 9.43e-01 |
MultiScler | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.119 | 0.137 | -0.018 | 0.0097105 | 0.110 | 0.119 | -0.008 | 1.11e-01 |
MultiScler | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.120 | 0.137 | -0.016 | 0.0185073 | 0.108 | 0.119 | -0.011 | 4.78e-02 |
MultiScler | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.103 | 0.137 | -0.033 | 0.0000019 | 0.102 | 0.119 | -0.017 | 1.34e-02 |
MultiScler | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.107 | 0.137 | -0.029 | 0.0000266 | 0.096 | 0.119 | -0.023 | 6.48e-04 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.137 | 0.137 | 0.000 | 1.0000000 | 0.119 | 0.119 | 0.000 | 1.00e+00 |
MultiScler | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.112 | 0.137 | -0.024 | 0.0000000 | 0.096 | 0.119 | -0.023 | 5.92e-04 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.129 | 0.129 | 0.000 | 1.0000000 | 0.116 | 0.116 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.120 | 0.129 | -0.008 | 0.0015968 | 0.108 | 0.116 | -0.009 | 1.12e-01 |
MultiScler | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.112 | 0.129 | -0.016 | 0.0187763 | 0.096 | 0.116 | -0.021 | 4.17e-03 |
MultiScler | LDpred2.Inf | MegaPRS.PseudoVal | 0.094 | 0.129 | -0.035 | 0.0000000 | 0.076 | 0.116 | -0.040 | 9.57e-05 |
MultiScler | LDpred1.Inf | MegaPRS.PseudoVal | 0.090 | 0.129 | -0.039 | 0.0000000 | 0.078 | 0.116 | -0.038 | 5.45e-05 |
MultiScler | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.128 | 0.129 | -0.001 | 0.8816071 | 0.119 | 0.116 | 0.002 | 7.00e-01 |
MultiScler | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.138 | 0.129 | 0.010 | 0.0000040 | 0.115 | 0.116 | -0.001 | 7.34e-01 |
MultiScler | All.MultiPRS | MegaPRS.PseudoVal | 0.141 | 0.129 | 0.013 | 0.0693485 | 0.122 | 0.116 | 0.006 | 8.53e-02 |
MultiScler | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.102 | 0.129 | -0.027 | 0.0000000 | 0.083 | 0.116 | -0.033 | 1.24e-04 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.091 | 0.129 | -0.037 | 0.0000000 | 0.088 | 0.116 | -0.028 | 8.02e-04 |
MultiScler | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.114 | 0.129 | -0.014 | 0.0388454 | 0.108 | 0.116 | -0.008 | 2.34e-01 |
MultiScler | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.103 | 0.129 | -0.025 | 0.0000000 | 0.102 | 0.116 | -0.014 | 3.51e-02 |
MultiScler | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.119 | 0.129 | -0.010 | 0.0000148 | 0.110 | 0.116 | -0.006 | 1.95e-01 |
MultiScler | lassosum.10FCVal | MegaPRS.PseudoVal | 0.115 | 0.129 | -0.014 | 0.0003559 | 0.097 | 0.116 | -0.020 | 8.34e-03 |
MultiScler | SBLUP.Inf | MegaPRS.PseudoVal | 0.094 | 0.129 | -0.035 | 0.0000000 | 0.076 | 0.116 | -0.041 | 7.29e-05 |
MultiScler | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.107 | 0.129 | -0.021 | 0.0000000 | 0.096 | 0.116 | -0.021 | 5.30e-03 |
MultiScler | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.090 | 0.129 | -0.039 | 0.0000000 | 0.092 | 0.116 | -0.024 | 5.49e-03 |
MultiScler | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.133 | 0.129 | 0.004 | 0.5711725 | 0.119 | 0.116 | 0.003 | 5.71e-01 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.137 | 0.129 | 0.008 | 0.2509106 | 0.119 | 0.116 | 0.003 | 2.80e-01 |
MultiScler | lassosum.10FCVal | MegaPRS.10FCVal | 0.115 | 0.138 | -0.023 | 0.0000000 | 0.097 | 0.115 | -0.018 | 4.39e-03 |
MultiScler | SBLUP.Inf | MegaPRS.10FCVal | 0.094 | 0.138 | -0.045 | 0.0000000 | 0.076 | 0.115 | -0.039 | 1.60e-05 |
MultiScler | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.102 | 0.138 | -0.037 | 0.0000000 | 0.083 | 0.115 | -0.032 | 3.84e-04 |
MultiScler | All.MultiPRS | MegaPRS.10FCVal | 0.141 | 0.138 | 0.003 | 0.6743261 | 0.122 | 0.115 | 0.008 | 2.43e-02 |
MultiScler | LDpred2.Inf | MegaPRS.10FCVal | 0.094 | 0.138 | -0.045 | 0.0000000 | 0.076 | 0.115 | -0.038 | 2.20e-05 |
MultiScler | lassosum.MultiPRS | MegaPRS.10FCVal | 0.128 | 0.138 | -0.011 | 0.1219866 | 0.119 | 0.115 | 0.004 | 5.14e-01 |
MultiScler | LDpred2.10FCVal | MegaPRS.10FCVal | 0.120 | 0.138 | -0.018 | 0.0000001 | 0.108 | 0.115 | -0.007 | 2.86e-01 |
MultiScler | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.112 | 0.138 | -0.026 | 0.0001798 | 0.096 | 0.115 | -0.019 | 6.67e-03 |
MultiScler | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.119 | 0.138 | -0.020 | 0.0000000 | 0.110 | 0.115 | -0.004 | 4.95e-01 |
MultiScler | LDpred1.10FCVal | MegaPRS.10FCVal | 0.107 | 0.138 | -0.031 | 0.0000000 | 0.096 | 0.115 | -0.019 | 5.93e-03 |
MultiScler | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.114 | 0.138 | -0.024 | 0.0005312 | 0.108 | 0.115 | -0.007 | 3.71e-01 |
MultiScler | pT+clump.10FCVal | MegaPRS.10FCVal | 0.090 | 0.138 | -0.048 | 0.0000000 | 0.092 | 0.115 | -0.023 | 2.13e-02 |
MultiScler | lassosum.PseudoVal | MegaPRS.10FCVal | 0.103 | 0.138 | -0.035 | 0.0000000 | 0.102 | 0.115 | -0.013 | 8.43e-02 |
MultiScler | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.129 | 0.138 | -0.010 | 0.0000040 | 0.116 | 0.115 | 0.001 | 7.34e-01 |
MultiScler | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.137 | 0.138 | -0.002 | 0.8037331 | 0.119 | 0.115 | 0.004 | 7.03e-02 |
MultiScler | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.138 | 0.138 | 0.000 | 1.0000000 | 0.115 | 0.115 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.133 | 0.138 | -0.006 | 0.4065083 | 0.119 | 0.115 | 0.004 | 4.57e-01 |
MultiScler | LDpred1.Inf | MegaPRS.10FCVal | 0.090 | 0.138 | -0.049 | 0.0000000 | 0.078 | 0.115 | -0.037 | 1.77e-05 |
MultiScler | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.091 | 0.138 | -0.047 | 0.0000000 | 0.088 | 0.115 | -0.027 | 3.25e-03 |
MultiScler | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.114 | 0.112 | 0.002 | 0.7762409 | 0.108 | 0.096 | 0.013 | 1.14e-01 |
MultiScler | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.138 | 0.112 | 0.026 | 0.0001798 | 0.115 | 0.096 | 0.019 | 6.67e-03 |
MultiScler | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.119 | 0.112 | 0.006 | 0.3597181 | 0.110 | 0.096 | 0.015 | 4.73e-02 |
MultiScler | LDpred1.Inf | LDpred1.MultiPRS | 0.090 | 0.112 | -0.023 | 0.0011755 | 0.078 | 0.096 | -0.017 | 3.87e-03 |
MultiScler | lassosum.10FCVal | LDpred1.MultiPRS | 0.115 | 0.112 | 0.003 | 0.6768082 | 0.097 | 0.096 | 0.001 | 9.00e-01 |
MultiScler | LDpred1.10FCVal | LDpred1.MultiPRS | 0.107 | 0.112 | -0.005 | 0.4779656 | 0.096 | 0.096 | 0.000 | 9.63e-01 |
MultiScler | lassosum.MultiPRS | LDpred1.MultiPRS | 0.128 | 0.112 | 0.015 | 0.0000002 | 0.119 | 0.096 | 0.023 | 1.10e-04 |
MultiScler | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.112 | 0.112 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
MultiScler | All.MultiPRS | LDpred1.MultiPRS | 0.141 | 0.112 | 0.029 | 0.0000000 | 0.122 | 0.096 | 0.027 | 4.88e-05 |
MultiScler | LDpred2.Inf | LDpred1.MultiPRS | 0.094 | 0.112 | -0.018 | 0.0089441 | 0.076 | 0.096 | -0.019 | 4.31e-02 |
MultiScler | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.137 | 0.112 | 0.024 | 0.0000000 | 0.119 | 0.096 | 0.023 | 5.92e-04 |
MultiScler | pT+clump.10FCVal | LDpred1.MultiPRS | 0.090 | 0.112 | -0.022 | 0.0016637 | 0.092 | 0.096 | -0.004 | 6.97e-01 |
MultiScler | lassosum.PseudoVal | LDpred1.MultiPRS | 0.103 | 0.112 | -0.009 | 0.2060329 | 0.102 | 0.096 | 0.007 | 3.04e-01 |
MultiScler | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.102 | 0.112 | -0.011 | 0.1229781 | 0.083 | 0.096 | -0.013 | 2.15e-01 |
MultiScler | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.091 | 0.112 | -0.021 | 0.0028501 | 0.088 | 0.096 | -0.008 | 3.09e-01 |
MultiScler | SBLUP.Inf | LDpred1.MultiPRS | 0.094 | 0.112 | -0.019 | 0.0082623 | 0.076 | 0.096 | -0.020 | 3.61e-02 |
MultiScler | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.133 | 0.112 | 0.020 | 0.0000000 | 0.119 | 0.096 | 0.023 | 1.53e-04 |
MultiScler | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.129 | 0.112 | 0.016 | 0.0187763 | 0.116 | 0.096 | 0.021 | 4.17e-03 |
MultiScler | LDpred2.10FCVal | LDpred1.MultiPRS | 0.120 | 0.112 | 0.008 | 0.2547441 | 0.108 | 0.096 | 0.012 | 6.07e-02 |
MultiScler | LDpred1.10FCVal | LDpred1.Inf | 0.107 | 0.090 | 0.018 | 0.0000000 | 0.096 | 0.078 | 0.017 | 4.69e-04 |
MultiScler | LDpred2.PseudoVal | LDpred1.Inf | 0.119 | 0.090 | 0.029 | 0.0000000 | 0.110 | 0.078 | 0.032 | 1.18e-03 |
MultiScler | LDpred1.MultiPRS | LDpred1.Inf | 0.112 | 0.090 | 0.023 | 0.0011755 | 0.096 | 0.078 | 0.017 | 3.87e-03 |
MultiScler | pT+clump.MultiPRS | LDpred1.Inf | 0.114 | 0.090 | 0.025 | 0.0003908 | 0.108 | 0.078 | 0.030 | 1.29e-03 |
MultiScler | MegaPRS.PseudoVal | LDpred1.Inf | 0.129 | 0.090 | 0.039 | 0.0000000 | 0.116 | 0.078 | 0.038 | 5.45e-05 |
MultiScler | MegaPRS.MultiPRS | LDpred1.Inf | 0.137 | 0.090 | 0.047 | 0.0000000 | 0.119 | 0.078 | 0.041 | 3.39e-06 |
MultiScler | pT+clump.10FCVal | LDpred1.Inf | 0.090 | 0.090 | 0.001 | 0.9040995 | 0.092 | 0.078 | 0.014 | 2.52e-01 |
MultiScler | lassosum.PseudoVal | LDpred1.Inf | 0.103 | 0.090 | 0.014 | 0.0038063 | 0.102 | 0.078 | 0.024 | 1.32e-02 |
MultiScler | LDpred2.Inf | LDpred1.Inf | 0.094 | 0.090 | 0.004 | 0.2058731 | 0.076 | 0.078 | -0.002 | 7.82e-01 |
MultiScler | DBSLMM.PseudoVal | LDpred1.Inf | 0.091 | 0.090 | 0.002 | 0.7303156 | 0.088 | 0.078 | 0.010 | 3.60e-01 |
MultiScler | SBLUP.Inf | LDpred1.Inf | 0.094 | 0.090 | 0.004 | 0.2271213 | 0.076 | 0.078 | -0.003 | 7.06e-01 |
MultiScler | LDpred2.MultiPRS | LDpred1.Inf | 0.133 | 0.090 | 0.043 | 0.0000000 | 0.119 | 0.078 | 0.041 | 9.66e-07 |
MultiScler | lassosum.10FCVal | LDpred1.Inf | 0.115 | 0.090 | 0.026 | 0.0000000 | 0.097 | 0.078 | 0.018 | 1.38e-02 |
MultiScler | LDpred1.Inf | LDpred1.Inf | 0.090 | 0.090 | 0.000 | 1.0000000 | 0.078 | 0.078 | 0.000 | 1.00e+00 |
MultiScler | lassosum.MultiPRS | LDpred1.Inf | 0.128 | 0.090 | 0.038 | 0.0000001 | 0.119 | 0.078 | 0.040 | 1.39e-07 |
MultiScler | MegaPRS.10FCVal | LDpred1.Inf | 0.138 | 0.090 | 0.049 | 0.0000000 | 0.115 | 0.078 | 0.037 | 1.77e-05 |
MultiScler | All.MultiPRS | LDpred1.Inf | 0.141 | 0.090 | 0.052 | 0.0000000 | 0.122 | 0.078 | 0.044 | 3.06e-07 |
MultiScler | SBayesR.PseudoVal | LDpred1.Inf | 0.102 | 0.090 | 0.012 | 0.0120326 | 0.083 | 0.078 | 0.005 | 6.27e-01 |
MultiScler | LDpred2.10FCVal | LDpred1.Inf | 0.120 | 0.090 | 0.031 | 0.0000000 | 0.108 | 0.078 | 0.029 | 2.69e-03 |
MultiScler | All.MultiPRS | LDpred1.10FCVal | 0.141 | 0.107 | 0.034 | 0.0000012 | 0.122 | 0.096 | 0.027 | 9.89e-05 |
MultiScler | pT+clump.MultiPRS | LDpred1.10FCVal | 0.114 | 0.107 | 0.007 | 0.3181913 | 0.108 | 0.096 | 0.013 | 1.13e-01 |
MultiScler | LDpred1.10FCVal | LDpred1.10FCVal | 0.107 | 0.107 | 0.000 | 1.0000000 | 0.096 | 0.096 | 0.000 | 1.00e+00 |
MultiScler | SBayesR.PseudoVal | LDpred1.10FCVal | 0.102 | 0.107 | -0.006 | 0.2608339 | 0.083 | 0.096 | -0.013 | 2.26e-01 |
MultiScler | LDpred1.MultiPRS | LDpred1.10FCVal | 0.112 | 0.107 | 0.005 | 0.4779656 | 0.096 | 0.096 | 0.000 | 9.63e-01 |
MultiScler | SBLUP.Inf | LDpred1.10FCVal | 0.094 | 0.107 | -0.014 | 0.0028646 | 0.076 | 0.096 | -0.020 | 3.01e-02 |
MultiScler | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.129 | 0.107 | 0.021 | 0.0000000 | 0.116 | 0.096 | 0.021 | 5.30e-03 |
MultiScler | LDpred2.PseudoVal | LDpred1.10FCVal | 0.119 | 0.107 | 0.011 | 0.0038956 | 0.110 | 0.096 | 0.015 | 5.69e-02 |
MultiScler | LDpred2.MultiPRS | LDpred1.10FCVal | 0.133 | 0.107 | 0.025 | 0.0002982 | 0.119 | 0.096 | 0.023 | 1.82e-04 |
MultiScler | LDpred2.Inf | LDpred1.10FCVal | 0.094 | 0.107 | -0.013 | 0.0032443 | 0.076 | 0.096 | -0.019 | 3.63e-02 |
MultiScler | LDpred1.Inf | LDpred1.10FCVal | 0.090 | 0.107 | -0.018 | 0.0000000 | 0.078 | 0.096 | -0.017 | 4.69e-04 |
MultiScler | pT+clump.10FCVal | LDpred1.10FCVal | 0.090 | 0.107 | -0.017 | 0.0003980 | 0.092 | 0.096 | -0.004 | 7.13e-01 |
MultiScler | LDpred2.10FCVal | LDpred1.10FCVal | 0.120 | 0.107 | 0.013 | 0.0001081 | 0.108 | 0.096 | 0.012 | 6.61e-02 |
MultiScler | lassosum.PseudoVal | LDpred1.10FCVal | 0.103 | 0.107 | -0.004 | 0.2183114 | 0.102 | 0.096 | 0.007 | 2.89e-01 |
MultiScler | lassosum.10FCVal | LDpred1.10FCVal | 0.115 | 0.107 | 0.008 | 0.0186675 | 0.097 | 0.096 | 0.001 | 8.78e-01 |
MultiScler | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.137 | 0.107 | 0.029 | 0.0000266 | 0.119 | 0.096 | 0.023 | 6.48e-04 |
MultiScler | lassosum.MultiPRS | LDpred1.10FCVal | 0.128 | 0.107 | 0.020 | 0.0036524 | 0.119 | 0.096 | 0.023 | 5.29e-05 |
MultiScler | MegaPRS.10FCVal | LDpred1.10FCVal | 0.138 | 0.107 | 0.031 | 0.0000000 | 0.115 | 0.096 | 0.019 | 5.93e-03 |
MultiScler | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.091 | 0.107 | -0.016 | 0.0000147 | 0.088 | 0.096 | -0.007 | 3.11e-01 |
MultiScler | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.102 | 0.133 | -0.031 | 0.0000078 | 0.083 | 0.119 | -0.036 | 9.10e-06 |
MultiScler | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.133 | 0.133 | 0.000 | 1.0000000 | 0.119 | 0.119 | 0.000 | 1.00e+00 |
MultiScler | pT+clump.10FCVal | LDpred2.MultiPRS | 0.090 | 0.133 | -0.042 | 0.0000000 | 0.092 | 0.119 | -0.027 | 8.30e-04 |
MultiScler | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.119 | 0.133 | -0.014 | 0.0452955 | 0.110 | 0.119 | -0.009 | 3.50e-02 |
MultiScler | LDpred2.Inf | LDpred2.MultiPRS | 0.094 | 0.133 | -0.039 | 0.0000000 | 0.076 | 0.119 | -0.043 | 1.12e-06 |
MultiScler | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.114 | 0.133 | -0.018 | 0.0084316 | 0.108 | 0.119 | -0.011 | 6.66e-02 |
MultiScler | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.129 | 0.133 | -0.004 | 0.5711725 | 0.116 | 0.119 | -0.003 | 5.71e-01 |
MultiScler | lassosum.MultiPRS | LDpred2.MultiPRS | 0.128 | 0.133 | -0.005 | 0.0197635 | 0.119 | 0.119 | -0.001 | 9.05e-01 |
MultiScler | LDpred1.Inf | LDpred2.MultiPRS | 0.090 | 0.133 | -0.043 | 0.0000000 | 0.078 | 0.119 | -0.041 | 9.66e-07 |
MultiScler | lassosum.10FCVal | LDpred2.MultiPRS | 0.115 | 0.133 | -0.017 | 0.0126529 | 0.097 | 0.119 | -0.022 | 7.35e-04 |
MultiScler | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.138 | 0.133 | 0.006 | 0.4065083 | 0.115 | 0.119 | -0.004 | 4.57e-01 |
MultiScler | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.137 | 0.133 | 0.004 | 0.0858154 | 0.119 | 0.119 | 0.000 | 9.78e-01 |
MultiScler | LDpred2.10FCVal | LDpred2.MultiPRS | 0.120 | 0.133 | -0.012 | 0.0763982 | 0.108 | 0.119 | -0.011 | 5.46e-03 |
MultiScler | All.MultiPRS | LDpred2.MultiPRS | 0.141 | 0.133 | 0.009 | 0.0000001 | 0.122 | 0.119 | 0.003 | 2.96e-01 |
MultiScler | LDpred1.10FCVal | LDpred2.MultiPRS | 0.107 | 0.133 | -0.025 | 0.0002982 | 0.096 | 0.119 | -0.023 | 1.82e-04 |
MultiScler | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.091 | 0.133 | -0.041 | 0.0000000 | 0.088 | 0.119 | -0.031 | 7.58e-05 |
MultiScler | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.112 | 0.133 | -0.020 | 0.0000000 | 0.096 | 0.119 | -0.023 | 1.53e-04 |
MultiScler | lassosum.PseudoVal | LDpred2.MultiPRS | 0.103 | 0.133 | -0.029 | 0.0000289 | 0.102 | 0.119 | -0.017 | 9.00e-03 |
MultiScler | SBLUP.Inf | LDpred2.MultiPRS | 0.094 | 0.133 | -0.039 | 0.0000000 | 0.076 | 0.119 | -0.043 | 7.51e-07 |
MultiScler | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.129 | 0.120 | 0.008 | 0.0015968 | 0.116 | 0.108 | 0.009 | 1.12e-01 |
MultiScler | LDpred2.10FCVal | LDpred2.10FCVal | 0.120 | 0.120 | 0.000 | 1.0000000 | 0.108 | 0.108 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.10FCVal | LDpred2.10FCVal | 0.138 | 0.120 | 0.018 | 0.0000001 | 0.115 | 0.108 | 0.007 | 2.86e-01 |
MultiScler | All.MultiPRS | LDpred2.10FCVal | 0.141 | 0.120 | 0.021 | 0.0025190 | 0.122 | 0.108 | 0.015 | 5.08e-03 |
MultiScler | SBayesR.PseudoVal | LDpred2.10FCVal | 0.102 | 0.120 | -0.019 | 0.0002025 | 0.083 | 0.108 | -0.025 | 1.49e-02 |
MultiScler | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.091 | 0.120 | -0.029 | 0.0000000 | 0.088 | 0.108 | -0.020 | 3.35e-04 |
MultiScler | pT+clump.MultiPRS | LDpred2.10FCVal | 0.114 | 0.120 | -0.006 | 0.3900490 | 0.108 | 0.108 | 0.001 | 9.32e-01 |
MultiScler | lassosum.MultiPRS | LDpred2.10FCVal | 0.128 | 0.120 | 0.007 | 0.2892921 | 0.119 | 0.108 | 0.011 | 5.45e-02 |
MultiScler | LDpred2.PseudoVal | LDpred2.10FCVal | 0.119 | 0.120 | -0.002 | 0.4867102 | 0.110 | 0.108 | 0.003 | 5.47e-01 |
MultiScler | lassosum.10FCVal | LDpred2.10FCVal | 0.115 | 0.120 | -0.005 | 0.2281728 | 0.097 | 0.108 | -0.011 | 1.76e-01 |
MultiScler | SBLUP.Inf | LDpred2.10FCVal | 0.094 | 0.120 | -0.027 | 0.0000027 | 0.076 | 0.108 | -0.032 | 4.75e-03 |
MultiScler | LDpred1.10FCVal | LDpred2.10FCVal | 0.107 | 0.120 | -0.013 | 0.0001081 | 0.096 | 0.108 | -0.012 | 6.61e-02 |
MultiScler | pT+clump.10FCVal | LDpred2.10FCVal | 0.090 | 0.120 | -0.030 | 0.0000000 | 0.092 | 0.108 | -0.016 | 2.38e-02 |
MultiScler | LDpred1.MultiPRS | LDpred2.10FCVal | 0.112 | 0.120 | -0.008 | 0.2547441 | 0.096 | 0.108 | -0.012 | 6.07e-02 |
MultiScler | LDpred2.Inf | LDpred2.10FCVal | 0.094 | 0.120 | -0.026 | 0.0000032 | 0.076 | 0.108 | -0.031 | 5.76e-03 |
MultiScler | LDpred1.Inf | LDpred2.10FCVal | 0.090 | 0.120 | -0.031 | 0.0000000 | 0.078 | 0.108 | -0.029 | 2.69e-03 |
MultiScler | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.137 | 0.120 | 0.016 | 0.0185073 | 0.119 | 0.108 | 0.011 | 4.78e-02 |
MultiScler | LDpred2.MultiPRS | LDpred2.10FCVal | 0.133 | 0.120 | 0.012 | 0.0763982 | 0.119 | 0.108 | 0.011 | 5.46e-03 |
MultiScler | lassosum.PseudoVal | LDpred2.10FCVal | 0.103 | 0.120 | -0.017 | 0.0000000 | 0.102 | 0.108 | -0.006 | 2.21e-01 |
MultiScler | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.114 | 0.119 | -0.004 | 0.5274189 | 0.108 | 0.110 | -0.002 | 7.55e-01 |
MultiScler | lassosum.MultiPRS | LDpred2.PseudoVal | 0.128 | 0.119 | 0.009 | 0.1974836 | 0.119 | 0.110 | 0.008 | 1.48e-01 |
MultiScler | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.102 | 0.119 | -0.017 | 0.0000185 | 0.083 | 0.110 | -0.027 | 6.94e-04 |
MultiScler | All.MultiPRS | LDpred2.PseudoVal | 0.141 | 0.119 | 0.023 | 0.0011440 | 0.122 | 0.110 | 0.012 | 1.24e-02 |
MultiScler | SBLUP.Inf | LDpred2.PseudoVal | 0.094 | 0.119 | -0.025 | 0.0000030 | 0.076 | 0.110 | -0.035 | 1.14e-03 |
MultiScler | LDpred1.10FCVal | LDpred2.PseudoVal | 0.107 | 0.119 | -0.011 | 0.0038956 | 0.096 | 0.110 | -0.015 | 5.69e-02 |
MultiScler | LDpred2.10FCVal | LDpred2.PseudoVal | 0.120 | 0.119 | 0.002 | 0.4867102 | 0.108 | 0.110 | -0.003 | 5.47e-01 |
MultiScler | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.112 | 0.119 | -0.006 | 0.3597181 | 0.096 | 0.110 | -0.015 | 4.73e-02 |
MultiScler | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.119 | 0.119 | 0.000 | 1.0000000 | 0.110 | 0.110 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.129 | 0.119 | 0.010 | 0.0000148 | 0.116 | 0.110 | 0.006 | 1.95e-01 |
MultiScler | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.137 | 0.119 | 0.018 | 0.0097105 | 0.119 | 0.110 | 0.008 | 1.11e-01 |
MultiScler | pT+clump.10FCVal | LDpred2.PseudoVal | 0.090 | 0.119 | -0.029 | 0.0000000 | 0.092 | 0.110 | -0.019 | 2.96e-02 |
MultiScler | lassosum.PseudoVal | LDpred2.PseudoVal | 0.103 | 0.119 | -0.015 | 0.0000012 | 0.102 | 0.110 | -0.008 | 1.84e-01 |
MultiScler | LDpred2.Inf | LDpred2.PseudoVal | 0.094 | 0.119 | -0.025 | 0.0000034 | 0.076 | 0.110 | -0.034 | 1.43e-03 |
MultiScler | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.091 | 0.119 | -0.027 | 0.0000000 | 0.088 | 0.110 | -0.022 | 7.23e-03 |
MultiScler | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.138 | 0.119 | 0.020 | 0.0000000 | 0.115 | 0.110 | 0.004 | 4.95e-01 |
MultiScler | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.133 | 0.119 | 0.014 | 0.0452955 | 0.119 | 0.110 | 0.009 | 3.50e-02 |
MultiScler | lassosum.10FCVal | LDpred2.PseudoVal | 0.115 | 0.119 | -0.003 | 0.3861490 | 0.097 | 0.110 | -0.014 | 8.02e-02 |
MultiScler | LDpred1.Inf | LDpred2.PseudoVal | 0.090 | 0.119 | -0.029 | 0.0000000 | 0.078 | 0.110 | -0.032 | 1.18e-03 |
MultiScler | All.MultiPRS | LDpred2.Inf | 0.141 | 0.094 | 0.047 | 0.0000000 | 0.122 | 0.076 | 0.046 | 4.76e-07 |
MultiScler | LDpred1.10FCVal | LDpred2.Inf | 0.107 | 0.094 | 0.013 | 0.0032443 | 0.096 | 0.076 | 0.019 | 3.63e-02 |
MultiScler | SBayesR.PseudoVal | LDpred2.Inf | 0.102 | 0.094 | 0.008 | 0.0838262 | 0.083 | 0.076 | 0.007 | 4.48e-01 |
MultiScler | LDpred1.MultiPRS | LDpred2.Inf | 0.112 | 0.094 | 0.018 | 0.0089441 | 0.096 | 0.076 | 0.019 | 4.31e-02 |
MultiScler | LDpred2.Inf | LDpred2.Inf | 0.094 | 0.094 | 0.000 | 1.0000000 | 0.076 | 0.076 | 0.000 | 1.00e+00 |
MultiScler | MegaPRS.PseudoVal | LDpred2.Inf | 0.129 | 0.094 | 0.035 | 0.0000000 | 0.116 | 0.076 | 0.040 | 9.57e-05 |
MultiScler | pT+clump.10FCVal | LDpred2.Inf | 0.090 | 0.094 | -0.004 | 0.5527967 | 0.092 | 0.076 | 0.016 | 2.28e-01 |
MultiScler | LDpred2.10FCVal | LDpred2.Inf | 0.120 | 0.094 | 0.026 | 0.0000032 | 0.108 | 0.076 | 0.031 | 5.76e-03 |
MultiScler | lassosum.PseudoVal | LDpred2.Inf | 0.103 | 0.094 | 0.009 | 0.0986022 | 0.102 | 0.076 | 0.026 | 2.48e-02 |
MultiScler | pT+clump.MultiPRS | LDpred2.Inf | 0.114 | 0.094 | 0.020 | 0.0036761 | 0.108 | 0.076 | 0.032 | 6.82e-04 |
MultiScler | MegaPRS.MultiPRS | LDpred2.Inf | 0.137 | 0.094 | 0.043 | 0.0000000 | 0.119 | 0.076 | 0.043 | 7.29e-06 |
MultiScler | LDpred2.PseudoVal | LDpred2.Inf | 0.119 | 0.094 | 0.025 | 0.0000034 | 0.110 | 0.076 | 0.034 | 1.43e-03 |
MultiScler | LDpred2.MultiPRS | LDpred2.Inf | 0.133 | 0.094 | 0.039 | 0.0000000 | 0.119 | 0.076 | 0.043 | 1.12e-06 |
MultiScler | SBLUP.Inf | LDpred2.Inf | 0.094 | 0.094 | 0.000 | 0.1946320 | 0.076 | 0.076 | -0.001 | 1.48e-02 |
MultiScler | DBSLMM.PseudoVal | LDpred2.Inf | 0.091 | 0.094 | -0.003 | 0.6736561 | 0.088 | 0.076 | 0.012 | 3.57e-01 |
MultiScler | lassosum.MultiPRS | LDpred2.Inf | 0.128 | 0.094 | 0.034 | 0.0000016 | 0.119 | 0.076 | 0.042 | 2.91e-07 |
MultiScler | MegaPRS.10FCVal | LDpred2.Inf | 0.138 | 0.094 | 0.045 | 0.0000000 | 0.115 | 0.076 | 0.038 | 2.20e-05 |
MultiScler | lassosum.10FCVal | LDpred2.Inf | 0.115 | 0.094 | 0.021 | 0.0000000 | 0.097 | 0.076 | 0.020 | 4.82e-03 |
MultiScler | LDpred1.Inf | LDpred2.Inf | 0.090 | 0.094 | -0.004 | 0.2058731 | 0.078 | 0.076 | 0.002 | 7.82e-01 |
MultiScler | All.MultiPRS | pT+clump.MultiPRS | 0.141 | 0.114 | 0.027 | 0.0001039 | 0.122 | 0.108 | 0.014 | 2.21e-02 |
MultiScler | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.102 | 0.114 | -0.013 | 0.0684299 | 0.083 | 0.108 | -0.025 | 1.42e-03 |
MultiScler | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.137 | 0.114 | 0.022 | 0.0013112 | 0.119 | 0.108 | 0.011 | 1.15e-01 |
MultiScler | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.114 | 0.114 | 0.000 | 1.0000000 | 0.108 | 0.108 | 0.000 | 1.00e+00 |
MultiScler | lassosum.PseudoVal | pT+clump.MultiPRS | 0.103 | 0.114 | -0.011 | 0.1204833 | 0.102 | 0.108 | -0.006 | 4.28e-01 |
MultiScler | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.119 | 0.114 | 0.004 | 0.5274189 | 0.110 | 0.108 | 0.002 | 7.55e-01 |
MultiScler | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.091 | 0.114 | -0.023 | 0.0010101 | 0.088 | 0.108 | -0.020 | 1.81e-02 |
MultiScler | SBLUP.Inf | pT+clump.MultiPRS | 0.094 | 0.114 | -0.021 | 0.0033696 | 0.076 | 0.108 | -0.033 | 5.23e-04 |
MultiScler | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.133 | 0.114 | 0.018 | 0.0084316 | 0.119 | 0.108 | 0.011 | 6.66e-02 |
MultiScler | pT+clump.10FCVal | pT+clump.MultiPRS | 0.090 | 0.114 | -0.024 | 0.0005582 | 0.092 | 0.108 | -0.016 | 1.45e-02 |
MultiScler | LDpred1.Inf | pT+clump.MultiPRS | 0.090 | 0.114 | -0.025 | 0.0003908 | 0.078 | 0.108 | -0.030 | 1.29e-03 |
MultiScler | LDpred2.Inf | pT+clump.MultiPRS | 0.094 | 0.114 | -0.020 | 0.0036761 | 0.076 | 0.108 | -0.032 | 6.82e-04 |
MultiScler | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.138 | 0.114 | 0.024 | 0.0005312 | 0.115 | 0.108 | 0.007 | 3.71e-01 |
MultiScler | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.129 | 0.114 | 0.014 | 0.0388454 | 0.116 | 0.108 | 0.008 | 2.34e-01 |
MultiScler | LDpred2.10FCVal | pT+clump.MultiPRS | 0.120 | 0.114 | 0.006 | 0.3900490 | 0.108 | 0.108 | -0.001 | 9.32e-01 |
MultiScler | lassosum.10FCVal | pT+clump.MultiPRS | 0.115 | 0.114 | 0.001 | 0.8938588 | 0.097 | 0.108 | -0.012 | 9.64e-02 |
MultiScler | LDpred1.10FCVal | pT+clump.MultiPRS | 0.107 | 0.114 | -0.007 | 0.3181913 | 0.096 | 0.108 | -0.013 | 1.13e-01 |
MultiScler | lassosum.MultiPRS | pT+clump.MultiPRS | 0.128 | 0.114 | 0.013 | 0.0550331 | 0.119 | 0.108 | 0.010 | 7.50e-02 |
MultiScler | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.112 | 0.114 | -0.002 | 0.7762409 | 0.096 | 0.108 | -0.013 | 1.14e-01 |
MultiScler | LDpred1.Inf | pT+clump.10FCVal | 0.090 | 0.090 | -0.001 | 0.9040995 | 0.078 | 0.092 | -0.014 | 2.52e-01 |
MultiScler | pT+clump.MultiPRS | pT+clump.10FCVal | 0.114 | 0.090 | 0.024 | 0.0005582 | 0.108 | 0.092 | 0.016 | 1.45e-02 |
MultiScler | LDpred2.MultiPRS | pT+clump.10FCVal | 0.133 | 0.090 | 0.042 | 0.0000000 | 0.119 | 0.092 | 0.027 | 8.30e-04 |
MultiScler | SBayesR.PseudoVal | pT+clump.10FCVal | 0.102 | 0.090 | 0.011 | 0.0330816 | 0.083 | 0.092 | -0.009 | 4.15e-01 |
MultiScler | LDpred2.10FCVal | pT+clump.10FCVal | 0.120 | 0.090 | 0.030 | 0.0000000 | 0.108 | 0.092 | 0.016 | 2.38e-02 |
MultiScler | SBLUP.Inf | pT+clump.10FCVal | 0.094 | 0.090 | 0.004 | 0.5731828 | 0.076 | 0.092 | -0.016 | 2.07e-01 |
MultiScler | lassosum.MultiPRS | pT+clump.10FCVal | 0.128 | 0.090 | 0.038 | 0.0000001 | 0.119 | 0.092 | 0.027 | 3.25e-03 |
MultiScler | LDpred2.PseudoVal | pT+clump.10FCVal | 0.119 | 0.090 | 0.029 | 0.0000000 | 0.110 | 0.092 | 0.019 | 2.96e-02 |
MultiScler | LDpred1.MultiPRS | pT+clump.10FCVal | 0.112 | 0.090 | 0.022 | 0.0016637 | 0.096 | 0.092 | 0.004 | 6.97e-01 |
MultiScler | lassosum.10FCVal | pT+clump.10FCVal | 0.115 | 0.090 | 0.025 | 0.0000035 | 0.097 | 0.092 | 0.005 | 6.70e-01 |
MultiScler | LDpred1.10FCVal | pT+clump.10FCVal | 0.107 | 0.090 | 0.017 | 0.0003980 | 0.096 | 0.092 | 0.004 | 7.13e-01 |
MultiScler | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.137 | 0.090 | 0.047 | 0.0000000 | 0.119 | 0.092 | 0.027 | 3.31e-03 |
MultiScler | pT+clump.10FCVal | pT+clump.10FCVal | 0.090 | 0.090 | 0.000 | 1.0000000 | 0.092 | 0.092 | 0.000 | 1.00e+00 |
MultiScler | All.MultiPRS | pT+clump.10FCVal | 0.141 | 0.090 | 0.051 | 0.0000000 | 0.122 | 0.092 | 0.031 | 4.55e-04 |
MultiScler | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.129 | 0.090 | 0.039 | 0.0000000 | 0.116 | 0.092 | 0.024 | 5.49e-03 |
MultiScler | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.091 | 0.090 | 0.001 | 0.7364770 | 0.088 | 0.092 | -0.004 | 5.67e-01 |
MultiScler | MegaPRS.10FCVal | pT+clump.10FCVal | 0.138 | 0.090 | 0.048 | 0.0000000 | 0.115 | 0.092 | 0.023 | 2.13e-02 |
MultiScler | lassosum.PseudoVal | pT+clump.10FCVal | 0.103 | 0.090 | 0.013 | 0.0012138 | 0.102 | 0.092 | 0.010 | 2.21e-01 |
MultiScler | LDpred2.Inf | pT+clump.10FCVal | 0.094 | 0.090 | 0.004 | 0.5527967 | 0.076 | 0.092 | -0.016 | 2.28e-01 |
MultiScler | LDpred1.Inf | SBayesR.PseudoVal | 0.090 | 0.102 | -0.012 | 0.0120326 | 0.078 | 0.083 | -0.005 | 6.27e-01 |
MultiScler | LDpred2.Inf | SBayesR.PseudoVal | 0.094 | 0.102 | -0.008 | 0.0838262 | 0.076 | 0.083 | -0.007 | 4.48e-01 |
MultiScler | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.138 | 0.102 | 0.037 | 0.0000000 | 0.115 | 0.083 | 0.032 | 3.84e-04 |
MultiScler | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.133 | 0.102 | 0.031 | 0.0000078 | 0.119 | 0.083 | 0.036 | 9.10e-06 |
MultiScler | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.102 | 0.102 | 0.000 | 1.0000000 | 0.083 | 0.083 | 0.000 | 1.00e+00 |
MultiScler | lassosum.10FCVal | SBayesR.PseudoVal | 0.115 | 0.102 | 0.014 | 0.0019914 | 0.097 | 0.083 | 0.014 | 1.26e-01 |
MultiScler | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.114 | 0.102 | 0.013 | 0.0684299 | 0.108 | 0.083 | 0.025 | 1.42e-03 |
MultiScler | lassosum.MultiPRS | SBayesR.PseudoVal | 0.128 | 0.102 | 0.026 | 0.0001750 | 0.119 | 0.083 | 0.036 | 2.18e-05 |
MultiScler | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.119 | 0.102 | 0.017 | 0.0000185 | 0.110 | 0.083 | 0.027 | 6.94e-04 |
MultiScler | LDpred2.10FCVal | SBayesR.PseudoVal | 0.120 | 0.102 | 0.019 | 0.0002025 | 0.108 | 0.083 | 0.025 | 1.49e-02 |
MultiScler | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.137 | 0.102 | 0.035 | 0.0000004 | 0.119 | 0.083 | 0.036 | 4.17e-05 |
MultiScler | LDpred1.10FCVal | SBayesR.PseudoVal | 0.107 | 0.102 | 0.006 | 0.2608339 | 0.096 | 0.083 | 0.013 | 2.26e-01 |
MultiScler | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.129 | 0.102 | 0.027 | 0.0000000 | 0.116 | 0.083 | 0.033 | 1.24e-04 |
MultiScler | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.112 | 0.102 | 0.011 | 0.1229781 | 0.096 | 0.083 | 0.013 | 2.15e-01 |
MultiScler | All.MultiPRS | SBayesR.PseudoVal | 0.141 | 0.102 | 0.040 | 0.0000000 | 0.122 | 0.083 | 0.039 | 5.72e-07 |
MultiScler | SBLUP.Inf | SBayesR.PseudoVal | 0.094 | 0.102 | -0.008 | 0.0768043 | 0.076 | 0.083 | -0.007 | 4.01e-01 |
MultiScler | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.091 | 0.102 | -0.010 | 0.1018057 | 0.088 | 0.083 | 0.005 | 6.88e-01 |
MultiScler | pT+clump.10FCVal | SBayesR.PseudoVal | 0.090 | 0.102 | -0.011 | 0.0330816 | 0.092 | 0.083 | 0.009 | 4.15e-01 |
MultiScler | lassosum.PseudoVal | SBayesR.PseudoVal | 0.103 | 0.102 | 0.002 | 0.7300457 | 0.102 | 0.083 | 0.019 | 8.51e-02 |
MultiScler | LDpred2.PseudoVal | SBLUP.Inf | 0.119 | 0.094 | 0.025 | 0.0000030 | 0.110 | 0.076 | 0.035 | 1.14e-03 |
MultiScler | MegaPRS.10FCVal | SBLUP.Inf | 0.138 | 0.094 | 0.045 | 0.0000000 | 0.115 | 0.076 | 0.039 | 1.60e-05 |
MultiScler | lassosum.MultiPRS | SBLUP.Inf | 0.128 | 0.094 | 0.034 | 0.0000014 | 0.119 | 0.076 | 0.043 | 1.85e-07 |
MultiScler | LDpred1.MultiPRS | SBLUP.Inf | 0.112 | 0.094 | 0.019 | 0.0082623 | 0.096 | 0.076 | 0.020 | 3.61e-02 |
MultiScler | All.MultiPRS | SBLUP.Inf | 0.141 | 0.094 | 0.048 | 0.0000000 | 0.122 | 0.076 | 0.047 | 3.27e-07 |
MultiScler | LDpred2.Inf | SBLUP.Inf | 0.094 | 0.094 | 0.000 | 0.1946320 | 0.076 | 0.076 | 0.001 | 1.48e-02 |
MultiScler | MegaPRS.MultiPRS | SBLUP.Inf | 0.137 | 0.094 | 0.043 | 0.0000000 | 0.119 | 0.076 | 0.043 | 5.28e-06 |
MultiScler | pT+clump.MultiPRS | SBLUP.Inf | 0.114 | 0.094 | 0.021 | 0.0033696 | 0.108 | 0.076 | 0.033 | 5.23e-04 |
MultiScler | lassosum.PseudoVal | SBLUP.Inf | 0.103 | 0.094 | 0.010 | 0.0920583 | 0.102 | 0.076 | 0.027 | 2.11e-02 |
MultiScler | SBayesR.PseudoVal | SBLUP.Inf | 0.102 | 0.094 | 0.008 | 0.0768043 | 0.083 | 0.076 | 0.007 | 4.01e-01 |
MultiScler | DBSLMM.PseudoVal | SBLUP.Inf | 0.091 | 0.094 | -0.002 | 0.6959269 | 0.088 | 0.076 | 0.012 | 3.28e-01 |
MultiScler | SBLUP.Inf | SBLUP.Inf | 0.094 | 0.094 | 0.000 | 1.0000000 | 0.076 | 0.076 | 0.000 | 1.00e+00 |
MultiScler | LDpred2.MultiPRS | SBLUP.Inf | 0.133 | 0.094 | 0.039 | 0.0000000 | 0.119 | 0.076 | 0.043 | 7.51e-07 |
MultiScler | pT+clump.10FCVal | SBLUP.Inf | 0.090 | 0.094 | -0.004 | 0.5731828 | 0.092 | 0.076 | 0.016 | 2.07e-01 |
MultiScler | LDpred1.Inf | SBLUP.Inf | 0.090 | 0.094 | -0.004 | 0.2271213 | 0.078 | 0.076 | 0.003 | 7.06e-01 |
MultiScler | lassosum.10FCVal | SBLUP.Inf | 0.115 | 0.094 | 0.021 | 0.0000000 | 0.097 | 0.076 | 0.021 | 3.62e-03 |
MultiScler | LDpred1.10FCVal | SBLUP.Inf | 0.107 | 0.094 | 0.014 | 0.0028646 | 0.096 | 0.076 | 0.020 | 3.01e-02 |
MultiScler | MegaPRS.PseudoVal | SBLUP.Inf | 0.129 | 0.094 | 0.035 | 0.0000000 | 0.116 | 0.076 | 0.041 | 7.29e-05 |
MultiScler | LDpred2.10FCVal | SBLUP.Inf | 0.120 | 0.094 | 0.027 | 0.0000027 | 0.108 | 0.076 | 0.032 | 4.75e-03 |
RheuArth | LDpred1.10FCVal | All.MultiPRS | 0.141 | 0.202 | -0.061 | 0.0000000 | 0.120 | 0.189 | -0.069 | 9.48e-18 |
RheuArth | pT+clump.10FCVal | All.MultiPRS | 0.113 | 0.202 | -0.089 | 0.0000000 | 0.104 | 0.189 | -0.086 | 4.51e-20 |
RheuArth | LDpred1.MultiPRS | All.MultiPRS | 0.144 | 0.202 | -0.058 | 0.0000000 | 0.124 | 0.189 | -0.066 | 2.45e-17 |
RheuArth | LDpred2.Inf | All.MultiPRS | 0.087 | 0.202 | -0.115 | 0.0000000 | 0.077 | 0.189 | -0.113 | 7.98e-26 |
RheuArth | MegaPRS.PseudoVal | All.MultiPRS | 0.178 | 0.202 | -0.024 | 0.0005412 | 0.145 | 0.189 | -0.044 | 1.74e-15 |
RheuArth | LDpred2.10FCVal | All.MultiPRS | 0.156 | 0.202 | -0.046 | 0.0000000 | 0.138 | 0.189 | -0.051 | 5.41e-13 |
RheuArth | LDpred2.MultiPRS | All.MultiPRS | 0.156 | 0.202 | -0.046 | 0.0000000 | 0.137 | 0.189 | -0.053 | 7.30e-14 |
RheuArth | lassosum.10FCVal | All.MultiPRS | 0.162 | 0.202 | -0.040 | 0.0000000 | 0.138 | 0.189 | -0.051 | 2.26e-14 |
RheuArth | LDpred1.Inf | All.MultiPRS | 0.138 | 0.202 | -0.064 | 0.0000000 | 0.114 | 0.189 | -0.076 | 5.10e-20 |
RheuArth | lassosum.MultiPRS | All.MultiPRS | 0.169 | 0.202 | -0.033 | 0.0000012 | 0.146 | 0.189 | -0.043 | 2.96e-12 |
RheuArth | MegaPRS.10FCVal | All.MultiPRS | 0.182 | 0.202 | -0.020 | 0.0031164 | 0.162 | 0.189 | -0.027 | 1.79e-07 |
RheuArth | All.MultiPRS | All.MultiPRS | 0.202 | 0.202 | 0.000 | 1.0000000 | 0.189 | 0.189 | 0.000 | 1.00e+00 |
RheuArth | SBayesR.PseudoVal | All.MultiPRS | 0.123 | 0.202 | -0.079 | 0.0000000 | 0.123 | 0.189 | -0.066 | 1.21e-13 |
RheuArth | MegaPRS.MultiPRS | All.MultiPRS | 0.185 | 0.202 | -0.017 | 0.0143941 | 0.158 | 0.189 | -0.031 | 1.78e-10 |
RheuArth | pT+clump.MultiPRS | All.MultiPRS | 0.134 | 0.202 | -0.068 | 0.0000000 | 0.125 | 0.189 | -0.064 | 6.00e-15 |
RheuArth | lassosum.PseudoVal | All.MultiPRS | 0.127 | 0.202 | -0.075 | 0.0000000 | 0.114 | 0.189 | -0.075 | 3.27e-17 |
RheuArth | LDpred2.PseudoVal | All.MultiPRS | 0.112 | 0.202 | -0.090 | 0.0000000 | 0.111 | 0.189 | -0.078 | 4.72e-17 |
RheuArth | DBSLMM.PseudoVal | All.MultiPRS | 0.157 | 0.202 | -0.045 | 0.0000000 | 0.129 | 0.189 | -0.060 | 3.67e-17 |
RheuArth | SBLUP.Inf | All.MultiPRS | 0.113 | 0.202 | -0.089 | 0.0000000 | 0.101 | 0.189 | -0.088 | 1.42e-20 |
RheuArth | LDpred1.Inf | DBSLMM.PseudoVal | 0.138 | 0.157 | -0.019 | 0.0000027 | 0.114 | 0.129 | -0.016 | 5.22e-02 |
RheuArth | LDpred2.Inf | DBSLMM.PseudoVal | 0.087 | 0.157 | -0.070 | 0.0000000 | 0.077 | 0.129 | -0.053 | 1.05e-05 |
RheuArth | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.156 | 0.157 | -0.001 | 0.9207101 | 0.137 | 0.129 | 0.007 | 3.06e-01 |
RheuArth | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.113 | 0.157 | -0.044 | 0.0000000 | 0.104 | 0.129 | -0.026 | 1.20e-02 |
RheuArth | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.123 | 0.157 | -0.033 | 0.0000000 | 0.123 | 0.129 | -0.006 | 5.92e-01 |
RheuArth | All.MultiPRS | DBSLMM.PseudoVal | 0.202 | 0.157 | 0.045 | 0.0000000 | 0.189 | 0.129 | 0.060 | 3.67e-17 |
RheuArth | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.182 | 0.157 | 0.025 | 0.0000000 | 0.162 | 0.129 | 0.032 | 1.06e-06 |
RheuArth | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.185 | 0.157 | 0.028 | 0.0000409 | 0.158 | 0.129 | 0.029 | 4.48e-07 |
RheuArth | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.112 | 0.157 | -0.045 | 0.0000000 | 0.111 | 0.129 | -0.018 | 3.10e-02 |
RheuArth | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.127 | 0.157 | -0.030 | 0.0000000 | 0.114 | 0.129 | -0.015 | 1.03e-01 |
RheuArth | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.134 | 0.157 | -0.023 | 0.0011229 | 0.125 | 0.129 | -0.004 | 6.58e-01 |
RheuArth | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.178 | 0.157 | 0.021 | 0.0000000 | 0.145 | 0.129 | 0.016 | 1.04e-02 |
RheuArth | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.169 | 0.157 | 0.012 | 0.0903467 | 0.146 | 0.129 | 0.017 | 5.10e-04 |
RheuArth | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.156 | 0.157 | -0.001 | 0.8732673 | 0.138 | 0.129 | 0.009 | 2.38e-01 |
RheuArth | lassosum.10FCVal | DBSLMM.PseudoVal | 0.162 | 0.157 | 0.005 | 0.0336534 | 0.138 | 0.129 | 0.009 | 7.72e-02 |
RheuArth | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.141 | 0.157 | -0.016 | 0.0000048 | 0.120 | 0.129 | -0.009 | 2.01e-01 |
RheuArth | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.157 | 0.157 | 0.000 | 1.0000000 | 0.129 | 0.129 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.144 | 0.157 | -0.013 | 0.0659105 | 0.124 | 0.129 | -0.006 | 4.07e-01 |
RheuArth | SBLUP.Inf | DBSLMM.PseudoVal | 0.113 | 0.157 | -0.044 | 0.0000000 | 0.101 | 0.129 | -0.028 | 7.76e-03 |
RheuArth | SBayesR.PseudoVal | lassosum.MultiPRS | 0.123 | 0.169 | -0.045 | 0.0000000 | 0.123 | 0.146 | -0.023 | 1.07e-02 |
RheuArth | LDpred1.Inf | lassosum.MultiPRS | 0.138 | 0.169 | -0.030 | 0.0000126 | 0.114 | 0.146 | -0.033 | 6.97e-08 |
RheuArth | MegaPRS.10FCVal | lassosum.MultiPRS | 0.182 | 0.169 | 0.013 | 0.0572617 | 0.162 | 0.146 | 0.015 | 3.07e-03 |
RheuArth | LDpred2.MultiPRS | lassosum.MultiPRS | 0.156 | 0.169 | -0.012 | 0.0000555 | 0.137 | 0.146 | -0.010 | 1.21e-01 |
RheuArth | LDpred2.PseudoVal | lassosum.MultiPRS | 0.112 | 0.169 | -0.057 | 0.0000000 | 0.111 | 0.146 | -0.035 | 8.35e-05 |
RheuArth | LDpred2.10FCVal | lassosum.MultiPRS | 0.156 | 0.169 | -0.012 | 0.0747770 | 0.138 | 0.146 | -0.008 | 1.83e-01 |
RheuArth | pT+clump.MultiPRS | lassosum.MultiPRS | 0.134 | 0.169 | -0.034 | 0.0000007 | 0.125 | 0.146 | -0.021 | 8.60e-03 |
RheuArth | lassosum.MultiPRS | lassosum.MultiPRS | 0.169 | 0.169 | 0.000 | 1.0000000 | 0.146 | 0.146 | 0.000 | 1.00e+00 |
RheuArth | lassosum.PseudoVal | lassosum.MultiPRS | 0.127 | 0.169 | -0.042 | 0.0000000 | 0.114 | 0.146 | -0.032 | 3.72e-06 |
RheuArth | LDpred1.MultiPRS | lassosum.MultiPRS | 0.144 | 0.169 | -0.024 | 0.0000000 | 0.124 | 0.146 | -0.023 | 1.59e-05 |
RheuArth | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.185 | 0.169 | 0.017 | 0.0157426 | 0.158 | 0.146 | 0.012 | 7.19e-03 |
RheuArth | LDpred1.10FCVal | lassosum.MultiPRS | 0.141 | 0.169 | -0.028 | 0.0000631 | 0.120 | 0.146 | -0.026 | 7.25e-06 |
RheuArth | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.178 | 0.169 | 0.010 | 0.1618177 | 0.145 | 0.146 | -0.001 | 7.85e-01 |
RheuArth | pT+clump.10FCVal | lassosum.MultiPRS | 0.113 | 0.169 | -0.055 | 0.0000000 | 0.104 | 0.146 | -0.043 | 1.52e-05 |
RheuArth | lassosum.10FCVal | lassosum.MultiPRS | 0.162 | 0.169 | -0.007 | 0.3382766 | 0.138 | 0.146 | -0.008 | 3.16e-04 |
RheuArth | SBLUP.Inf | lassosum.MultiPRS | 0.113 | 0.169 | -0.055 | 0.0000000 | 0.101 | 0.146 | -0.045 | 3.70e-08 |
RheuArth | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.157 | 0.169 | -0.012 | 0.0903467 | 0.129 | 0.146 | -0.017 | 5.10e-04 |
RheuArth | All.MultiPRS | lassosum.MultiPRS | 0.202 | 0.169 | 0.033 | 0.0000012 | 0.189 | 0.146 | 0.043 | 2.96e-12 |
RheuArth | LDpred2.Inf | lassosum.MultiPRS | 0.087 | 0.169 | -0.082 | 0.0000000 | 0.077 | 0.146 | -0.070 | 1.65e-12 |
RheuArth | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.178 | 0.127 | 0.051 | 0.0000000 | 0.145 | 0.114 | 0.031 | 1.45e-04 |
RheuArth | LDpred2.PseudoVal | lassosum.PseudoVal | 0.112 | 0.127 | -0.015 | 0.0062555 | 0.111 | 0.114 | -0.003 | 7.80e-01 |
RheuArth | LDpred1.MultiPRS | lassosum.PseudoVal | 0.144 | 0.127 | 0.017 | 0.0127644 | 0.124 | 0.114 | 0.010 | 1.88e-01 |
RheuArth | lassosum.PseudoVal | lassosum.PseudoVal | 0.127 | 0.127 | 0.000 | 1.0000000 | 0.114 | 0.114 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.Inf | lassosum.PseudoVal | 0.087 | 0.127 | -0.040 | 0.0000000 | 0.077 | 0.114 | -0.037 | 6.67e-06 |
RheuArth | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.157 | 0.127 | 0.030 | 0.0000000 | 0.129 | 0.114 | 0.015 | 1.03e-01 |
RheuArth | SBLUP.Inf | lassosum.PseudoVal | 0.113 | 0.127 | -0.014 | 0.0001167 | 0.101 | 0.114 | -0.013 | 6.46e-02 |
RheuArth | LDpred2.MultiPRS | lassosum.PseudoVal | 0.156 | 0.127 | 0.029 | 0.0000244 | 0.137 | 0.114 | 0.023 | 9.48e-03 |
RheuArth | pT+clump.10FCVal | lassosum.PseudoVal | 0.113 | 0.127 | -0.013 | 0.0234944 | 0.104 | 0.114 | -0.010 | 3.87e-01 |
RheuArth | LDpred1.Inf | lassosum.PseudoVal | 0.138 | 0.127 | 0.012 | 0.0011727 | 0.114 | 0.114 | 0.000 | 9.71e-01 |
RheuArth | lassosum.MultiPRS | lassosum.PseudoVal | 0.169 | 0.127 | 0.042 | 0.0000000 | 0.146 | 0.114 | 0.032 | 3.72e-06 |
RheuArth | MegaPRS.10FCVal | lassosum.PseudoVal | 0.182 | 0.127 | 0.055 | 0.0000000 | 0.162 | 0.114 | 0.048 | 3.55e-09 |
RheuArth | All.MultiPRS | lassosum.PseudoVal | 0.202 | 0.127 | 0.075 | 0.0000000 | 0.189 | 0.114 | 0.075 | 3.27e-17 |
RheuArth | SBayesR.PseudoVal | lassosum.PseudoVal | 0.123 | 0.127 | -0.003 | 0.4193803 | 0.123 | 0.114 | 0.009 | 2.72e-01 |
RheuArth | lassosum.10FCVal | lassosum.PseudoVal | 0.162 | 0.127 | 0.035 | 0.0000000 | 0.138 | 0.114 | 0.024 | 2.29e-03 |
RheuArth | pT+clump.MultiPRS | lassosum.PseudoVal | 0.134 | 0.127 | 0.007 | 0.2871182 | 0.125 | 0.114 | 0.011 | 2.31e-01 |
RheuArth | LDpred1.10FCVal | lassosum.PseudoVal | 0.141 | 0.127 | 0.014 | 0.0002771 | 0.120 | 0.114 | 0.006 | 4.27e-01 |
RheuArth | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.185 | 0.127 | 0.058 | 0.0000000 | 0.158 | 0.114 | 0.044 | 3.93e-08 |
RheuArth | LDpred2.10FCVal | lassosum.PseudoVal | 0.156 | 0.127 | 0.029 | 0.0000000 | 0.138 | 0.114 | 0.024 | 5.19e-03 |
RheuArth | lassosum.10FCVal | lassosum.10FCVal | 0.162 | 0.162 | 0.000 | 1.0000000 | 0.138 | 0.138 | 0.000 | 1.00e+00 |
RheuArth | pT+clump.MultiPRS | lassosum.10FCVal | 0.134 | 0.162 | -0.028 | 0.0000646 | 0.125 | 0.138 | -0.013 | 1.37e-01 |
RheuArth | LDpred2.MultiPRS | lassosum.10FCVal | 0.156 | 0.162 | -0.006 | 0.4045132 | 0.137 | 0.138 | -0.001 | 8.50e-01 |
RheuArth | SBayesR.PseudoVal | lassosum.10FCVal | 0.123 | 0.162 | -0.039 | 0.0000000 | 0.123 | 0.138 | -0.015 | 1.50e-01 |
RheuArth | LDpred2.10FCVal | lassosum.10FCVal | 0.156 | 0.162 | -0.006 | 0.0738147 | 0.138 | 0.138 | 0.000 | 9.81e-01 |
RheuArth | SBLUP.Inf | lassosum.10FCVal | 0.113 | 0.162 | -0.049 | 0.0000000 | 0.101 | 0.138 | -0.037 | 1.01e-04 |
RheuArth | lassosum.MultiPRS | lassosum.10FCVal | 0.169 | 0.162 | 0.007 | 0.3382766 | 0.146 | 0.138 | 0.008 | 3.16e-04 |
RheuArth | LDpred2.PseudoVal | lassosum.10FCVal | 0.112 | 0.162 | -0.050 | 0.0000000 | 0.111 | 0.138 | -0.027 | 2.10e-03 |
RheuArth | LDpred1.MultiPRS | lassosum.10FCVal | 0.144 | 0.162 | -0.018 | 0.0100346 | 0.124 | 0.138 | -0.014 | 2.36e-02 |
RheuArth | LDpred2.Inf | lassosum.10FCVal | 0.087 | 0.162 | -0.075 | 0.0000000 | 0.077 | 0.138 | -0.061 | 1.91e-08 |
RheuArth | LDpred1.10FCVal | lassosum.10FCVal | 0.141 | 0.162 | -0.021 | 0.0000000 | 0.120 | 0.138 | -0.018 | 7.91e-03 |
RheuArth | MegaPRS.MultiPRS | lassosum.10FCVal | 0.185 | 0.162 | 0.023 | 0.0007695 | 0.158 | 0.138 | 0.020 | 1.23e-04 |
RheuArth | pT+clump.10FCVal | lassosum.10FCVal | 0.113 | 0.162 | -0.049 | 0.0000000 | 0.104 | 0.138 | -0.034 | 8.28e-04 |
RheuArth | All.MultiPRS | lassosum.10FCVal | 0.202 | 0.162 | 0.040 | 0.0000000 | 0.189 | 0.138 | 0.051 | 2.26e-14 |
RheuArth | MegaPRS.PseudoVal | lassosum.10FCVal | 0.178 | 0.162 | 0.016 | 0.0000000 | 0.145 | 0.138 | 0.007 | 2.19e-01 |
RheuArth | DBSLMM.PseudoVal | lassosum.10FCVal | 0.157 | 0.162 | -0.005 | 0.0336534 | 0.129 | 0.138 | -0.009 | 7.72e-02 |
RheuArth | MegaPRS.10FCVal | lassosum.10FCVal | 0.182 | 0.162 | 0.020 | 0.0000000 | 0.162 | 0.138 | 0.024 | 9.22e-05 |
RheuArth | lassosum.PseudoVal | lassosum.10FCVal | 0.127 | 0.162 | -0.035 | 0.0000000 | 0.114 | 0.138 | -0.024 | 2.29e-03 |
RheuArth | LDpred1.Inf | lassosum.10FCVal | 0.138 | 0.162 | -0.024 | 0.0000000 | 0.114 | 0.138 | -0.024 | 7.85e-04 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.178 | 0.185 | -0.007 | 0.3102477 | 0.145 | 0.158 | -0.013 | 3.57e-11 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.157 | 0.185 | -0.028 | 0.0000409 | 0.129 | 0.158 | -0.029 | 4.48e-07 |
RheuArth | SBLUP.Inf | MegaPRS.MultiPRS | 0.113 | 0.185 | -0.072 | 0.0000000 | 0.101 | 0.158 | -0.057 | 1.99e-11 |
RheuArth | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.156 | 0.185 | -0.029 | 0.0000258 | 0.137 | 0.158 | -0.022 | 2.15e-03 |
RheuArth | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.113 | 0.185 | -0.072 | 0.0000000 | 0.104 | 0.158 | -0.055 | 1.38e-08 |
RheuArth | LDpred1.Inf | MegaPRS.MultiPRS | 0.138 | 0.185 | -0.047 | 0.0000000 | 0.114 | 0.158 | -0.045 | 3.60e-11 |
RheuArth | LDpred2.Inf | MegaPRS.MultiPRS | 0.087 | 0.185 | -0.098 | 0.0000000 | 0.077 | 0.158 | -0.082 | 5.07e-16 |
RheuArth | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.182 | 0.185 | -0.004 | 0.6069160 | 0.162 | 0.158 | 0.004 | 1.55e-01 |
RheuArth | All.MultiPRS | MegaPRS.MultiPRS | 0.202 | 0.185 | 0.017 | 0.0143941 | 0.189 | 0.158 | 0.031 | 1.78e-10 |
RheuArth | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.123 | 0.185 | -0.062 | 0.0000000 | 0.123 | 0.158 | -0.035 | 5.19e-05 |
RheuArth | lassosum.10FCVal | MegaPRS.MultiPRS | 0.162 | 0.185 | -0.023 | 0.0007695 | 0.138 | 0.158 | -0.020 | 1.23e-04 |
RheuArth | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.134 | 0.185 | -0.051 | 0.0000000 | 0.125 | 0.158 | -0.033 | 6.87e-05 |
RheuArth | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.169 | 0.185 | -0.017 | 0.0157426 | 0.146 | 0.158 | -0.012 | 7.19e-03 |
RheuArth | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.112 | 0.185 | -0.074 | 0.0000000 | 0.111 | 0.158 | -0.047 | 6.20e-08 |
RheuArth | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.156 | 0.185 | -0.029 | 0.0000289 | 0.138 | 0.158 | -0.020 | 3.64e-03 |
RheuArth | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.127 | 0.185 | -0.058 | 0.0000000 | 0.114 | 0.158 | -0.044 | 3.93e-08 |
RheuArth | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.141 | 0.185 | -0.044 | 0.0000000 | 0.120 | 0.158 | -0.038 | 6.99e-09 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.185 | 0.185 | 0.000 | 1.0000000 | 0.158 | 0.158 | 0.000 | 1.00e+00 |
RheuArth | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.144 | 0.185 | -0.041 | 0.0000000 | 0.124 | 0.158 | -0.035 | 8.13e-09 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.178 | 0.178 | 0.000 | 1.0000000 | 0.145 | 0.145 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.156 | 0.178 | -0.022 | 0.0000000 | 0.138 | 0.145 | -0.007 | 3.67e-01 |
RheuArth | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.144 | 0.178 | -0.034 | 0.0000008 | 0.124 | 0.145 | -0.021 | 5.82e-04 |
RheuArth | LDpred2.Inf | MegaPRS.PseudoVal | 0.087 | 0.178 | -0.091 | 0.0000000 | 0.077 | 0.145 | -0.068 | 1.33e-11 |
RheuArth | LDpred1.Inf | MegaPRS.PseudoVal | 0.138 | 0.178 | -0.040 | 0.0000000 | 0.114 | 0.145 | -0.031 | 5.47e-06 |
RheuArth | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.169 | 0.178 | -0.010 | 0.1618177 | 0.146 | 0.145 | 0.001 | 7.85e-01 |
RheuArth | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.182 | 0.178 | 0.003 | 0.0681607 | 0.162 | 0.145 | 0.017 | 9.94e-06 |
RheuArth | All.MultiPRS | MegaPRS.PseudoVal | 0.202 | 0.178 | 0.024 | 0.0005412 | 0.189 | 0.145 | 0.044 | 1.74e-15 |
RheuArth | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.123 | 0.178 | -0.055 | 0.0000000 | 0.123 | 0.145 | -0.022 | 1.25e-02 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.157 | 0.178 | -0.021 | 0.0000000 | 0.129 | 0.145 | -0.016 | 1.04e-02 |
RheuArth | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.134 | 0.178 | -0.044 | 0.0000000 | 0.125 | 0.145 | -0.020 | 2.11e-02 |
RheuArth | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.127 | 0.178 | -0.051 | 0.0000000 | 0.114 | 0.145 | -0.031 | 1.45e-04 |
RheuArth | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.112 | 0.178 | -0.067 | 0.0000000 | 0.111 | 0.145 | -0.034 | 3.21e-04 |
RheuArth | lassosum.10FCVal | MegaPRS.PseudoVal | 0.162 | 0.178 | -0.016 | 0.0000000 | 0.138 | 0.145 | -0.007 | 2.19e-01 |
RheuArth | SBLUP.Inf | MegaPRS.PseudoVal | 0.113 | 0.178 | -0.065 | 0.0000000 | 0.101 | 0.145 | -0.044 | 3.02e-07 |
RheuArth | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.141 | 0.178 | -0.037 | 0.0000000 | 0.120 | 0.145 | -0.025 | 2.66e-04 |
RheuArth | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.113 | 0.178 | -0.065 | 0.0000000 | 0.104 | 0.145 | -0.041 | 3.17e-05 |
RheuArth | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.156 | 0.178 | -0.022 | 0.0014221 | 0.137 | 0.145 | -0.008 | 2.84e-01 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.185 | 0.178 | 0.007 | 0.3102477 | 0.158 | 0.145 | 0.013 | 3.57e-11 |
RheuArth | lassosum.10FCVal | MegaPRS.10FCVal | 0.162 | 0.182 | -0.020 | 0.0000000 | 0.138 | 0.162 | -0.024 | 9.22e-05 |
RheuArth | SBLUP.Inf | MegaPRS.10FCVal | 0.113 | 0.182 | -0.068 | 0.0000000 | 0.101 | 0.162 | -0.061 | 2.51e-13 |
RheuArth | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.123 | 0.182 | -0.058 | 0.0000000 | 0.123 | 0.162 | -0.039 | 4.72e-06 |
RheuArth | All.MultiPRS | MegaPRS.10FCVal | 0.202 | 0.182 | 0.020 | 0.0031164 | 0.189 | 0.162 | 0.027 | 1.79e-07 |
RheuArth | LDpred2.Inf | MegaPRS.10FCVal | 0.087 | 0.182 | -0.095 | 0.0000000 | 0.077 | 0.162 | -0.085 | 2.79e-18 |
RheuArth | lassosum.MultiPRS | MegaPRS.10FCVal | 0.169 | 0.182 | -0.013 | 0.0572617 | 0.146 | 0.162 | -0.015 | 3.07e-03 |
RheuArth | LDpred2.10FCVal | MegaPRS.10FCVal | 0.156 | 0.182 | -0.025 | 0.0000000 | 0.138 | 0.162 | -0.024 | 4.73e-04 |
RheuArth | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.144 | 0.182 | -0.038 | 0.0000001 | 0.124 | 0.162 | -0.038 | 1.77e-09 |
RheuArth | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.112 | 0.182 | -0.070 | 0.0000000 | 0.111 | 0.162 | -0.051 | 1.71e-09 |
RheuArth | LDpred1.10FCVal | MegaPRS.10FCVal | 0.141 | 0.182 | -0.041 | 0.0000000 | 0.120 | 0.162 | -0.042 | 1.84e-09 |
RheuArth | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.134 | 0.182 | -0.047 | 0.0000000 | 0.125 | 0.162 | -0.037 | 1.29e-05 |
RheuArth | pT+clump.10FCVal | MegaPRS.10FCVal | 0.113 | 0.182 | -0.068 | 0.0000000 | 0.104 | 0.162 | -0.058 | 3.16e-09 |
RheuArth | lassosum.PseudoVal | MegaPRS.10FCVal | 0.127 | 0.182 | -0.055 | 0.0000000 | 0.114 | 0.162 | -0.048 | 3.55e-09 |
RheuArth | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.178 | 0.182 | -0.003 | 0.0681607 | 0.145 | 0.162 | -0.017 | 9.94e-06 |
RheuArth | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.185 | 0.182 | 0.004 | 0.6069160 | 0.158 | 0.162 | -0.004 | 1.55e-01 |
RheuArth | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.182 | 0.182 | 0.000 | 1.0000000 | 0.162 | 0.162 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.156 | 0.182 | -0.026 | 0.0002218 | 0.137 | 0.162 | -0.025 | 3.14e-04 |
RheuArth | LDpred1.Inf | MegaPRS.10FCVal | 0.138 | 0.182 | -0.043 | 0.0000000 | 0.114 | 0.162 | -0.048 | 2.23e-12 |
RheuArth | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.157 | 0.182 | -0.025 | 0.0000000 | 0.129 | 0.162 | -0.032 | 1.06e-06 |
RheuArth | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.134 | 0.144 | -0.010 | 0.1551948 | 0.125 | 0.124 | 0.001 | 8.76e-01 |
RheuArth | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.182 | 0.144 | 0.038 | 0.0000001 | 0.162 | 0.124 | 0.038 | 1.77e-09 |
RheuArth | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.112 | 0.144 | -0.033 | 0.0000030 | 0.111 | 0.124 | -0.013 | 2.04e-01 |
RheuArth | LDpred1.Inf | LDpred1.MultiPRS | 0.138 | 0.144 | -0.006 | 0.4059109 | 0.114 | 0.124 | -0.010 | 8.81e-04 |
RheuArth | lassosum.10FCVal | LDpred1.MultiPRS | 0.162 | 0.144 | 0.018 | 0.0100346 | 0.138 | 0.124 | 0.014 | 2.36e-02 |
RheuArth | LDpred1.10FCVal | LDpred1.MultiPRS | 0.141 | 0.144 | -0.003 | 0.6415213 | 0.120 | 0.124 | -0.003 | 1.98e-01 |
RheuArth | lassosum.MultiPRS | LDpred1.MultiPRS | 0.169 | 0.144 | 0.024 | 0.0000000 | 0.146 | 0.124 | 0.023 | 1.59e-05 |
RheuArth | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.144 | 0.144 | 0.000 | 1.0000000 | 0.124 | 0.124 | 0.000 | 1.00e+00 |
RheuArth | All.MultiPRS | LDpred1.MultiPRS | 0.202 | 0.144 | 0.058 | 0.0000000 | 0.189 | 0.124 | 0.066 | 2.45e-17 |
RheuArth | LDpred2.Inf | LDpred1.MultiPRS | 0.087 | 0.144 | -0.057 | 0.0000000 | 0.077 | 0.124 | -0.047 | 1.39e-08 |
RheuArth | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.185 | 0.144 | 0.041 | 0.0000000 | 0.158 | 0.124 | 0.035 | 8.13e-09 |
RheuArth | pT+clump.10FCVal | LDpred1.MultiPRS | 0.113 | 0.144 | -0.031 | 0.0000101 | 0.104 | 0.124 | -0.020 | 7.48e-02 |
RheuArth | lassosum.PseudoVal | LDpred1.MultiPRS | 0.127 | 0.144 | -0.017 | 0.0127644 | 0.114 | 0.124 | -0.010 | 1.88e-01 |
RheuArth | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.123 | 0.144 | -0.021 | 0.0028432 | 0.123 | 0.124 | 0.000 | 9.68e-01 |
RheuArth | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.157 | 0.144 | 0.013 | 0.0659105 | 0.129 | 0.124 | 0.006 | 4.07e-01 |
RheuArth | SBLUP.Inf | LDpred1.MultiPRS | 0.113 | 0.144 | -0.031 | 0.0000088 | 0.101 | 0.124 | -0.023 | 5.88e-04 |
RheuArth | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.156 | 0.144 | 0.012 | 0.0007847 | 0.137 | 0.124 | 0.013 | 7.00e-02 |
RheuArth | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.178 | 0.144 | 0.034 | 0.0000008 | 0.145 | 0.124 | 0.021 | 5.82e-04 |
RheuArth | LDpred2.10FCVal | LDpred1.MultiPRS | 0.156 | 0.144 | 0.012 | 0.0793608 | 0.138 | 0.124 | 0.015 | 4.39e-02 |
RheuArth | LDpred1.10FCVal | LDpred1.Inf | 0.141 | 0.138 | 0.003 | 0.2466380 | 0.120 | 0.114 | 0.006 | 1.43e-01 |
RheuArth | LDpred2.PseudoVal | LDpred1.Inf | 0.112 | 0.138 | -0.027 | 0.0000004 | 0.111 | 0.114 | -0.003 | 7.88e-01 |
RheuArth | LDpred1.MultiPRS | LDpred1.Inf | 0.144 | 0.138 | 0.006 | 0.4059109 | 0.124 | 0.114 | 0.010 | 8.81e-04 |
RheuArth | pT+clump.MultiPRS | LDpred1.Inf | 0.134 | 0.138 | -0.004 | 0.5521162 | 0.125 | 0.114 | 0.011 | 2.31e-01 |
RheuArth | MegaPRS.PseudoVal | LDpred1.Inf | 0.178 | 0.138 | 0.040 | 0.0000000 | 0.145 | 0.114 | 0.031 | 5.47e-06 |
RheuArth | MegaPRS.MultiPRS | LDpred1.Inf | 0.185 | 0.138 | 0.047 | 0.0000000 | 0.158 | 0.114 | 0.045 | 3.60e-11 |
RheuArth | pT+clump.10FCVal | LDpred1.Inf | 0.113 | 0.138 | -0.025 | 0.0000124 | 0.104 | 0.114 | -0.010 | 3.87e-01 |
RheuArth | lassosum.PseudoVal | LDpred1.Inf | 0.127 | 0.138 | -0.012 | 0.0011727 | 0.114 | 0.114 | 0.000 | 9.71e-01 |
RheuArth | LDpred2.Inf | LDpred1.Inf | 0.087 | 0.138 | -0.051 | 0.0000000 | 0.077 | 0.114 | -0.037 | 3.05e-07 |
RheuArth | DBSLMM.PseudoVal | LDpred1.Inf | 0.157 | 0.138 | 0.019 | 0.0000027 | 0.129 | 0.114 | 0.016 | 5.22e-02 |
RheuArth | SBLUP.Inf | LDpred1.Inf | 0.113 | 0.138 | -0.025 | 0.0000000 | 0.101 | 0.114 | -0.013 | 1.74e-02 |
RheuArth | LDpred2.MultiPRS | LDpred1.Inf | 0.156 | 0.138 | 0.018 | 0.0102878 | 0.137 | 0.114 | 0.023 | 3.02e-03 |
RheuArth | lassosum.10FCVal | LDpred1.Inf | 0.162 | 0.138 | 0.024 | 0.0000000 | 0.138 | 0.114 | 0.024 | 7.85e-04 |
RheuArth | LDpred1.Inf | LDpred1.Inf | 0.138 | 0.138 | 0.000 | 1.0000000 | 0.114 | 0.114 | 0.000 | 1.00e+00 |
RheuArth | lassosum.MultiPRS | LDpred1.Inf | 0.169 | 0.138 | 0.030 | 0.0000126 | 0.146 | 0.114 | 0.033 | 6.97e-08 |
RheuArth | MegaPRS.10FCVal | LDpred1.Inf | 0.182 | 0.138 | 0.043 | 0.0000000 | 0.162 | 0.114 | 0.048 | 2.23e-12 |
RheuArth | All.MultiPRS | LDpred1.Inf | 0.202 | 0.138 | 0.064 | 0.0000000 | 0.189 | 0.114 | 0.076 | 5.10e-20 |
RheuArth | SBayesR.PseudoVal | LDpred1.Inf | 0.123 | 0.138 | -0.015 | 0.0000909 | 0.123 | 0.114 | 0.010 | 2.18e-01 |
RheuArth | LDpred2.10FCVal | LDpred1.Inf | 0.156 | 0.138 | 0.018 | 0.0000017 | 0.138 | 0.114 | 0.024 | 1.45e-03 |
RheuArth | All.MultiPRS | LDpred1.10FCVal | 0.202 | 0.141 | 0.061 | 0.0000000 | 0.189 | 0.120 | 0.069 | 9.48e-18 |
RheuArth | pT+clump.MultiPRS | LDpred1.10FCVal | 0.134 | 0.141 | -0.007 | 0.3373883 | 0.125 | 0.120 | 0.005 | 6.14e-01 |
RheuArth | LDpred1.10FCVal | LDpred1.10FCVal | 0.141 | 0.141 | 0.000 | 1.0000000 | 0.120 | 0.120 | 0.000 | 1.00e+00 |
RheuArth | SBayesR.PseudoVal | LDpred1.10FCVal | 0.123 | 0.141 | -0.018 | 0.0000934 | 0.123 | 0.120 | 0.003 | 7.36e-01 |
RheuArth | LDpred1.MultiPRS | LDpred1.10FCVal | 0.144 | 0.141 | 0.003 | 0.6415213 | 0.124 | 0.120 | 0.003 | 1.98e-01 |
RheuArth | SBLUP.Inf | LDpred1.10FCVal | 0.113 | 0.141 | -0.028 | 0.0000000 | 0.101 | 0.120 | -0.019 | 8.96e-03 |
RheuArth | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.178 | 0.141 | 0.037 | 0.0000000 | 0.145 | 0.120 | 0.025 | 2.66e-04 |
RheuArth | LDpred2.PseudoVal | LDpred1.10FCVal | 0.112 | 0.141 | -0.029 | 0.0000000 | 0.111 | 0.120 | -0.009 | 3.55e-01 |
RheuArth | LDpred2.MultiPRS | LDpred1.10FCVal | 0.156 | 0.141 | 0.015 | 0.0276872 | 0.137 | 0.120 | 0.017 | 2.87e-02 |
RheuArth | LDpred2.Inf | LDpred1.10FCVal | 0.087 | 0.141 | -0.054 | 0.0000000 | 0.077 | 0.120 | -0.044 | 8.72e-07 |
RheuArth | LDpred1.Inf | LDpred1.10FCVal | 0.138 | 0.141 | -0.003 | 0.2466380 | 0.114 | 0.120 | -0.006 | 1.43e-01 |
RheuArth | pT+clump.10FCVal | LDpred1.10FCVal | 0.113 | 0.141 | -0.028 | 0.0000007 | 0.104 | 0.120 | -0.016 | 1.44e-01 |
RheuArth | LDpred2.10FCVal | LDpred1.10FCVal | 0.156 | 0.141 | 0.015 | 0.0000377 | 0.138 | 0.120 | 0.018 | 1.75e-02 |
RheuArth | lassosum.PseudoVal | LDpred1.10FCVal | 0.127 | 0.141 | -0.014 | 0.0002771 | 0.114 | 0.120 | -0.006 | 4.27e-01 |
RheuArth | lassosum.10FCVal | LDpred1.10FCVal | 0.162 | 0.141 | 0.021 | 0.0000000 | 0.138 | 0.120 | 0.018 | 7.91e-03 |
RheuArth | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.185 | 0.141 | 0.044 | 0.0000000 | 0.158 | 0.120 | 0.038 | 6.99e-09 |
RheuArth | lassosum.MultiPRS | LDpred1.10FCVal | 0.169 | 0.141 | 0.028 | 0.0000631 | 0.146 | 0.120 | 0.026 | 7.25e-06 |
RheuArth | MegaPRS.10FCVal | LDpred1.10FCVal | 0.182 | 0.141 | 0.041 | 0.0000000 | 0.162 | 0.120 | 0.042 | 1.84e-09 |
RheuArth | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.157 | 0.141 | 0.016 | 0.0000048 | 0.129 | 0.120 | 0.009 | 2.01e-01 |
RheuArth | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.123 | 0.156 | -0.033 | 0.0000025 | 0.123 | 0.137 | -0.014 | 1.90e-01 |
RheuArth | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.156 | 0.156 | 0.000 | 1.0000000 | 0.137 | 0.137 | 0.000 | 1.00e+00 |
RheuArth | pT+clump.10FCVal | LDpred2.MultiPRS | 0.113 | 0.156 | -0.043 | 0.0000000 | 0.104 | 0.137 | -0.033 | 2.97e-03 |
RheuArth | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.112 | 0.156 | -0.045 | 0.0000000 | 0.111 | 0.137 | -0.026 | 1.31e-04 |
RheuArth | LDpred2.Inf | LDpred2.MultiPRS | 0.087 | 0.156 | -0.069 | 0.0000000 | 0.077 | 0.137 | -0.060 | 1.19e-10 |
RheuArth | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.134 | 0.156 | -0.022 | 0.0016152 | 0.125 | 0.137 | -0.012 | 2.26e-01 |
RheuArth | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.178 | 0.156 | 0.022 | 0.0014221 | 0.145 | 0.137 | 0.008 | 2.84e-01 |
RheuArth | lassosum.MultiPRS | LDpred2.MultiPRS | 0.169 | 0.156 | 0.012 | 0.0000555 | 0.146 | 0.137 | 0.010 | 1.21e-01 |
RheuArth | LDpred1.Inf | LDpred2.MultiPRS | 0.138 | 0.156 | -0.018 | 0.0102878 | 0.114 | 0.137 | -0.023 | 3.02e-03 |
RheuArth | lassosum.10FCVal | LDpred2.MultiPRS | 0.162 | 0.156 | 0.006 | 0.4045132 | 0.138 | 0.137 | 0.001 | 8.50e-01 |
RheuArth | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.182 | 0.156 | 0.026 | 0.0002218 | 0.162 | 0.137 | 0.025 | 3.14e-04 |
RheuArth | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.185 | 0.156 | 0.029 | 0.0000258 | 0.158 | 0.137 | 0.022 | 2.15e-03 |
RheuArth | LDpred2.10FCVal | LDpred2.MultiPRS | 0.156 | 0.156 | 0.000 | 0.9885795 | 0.138 | 0.137 | 0.001 | 1.82e-01 |
RheuArth | All.MultiPRS | LDpred2.MultiPRS | 0.202 | 0.156 | 0.046 | 0.0000000 | 0.189 | 0.137 | 0.053 | 7.30e-14 |
RheuArth | LDpred1.10FCVal | LDpred2.MultiPRS | 0.141 | 0.156 | -0.015 | 0.0276872 | 0.120 | 0.137 | -0.017 | 2.87e-02 |
RheuArth | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.157 | 0.156 | 0.001 | 0.9207101 | 0.129 | 0.137 | -0.007 | 3.06e-01 |
RheuArth | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.144 | 0.156 | -0.012 | 0.0007847 | 0.124 | 0.137 | -0.013 | 7.00e-02 |
RheuArth | lassosum.PseudoVal | LDpred2.MultiPRS | 0.127 | 0.156 | -0.029 | 0.0000244 | 0.114 | 0.137 | -0.023 | 9.48e-03 |
RheuArth | SBLUP.Inf | LDpred2.MultiPRS | 0.113 | 0.156 | -0.043 | 0.0000000 | 0.101 | 0.137 | -0.036 | 4.40e-05 |
RheuArth | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.178 | 0.156 | 0.022 | 0.0000000 | 0.145 | 0.138 | 0.007 | 3.67e-01 |
RheuArth | LDpred2.10FCVal | LDpred2.10FCVal | 0.156 | 0.156 | 0.000 | 1.0000000 | 0.138 | 0.138 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.10FCVal | LDpred2.10FCVal | 0.182 | 0.156 | 0.025 | 0.0000000 | 0.162 | 0.138 | 0.024 | 4.73e-04 |
RheuArth | All.MultiPRS | LDpred2.10FCVal | 0.202 | 0.156 | 0.046 | 0.0000000 | 0.189 | 0.138 | 0.051 | 5.41e-13 |
RheuArth | SBayesR.PseudoVal | LDpred2.10FCVal | 0.123 | 0.156 | -0.033 | 0.0000000 | 0.123 | 0.138 | -0.015 | 1.39e-01 |
RheuArth | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.157 | 0.156 | 0.001 | 0.8732673 | 0.129 | 0.138 | -0.009 | 2.38e-01 |
RheuArth | pT+clump.MultiPRS | LDpred2.10FCVal | 0.134 | 0.156 | -0.022 | 0.0015540 | 0.125 | 0.138 | -0.013 | 1.73e-01 |
RheuArth | lassosum.MultiPRS | LDpred2.10FCVal | 0.169 | 0.156 | 0.012 | 0.0747770 | 0.146 | 0.138 | 0.008 | 1.83e-01 |
RheuArth | LDpred2.PseudoVal | LDpred2.10FCVal | 0.112 | 0.156 | -0.045 | 0.0000000 | 0.111 | 0.138 | -0.027 | 2.45e-05 |
RheuArth | lassosum.10FCVal | LDpred2.10FCVal | 0.162 | 0.156 | 0.006 | 0.0738147 | 0.138 | 0.138 | 0.000 | 9.81e-01 |
RheuArth | SBLUP.Inf | LDpred2.10FCVal | 0.113 | 0.156 | -0.043 | 0.0000000 | 0.101 | 0.138 | -0.037 | 1.29e-05 |
RheuArth | LDpred1.10FCVal | LDpred2.10FCVal | 0.141 | 0.156 | -0.015 | 0.0000377 | 0.120 | 0.138 | -0.018 | 1.75e-02 |
RheuArth | pT+clump.10FCVal | LDpred2.10FCVal | 0.113 | 0.156 | -0.043 | 0.0000000 | 0.104 | 0.138 | -0.034 | 2.01e-03 |
RheuArth | LDpred1.MultiPRS | LDpred2.10FCVal | 0.144 | 0.156 | -0.012 | 0.0793608 | 0.124 | 0.138 | -0.015 | 4.39e-02 |
RheuArth | LDpred2.Inf | LDpred2.10FCVal | 0.087 | 0.156 | -0.069 | 0.0000000 | 0.077 | 0.138 | -0.061 | 1.27e-11 |
RheuArth | LDpred1.Inf | LDpred2.10FCVal | 0.138 | 0.156 | -0.018 | 0.0000017 | 0.114 | 0.138 | -0.024 | 1.45e-03 |
RheuArth | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.185 | 0.156 | 0.029 | 0.0000289 | 0.158 | 0.138 | 0.020 | 3.64e-03 |
RheuArth | LDpred2.MultiPRS | LDpred2.10FCVal | 0.156 | 0.156 | 0.000 | 0.9885795 | 0.137 | 0.138 | -0.001 | 1.82e-01 |
RheuArth | lassosum.PseudoVal | LDpred2.10FCVal | 0.127 | 0.156 | -0.029 | 0.0000000 | 0.114 | 0.138 | -0.024 | 5.19e-03 |
RheuArth | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.134 | 0.112 | 0.023 | 0.0012231 | 0.125 | 0.111 | 0.014 | 2.07e-01 |
RheuArth | lassosum.MultiPRS | LDpred2.PseudoVal | 0.169 | 0.112 | 0.057 | 0.0000000 | 0.146 | 0.111 | 0.035 | 8.35e-05 |
RheuArth | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.123 | 0.112 | 0.012 | 0.0543601 | 0.123 | 0.111 | 0.012 | 3.17e-01 |
RheuArth | All.MultiPRS | LDpred2.PseudoVal | 0.202 | 0.112 | 0.090 | 0.0000000 | 0.189 | 0.111 | 0.078 | 4.72e-17 |
RheuArth | SBLUP.Inf | LDpred2.PseudoVal | 0.113 | 0.112 | 0.002 | 0.7773354 | 0.101 | 0.111 | -0.010 | 4.06e-01 |
RheuArth | LDpred1.10FCVal | LDpred2.PseudoVal | 0.141 | 0.112 | 0.029 | 0.0000000 | 0.120 | 0.111 | 0.009 | 3.55e-01 |
RheuArth | LDpred2.10FCVal | LDpred2.PseudoVal | 0.156 | 0.112 | 0.045 | 0.0000000 | 0.138 | 0.111 | 0.027 | 2.45e-05 |
RheuArth | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.144 | 0.112 | 0.033 | 0.0000030 | 0.124 | 0.111 | 0.013 | 2.04e-01 |
RheuArth | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.112 | 0.112 | 0.000 | 1.0000000 | 0.111 | 0.111 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.178 | 0.112 | 0.067 | 0.0000000 | 0.145 | 0.111 | 0.034 | 3.21e-04 |
RheuArth | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.185 | 0.112 | 0.074 | 0.0000000 | 0.158 | 0.111 | 0.047 | 6.20e-08 |
RheuArth | pT+clump.10FCVal | LDpred2.PseudoVal | 0.113 | 0.112 | 0.002 | 0.7518477 | 0.104 | 0.111 | -0.007 | 5.26e-01 |
RheuArth | lassosum.PseudoVal | LDpred2.PseudoVal | 0.127 | 0.112 | 0.015 | 0.0062555 | 0.114 | 0.111 | 0.003 | 7.80e-01 |
RheuArth | LDpred2.Inf | LDpred2.PseudoVal | 0.087 | 0.112 | -0.025 | 0.0000696 | 0.077 | 0.111 | -0.034 | 6.09e-03 |
RheuArth | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.157 | 0.112 | 0.045 | 0.0000000 | 0.129 | 0.111 | 0.018 | 3.10e-02 |
RheuArth | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.182 | 0.112 | 0.070 | 0.0000000 | 0.162 | 0.111 | 0.051 | 1.71e-09 |
RheuArth | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.156 | 0.112 | 0.045 | 0.0000000 | 0.137 | 0.111 | 0.026 | 1.31e-04 |
RheuArth | lassosum.10FCVal | LDpred2.PseudoVal | 0.162 | 0.112 | 0.050 | 0.0000000 | 0.138 | 0.111 | 0.027 | 2.10e-03 |
RheuArth | LDpred1.Inf | LDpred2.PseudoVal | 0.138 | 0.112 | 0.027 | 0.0000004 | 0.114 | 0.111 | 0.003 | 7.88e-01 |
RheuArth | All.MultiPRS | LDpred2.Inf | 0.202 | 0.087 | 0.115 | 0.0000000 | 0.189 | 0.077 | 0.113 | 7.98e-26 |
RheuArth | LDpred1.10FCVal | LDpred2.Inf | 0.141 | 0.087 | 0.054 | 0.0000000 | 0.120 | 0.077 | 0.044 | 8.72e-07 |
RheuArth | SBayesR.PseudoVal | LDpred2.Inf | 0.123 | 0.087 | 0.036 | 0.0000000 | 0.123 | 0.077 | 0.047 | 3.47e-12 |
RheuArth | LDpred1.MultiPRS | LDpred2.Inf | 0.144 | 0.087 | 0.057 | 0.0000000 | 0.124 | 0.077 | 0.047 | 1.39e-08 |
RheuArth | LDpred2.Inf | LDpred2.Inf | 0.087 | 0.087 | 0.000 | 1.0000000 | 0.077 | 0.077 | 0.000 | 1.00e+00 |
RheuArth | MegaPRS.PseudoVal | LDpred2.Inf | 0.178 | 0.087 | 0.091 | 0.0000000 | 0.145 | 0.077 | 0.068 | 1.33e-11 |
RheuArth | pT+clump.10FCVal | LDpred2.Inf | 0.113 | 0.087 | 0.026 | 0.0000656 | 0.104 | 0.077 | 0.027 | 4.01e-02 |
RheuArth | LDpred2.10FCVal | LDpred2.Inf | 0.156 | 0.087 | 0.069 | 0.0000000 | 0.138 | 0.077 | 0.061 | 1.27e-11 |
RheuArth | lassosum.PseudoVal | LDpred2.Inf | 0.127 | 0.087 | 0.040 | 0.0000000 | 0.114 | 0.077 | 0.037 | 6.67e-06 |
RheuArth | pT+clump.MultiPRS | LDpred2.Inf | 0.134 | 0.087 | 0.047 | 0.0000000 | 0.125 | 0.077 | 0.048 | 4.84e-06 |
RheuArth | MegaPRS.MultiPRS | LDpred2.Inf | 0.185 | 0.087 | 0.098 | 0.0000000 | 0.158 | 0.077 | 0.082 | 5.07e-16 |
RheuArth | LDpred2.PseudoVal | LDpred2.Inf | 0.112 | 0.087 | 0.025 | 0.0000696 | 0.111 | 0.077 | 0.034 | 6.09e-03 |
RheuArth | LDpred2.MultiPRS | LDpred2.Inf | 0.156 | 0.087 | 0.069 | 0.0000000 | 0.137 | 0.077 | 0.060 | 1.19e-10 |
RheuArth | SBLUP.Inf | LDpred2.Inf | 0.113 | 0.087 | 0.026 | 0.0000000 | 0.101 | 0.077 | 0.024 | 1.81e-16 |
RheuArth | DBSLMM.PseudoVal | LDpred2.Inf | 0.157 | 0.087 | 0.070 | 0.0000000 | 0.129 | 0.077 | 0.053 | 1.05e-05 |
RheuArth | lassosum.MultiPRS | LDpred2.Inf | 0.169 | 0.087 | 0.082 | 0.0000000 | 0.146 | 0.077 | 0.070 | 1.65e-12 |
RheuArth | MegaPRS.10FCVal | LDpred2.Inf | 0.182 | 0.087 | 0.095 | 0.0000000 | 0.162 | 0.077 | 0.085 | 2.79e-18 |
RheuArth | lassosum.10FCVal | LDpred2.Inf | 0.162 | 0.087 | 0.075 | 0.0000000 | 0.138 | 0.077 | 0.061 | 1.91e-08 |
RheuArth | LDpred1.Inf | LDpred2.Inf | 0.138 | 0.087 | 0.051 | 0.0000000 | 0.114 | 0.077 | 0.037 | 3.05e-07 |
RheuArth | All.MultiPRS | pT+clump.MultiPRS | 0.202 | 0.134 | 0.068 | 0.0000000 | 0.189 | 0.125 | 0.064 | 6.00e-15 |
RheuArth | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.123 | 0.134 | -0.011 | 0.1211767 | 0.123 | 0.125 | -0.002 | 8.15e-01 |
RheuArth | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.185 | 0.134 | 0.051 | 0.0000000 | 0.158 | 0.125 | 0.033 | 6.87e-05 |
RheuArth | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.134 | 0.134 | 0.000 | 1.0000000 | 0.125 | 0.125 | 0.000 | 1.00e+00 |
RheuArth | lassosum.PseudoVal | pT+clump.MultiPRS | 0.127 | 0.134 | -0.007 | 0.2871182 | 0.114 | 0.125 | -0.011 | 2.31e-01 |
RheuArth | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.112 | 0.134 | -0.023 | 0.0012231 | 0.111 | 0.125 | -0.014 | 2.07e-01 |
RheuArth | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.157 | 0.134 | 0.023 | 0.0011229 | 0.129 | 0.125 | 0.004 | 6.58e-01 |
RheuArth | SBLUP.Inf | pT+clump.MultiPRS | 0.113 | 0.134 | -0.021 | 0.0026800 | 0.101 | 0.125 | -0.024 | 1.10e-02 |
RheuArth | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.156 | 0.134 | 0.022 | 0.0016152 | 0.137 | 0.125 | 0.012 | 2.26e-01 |
RheuArth | pT+clump.10FCVal | pT+clump.MultiPRS | 0.113 | 0.134 | -0.021 | 0.0027834 | 0.104 | 0.125 | -0.021 | 1.64e-04 |
RheuArth | LDpred1.Inf | pT+clump.MultiPRS | 0.138 | 0.134 | 0.004 | 0.5521162 | 0.114 | 0.125 | -0.011 | 2.31e-01 |
RheuArth | LDpred2.Inf | pT+clump.MultiPRS | 0.087 | 0.134 | -0.047 | 0.0000000 | 0.077 | 0.125 | -0.048 | 4.84e-06 |
RheuArth | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.182 | 0.134 | 0.047 | 0.0000000 | 0.162 | 0.125 | 0.037 | 1.29e-05 |
RheuArth | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.178 | 0.134 | 0.044 | 0.0000000 | 0.145 | 0.125 | 0.020 | 2.11e-02 |
RheuArth | LDpred2.10FCVal | pT+clump.MultiPRS | 0.156 | 0.134 | 0.022 | 0.0015540 | 0.138 | 0.125 | 0.013 | 1.73e-01 |
RheuArth | lassosum.10FCVal | pT+clump.MultiPRS | 0.162 | 0.134 | 0.028 | 0.0000646 | 0.138 | 0.125 | 0.013 | 1.37e-01 |
RheuArth | LDpred1.10FCVal | pT+clump.MultiPRS | 0.141 | 0.134 | 0.007 | 0.3373883 | 0.120 | 0.125 | -0.005 | 6.14e-01 |
RheuArth | lassosum.MultiPRS | pT+clump.MultiPRS | 0.169 | 0.134 | 0.034 | 0.0000007 | 0.146 | 0.125 | 0.021 | 8.60e-03 |
RheuArth | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.144 | 0.134 | 0.010 | 0.1551948 | 0.124 | 0.125 | -0.001 | 8.76e-01 |
RheuArth | LDpred1.Inf | pT+clump.10FCVal | 0.138 | 0.113 | 0.025 | 0.0000124 | 0.114 | 0.104 | 0.010 | 3.87e-01 |
RheuArth | pT+clump.MultiPRS | pT+clump.10FCVal | 0.134 | 0.113 | 0.021 | 0.0027834 | 0.125 | 0.104 | 0.021 | 1.64e-04 |
RheuArth | LDpred2.MultiPRS | pT+clump.10FCVal | 0.156 | 0.113 | 0.043 | 0.0000000 | 0.137 | 0.104 | 0.033 | 2.97e-03 |
RheuArth | SBayesR.PseudoVal | pT+clump.10FCVal | 0.123 | 0.113 | 0.010 | 0.0514728 | 0.123 | 0.104 | 0.020 | 5.55e-02 |
RheuArth | LDpred2.10FCVal | pT+clump.10FCVal | 0.156 | 0.113 | 0.043 | 0.0000000 | 0.138 | 0.104 | 0.034 | 2.01e-03 |
RheuArth | SBLUP.Inf | pT+clump.10FCVal | 0.113 | 0.113 | 0.000 | 0.9869945 | 0.101 | 0.104 | -0.003 | 8.18e-01 |
RheuArth | lassosum.MultiPRS | pT+clump.10FCVal | 0.169 | 0.113 | 0.055 | 0.0000000 | 0.146 | 0.104 | 0.043 | 1.52e-05 |
RheuArth | LDpred2.PseudoVal | pT+clump.10FCVal | 0.112 | 0.113 | -0.002 | 0.7518477 | 0.111 | 0.104 | 0.007 | 5.26e-01 |
RheuArth | LDpred1.MultiPRS | pT+clump.10FCVal | 0.144 | 0.113 | 0.031 | 0.0000101 | 0.124 | 0.104 | 0.020 | 7.48e-02 |
RheuArth | lassosum.10FCVal | pT+clump.10FCVal | 0.162 | 0.113 | 0.049 | 0.0000000 | 0.138 | 0.104 | 0.034 | 8.28e-04 |
RheuArth | LDpred1.10FCVal | pT+clump.10FCVal | 0.141 | 0.113 | 0.028 | 0.0000007 | 0.120 | 0.104 | 0.016 | 1.44e-01 |
RheuArth | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.185 | 0.113 | 0.072 | 0.0000000 | 0.158 | 0.104 | 0.055 | 1.38e-08 |
RheuArth | pT+clump.10FCVal | pT+clump.10FCVal | 0.113 | 0.113 | 0.000 | 1.0000000 | 0.104 | 0.104 | 0.000 | 1.00e+00 |
RheuArth | All.MultiPRS | pT+clump.10FCVal | 0.202 | 0.113 | 0.089 | 0.0000000 | 0.189 | 0.104 | 0.086 | 4.51e-20 |
RheuArth | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.178 | 0.113 | 0.065 | 0.0000000 | 0.145 | 0.104 | 0.041 | 3.17e-05 |
RheuArth | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.157 | 0.113 | 0.044 | 0.0000000 | 0.129 | 0.104 | 0.026 | 1.20e-02 |
RheuArth | MegaPRS.10FCVal | pT+clump.10FCVal | 0.182 | 0.113 | 0.068 | 0.0000000 | 0.162 | 0.104 | 0.058 | 3.16e-09 |
RheuArth | lassosum.PseudoVal | pT+clump.10FCVal | 0.127 | 0.113 | 0.013 | 0.0234944 | 0.114 | 0.104 | 0.010 | 3.87e-01 |
RheuArth | LDpred2.Inf | pT+clump.10FCVal | 0.087 | 0.113 | -0.026 | 0.0000656 | 0.077 | 0.104 | -0.027 | 4.01e-02 |
RheuArth | LDpred1.Inf | SBayesR.PseudoVal | 0.138 | 0.123 | 0.015 | 0.0000909 | 0.114 | 0.123 | -0.010 | 2.18e-01 |
RheuArth | LDpred2.Inf | SBayesR.PseudoVal | 0.087 | 0.123 | -0.036 | 0.0000000 | 0.077 | 0.123 | -0.047 | 3.47e-12 |
RheuArth | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.182 | 0.123 | 0.058 | 0.0000000 | 0.162 | 0.123 | 0.039 | 4.72e-06 |
RheuArth | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.156 | 0.123 | 0.033 | 0.0000025 | 0.137 | 0.123 | 0.014 | 1.90e-01 |
RheuArth | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.123 | 0.123 | 0.000 | 1.0000000 | 0.123 | 0.123 | 0.000 | 1.00e+00 |
RheuArth | lassosum.10FCVal | SBayesR.PseudoVal | 0.162 | 0.123 | 0.039 | 0.0000000 | 0.138 | 0.123 | 0.015 | 1.50e-01 |
RheuArth | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.134 | 0.123 | 0.011 | 0.1211767 | 0.125 | 0.123 | 0.002 | 8.15e-01 |
RheuArth | lassosum.MultiPRS | SBayesR.PseudoVal | 0.169 | 0.123 | 0.045 | 0.0000000 | 0.146 | 0.123 | 0.023 | 1.07e-02 |
RheuArth | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.112 | 0.123 | -0.012 | 0.0543601 | 0.111 | 0.123 | -0.012 | 3.17e-01 |
RheuArth | LDpred2.10FCVal | SBayesR.PseudoVal | 0.156 | 0.123 | 0.033 | 0.0000000 | 0.138 | 0.123 | 0.015 | 1.39e-01 |
RheuArth | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.185 | 0.123 | 0.062 | 0.0000000 | 0.158 | 0.123 | 0.035 | 5.19e-05 |
RheuArth | LDpred1.10FCVal | SBayesR.PseudoVal | 0.141 | 0.123 | 0.018 | 0.0000934 | 0.120 | 0.123 | -0.003 | 7.36e-01 |
RheuArth | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.178 | 0.123 | 0.055 | 0.0000000 | 0.145 | 0.123 | 0.022 | 1.25e-02 |
RheuArth | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.144 | 0.123 | 0.021 | 0.0028432 | 0.124 | 0.123 | 0.000 | 9.68e-01 |
RheuArth | All.MultiPRS | SBayesR.PseudoVal | 0.202 | 0.123 | 0.079 | 0.0000000 | 0.189 | 0.123 | 0.066 | 1.21e-13 |
RheuArth | SBLUP.Inf | SBayesR.PseudoVal | 0.113 | 0.123 | -0.010 | 0.0003019 | 0.101 | 0.123 | -0.022 | 8.97e-05 |
RheuArth | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.157 | 0.123 | 0.033 | 0.0000000 | 0.129 | 0.123 | 0.006 | 5.92e-01 |
RheuArth | pT+clump.10FCVal | SBayesR.PseudoVal | 0.113 | 0.123 | -0.010 | 0.0514728 | 0.104 | 0.123 | -0.020 | 5.55e-02 |
RheuArth | lassosum.PseudoVal | SBayesR.PseudoVal | 0.127 | 0.123 | 0.003 | 0.4193803 | 0.114 | 0.123 | -0.009 | 2.72e-01 |
RheuArth | LDpred2.PseudoVal | SBLUP.Inf | 0.112 | 0.113 | -0.002 | 0.7773354 | 0.111 | 0.101 | 0.010 | 4.06e-01 |
RheuArth | MegaPRS.10FCVal | SBLUP.Inf | 0.182 | 0.113 | 0.068 | 0.0000000 | 0.162 | 0.101 | 0.061 | 2.51e-13 |
RheuArth | lassosum.MultiPRS | SBLUP.Inf | 0.169 | 0.113 | 0.055 | 0.0000000 | 0.146 | 0.101 | 0.045 | 3.70e-08 |
RheuArth | LDpred1.MultiPRS | SBLUP.Inf | 0.144 | 0.113 | 0.031 | 0.0000088 | 0.124 | 0.101 | 0.023 | 5.88e-04 |
RheuArth | All.MultiPRS | SBLUP.Inf | 0.202 | 0.113 | 0.089 | 0.0000000 | 0.189 | 0.101 | 0.088 | 1.42e-20 |
RheuArth | LDpred2.Inf | SBLUP.Inf | 0.087 | 0.113 | -0.026 | 0.0000000 | 0.077 | 0.101 | -0.024 | 1.81e-16 |
RheuArth | MegaPRS.MultiPRS | SBLUP.Inf | 0.185 | 0.113 | 0.072 | 0.0000000 | 0.158 | 0.101 | 0.057 | 1.99e-11 |
RheuArth | pT+clump.MultiPRS | SBLUP.Inf | 0.134 | 0.113 | 0.021 | 0.0026800 | 0.125 | 0.101 | 0.024 | 1.10e-02 |
RheuArth | lassosum.PseudoVal | SBLUP.Inf | 0.127 | 0.113 | 0.014 | 0.0001167 | 0.114 | 0.101 | 0.013 | 6.46e-02 |
RheuArth | SBayesR.PseudoVal | SBLUP.Inf | 0.123 | 0.113 | 0.010 | 0.0003019 | 0.123 | 0.101 | 0.022 | 8.97e-05 |
RheuArth | DBSLMM.PseudoVal | SBLUP.Inf | 0.157 | 0.113 | 0.044 | 0.0000000 | 0.129 | 0.101 | 0.028 | 7.76e-03 |
RheuArth | SBLUP.Inf | SBLUP.Inf | 0.113 | 0.113 | 0.000 | 1.0000000 | 0.101 | 0.101 | 0.000 | 1.00e+00 |
RheuArth | LDpred2.MultiPRS | SBLUP.Inf | 0.156 | 0.113 | 0.043 | 0.0000000 | 0.137 | 0.101 | 0.036 | 4.40e-05 |
RheuArth | pT+clump.10FCVal | SBLUP.Inf | 0.113 | 0.113 | 0.000 | 0.9869945 | 0.104 | 0.101 | 0.003 | 8.18e-01 |
RheuArth | LDpred1.Inf | SBLUP.Inf | 0.138 | 0.113 | 0.025 | 0.0000000 | 0.114 | 0.101 | 0.013 | 1.74e-02 |
RheuArth | lassosum.10FCVal | SBLUP.Inf | 0.162 | 0.113 | 0.049 | 0.0000000 | 0.138 | 0.101 | 0.037 | 1.01e-04 |
RheuArth | LDpred1.10FCVal | SBLUP.Inf | 0.141 | 0.113 | 0.028 | 0.0000000 | 0.120 | 0.101 | 0.019 | 8.96e-03 |
RheuArth | MegaPRS.PseudoVal | SBLUP.Inf | 0.178 | 0.113 | 0.065 | 0.0000000 | 0.145 | 0.101 | 0.044 | 3.02e-07 |
RheuArth | LDpred2.10FCVal | SBLUP.Inf | 0.156 | 0.113 | 0.043 | 0.0000000 | 0.138 | 0.101 | 0.037 | 1.29e-05 |
Prostate_Cancer | LDpred1.10FCVal | All.MultiPRS | 0.159 | 0.191 | -0.032 | 0.0000014 | 0.146 | 0.183 | -0.038 | 3.89e-09 |
Prostate_Cancer | pT+clump.10FCVal | All.MultiPRS | 0.150 | 0.191 | -0.041 | 0.0000000 | 0.164 | 0.183 | -0.020 | 6.06e-03 |
Prostate_Cancer | LDpred1.MultiPRS | All.MultiPRS | 0.165 | 0.191 | -0.026 | 0.0001442 | 0.155 | 0.183 | -0.028 | 2.27e-06 |
Prostate_Cancer | LDpred2.Inf | All.MultiPRS | 0.136 | 0.191 | -0.055 | 0.0000000 | 0.126 | 0.183 | -0.057 | 8.41e-13 |
Prostate_Cancer | MegaPRS.10FCVal | All.MultiPRS | 0.188 | 0.191 | -0.003 | 0.6813408 | 0.186 | 0.183 | 0.003 | 4.55e-01 |
Prostate_Cancer | LDpred2.10FCVal | All.MultiPRS | 0.188 | 0.191 | -0.003 | 0.6707834 | 0.187 | 0.183 | 0.003 | 3.27e-01 |
Prostate_Cancer | LDpred2.MultiPRS | All.MultiPRS | 0.191 | 0.191 | 0.000 | 0.9717749 | 0.183 | 0.183 | 0.000 | 9.26e-01 |
Prostate_Cancer | lassosum.PseudoVal | All.MultiPRS | 0.178 | 0.191 | -0.013 | 0.0515982 | 0.177 | 0.183 | -0.006 | 1.93e-01 |
Prostate_Cancer | LDpred1.Inf | All.MultiPRS | 0.142 | 0.191 | -0.049 | 0.0000000 | 0.133 | 0.183 | -0.050 | 5.31e-11 |
Prostate_Cancer | lassosum.MultiPRS | All.MultiPRS | 0.188 | 0.191 | -0.003 | 0.6282726 | 0.179 | 0.183 | -0.004 | 2.68e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | All.MultiPRS | 0.188 | 0.191 | -0.003 | 0.6797746 | 0.187 | 0.183 | 0.004 | 2.94e-01 |
Prostate_Cancer | All.MultiPRS | All.MultiPRS | 0.191 | 0.191 | 0.000 | 1.0000000 | 0.183 | 0.183 | 0.000 | 1.00e+00 |
Prostate_Cancer | SBayesR.PseudoVal | All.MultiPRS | 0.183 | 0.191 | -0.008 | 0.2209984 | 0.182 | 0.183 | -0.001 | 7.55e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | All.MultiPRS | 0.189 | 0.191 | -0.002 | 0.7224626 | 0.187 | 0.183 | 0.003 | 3.25e-01 |
Prostate_Cancer | pT+clump.MultiPRS | All.MultiPRS | 0.165 | 0.191 | -0.026 | 0.0001476 | 0.173 | 0.183 | -0.011 | 6.99e-02 |
Prostate_Cancer | lassosum.10FCVal | All.MultiPRS | 0.182 | 0.191 | -0.009 | 0.1498482 | 0.179 | 0.183 | -0.004 | 3.78e-01 |
Prostate_Cancer | LDpred2.PseudoVal | All.MultiPRS | 0.183 | 0.191 | -0.008 | 0.2095976 | 0.184 | 0.183 | 0.001 | 7.90e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | All.MultiPRS | 0.179 | 0.191 | -0.012 | 0.0649917 | 0.166 | 0.183 | -0.018 | 1.34e-04 |
Prostate_Cancer | SBLUP.Inf | All.MultiPRS | 0.137 | 0.191 | -0.055 | 0.0000000 | 0.125 | 0.183 | -0.058 | 3.46e-13 |
Prostate_Cancer | LDpred1.Inf | DBSLMM.PseudoVal | 0.142 | 0.179 | -0.037 | 0.0000000 | 0.133 | 0.166 | -0.032 | 2.29e-07 |
Prostate_Cancer | LDpred2.Inf | DBSLMM.PseudoVal | 0.136 | 0.179 | -0.043 | 0.0000000 | 0.126 | 0.166 | -0.039 | 1.15e-09 |
Prostate_Cancer | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.191 | 0.179 | 0.012 | 0.0848016 | 0.183 | 0.166 | 0.017 | 5.57e-06 |
Prostate_Cancer | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.150 | 0.179 | -0.029 | 0.0000000 | 0.164 | 0.166 | -0.002 | 7.95e-01 |
Prostate_Cancer | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.183 | 0.179 | 0.004 | 0.0871023 | 0.182 | 0.166 | 0.016 | 5.23e-04 |
Prostate_Cancer | All.MultiPRS | DBSLMM.PseudoVal | 0.191 | 0.179 | 0.012 | 0.0649917 | 0.183 | 0.166 | 0.018 | 1.34e-04 |
Prostate_Cancer | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.188 | 0.179 | 0.009 | 0.0000077 | 0.187 | 0.166 | 0.021 | 3.03e-07 |
Prostate_Cancer | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.189 | 0.179 | 0.010 | 0.1606873 | 0.187 | 0.166 | 0.021 | 3.12e-07 |
Prostate_Cancer | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.183 | 0.179 | 0.004 | 0.1662996 | 0.184 | 0.166 | 0.019 | 5.60e-04 |
Prostate_Cancer | lassosum.10FCVal | DBSLMM.PseudoVal | 0.182 | 0.179 | 0.003 | 0.3028846 | 0.179 | 0.166 | 0.014 | 7.46e-03 |
Prostate_Cancer | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.165 | 0.179 | -0.014 | 0.0418753 | 0.173 | 0.166 | 0.007 | 1.67e-01 |
Prostate_Cancer | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.188 | 0.179 | 0.009 | 0.0000096 | 0.186 | 0.166 | 0.020 | 1.44e-06 |
Prostate_Cancer | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.188 | 0.179 | 0.009 | 0.2050319 | 0.179 | 0.166 | 0.014 | 6.01e-04 |
Prostate_Cancer | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.188 | 0.179 | 0.009 | 0.0000215 | 0.187 | 0.166 | 0.021 | 7.74e-07 |
Prostate_Cancer | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.178 | 0.179 | -0.001 | 0.8157027 | 0.177 | 0.166 | 0.012 | 3.84e-02 |
Prostate_Cancer | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.159 | 0.179 | -0.020 | 0.0000000 | 0.146 | 0.166 | -0.020 | 7.65e-05 |
Prostate_Cancer | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.179 | 0.179 | 0.000 | 1.0000000 | 0.166 | 0.166 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.165 | 0.179 | -0.014 | 0.0410137 | 0.155 | 0.166 | -0.010 | 3.69e-02 |
Prostate_Cancer | SBLUP.Inf | DBSLMM.PseudoVal | 0.137 | 0.179 | -0.042 | 0.0000000 | 0.125 | 0.166 | -0.041 | 3.33e-10 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4993860 | 0.182 | 0.179 | 0.003 | 5.53e-01 |
Prostate_Cancer | LDpred1.Inf | lassosum.MultiPRS | 0.142 | 0.188 | -0.046 | 0.0000000 | 0.133 | 0.179 | -0.046 | 5.20e-11 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.188 | 0.188 | 0.001 | 0.9263841 | 0.187 | 0.179 | 0.008 | 4.28e-02 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.MultiPRS | 0.191 | 0.188 | 0.003 | 0.6540167 | 0.183 | 0.179 | 0.004 | 2.72e-01 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.MultiPRS | 0.183 | 0.188 | -0.005 | 0.4802324 | 0.184 | 0.179 | 0.005 | 2.74e-01 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.MultiPRS | 0.188 | 0.188 | 0.001 | 0.9350354 | 0.187 | 0.179 | 0.007 | 3.18e-02 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.MultiPRS | 0.165 | 0.188 | -0.023 | 0.0009481 | 0.173 | 0.179 | -0.007 | 1.61e-01 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.MultiPRS | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.179 | 0.179 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.10FCVal | lassosum.MultiPRS | 0.182 | 0.188 | -0.006 | 0.3782985 | 0.179 | 0.179 | 0.000 | 9.82e-01 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.MultiPRS | 0.165 | 0.188 | -0.023 | 0.0000000 | 0.155 | 0.179 | -0.024 | 6.81e-06 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.189 | 0.188 | 0.001 | 0.8965832 | 0.187 | 0.179 | 0.007 | 4.76e-02 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.MultiPRS | 0.159 | 0.188 | -0.029 | 0.0000368 | 0.146 | 0.179 | -0.034 | 3.37e-09 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.MultiPRS | 0.188 | 0.188 | 0.001 | 0.9246578 | 0.186 | 0.179 | 0.007 | 8.95e-02 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.MultiPRS | 0.150 | 0.188 | -0.038 | 0.0000000 | 0.164 | 0.179 | -0.016 | 1.81e-02 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.MultiPRS | 0.178 | 0.188 | -0.009 | 0.1732464 | 0.177 | 0.179 | -0.002 | 5.05e-01 |
Prostate_Cancer | SBLUP.Inf | lassosum.MultiPRS | 0.137 | 0.188 | -0.051 | 0.0000000 | 0.125 | 0.179 | -0.054 | 1.74e-13 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.179 | 0.188 | -0.009 | 0.2050319 | 0.166 | 0.179 | -0.014 | 6.01e-04 |
Prostate_Cancer | All.MultiPRS | lassosum.MultiPRS | 0.191 | 0.188 | 0.003 | 0.6282726 | 0.183 | 0.179 | 0.004 | 2.68e-01 |
Prostate_Cancer | LDpred2.Inf | lassosum.MultiPRS | 0.136 | 0.188 | -0.052 | 0.0000000 | 0.126 | 0.179 | -0.053 | 5.97e-13 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.10FCVal | 0.188 | 0.182 | 0.007 | 0.0028579 | 0.186 | 0.179 | 0.007 | 1.40e-01 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.10FCVal | 0.183 | 0.182 | 0.001 | 0.5824994 | 0.184 | 0.179 | 0.005 | 2.39e-01 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.10FCVal | 0.165 | 0.182 | -0.017 | 0.0152865 | 0.155 | 0.179 | -0.024 | 1.33e-04 |
Prostate_Cancer | lassosum.10FCVal | lassosum.10FCVal | 0.182 | 0.182 | 0.000 | 1.0000000 | 0.179 | 0.179 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.Inf | lassosum.10FCVal | 0.136 | 0.182 | -0.046 | 0.0000000 | 0.126 | 0.179 | -0.053 | 2.07e-10 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.10FCVal | 0.179 | 0.182 | -0.003 | 0.3028846 | 0.166 | 0.179 | -0.014 | 7.46e-03 |
Prostate_Cancer | SBLUP.Inf | lassosum.10FCVal | 0.137 | 0.182 | -0.045 | 0.0000000 | 0.125 | 0.179 | -0.054 | 8.47e-11 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.10FCVal | 0.191 | 0.182 | 0.009 | 0.1816824 | 0.183 | 0.179 | 0.004 | 3.37e-01 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.10FCVal | 0.150 | 0.182 | -0.032 | 0.0000000 | 0.164 | 0.179 | -0.016 | 1.90e-02 |
Prostate_Cancer | LDpred1.Inf | lassosum.10FCVal | 0.142 | 0.182 | -0.040 | 0.0000000 | 0.133 | 0.179 | -0.046 | 6.92e-09 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.10FCVal | 0.188 | 0.182 | 0.006 | 0.3782985 | 0.179 | 0.179 | 0.000 | 9.82e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.10FCVal | 0.188 | 0.182 | 0.007 | 0.0024923 | 0.187 | 0.179 | 0.008 | 8.05e-02 |
Prostate_Cancer | All.MultiPRS | lassosum.10FCVal | 0.191 | 0.182 | 0.009 | 0.1498482 | 0.183 | 0.179 | 0.004 | 3.78e-01 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.10FCVal | 0.183 | 0.182 | 0.001 | 0.5401208 | 0.182 | 0.179 | 0.003 | 5.67e-01 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.10FCVal | 0.178 | 0.182 | -0.003 | 0.0235290 | 0.177 | 0.179 | -0.002 | 4.57e-01 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.10FCVal | 0.165 | 0.182 | -0.017 | 0.0156322 | 0.173 | 0.179 | -0.007 | 1.99e-01 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.10FCVal | 0.159 | 0.182 | -0.022 | 0.0000000 | 0.146 | 0.179 | -0.034 | 6.58e-07 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.10FCVal | 0.189 | 0.182 | 0.007 | 0.3089230 | 0.187 | 0.179 | 0.007 | 8.99e-02 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.10FCVal | 0.188 | 0.182 | 0.007 | 0.0001227 | 0.187 | 0.179 | 0.007 | 2.94e-02 |
Prostate_Cancer | lassosum.PseudoVal | lassosum.PseudoVal | 0.178 | 0.178 | 0.000 | 1.0000000 | 0.177 | 0.177 | 0.000 | 1.00e+00 |
Prostate_Cancer | pT+clump.MultiPRS | lassosum.PseudoVal | 0.165 | 0.178 | -0.013 | 0.0532552 | 0.173 | 0.177 | -0.005 | 4.02e-01 |
Prostate_Cancer | LDpred2.MultiPRS | lassosum.PseudoVal | 0.191 | 0.178 | 0.013 | 0.0691878 | 0.183 | 0.177 | 0.006 | 1.49e-01 |
Prostate_Cancer | SBayesR.PseudoVal | lassosum.PseudoVal | 0.183 | 0.178 | 0.005 | 0.0325748 | 0.182 | 0.177 | 0.005 | 2.71e-01 |
Prostate_Cancer | LDpred2.10FCVal | lassosum.PseudoVal | 0.188 | 0.178 | 0.010 | 0.0000001 | 0.187 | 0.177 | 0.010 | 8.81e-03 |
Prostate_Cancer | SBLUP.Inf | lassosum.PseudoVal | 0.137 | 0.178 | -0.042 | 0.0000000 | 0.125 | 0.177 | -0.052 | 6.60e-08 |
Prostate_Cancer | lassosum.MultiPRS | lassosum.PseudoVal | 0.188 | 0.178 | 0.009 | 0.1732464 | 0.179 | 0.177 | 0.002 | 5.05e-01 |
Prostate_Cancer | LDpred2.PseudoVal | lassosum.PseudoVal | 0.183 | 0.178 | 0.005 | 0.0196536 | 0.184 | 0.177 | 0.007 | 5.37e-02 |
Prostate_Cancer | LDpred1.MultiPRS | lassosum.PseudoVal | 0.165 | 0.178 | -0.014 | 0.0517609 | 0.155 | 0.177 | -0.022 | 2.32e-03 |
Prostate_Cancer | LDpred2.Inf | lassosum.PseudoVal | 0.136 | 0.178 | -0.042 | 0.0000000 | 0.126 | 0.177 | -0.051 | 1.14e-07 |
Prostate_Cancer | LDpred1.10FCVal | lassosum.PseudoVal | 0.159 | 0.178 | -0.019 | 0.0000014 | 0.146 | 0.177 | -0.031 | 5.41e-05 |
Prostate_Cancer | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.189 | 0.178 | 0.010 | 0.1334048 | 0.187 | 0.177 | 0.009 | 3.72e-02 |
Prostate_Cancer | pT+clump.10FCVal | lassosum.PseudoVal | 0.150 | 0.178 | -0.029 | 0.0000000 | 0.164 | 0.177 | -0.013 | 1.80e-02 |
Prostate_Cancer | All.MultiPRS | lassosum.PseudoVal | 0.191 | 0.178 | 0.013 | 0.0515982 | 0.183 | 0.177 | 0.006 | 1.93e-01 |
Prostate_Cancer | MegaPRS.10FCVal | lassosum.PseudoVal | 0.188 | 0.178 | 0.010 | 0.0000372 | 0.186 | 0.177 | 0.009 | 6.10e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.179 | 0.178 | 0.001 | 0.8157027 | 0.166 | 0.177 | -0.012 | 3.84e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.188 | 0.178 | 0.010 | 0.0000462 | 0.187 | 0.177 | 0.010 | 3.74e-02 |
Prostate_Cancer | lassosum.10FCVal | lassosum.PseudoVal | 0.182 | 0.178 | 0.003 | 0.0235290 | 0.179 | 0.177 | 0.002 | 4.57e-01 |
Prostate_Cancer | LDpred1.Inf | lassosum.PseudoVal | 0.142 | 0.178 | -0.036 | 0.0000000 | 0.133 | 0.177 | -0.044 | 1.38e-06 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.188 | 0.189 | 0.000 | 0.9720762 | 0.186 | 0.187 | -0.001 | 5.96e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.179 | 0.189 | -0.010 | 0.1606873 | 0.166 | 0.187 | -0.021 | 3.12e-07 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.MultiPRS | 0.137 | 0.189 | -0.052 | 0.0000000 | 0.125 | 0.187 | -0.061 | 1.07e-15 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.191 | 0.189 | 0.002 | 0.7495673 | 0.183 | 0.187 | -0.003 | 2.25e-01 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.150 | 0.189 | -0.039 | 0.0000000 | 0.164 | 0.187 | -0.023 | 5.57e-04 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.MultiPRS | 0.142 | 0.189 | -0.047 | 0.0000000 | 0.133 | 0.187 | -0.053 | 2.32e-13 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.MultiPRS | 0.136 | 0.189 | -0.053 | 0.0000000 | 0.126 | 0.187 | -0.060 | 2.06e-15 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.188 | 0.189 | 0.000 | 0.9703318 | 0.187 | 0.187 | 0.000 | 6.93e-01 |
Prostate_Cancer | All.MultiPRS | MegaPRS.MultiPRS | 0.191 | 0.189 | 0.002 | 0.7224626 | 0.183 | 0.187 | -0.003 | 3.25e-01 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.183 | 0.189 | -0.006 | 0.4186320 | 0.182 | 0.187 | -0.004 | 2.20e-01 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.178 | 0.189 | -0.010 | 0.1334048 | 0.177 | 0.187 | -0.009 | 3.72e-02 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.165 | 0.189 | -0.024 | 0.0006015 | 0.173 | 0.187 | -0.014 | 7.35e-03 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.188 | 0.189 | -0.001 | 0.8965832 | 0.179 | 0.187 | -0.007 | 4.76e-02 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.183 | 0.189 | -0.006 | 0.4005572 | 0.184 | 0.187 | -0.002 | 5.87e-01 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.188 | 0.189 | 0.000 | 0.9615224 | 0.187 | 0.187 | 0.000 | 9.48e-01 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.MultiPRS | 0.182 | 0.189 | -0.007 | 0.3089230 | 0.179 | 0.187 | -0.007 | 8.99e-02 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.159 | 0.189 | -0.029 | 0.0000205 | 0.146 | 0.187 | -0.041 | 5.15e-12 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.189 | 0.189 | 0.000 | 1.0000000 | 0.187 | 0.187 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.165 | 0.189 | -0.024 | 0.0005573 | 0.155 | 0.187 | -0.031 | 1.15e-08 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.10FCVal | 0.188 | 0.188 | 0.000 | 0.9556139 | 0.187 | 0.186 | 0.001 | 8.06e-01 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.165 | 0.188 | -0.024 | 0.0006739 | 0.155 | 0.186 | -0.031 | 5.56e-08 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.10FCVal | 0.136 | 0.188 | -0.052 | 0.0000000 | 0.126 | 0.186 | -0.060 | 1.05e-14 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.10FCVal | 0.142 | 0.188 | -0.046 | 0.0000000 | 0.133 | 0.186 | -0.053 | 1.12e-12 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.10FCVal | 0.188 | 0.188 | -0.001 | 0.9246578 | 0.179 | 0.186 | -0.007 | 8.95e-02 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.188 | 0.188 | 0.000 | 0.9758141 | 0.187 | 0.186 | 0.001 | 3.02e-01 |
Prostate_Cancer | All.MultiPRS | MegaPRS.10FCVal | 0.191 | 0.188 | 0.003 | 0.6813408 | 0.183 | 0.186 | -0.003 | 4.55e-01 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.183 | 0.188 | -0.005 | 0.0049008 | 0.182 | 0.186 | -0.004 | 3.08e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.179 | 0.188 | -0.009 | 0.0000096 | 0.166 | 0.186 | -0.020 | 1.44e-06 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.165 | 0.188 | -0.023 | 0.0006841 | 0.173 | 0.186 | -0.013 | 1.28e-02 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.10FCVal | 0.182 | 0.188 | -0.007 | 0.0028579 | 0.179 | 0.186 | -0.007 | 1.40e-01 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.183 | 0.188 | -0.006 | 0.0078487 | 0.184 | 0.186 | -0.002 | 7.11e-01 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.10FCVal | 0.178 | 0.188 | -0.010 | 0.0000372 | 0.177 | 0.186 | -0.009 | 6.10e-02 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.10FCVal | 0.137 | 0.188 | -0.052 | 0.0000000 | 0.125 | 0.186 | -0.061 | 5.37e-15 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.10FCVal | 0.159 | 0.188 | -0.029 | 0.0000000 | 0.146 | 0.186 | -0.040 | 3.66e-11 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.10FCVal | 0.150 | 0.188 | -0.039 | 0.0000000 | 0.164 | 0.186 | -0.022 | 9.89e-04 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.191 | 0.188 | 0.002 | 0.7230726 | 0.183 | 0.186 | -0.003 | 3.55e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.189 | 0.188 | 0.000 | 0.9720762 | 0.187 | 0.186 | 0.001 | 5.96e-01 |
Prostate_Cancer | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.178 | 0.188 | -0.010 | 0.0000462 | 0.177 | 0.187 | -0.010 | 3.74e-02 |
Prostate_Cancer | SBLUP.Inf | MegaPRS.PseudoVal | 0.137 | 0.188 | -0.052 | 0.0000000 | 0.125 | 0.187 | -0.062 | 5.57e-16 |
Prostate_Cancer | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.183 | 0.188 | -0.005 | 0.0060694 | 0.182 | 0.187 | -0.005 | 2.03e-01 |
Prostate_Cancer | All.MultiPRS | MegaPRS.PseudoVal | 0.191 | 0.188 | 0.003 | 0.6797746 | 0.183 | 0.187 | -0.004 | 2.94e-01 |
Prostate_Cancer | LDpred2.Inf | MegaPRS.PseudoVal | 0.136 | 0.188 | -0.052 | 0.0000000 | 0.126 | 0.187 | -0.061 | 1.10e-15 |
Prostate_Cancer | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.188 | 0.188 | -0.001 | 0.9263841 | 0.179 | 0.187 | -0.008 | 4.28e-02 |
Prostate_Cancer | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.188 | 0.188 | 0.000 | 0.9633019 | 0.187 | 0.187 | 0.000 | 9.39e-01 |
Prostate_Cancer | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.165 | 0.188 | -0.024 | 0.0006779 | 0.155 | 0.187 | -0.032 | 9.45e-09 |
Prostate_Cancer | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.183 | 0.188 | -0.006 | 0.0098605 | 0.184 | 0.187 | -0.003 | 5.40e-01 |
Prostate_Cancer | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.159 | 0.188 | -0.029 | 0.0000000 | 0.146 | 0.187 | -0.041 | 3.98e-12 |
Prostate_Cancer | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.165 | 0.188 | -0.023 | 0.0006893 | 0.173 | 0.187 | -0.014 | 6.93e-03 |
Prostate_Cancer | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.150 | 0.188 | -0.039 | 0.0000000 | 0.164 | 0.187 | -0.023 | 6.59e-04 |
Prostate_Cancer | lassosum.10FCVal | MegaPRS.PseudoVal | 0.182 | 0.188 | -0.007 | 0.0024923 | 0.179 | 0.187 | -0.008 | 8.05e-02 |
Prostate_Cancer | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.188 | 0.188 | 0.000 | 0.9758141 | 0.186 | 0.187 | -0.001 | 3.02e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.189 | 0.188 | 0.000 | 0.9703318 | 0.187 | 0.187 | 0.000 | 6.93e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.187 | 0.187 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.191 | 0.188 | 0.002 | 0.7213716 | 0.183 | 0.187 | -0.004 | 2.03e-01 |
Prostate_Cancer | LDpred1.Inf | MegaPRS.PseudoVal | 0.142 | 0.188 | -0.046 | 0.0000000 | 0.133 | 0.187 | -0.054 | 1.55e-13 |
Prostate_Cancer | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.179 | 0.188 | -0.009 | 0.0000077 | 0.166 | 0.187 | -0.021 | 3.03e-07 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.165 | 0.165 | 0.000 | 0.9876780 | 0.173 | 0.155 | 0.017 | 7.77e-03 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.188 | 0.165 | 0.024 | 0.0006779 | 0.187 | 0.155 | 0.032 | 9.45e-09 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.183 | 0.165 | 0.018 | 0.0092974 | 0.184 | 0.155 | 0.029 | 3.17e-05 |
Prostate_Cancer | LDpred1.Inf | LDpred1.MultiPRS | 0.142 | 0.165 | -0.023 | 0.0010938 | 0.133 | 0.155 | -0.022 | 2.17e-07 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.MultiPRS | 0.178 | 0.165 | 0.014 | 0.0517609 | 0.177 | 0.155 | 0.022 | 2.32e-03 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.MultiPRS | 0.159 | 0.165 | -0.006 | 0.4204554 | 0.146 | 0.155 | -0.010 | 1.07e-03 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.MultiPRS | 0.188 | 0.165 | 0.023 | 0.0000000 | 0.179 | 0.155 | 0.024 | 6.81e-06 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.165 | 0.165 | 0.000 | 1.0000000 | 0.155 | 0.155 | 0.000 | 1.00e+00 |
Prostate_Cancer | All.MultiPRS | LDpred1.MultiPRS | 0.191 | 0.165 | 0.026 | 0.0001442 | 0.183 | 0.155 | 0.028 | 2.27e-06 |
Prostate_Cancer | LDpred2.Inf | LDpred1.MultiPRS | 0.136 | 0.165 | -0.029 | 0.0000376 | 0.126 | 0.155 | -0.029 | 2.32e-08 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.189 | 0.165 | 0.024 | 0.0005573 | 0.187 | 0.155 | 0.031 | 1.15e-08 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.MultiPRS | 0.150 | 0.165 | -0.015 | 0.0299833 | 0.164 | 0.155 | 0.008 | 3.30e-01 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.MultiPRS | 0.182 | 0.165 | 0.017 | 0.0152865 | 0.179 | 0.155 | 0.024 | 1.33e-04 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.183 | 0.165 | 0.018 | 0.0084229 | 0.182 | 0.155 | 0.027 | 2.07e-05 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.179 | 0.165 | 0.014 | 0.0410137 | 0.166 | 0.155 | 0.010 | 3.69e-02 |
Prostate_Cancer | SBLUP.Inf | LDpred1.MultiPRS | 0.137 | 0.165 | -0.028 | 0.0000487 | 0.125 | 0.155 | -0.030 | 6.56e-09 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.191 | 0.165 | 0.026 | 0.0001704 | 0.183 | 0.155 | 0.028 | 3.06e-07 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.188 | 0.165 | 0.024 | 0.0006739 | 0.186 | 0.155 | 0.031 | 5.56e-08 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.MultiPRS | 0.188 | 0.165 | 0.024 | 0.0007056 | 0.187 | 0.155 | 0.031 | 2.27e-08 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.Inf | 0.159 | 0.142 | 0.017 | 0.0000000 | 0.146 | 0.133 | 0.012 | 5.26e-07 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.Inf | 0.183 | 0.142 | 0.041 | 0.0000000 | 0.184 | 0.133 | 0.051 | 7.76e-09 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.Inf | 0.165 | 0.142 | 0.023 | 0.0010938 | 0.155 | 0.133 | 0.022 | 2.17e-07 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.Inf | 0.165 | 0.142 | 0.023 | 0.0010066 | 0.173 | 0.133 | 0.039 | 4.34e-07 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.Inf | 0.188 | 0.142 | 0.046 | 0.0000000 | 0.186 | 0.133 | 0.053 | 1.12e-12 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.Inf | 0.189 | 0.142 | 0.047 | 0.0000000 | 0.187 | 0.133 | 0.053 | 2.32e-13 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.Inf | 0.150 | 0.142 | 0.008 | 0.1306644 | 0.164 | 0.133 | 0.030 | 2.23e-03 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.Inf | 0.182 | 0.142 | 0.040 | 0.0000000 | 0.179 | 0.133 | 0.046 | 6.92e-09 |
Prostate_Cancer | LDpred2.Inf | LDpred1.Inf | 0.136 | 0.142 | -0.006 | 0.0000584 | 0.126 | 0.133 | -0.007 | 1.47e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.Inf | 0.179 | 0.142 | 0.037 | 0.0000000 | 0.166 | 0.133 | 0.032 | 2.29e-07 |
Prostate_Cancer | SBLUP.Inf | LDpred1.Inf | 0.137 | 0.142 | -0.006 | 0.0001614 | 0.125 | 0.133 | -0.008 | 4.82e-03 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.Inf | 0.191 | 0.142 | 0.049 | 0.0000000 | 0.183 | 0.133 | 0.050 | 1.06e-11 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.Inf | 0.178 | 0.142 | 0.036 | 0.0000000 | 0.177 | 0.133 | 0.044 | 1.38e-06 |
Prostate_Cancer | LDpred1.Inf | LDpred1.Inf | 0.142 | 0.142 | 0.000 | 1.0000000 | 0.133 | 0.133 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.Inf | 0.188 | 0.142 | 0.046 | 0.0000000 | 0.179 | 0.133 | 0.046 | 5.20e-11 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.Inf | 0.188 | 0.142 | 0.046 | 0.0000000 | 0.187 | 0.133 | 0.054 | 1.55e-13 |
Prostate_Cancer | All.MultiPRS | LDpred1.Inf | 0.191 | 0.142 | 0.049 | 0.0000000 | 0.183 | 0.133 | 0.050 | 5.31e-11 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.Inf | 0.183 | 0.142 | 0.041 | 0.0000000 | 0.182 | 0.133 | 0.049 | 2.28e-09 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.Inf | 0.188 | 0.142 | 0.046 | 0.0000000 | 0.187 | 0.133 | 0.053 | 1.48e-12 |
Prostate_Cancer | All.MultiPRS | LDpred1.10FCVal | 0.191 | 0.159 | 0.032 | 0.0000014 | 0.183 | 0.146 | 0.038 | 3.89e-09 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred1.10FCVal | 0.165 | 0.159 | 0.006 | 0.4107085 | 0.173 | 0.146 | 0.027 | 8.35e-05 |
Prostate_Cancer | LDpred1.10FCVal | LDpred1.10FCVal | 0.159 | 0.159 | 0.000 | 1.0000000 | 0.146 | 0.146 | 0.000 | 1.00e+00 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred1.10FCVal | 0.183 | 0.159 | 0.024 | 0.0000000 | 0.182 | 0.146 | 0.036 | 1.02e-07 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred1.10FCVal | 0.165 | 0.159 | 0.006 | 0.4204554 | 0.155 | 0.146 | 0.010 | 1.07e-03 |
Prostate_Cancer | SBLUP.Inf | LDpred1.10FCVal | 0.137 | 0.159 | -0.023 | 0.0000000 | 0.125 | 0.146 | -0.021 | 1.26e-07 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred1.10FCVal | 0.188 | 0.159 | 0.029 | 0.0000000 | 0.186 | 0.146 | 0.040 | 3.66e-11 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred1.10FCVal | 0.183 | 0.159 | 0.024 | 0.0000000 | 0.184 | 0.146 | 0.039 | 4.23e-07 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred1.10FCVal | 0.191 | 0.159 | 0.032 | 0.0000044 | 0.183 | 0.146 | 0.037 | 2.93e-10 |
Prostate_Cancer | LDpred2.Inf | LDpred1.10FCVal | 0.136 | 0.159 | -0.023 | 0.0000000 | 0.126 | 0.146 | -0.020 | 6.58e-07 |
Prostate_Cancer | LDpred1.Inf | LDpred1.10FCVal | 0.142 | 0.159 | -0.017 | 0.0000000 | 0.133 | 0.146 | -0.012 | 5.26e-07 |
Prostate_Cancer | pT+clump.10FCVal | LDpred1.10FCVal | 0.150 | 0.159 | -0.010 | 0.0370544 | 0.164 | 0.146 | 0.018 | 4.74e-02 |
Prostate_Cancer | LDpred2.10FCVal | LDpred1.10FCVal | 0.188 | 0.159 | 0.029 | 0.0000000 | 0.187 | 0.146 | 0.041 | 3.40e-11 |
Prostate_Cancer | lassosum.10FCVal | LDpred1.10FCVal | 0.182 | 0.159 | 0.022 | 0.0000000 | 0.179 | 0.146 | 0.034 | 6.58e-07 |
Prostate_Cancer | lassosum.PseudoVal | LDpred1.10FCVal | 0.178 | 0.159 | 0.019 | 0.0000014 | 0.177 | 0.146 | 0.031 | 5.41e-05 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.189 | 0.159 | 0.029 | 0.0000205 | 0.187 | 0.146 | 0.041 | 5.15e-12 |
Prostate_Cancer | lassosum.MultiPRS | LDpred1.10FCVal | 0.188 | 0.159 | 0.029 | 0.0000368 | 0.179 | 0.146 | 0.034 | 3.37e-09 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.188 | 0.159 | 0.029 | 0.0000000 | 0.187 | 0.146 | 0.041 | 3.98e-12 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.179 | 0.159 | 0.020 | 0.0000000 | 0.166 | 0.146 | 0.020 | 7.65e-05 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.183 | 0.191 | -0.008 | 0.2600621 | 0.182 | 0.183 | -0.001 | 7.39e-01 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.191 | 0.191 | 0.000 | 1.0000000 | 0.183 | 0.183 | 0.000 | 1.00e+00 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.MultiPRS | 0.150 | 0.191 | -0.041 | 0.0000000 | 0.164 | 0.183 | -0.019 | 2.67e-03 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.183 | 0.191 | -0.008 | 0.2475416 | 0.184 | 0.183 | 0.001 | 6.57e-01 |
Prostate_Cancer | LDpred2.Inf | LDpred2.MultiPRS | 0.136 | 0.191 | -0.055 | 0.0000000 | 0.126 | 0.183 | -0.057 | 9.19e-14 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.165 | 0.191 | -0.026 | 0.0001726 | 0.173 | 0.183 | -0.010 | 4.15e-02 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.188 | 0.191 | -0.002 | 0.7230726 | 0.186 | 0.183 | 0.003 | 3.55e-01 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.MultiPRS | 0.188 | 0.191 | -0.003 | 0.6540167 | 0.179 | 0.183 | -0.004 | 2.72e-01 |
Prostate_Cancer | LDpred1.Inf | LDpred2.MultiPRS | 0.142 | 0.191 | -0.049 | 0.0000000 | 0.133 | 0.183 | -0.050 | 1.06e-11 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.MultiPRS | 0.178 | 0.191 | -0.013 | 0.0691878 | 0.177 | 0.183 | -0.006 | 1.49e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.188 | 0.191 | -0.002 | 0.7213716 | 0.187 | 0.183 | 0.004 | 2.03e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.189 | 0.191 | -0.002 | 0.7495673 | 0.187 | 0.183 | 0.003 | 2.25e-01 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.MultiPRS | 0.188 | 0.191 | -0.003 | 0.7132046 | 0.187 | 0.183 | 0.004 | 6.03e-02 |
Prostate_Cancer | All.MultiPRS | LDpred2.MultiPRS | 0.191 | 0.191 | 0.000 | 0.9717749 | 0.183 | 0.183 | 0.000 | 9.26e-01 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.MultiPRS | 0.159 | 0.191 | -0.032 | 0.0000044 | 0.146 | 0.183 | -0.037 | 2.93e-10 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.179 | 0.191 | -0.012 | 0.0848016 | 0.166 | 0.183 | -0.017 | 5.57e-06 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.165 | 0.191 | -0.026 | 0.0001704 | 0.155 | 0.183 | -0.028 | 3.06e-07 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.MultiPRS | 0.182 | 0.191 | -0.009 | 0.1816824 | 0.179 | 0.183 | -0.004 | 3.37e-01 |
Prostate_Cancer | SBLUP.Inf | LDpred2.MultiPRS | 0.137 | 0.191 | -0.054 | 0.0000000 | 0.125 | 0.183 | -0.058 | 5.47e-14 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.10FCVal | 0.188 | 0.188 | 0.000 | 0.9556139 | 0.186 | 0.187 | -0.001 | 8.06e-01 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.10FCVal | 0.188 | 0.188 | 0.000 | 1.0000000 | 0.187 | 0.187 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.188 | 0.188 | 0.000 | 0.9633019 | 0.187 | 0.187 | 0.000 | 9.39e-01 |
Prostate_Cancer | All.MultiPRS | LDpred2.10FCVal | 0.191 | 0.188 | 0.003 | 0.6707834 | 0.183 | 0.187 | -0.003 | 3.27e-01 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.10FCVal | 0.183 | 0.188 | -0.005 | 0.0003047 | 0.182 | 0.187 | -0.005 | 1.21e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.179 | 0.188 | -0.009 | 0.0000215 | 0.166 | 0.187 | -0.021 | 7.74e-07 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.10FCVal | 0.165 | 0.188 | -0.023 | 0.0007221 | 0.173 | 0.187 | -0.014 | 5.51e-03 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.10FCVal | 0.188 | 0.188 | -0.001 | 0.9350354 | 0.179 | 0.187 | -0.007 | 3.18e-02 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.10FCVal | 0.183 | 0.188 | -0.005 | 0.0000083 | 0.184 | 0.187 | -0.002 | 3.47e-01 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.10FCVal | 0.178 | 0.188 | -0.010 | 0.0000001 | 0.177 | 0.187 | -0.010 | 8.81e-03 |
Prostate_Cancer | SBLUP.Inf | LDpred2.10FCVal | 0.137 | 0.188 | -0.052 | 0.0000000 | 0.125 | 0.187 | -0.062 | 1.36e-14 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.10FCVal | 0.159 | 0.188 | -0.029 | 0.0000000 | 0.146 | 0.187 | -0.041 | 3.40e-11 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.10FCVal | 0.150 | 0.188 | -0.039 | 0.0000000 | 0.164 | 0.187 | -0.023 | 2.18e-04 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.10FCVal | 0.165 | 0.188 | -0.024 | 0.0007056 | 0.155 | 0.187 | -0.031 | 2.27e-08 |
Prostate_Cancer | LDpred2.Inf | LDpred2.10FCVal | 0.136 | 0.188 | -0.052 | 0.0000000 | 0.126 | 0.187 | -0.060 | 2.06e-14 |
Prostate_Cancer | LDpred1.Inf | LDpred2.10FCVal | 0.142 | 0.188 | -0.046 | 0.0000000 | 0.133 | 0.187 | -0.053 | 1.48e-12 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.189 | 0.188 | 0.000 | 0.9615224 | 0.187 | 0.187 | 0.000 | 9.48e-01 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.10FCVal | 0.191 | 0.188 | 0.003 | 0.7132046 | 0.183 | 0.187 | -0.004 | 6.03e-02 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.10FCVal | 0.182 | 0.188 | -0.007 | 0.0001227 | 0.179 | 0.187 | -0.007 | 2.94e-02 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.165 | 0.183 | -0.018 | 0.0096207 | 0.173 | 0.184 | -0.012 | 4.06e-02 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.PseudoVal | 0.188 | 0.183 | 0.005 | 0.4802324 | 0.179 | 0.184 | -0.005 | 2.74e-01 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.183 | 0.183 | 0.000 | 0.8880444 | 0.182 | 0.184 | -0.002 | 4.47e-01 |
Prostate_Cancer | All.MultiPRS | LDpred2.PseudoVal | 0.191 | 0.183 | 0.008 | 0.2095976 | 0.183 | 0.184 | -0.001 | 7.90e-01 |
Prostate_Cancer | SBLUP.Inf | LDpred2.PseudoVal | 0.137 | 0.183 | -0.046 | 0.0000000 | 0.125 | 0.184 | -0.059 | 1.99e-10 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.PseudoVal | 0.159 | 0.183 | -0.024 | 0.0000000 | 0.146 | 0.184 | -0.039 | 4.23e-07 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0000083 | 0.187 | 0.184 | 0.002 | 3.47e-01 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.165 | 0.183 | -0.018 | 0.0092974 | 0.155 | 0.184 | -0.029 | 3.17e-05 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.184 | 0.184 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.188 | 0.183 | 0.006 | 0.0078487 | 0.186 | 0.184 | 0.002 | 7.11e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.189 | 0.183 | 0.006 | 0.4005572 | 0.187 | 0.184 | 0.002 | 5.87e-01 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.PseudoVal | 0.150 | 0.183 | -0.033 | 0.0000000 | 0.164 | 0.184 | -0.021 | 4.81e-04 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.PseudoVal | 0.182 | 0.183 | -0.001 | 0.5824994 | 0.179 | 0.184 | -0.005 | 2.39e-01 |
Prostate_Cancer | LDpred2.Inf | LDpred2.PseudoVal | 0.136 | 0.183 | -0.047 | 0.0000000 | 0.126 | 0.184 | -0.058 | 3.14e-10 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.179 | 0.183 | -0.004 | 0.1662996 | 0.166 | 0.184 | -0.019 | 5.60e-04 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.188 | 0.183 | 0.006 | 0.0098605 | 0.187 | 0.184 | 0.003 | 5.40e-01 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.191 | 0.183 | 0.008 | 0.2475416 | 0.183 | 0.184 | -0.001 | 6.57e-01 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.PseudoVal | 0.178 | 0.183 | -0.005 | 0.0196536 | 0.177 | 0.184 | -0.007 | 5.37e-02 |
Prostate_Cancer | LDpred1.Inf | LDpred2.PseudoVal | 0.142 | 0.183 | -0.041 | 0.0000000 | 0.133 | 0.184 | -0.051 | 7.76e-09 |
Prostate_Cancer | All.MultiPRS | LDpred2.Inf | 0.191 | 0.136 | 0.055 | 0.0000000 | 0.183 | 0.126 | 0.057 | 8.41e-13 |
Prostate_Cancer | LDpred1.10FCVal | LDpred2.Inf | 0.159 | 0.136 | 0.023 | 0.0000000 | 0.146 | 0.126 | 0.020 | 6.58e-07 |
Prostate_Cancer | SBayesR.PseudoVal | LDpred2.Inf | 0.183 | 0.136 | 0.047 | 0.0000000 | 0.182 | 0.126 | 0.056 | 7.32e-11 |
Prostate_Cancer | LDpred1.MultiPRS | LDpred2.Inf | 0.165 | 0.136 | 0.029 | 0.0000376 | 0.155 | 0.126 | 0.029 | 2.32e-08 |
Prostate_Cancer | LDpred2.Inf | LDpred2.Inf | 0.136 | 0.136 | 0.000 | 1.0000000 | 0.126 | 0.126 | 0.000 | 1.00e+00 |
Prostate_Cancer | MegaPRS.10FCVal | LDpred2.Inf | 0.188 | 0.136 | 0.052 | 0.0000000 | 0.186 | 0.126 | 0.060 | 1.05e-14 |
Prostate_Cancer | pT+clump.10FCVal | LDpred2.Inf | 0.150 | 0.136 | 0.014 | 0.0100049 | 0.164 | 0.126 | 0.038 | 3.21e-04 |
Prostate_Cancer | LDpred2.10FCVal | LDpred2.Inf | 0.188 | 0.136 | 0.052 | 0.0000000 | 0.187 | 0.126 | 0.060 | 2.06e-14 |
Prostate_Cancer | lassosum.10FCVal | LDpred2.Inf | 0.182 | 0.136 | 0.046 | 0.0000000 | 0.179 | 0.126 | 0.053 | 2.07e-10 |
Prostate_Cancer | pT+clump.MultiPRS | LDpred2.Inf | 0.165 | 0.136 | 0.029 | 0.0000334 | 0.173 | 0.126 | 0.046 | 1.29e-08 |
Prostate_Cancer | MegaPRS.MultiPRS | LDpred2.Inf | 0.189 | 0.136 | 0.053 | 0.0000000 | 0.187 | 0.126 | 0.060 | 2.06e-15 |
Prostate_Cancer | LDpred2.PseudoVal | LDpred2.Inf | 0.183 | 0.136 | 0.047 | 0.0000000 | 0.184 | 0.126 | 0.058 | 3.14e-10 |
Prostate_Cancer | LDpred2.MultiPRS | LDpred2.Inf | 0.191 | 0.136 | 0.055 | 0.0000000 | 0.183 | 0.126 | 0.057 | 9.19e-14 |
Prostate_Cancer | SBLUP.Inf | LDpred2.Inf | 0.137 | 0.136 | 0.000 | 0.4131376 | 0.125 | 0.126 | -0.001 | 2.51e-01 |
Prostate_Cancer | DBSLMM.PseudoVal | LDpred2.Inf | 0.179 | 0.136 | 0.043 | 0.0000000 | 0.166 | 0.126 | 0.039 | 1.15e-09 |
Prostate_Cancer | lassosum.MultiPRS | LDpred2.Inf | 0.188 | 0.136 | 0.052 | 0.0000000 | 0.179 | 0.126 | 0.053 | 5.97e-13 |
Prostate_Cancer | MegaPRS.PseudoVal | LDpred2.Inf | 0.188 | 0.136 | 0.052 | 0.0000000 | 0.187 | 0.126 | 0.061 | 1.10e-15 |
Prostate_Cancer | lassosum.PseudoVal | LDpred2.Inf | 0.178 | 0.136 | 0.042 | 0.0000000 | 0.177 | 0.126 | 0.051 | 1.14e-07 |
Prostate_Cancer | LDpred1.Inf | LDpred2.Inf | 0.142 | 0.136 | 0.006 | 0.0000584 | 0.133 | 0.126 | 0.007 | 1.47e-02 |
Prostate_Cancer | All.MultiPRS | pT+clump.MultiPRS | 0.191 | 0.165 | 0.026 | 0.0001476 | 0.183 | 0.173 | 0.011 | 6.99e-02 |
Prostate_Cancer | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.183 | 0.165 | 0.018 | 0.0087060 | 0.182 | 0.173 | 0.009 | 8.27e-02 |
Prostate_Cancer | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.189 | 0.165 | 0.024 | 0.0006015 | 0.187 | 0.173 | 0.014 | 7.35e-03 |
Prostate_Cancer | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.165 | 0.165 | 0.000 | 1.0000000 | 0.173 | 0.173 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.10FCVal | pT+clump.MultiPRS | 0.182 | 0.165 | 0.017 | 0.0156322 | 0.179 | 0.173 | 0.007 | 1.99e-01 |
Prostate_Cancer | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.183 | 0.165 | 0.018 | 0.0096207 | 0.184 | 0.173 | 0.012 | 4.06e-02 |
Prostate_Cancer | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.179 | 0.165 | 0.014 | 0.0418753 | 0.166 | 0.173 | -0.007 | 1.67e-01 |
Prostate_Cancer | SBLUP.Inf | pT+clump.MultiPRS | 0.137 | 0.165 | -0.028 | 0.0000433 | 0.125 | 0.173 | -0.048 | 5.93e-09 |
Prostate_Cancer | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.191 | 0.165 | 0.026 | 0.0001726 | 0.183 | 0.173 | 0.010 | 4.15e-02 |
Prostate_Cancer | pT+clump.10FCVal | pT+clump.MultiPRS | 0.150 | 0.165 | -0.015 | 0.0285356 | 0.164 | 0.173 | -0.009 | 4.81e-02 |
Prostate_Cancer | LDpred1.Inf | pT+clump.MultiPRS | 0.142 | 0.165 | -0.023 | 0.0010066 | 0.133 | 0.173 | -0.039 | 4.34e-07 |
Prostate_Cancer | LDpred2.Inf | pT+clump.MultiPRS | 0.136 | 0.165 | -0.029 | 0.0000334 | 0.126 | 0.173 | -0.046 | 1.29e-08 |
Prostate_Cancer | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.188 | 0.165 | 0.023 | 0.0006893 | 0.187 | 0.173 | 0.014 | 6.93e-03 |
Prostate_Cancer | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.188 | 0.165 | 0.023 | 0.0006841 | 0.186 | 0.173 | 0.013 | 1.28e-02 |
Prostate_Cancer | LDpred2.10FCVal | pT+clump.MultiPRS | 0.188 | 0.165 | 0.023 | 0.0007221 | 0.187 | 0.173 | 0.014 | 5.51e-03 |
Prostate_Cancer | lassosum.PseudoVal | pT+clump.MultiPRS | 0.178 | 0.165 | 0.013 | 0.0532552 | 0.177 | 0.173 | 0.005 | 4.02e-01 |
Prostate_Cancer | LDpred1.10FCVal | pT+clump.MultiPRS | 0.159 | 0.165 | -0.006 | 0.4107085 | 0.146 | 0.173 | -0.027 | 8.35e-05 |
Prostate_Cancer | lassosum.MultiPRS | pT+clump.MultiPRS | 0.188 | 0.165 | 0.023 | 0.0009481 | 0.179 | 0.173 | 0.007 | 1.61e-01 |
Prostate_Cancer | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.165 | 0.165 | 0.000 | 0.9876780 | 0.155 | 0.173 | -0.017 | 7.77e-03 |
Prostate_Cancer | LDpred1.Inf | pT+clump.10FCVal | 0.142 | 0.150 | -0.008 | 0.1306644 | 0.133 | 0.164 | -0.030 | 2.23e-03 |
Prostate_Cancer | pT+clump.MultiPRS | pT+clump.10FCVal | 0.165 | 0.150 | 0.015 | 0.0285356 | 0.173 | 0.164 | 0.009 | 4.81e-02 |
Prostate_Cancer | LDpred2.MultiPRS | pT+clump.10FCVal | 0.191 | 0.150 | 0.041 | 0.0000000 | 0.183 | 0.164 | 0.019 | 2.67e-03 |
Prostate_Cancer | SBayesR.PseudoVal | pT+clump.10FCVal | 0.183 | 0.150 | 0.033 | 0.0000000 | 0.182 | 0.164 | 0.018 | 3.11e-03 |
Prostate_Cancer | LDpred2.10FCVal | pT+clump.10FCVal | 0.188 | 0.150 | 0.039 | 0.0000000 | 0.187 | 0.164 | 0.023 | 2.18e-04 |
Prostate_Cancer | SBLUP.Inf | pT+clump.10FCVal | 0.137 | 0.150 | -0.013 | 0.0130839 | 0.125 | 0.164 | -0.039 | 2.29e-04 |
Prostate_Cancer | lassosum.MultiPRS | pT+clump.10FCVal | 0.188 | 0.150 | 0.038 | 0.0000000 | 0.179 | 0.164 | 0.016 | 1.81e-02 |
Prostate_Cancer | LDpred2.PseudoVal | pT+clump.10FCVal | 0.183 | 0.150 | 0.033 | 0.0000000 | 0.184 | 0.164 | 0.021 | 4.81e-04 |
Prostate_Cancer | LDpred1.MultiPRS | pT+clump.10FCVal | 0.165 | 0.150 | 0.015 | 0.0299833 | 0.155 | 0.164 | -0.008 | 3.30e-01 |
Prostate_Cancer | lassosum.PseudoVal | pT+clump.10FCVal | 0.178 | 0.150 | 0.029 | 0.0000000 | 0.177 | 0.164 | 0.013 | 1.80e-02 |
Prostate_Cancer | LDpred1.10FCVal | pT+clump.10FCVal | 0.159 | 0.150 | 0.010 | 0.0370544 | 0.146 | 0.164 | -0.018 | 4.74e-02 |
Prostate_Cancer | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.189 | 0.150 | 0.039 | 0.0000000 | 0.187 | 0.164 | 0.023 | 5.57e-04 |
Prostate_Cancer | pT+clump.10FCVal | pT+clump.10FCVal | 0.150 | 0.150 | 0.000 | 1.0000000 | 0.164 | 0.164 | 0.000 | 1.00e+00 |
Prostate_Cancer | All.MultiPRS | pT+clump.10FCVal | 0.191 | 0.150 | 0.041 | 0.0000000 | 0.183 | 0.164 | 0.020 | 6.06e-03 |
Prostate_Cancer | MegaPRS.10FCVal | pT+clump.10FCVal | 0.188 | 0.150 | 0.039 | 0.0000000 | 0.186 | 0.164 | 0.022 | 9.89e-04 |
Prostate_Cancer | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.179 | 0.150 | 0.029 | 0.0000000 | 0.166 | 0.164 | 0.002 | 7.95e-01 |
Prostate_Cancer | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.188 | 0.150 | 0.039 | 0.0000000 | 0.187 | 0.164 | 0.023 | 6.59e-04 |
Prostate_Cancer | lassosum.10FCVal | pT+clump.10FCVal | 0.182 | 0.150 | 0.032 | 0.0000000 | 0.179 | 0.164 | 0.016 | 1.90e-02 |
Prostate_Cancer | LDpred2.Inf | pT+clump.10FCVal | 0.136 | 0.150 | -0.014 | 0.0100049 | 0.126 | 0.164 | -0.038 | 3.21e-04 |
Prostate_Cancer | LDpred1.Inf | SBayesR.PseudoVal | 0.142 | 0.183 | -0.041 | 0.0000000 | 0.133 | 0.182 | -0.049 | 2.28e-09 |
Prostate_Cancer | LDpred2.Inf | SBayesR.PseudoVal | 0.136 | 0.183 | -0.047 | 0.0000000 | 0.126 | 0.182 | -0.056 | 7.32e-11 |
Prostate_Cancer | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0060694 | 0.187 | 0.182 | 0.005 | 2.03e-01 |
Prostate_Cancer | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.191 | 0.183 | 0.008 | 0.2600621 | 0.183 | 0.182 | 0.001 | 7.39e-01 |
Prostate_Cancer | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.183 | 0.183 | 0.000 | 1.0000000 | 0.182 | 0.182 | 0.000 | 1.00e+00 |
Prostate_Cancer | lassosum.PseudoVal | SBayesR.PseudoVal | 0.178 | 0.183 | -0.005 | 0.0325748 | 0.177 | 0.182 | -0.005 | 2.71e-01 |
Prostate_Cancer | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.165 | 0.183 | -0.018 | 0.0087060 | 0.173 | 0.182 | -0.009 | 8.27e-02 |
Prostate_Cancer | lassosum.MultiPRS | SBayesR.PseudoVal | 0.188 | 0.183 | 0.005 | 0.4993860 | 0.179 | 0.182 | -0.003 | 5.53e-01 |
Prostate_Cancer | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.183 | 0.183 | 0.000 | 0.8880444 | 0.184 | 0.182 | 0.002 | 4.47e-01 |
Prostate_Cancer | LDpred2.10FCVal | SBayesR.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0003047 | 0.187 | 0.182 | 0.005 | 1.21e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.189 | 0.183 | 0.006 | 0.4186320 | 0.187 | 0.182 | 0.004 | 2.20e-01 |
Prostate_Cancer | LDpred1.10FCVal | SBayesR.PseudoVal | 0.159 | 0.183 | -0.024 | 0.0000000 | 0.146 | 0.182 | -0.036 | 1.02e-07 |
Prostate_Cancer | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.188 | 0.183 | 0.005 | 0.0049008 | 0.186 | 0.182 | 0.004 | 3.08e-01 |
Prostate_Cancer | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.165 | 0.183 | -0.018 | 0.0084229 | 0.155 | 0.182 | -0.027 | 2.07e-05 |
Prostate_Cancer | All.MultiPRS | SBayesR.PseudoVal | 0.191 | 0.183 | 0.008 | 0.2209984 | 0.183 | 0.182 | 0.001 | 7.55e-01 |
Prostate_Cancer | SBLUP.Inf | SBayesR.PseudoVal | 0.137 | 0.183 | -0.047 | 0.0000000 | 0.125 | 0.182 | -0.057 | 4.45e-11 |
Prostate_Cancer | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.179 | 0.183 | -0.004 | 0.0871023 | 0.166 | 0.182 | -0.016 | 5.23e-04 |
Prostate_Cancer | pT+clump.10FCVal | SBayesR.PseudoVal | 0.150 | 0.183 | -0.033 | 0.0000000 | 0.164 | 0.182 | -0.018 | 3.11e-03 |
Prostate_Cancer | lassosum.10FCVal | SBayesR.PseudoVal | 0.182 | 0.183 | -0.001 | 0.5401208 | 0.179 | 0.182 | -0.003 | 5.67e-01 |
Prostate_Cancer | LDpred2.PseudoVal | SBLUP.Inf | 0.183 | 0.137 | 0.046 | 0.0000000 | 0.184 | 0.125 | 0.059 | 1.99e-10 |
Prostate_Cancer | MegaPRS.PseudoVal | SBLUP.Inf | 0.188 | 0.137 | 0.052 | 0.0000000 | 0.187 | 0.125 | 0.062 | 5.57e-16 |
Prostate_Cancer | lassosum.MultiPRS | SBLUP.Inf | 0.188 | 0.137 | 0.051 | 0.0000000 | 0.179 | 0.125 | 0.054 | 1.74e-13 |
Prostate_Cancer | LDpred1.MultiPRS | SBLUP.Inf | 0.165 | 0.137 | 0.028 | 0.0000487 | 0.155 | 0.125 | 0.030 | 6.56e-09 |
Prostate_Cancer | All.MultiPRS | SBLUP.Inf | 0.191 | 0.137 | 0.055 | 0.0000000 | 0.183 | 0.125 | 0.058 | 3.46e-13 |
Prostate_Cancer | LDpred2.Inf | SBLUP.Inf | 0.136 | 0.137 | 0.000 | 0.4131376 | 0.126 | 0.125 | 0.001 | 2.51e-01 |
Prostate_Cancer | MegaPRS.MultiPRS | SBLUP.Inf | 0.189 | 0.137 | 0.052 | 0.0000000 | 0.187 | 0.125 | 0.061 | 1.07e-15 |
Prostate_Cancer | pT+clump.MultiPRS | SBLUP.Inf | 0.165 | 0.137 | 0.028 | 0.0000433 | 0.173 | 0.125 | 0.048 | 5.93e-09 |
Prostate_Cancer | lassosum.10FCVal | SBLUP.Inf | 0.182 | 0.137 | 0.045 | 0.0000000 | 0.179 | 0.125 | 0.054 | 8.47e-11 |
Prostate_Cancer | SBayesR.PseudoVal | SBLUP.Inf | 0.183 | 0.137 | 0.047 | 0.0000000 | 0.182 | 0.125 | 0.057 | 4.45e-11 |
Prostate_Cancer | DBSLMM.PseudoVal | SBLUP.Inf | 0.179 | 0.137 | 0.042 | 0.0000000 | 0.166 | 0.125 | 0.041 | 3.33e-10 |
Prostate_Cancer | SBLUP.Inf | SBLUP.Inf | 0.137 | 0.137 | 0.000 | 1.0000000 | 0.125 | 0.125 | 0.000 | 1.00e+00 |
Prostate_Cancer | LDpred2.MultiPRS | SBLUP.Inf | 0.191 | 0.137 | 0.054 | 0.0000000 | 0.183 | 0.125 | 0.058 | 5.47e-14 |
Prostate_Cancer | pT+clump.10FCVal | SBLUP.Inf | 0.150 | 0.137 | 0.013 | 0.0130839 | 0.164 | 0.125 | 0.039 | 2.29e-04 |
Prostate_Cancer | LDpred1.Inf | SBLUP.Inf | 0.142 | 0.137 | 0.006 | 0.0001614 | 0.133 | 0.125 | 0.008 | 4.82e-03 |
Prostate_Cancer | lassosum.PseudoVal | SBLUP.Inf | 0.178 | 0.137 | 0.042 | 0.0000000 | 0.177 | 0.125 | 0.052 | 6.60e-08 |
Prostate_Cancer | LDpred1.10FCVal | SBLUP.Inf | 0.159 | 0.137 | 0.023 | 0.0000000 | 0.146 | 0.125 | 0.021 | 1.26e-07 |
Prostate_Cancer | MegaPRS.10FCVal | SBLUP.Inf | 0.188 | 0.137 | 0.052 | 0.0000000 | 0.186 | 0.125 | 0.061 | 5.37e-15 |
Prostate_Cancer | LDpred2.10FCVal | SBLUP.Inf | 0.188 | 0.137 | 0.052 | 0.0000000 | 0.187 | 0.125 | 0.062 | 1.36e-14 |
Breast_Cancer | LDpred1.10FCVal | All.MultiPRS | 0.204 | 0.230 | -0.026 | 0.0000991 | 0.188 | 0.216 | -0.028 | 3.35e-09 |
Breast_Cancer | pT+clump.10FCVal | All.MultiPRS | 0.182 | 0.230 | -0.048 | 0.0000000 | 0.162 | 0.216 | -0.055 | 4.21e-17 |
Breast_Cancer | LDpred1.MultiPRS | All.MultiPRS | 0.217 | 0.230 | -0.013 | 0.0551739 | 0.200 | 0.216 | -0.016 | 5.77e-06 |
Breast_Cancer | LDpred2.Inf | All.MultiPRS | 0.168 | 0.230 | -0.062 | 0.0000000 | 0.157 | 0.216 | -0.060 | 2.84e-17 |
Breast_Cancer | MegaPRS.10FCVal | All.MultiPRS | 0.225 | 0.230 | -0.005 | 0.4713129 | 0.213 | 0.216 | -0.003 | 1.19e-01 |
Breast_Cancer | LDpred2.10FCVal | All.MultiPRS | 0.225 | 0.230 | -0.005 | 0.4307443 | 0.208 | 0.216 | -0.008 | 8.95e-05 |
Breast_Cancer | LDpred2.MultiPRS | All.MultiPRS | 0.229 | 0.230 | -0.001 | 0.8336349 | 0.213 | 0.216 | -0.003 | 3.76e-03 |
Breast_Cancer | lassosum.10FCVal | All.MultiPRS | 0.218 | 0.230 | -0.012 | 0.0717010 | 0.196 | 0.216 | -0.020 | 4.43e-09 |
Breast_Cancer | LDpred1.Inf | All.MultiPRS | 0.172 | 0.230 | -0.058 | 0.0000000 | 0.157 | 0.216 | -0.059 | 1.12e-17 |
Breast_Cancer | lassosum.MultiPRS | All.MultiPRS | 0.225 | 0.230 | -0.006 | 0.4152203 | 0.209 | 0.216 | -0.008 | 7.42e-04 |
Breast_Cancer | MegaPRS.PseudoVal | All.MultiPRS | 0.224 | 0.230 | -0.006 | 0.3711983 | 0.213 | 0.216 | -0.003 | 1.12e-01 |
Breast_Cancer | All.MultiPRS | All.MultiPRS | 0.230 | 0.230 | 0.000 | 1.0000000 | 0.216 | 0.216 | 0.000 | 1.00e+00 |
Breast_Cancer | SBayesR.PseudoVal | All.MultiPRS | 0.227 | 0.230 | -0.004 | 0.6013276 | 0.207 | 0.216 | -0.009 | 8.14e-05 |
Breast_Cancer | MegaPRS.MultiPRS | All.MultiPRS | 0.226 | 0.230 | -0.004 | 0.5593490 | 0.215 | 0.216 | -0.002 | 3.37e-01 |
Breast_Cancer | pT+clump.MultiPRS | All.MultiPRS | 0.201 | 0.230 | -0.029 | 0.0000269 | 0.186 | 0.216 | -0.030 | 1.31e-10 |
Breast_Cancer | lassosum.PseudoVal | All.MultiPRS | 0.216 | 0.230 | -0.014 | 0.0435295 | 0.195 | 0.216 | -0.021 | 4.67e-09 |
Breast_Cancer | LDpred2.PseudoVal | All.MultiPRS | 0.223 | 0.230 | -0.007 | 0.2991403 | 0.204 | 0.216 | -0.012 | 4.41e-06 |
Breast_Cancer | DBSLMM.PseudoVal | All.MultiPRS | 0.216 | 0.230 | -0.014 | 0.0378805 | 0.207 | 0.216 | -0.010 | 6.01e-03 |
Breast_Cancer | SBLUP.Inf | All.MultiPRS | 0.166 | 0.230 | -0.064 | 0.0000000 | 0.154 | 0.216 | -0.062 | 3.93e-18 |
Breast_Cancer | LDpred1.Inf | DBSLMM.PseudoVal | 0.172 | 0.216 | -0.044 | 0.0000000 | 0.157 | 0.207 | -0.049 | 3.55e-17 |
Breast_Cancer | LDpred2.Inf | DBSLMM.PseudoVal | 0.168 | 0.216 | -0.048 | 0.0000000 | 0.157 | 0.207 | -0.050 | 4.40e-17 |
Breast_Cancer | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.229 | 0.216 | 0.013 | 0.0624164 | 0.213 | 0.207 | 0.006 | 8.69e-02 |
Breast_Cancer | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.182 | 0.216 | -0.034 | 0.0000000 | 0.162 | 0.207 | -0.045 | 2.95e-10 |
Breast_Cancer | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.227 | 0.216 | 0.011 | 0.0000000 | 0.207 | 0.207 | 0.001 | 8.85e-01 |
Breast_Cancer | All.MultiPRS | DBSLMM.PseudoVal | 0.230 | 0.216 | 0.014 | 0.0378805 | 0.216 | 0.207 | 0.010 | 6.01e-03 |
Breast_Cancer | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.224 | 0.216 | 0.008 | 0.0000248 | 0.213 | 0.207 | 0.006 | 1.04e-01 |
Breast_Cancer | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.226 | 0.216 | 0.010 | 0.1361245 | 0.215 | 0.207 | 0.008 | 3.35e-02 |
Breast_Cancer | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.223 | 0.216 | 0.007 | 0.0029521 | 0.204 | 0.207 | -0.003 | 6.01e-01 |
Breast_Cancer | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.216 | 0.216 | 0.000 | 0.8896814 | 0.195 | 0.207 | -0.012 | 3.72e-02 |
Breast_Cancer | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.201 | 0.216 | -0.015 | 0.0322334 | 0.186 | 0.207 | -0.021 | 1.76e-05 |
Breast_Cancer | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.225 | 0.216 | 0.009 | 0.0000042 | 0.213 | 0.207 | 0.007 | 9.46e-02 |
Breast_Cancer | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.225 | 0.216 | 0.009 | 0.2093016 | 0.209 | 0.207 | 0.002 | 6.09e-01 |
Breast_Cancer | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.225 | 0.216 | 0.009 | 0.0000064 | 0.208 | 0.207 | 0.001 | 7.19e-01 |
Breast_Cancer | lassosum.10FCVal | DBSLMM.PseudoVal | 0.218 | 0.216 | 0.002 | 0.4570121 | 0.196 | 0.207 | -0.010 | 4.27e-02 |
Breast_Cancer | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.204 | 0.216 | -0.012 | 0.0000000 | 0.188 | 0.207 | -0.018 | 1.38e-05 |
Breast_Cancer | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.216 | 0.216 | 0.000 | 1.0000000 | 0.207 | 0.207 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.217 | 0.216 | 0.001 | 0.8708985 | 0.200 | 0.207 | -0.006 | 1.28e-01 |
Breast_Cancer | SBLUP.Inf | DBSLMM.PseudoVal | 0.166 | 0.216 | -0.050 | 0.0000000 | 0.154 | 0.207 | -0.052 | 1.16e-18 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.MultiPRS | 0.227 | 0.225 | 0.002 | 0.7692277 | 0.207 | 0.209 | -0.001 | 6.53e-01 |
Breast_Cancer | LDpred1.Inf | lassosum.MultiPRS | 0.172 | 0.225 | -0.053 | 0.0000000 | 0.157 | 0.209 | -0.051 | 5.50e-13 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.224 | 0.225 | -0.001 | 0.9382329 | 0.213 | 0.209 | 0.004 | 2.12e-01 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.MultiPRS | 0.229 | 0.225 | 0.004 | 0.5438119 | 0.213 | 0.209 | 0.004 | 8.58e-02 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.MultiPRS | 0.223 | 0.225 | -0.002 | 0.8252522 | 0.204 | 0.209 | -0.004 | 1.87e-01 |
Breast_Cancer | LDpred2.10FCVal | lassosum.MultiPRS | 0.225 | 0.225 | 0.000 | 0.9769460 | 0.208 | 0.209 | -0.001 | 8.42e-01 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.MultiPRS | 0.201 | 0.225 | -0.023 | 0.0006957 | 0.186 | 0.209 | -0.023 | 1.70e-06 |
Breast_Cancer | lassosum.MultiPRS | lassosum.MultiPRS | 0.225 | 0.225 | 0.000 | 1.0000000 | 0.209 | 0.209 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.PseudoVal | lassosum.MultiPRS | 0.216 | 0.225 | -0.008 | 0.2297974 | 0.195 | 0.209 | -0.014 | 2.07e-06 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.MultiPRS | 0.217 | 0.225 | -0.008 | 0.2698765 | 0.200 | 0.209 | -0.008 | 2.45e-02 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.226 | 0.225 | 0.002 | 0.8158464 | 0.215 | 0.209 | 0.006 | 3.61e-02 |
Breast_Cancer | LDpred1.10FCVal | lassosum.MultiPRS | 0.204 | 0.225 | -0.021 | 0.0021953 | 0.188 | 0.209 | -0.020 | 4.60e-05 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.MultiPRS | 0.225 | 0.225 | 0.001 | 0.9233076 | 0.213 | 0.209 | 0.005 | 1.41e-01 |
Breast_Cancer | pT+clump.10FCVal | lassosum.MultiPRS | 0.182 | 0.225 | -0.043 | 0.0000000 | 0.162 | 0.209 | -0.047 | 2.73e-13 |
Breast_Cancer | lassosum.10FCVal | lassosum.MultiPRS | 0.218 | 0.225 | -0.007 | 0.3250768 | 0.196 | 0.209 | -0.012 | 9.44e-07 |
Breast_Cancer | SBLUP.Inf | lassosum.MultiPRS | 0.166 | 0.225 | -0.059 | 0.0000000 | 0.154 | 0.209 | -0.054 | 1.05e-13 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.216 | 0.225 | -0.009 | 0.2093016 | 0.207 | 0.209 | -0.002 | 6.09e-01 |
Breast_Cancer | All.MultiPRS | lassosum.MultiPRS | 0.230 | 0.225 | 0.006 | 0.4152203 | 0.216 | 0.209 | 0.008 | 7.42e-04 |
Breast_Cancer | LDpred2.Inf | lassosum.MultiPRS | 0.168 | 0.225 | -0.057 | 0.0000000 | 0.157 | 0.209 | -0.052 | 1.01e-12 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.PseudoVal | 0.225 | 0.216 | 0.009 | 0.0000964 | 0.213 | 0.195 | 0.018 | 5.51e-05 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.PseudoVal | 0.223 | 0.216 | 0.007 | 0.0008198 | 0.204 | 0.195 | 0.009 | 2.08e-02 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.PseudoVal | 0.217 | 0.216 | 0.001 | 0.9184346 | 0.200 | 0.195 | 0.005 | 2.89e-01 |
Breast_Cancer | lassosum.PseudoVal | lassosum.PseudoVal | 0.216 | 0.216 | 0.000 | 1.0000000 | 0.195 | 0.195 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.Inf | lassosum.PseudoVal | 0.168 | 0.216 | -0.049 | 0.0000000 | 0.157 | 0.195 | -0.038 | 3.28e-05 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.216 | 0.216 | 0.000 | 0.8896814 | 0.207 | 0.195 | 0.012 | 3.72e-02 |
Breast_Cancer | SBLUP.Inf | lassosum.PseudoVal | 0.166 | 0.216 | -0.050 | 0.0000000 | 0.154 | 0.195 | -0.041 | 1.08e-05 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.PseudoVal | 0.229 | 0.216 | 0.012 | 0.0706636 | 0.213 | 0.195 | 0.018 | 8.28e-07 |
Breast_Cancer | pT+clump.10FCVal | lassosum.PseudoVal | 0.182 | 0.216 | -0.034 | 0.0000000 | 0.162 | 0.195 | -0.033 | 2.39e-08 |
Breast_Cancer | LDpred1.Inf | lassosum.PseudoVal | 0.172 | 0.216 | -0.045 | 0.0000000 | 0.157 | 0.195 | -0.038 | 2.40e-05 |
Breast_Cancer | lassosum.MultiPRS | lassosum.PseudoVal | 0.225 | 0.216 | 0.008 | 0.2297974 | 0.209 | 0.195 | 0.014 | 2.07e-06 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.224 | 0.216 | 0.008 | 0.0023264 | 0.213 | 0.195 | 0.018 | 4.07e-04 |
Breast_Cancer | All.MultiPRS | lassosum.PseudoVal | 0.230 | 0.216 | 0.014 | 0.0435295 | 0.216 | 0.195 | 0.021 | 4.67e-09 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.PseudoVal | 0.227 | 0.216 | 0.010 | 0.0000028 | 0.207 | 0.195 | 0.012 | 4.46e-03 |
Breast_Cancer | lassosum.10FCVal | lassosum.PseudoVal | 0.218 | 0.216 | 0.001 | 0.2480392 | 0.196 | 0.195 | 0.001 | 5.79e-01 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.PseudoVal | 0.201 | 0.216 | -0.015 | 0.0276611 | 0.186 | 0.195 | -0.009 | 9.55e-02 |
Breast_Cancer | LDpred1.10FCVal | lassosum.PseudoVal | 0.204 | 0.216 | -0.013 | 0.0001461 | 0.188 | 0.195 | -0.006 | 3.47e-01 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.226 | 0.216 | 0.010 | 0.1515828 | 0.215 | 0.195 | 0.020 | 6.02e-06 |
Breast_Cancer | LDpred2.10FCVal | lassosum.PseudoVal | 0.225 | 0.216 | 0.008 | 0.0000436 | 0.208 | 0.195 | 0.013 | 1.40e-03 |
Breast_Cancer | lassosum.10FCVal | lassosum.10FCVal | 0.218 | 0.218 | 0.000 | 1.0000000 | 0.196 | 0.196 | 0.000 | 1.00e+00 |
Breast_Cancer | pT+clump.MultiPRS | lassosum.10FCVal | 0.201 | 0.218 | -0.016 | 0.0156107 | 0.186 | 0.196 | -0.010 | 4.10e-02 |
Breast_Cancer | LDpred2.MultiPRS | lassosum.10FCVal | 0.229 | 0.218 | 0.011 | 0.1115162 | 0.213 | 0.196 | 0.016 | 1.13e-06 |
Breast_Cancer | SBayesR.PseudoVal | lassosum.10FCVal | 0.227 | 0.218 | 0.009 | 0.0000090 | 0.207 | 0.196 | 0.011 | 6.08e-03 |
Breast_Cancer | LDpred2.10FCVal | lassosum.10FCVal | 0.225 | 0.218 | 0.007 | 0.0000143 | 0.208 | 0.196 | 0.012 | 2.81e-04 |
Breast_Cancer | SBLUP.Inf | lassosum.10FCVal | 0.166 | 0.218 | -0.052 | 0.0000000 | 0.154 | 0.196 | -0.042 | 8.06e-08 |
Breast_Cancer | lassosum.MultiPRS | lassosum.10FCVal | 0.225 | 0.218 | 0.007 | 0.3250768 | 0.209 | 0.196 | 0.012 | 9.44e-07 |
Breast_Cancer | LDpred2.PseudoVal | lassosum.10FCVal | 0.223 | 0.218 | 0.005 | 0.0029602 | 0.204 | 0.196 | 0.008 | 2.84e-02 |
Breast_Cancer | LDpred1.MultiPRS | lassosum.10FCVal | 0.217 | 0.218 | -0.001 | 0.9008449 | 0.200 | 0.196 | 0.004 | 3.68e-01 |
Breast_Cancer | LDpred2.Inf | lassosum.10FCVal | 0.168 | 0.218 | -0.050 | 0.0000000 | 0.157 | 0.196 | -0.040 | 3.89e-07 |
Breast_Cancer | LDpred1.10FCVal | lassosum.10FCVal | 0.204 | 0.218 | -0.014 | 0.0000002 | 0.188 | 0.196 | -0.008 | 1.56e-01 |
Breast_Cancer | MegaPRS.MultiPRS | lassosum.10FCVal | 0.226 | 0.218 | 0.008 | 0.2232882 | 0.215 | 0.196 | 0.018 | 3.02e-06 |
Breast_Cancer | pT+clump.10FCVal | lassosum.10FCVal | 0.182 | 0.218 | -0.036 | 0.0000000 | 0.162 | 0.196 | -0.035 | 1.38e-07 |
Breast_Cancer | All.MultiPRS | lassosum.10FCVal | 0.230 | 0.218 | 0.012 | 0.0717010 | 0.216 | 0.196 | 0.020 | 4.43e-09 |
Breast_Cancer | MegaPRS.10FCVal | lassosum.10FCVal | 0.225 | 0.218 | 0.007 | 0.0002927 | 0.213 | 0.196 | 0.017 | 3.99e-05 |
Breast_Cancer | DBSLMM.PseudoVal | lassosum.10FCVal | 0.216 | 0.218 | -0.002 | 0.4570121 | 0.207 | 0.196 | 0.010 | 4.27e-02 |
Breast_Cancer | MegaPRS.PseudoVal | lassosum.10FCVal | 0.224 | 0.218 | 0.006 | 0.0040802 | 0.213 | 0.196 | 0.017 | 1.63e-04 |
Breast_Cancer | lassosum.PseudoVal | lassosum.10FCVal | 0.216 | 0.218 | -0.001 | 0.2480392 | 0.195 | 0.196 | -0.001 | 5.79e-01 |
Breast_Cancer | LDpred1.Inf | lassosum.10FCVal | 0.172 | 0.218 | -0.046 | 0.0000000 | 0.157 | 0.196 | -0.039 | 2.63e-07 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.225 | 0.226 | -0.001 | 0.8916907 | 0.213 | 0.215 | -0.001 | 1.47e-01 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.216 | 0.226 | -0.010 | 0.1361245 | 0.207 | 0.215 | -0.008 | 3.35e-02 |
Breast_Cancer | SBLUP.Inf | MegaPRS.MultiPRS | 0.166 | 0.226 | -0.060 | 0.0000000 | 0.154 | 0.215 | -0.060 | 1.20e-18 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.229 | 0.226 | 0.003 | 0.0296371 | 0.213 | 0.215 | -0.002 | 4.08e-01 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.182 | 0.226 | -0.044 | 0.0000000 | 0.162 | 0.215 | -0.053 | 4.56e-14 |
Breast_Cancer | LDpred1.Inf | MegaPRS.MultiPRS | 0.172 | 0.226 | -0.054 | 0.0000000 | 0.157 | 0.215 | -0.057 | 6.15e-18 |
Breast_Cancer | LDpred2.Inf | MegaPRS.MultiPRS | 0.168 | 0.226 | -0.059 | 0.0000000 | 0.157 | 0.215 | -0.058 | 8.36e-18 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.224 | 0.226 | -0.002 | 0.7564882 | 0.213 | 0.215 | -0.002 | 1.10e-01 |
Breast_Cancer | All.MultiPRS | MegaPRS.MultiPRS | 0.230 | 0.226 | 0.004 | 0.5593490 | 0.216 | 0.215 | 0.002 | 3.37e-01 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.227 | 0.226 | 0.000 | 0.9512538 | 0.207 | 0.215 | -0.008 | 8.78e-03 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.MultiPRS | 0.218 | 0.226 | -0.008 | 0.2232882 | 0.196 | 0.215 | -0.018 | 3.02e-06 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.201 | 0.226 | -0.025 | 0.0002755 | 0.186 | 0.215 | -0.029 | 2.19e-08 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.225 | 0.226 | -0.002 | 0.8158464 | 0.209 | 0.215 | -0.006 | 3.61e-02 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.223 | 0.226 | -0.003 | 0.6504276 | 0.204 | 0.215 | -0.011 | 7.45e-04 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.225 | 0.226 | -0.001 | 0.8386544 | 0.208 | 0.215 | -0.007 | 8.86e-03 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.216 | 0.226 | -0.010 | 0.1515828 | 0.195 | 0.215 | -0.020 | 6.02e-06 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.204 | 0.226 | -0.023 | 0.0009434 | 0.188 | 0.215 | -0.026 | 1.19e-08 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.226 | 0.226 | 0.000 | 1.0000000 | 0.215 | 0.215 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.217 | 0.226 | -0.009 | 0.1830065 | 0.200 | 0.215 | -0.015 | 1.32e-04 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.225 | 0.225 | 0.000 | 1.0000000 | 0.213 | 0.213 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.10FCVal | 0.225 | 0.225 | 0.000 | 0.7377993 | 0.208 | 0.213 | -0.005 | 5.45e-02 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.217 | 0.225 | -0.008 | 0.2076280 | 0.200 | 0.213 | -0.013 | 1.14e-03 |
Breast_Cancer | LDpred2.Inf | MegaPRS.10FCVal | 0.168 | 0.225 | -0.058 | 0.0000000 | 0.157 | 0.213 | -0.057 | 2.59e-16 |
Breast_Cancer | LDpred1.Inf | MegaPRS.10FCVal | 0.172 | 0.225 | -0.053 | 0.0000000 | 0.157 | 0.213 | -0.056 | 2.40e-16 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.10FCVal | 0.225 | 0.225 | -0.001 | 0.9233076 | 0.209 | 0.213 | -0.005 | 1.41e-01 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.224 | 0.225 | -0.001 | 0.0890656 | 0.213 | 0.213 | -0.001 | 7.06e-01 |
Breast_Cancer | All.MultiPRS | MegaPRS.10FCVal | 0.230 | 0.225 | 0.005 | 0.4713129 | 0.216 | 0.213 | 0.003 | 1.19e-01 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.227 | 0.225 | 0.001 | 0.3726100 | 0.207 | 0.213 | -0.006 | 4.32e-02 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.216 | 0.225 | -0.009 | 0.0000042 | 0.207 | 0.213 | -0.007 | 9.46e-02 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.201 | 0.225 | -0.024 | 0.0004691 | 0.186 | 0.213 | -0.027 | 2.21e-07 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.10FCVal | 0.216 | 0.225 | -0.009 | 0.0000964 | 0.195 | 0.213 | -0.018 | 5.51e-05 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.223 | 0.225 | -0.002 | 0.1794722 | 0.204 | 0.213 | -0.009 | 4.65e-03 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.10FCVal | 0.218 | 0.225 | -0.007 | 0.0002927 | 0.196 | 0.213 | -0.017 | 3.99e-05 |
Breast_Cancer | SBLUP.Inf | MegaPRS.10FCVal | 0.166 | 0.225 | -0.059 | 0.0000000 | 0.154 | 0.213 | -0.059 | 4.07e-17 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.10FCVal | 0.204 | 0.225 | -0.022 | 0.0000000 | 0.188 | 0.213 | -0.025 | 2.78e-07 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.10FCVal | 0.182 | 0.225 | -0.043 | 0.0000000 | 0.162 | 0.213 | -0.052 | 5.83e-13 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.229 | 0.225 | 0.003 | 0.6105336 | 0.213 | 0.213 | -0.001 | 8.38e-01 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.226 | 0.225 | 0.001 | 0.8916907 | 0.215 | 0.213 | 0.001 | 1.47e-01 |
Breast_Cancer | lassosum.10FCVal | MegaPRS.PseudoVal | 0.218 | 0.224 | -0.006 | 0.0040802 | 0.196 | 0.213 | -0.017 | 1.63e-04 |
Breast_Cancer | SBLUP.Inf | MegaPRS.PseudoVal | 0.166 | 0.224 | -0.058 | 0.0000000 | 0.154 | 0.213 | -0.059 | 2.94e-20 |
Breast_Cancer | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.227 | 0.224 | 0.003 | 0.1208759 | 0.207 | 0.213 | -0.006 | 8.78e-02 |
Breast_Cancer | All.MultiPRS | MegaPRS.PseudoVal | 0.230 | 0.224 | 0.006 | 0.3711983 | 0.216 | 0.213 | 0.003 | 1.12e-01 |
Breast_Cancer | LDpred2.Inf | MegaPRS.PseudoVal | 0.168 | 0.224 | -0.056 | 0.0000000 | 0.157 | 0.213 | -0.056 | 2.14e-19 |
Breast_Cancer | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.225 | 0.224 | 0.001 | 0.9382329 | 0.209 | 0.213 | -0.004 | 2.12e-01 |
Breast_Cancer | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.225 | 0.224 | 0.001 | 0.6159292 | 0.208 | 0.213 | -0.005 | 1.00e-01 |
Breast_Cancer | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.217 | 0.224 | -0.007 | 0.2807080 | 0.200 | 0.213 | -0.013 | 1.11e-03 |
Breast_Cancer | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.223 | 0.224 | -0.001 | 0.5937333 | 0.204 | 0.213 | -0.009 | 1.92e-02 |
Breast_Cancer | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.204 | 0.224 | -0.020 | 0.0000000 | 0.188 | 0.213 | -0.024 | 1.06e-08 |
Breast_Cancer | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.201 | 0.224 | -0.023 | 0.0008913 | 0.186 | 0.213 | -0.027 | 6.82e-07 |
Breast_Cancer | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.182 | 0.224 | -0.042 | 0.0000000 | 0.162 | 0.213 | -0.051 | 1.29e-11 |
Breast_Cancer | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.216 | 0.224 | -0.008 | 0.0023264 | 0.195 | 0.213 | -0.018 | 4.07e-04 |
Breast_Cancer | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.225 | 0.224 | 0.001 | 0.0890656 | 0.213 | 0.213 | 0.001 | 7.06e-01 |
Breast_Cancer | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.226 | 0.224 | 0.002 | 0.7564882 | 0.215 | 0.213 | 0.002 | 1.10e-01 |
Breast_Cancer | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.224 | 0.224 | 0.000 | 1.0000000 | 0.213 | 0.213 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.229 | 0.224 | 0.005 | 0.4943744 | 0.213 | 0.213 | 0.000 | 9.99e-01 |
Breast_Cancer | LDpred1.Inf | MegaPRS.PseudoVal | 0.172 | 0.224 | -0.052 | 0.0000000 | 0.157 | 0.213 | -0.056 | 3.70e-19 |
Breast_Cancer | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.216 | 0.224 | -0.008 | 0.0000248 | 0.207 | 0.213 | -0.006 | 1.04e-01 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.201 | 0.217 | -0.016 | 0.0216279 | 0.186 | 0.200 | -0.014 | 8.49e-03 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.224 | 0.217 | 0.007 | 0.2807080 | 0.213 | 0.200 | 0.013 | 1.11e-03 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.223 | 0.217 | 0.006 | 0.3552261 | 0.204 | 0.200 | 0.004 | 3.73e-01 |
Breast_Cancer | LDpred1.Inf | LDpred1.MultiPRS | 0.172 | 0.217 | -0.045 | 0.0000000 | 0.157 | 0.200 | -0.043 | 4.89e-12 |
Breast_Cancer | lassosum.10FCVal | LDpred1.MultiPRS | 0.218 | 0.217 | 0.001 | 0.9008449 | 0.196 | 0.200 | -0.004 | 3.68e-01 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.MultiPRS | 0.204 | 0.217 | -0.013 | 0.0385839 | 0.188 | 0.200 | -0.012 | 3.80e-04 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.MultiPRS | 0.225 | 0.217 | 0.008 | 0.2698765 | 0.209 | 0.200 | 0.008 | 2.45e-02 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.217 | 0.217 | 0.000 | 1.0000000 | 0.200 | 0.200 | 0.000 | 1.00e+00 |
Breast_Cancer | All.MultiPRS | LDpred1.MultiPRS | 0.230 | 0.217 | 0.013 | 0.0551739 | 0.216 | 0.200 | 0.016 | 5.77e-06 |
Breast_Cancer | LDpred2.Inf | LDpred1.MultiPRS | 0.168 | 0.217 | -0.049 | 0.0000000 | 0.157 | 0.200 | -0.043 | 4.70e-11 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.226 | 0.217 | 0.009 | 0.1830065 | 0.215 | 0.200 | 0.015 | 1.32e-04 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.MultiPRS | 0.182 | 0.217 | -0.035 | 0.0000001 | 0.162 | 0.200 | -0.038 | 2.10e-07 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.MultiPRS | 0.216 | 0.217 | -0.001 | 0.9184346 | 0.195 | 0.200 | -0.005 | 2.89e-01 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.227 | 0.217 | 0.010 | 0.1426688 | 0.207 | 0.200 | 0.007 | 7.69e-02 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.216 | 0.217 | -0.001 | 0.8708985 | 0.207 | 0.200 | 0.006 | 1.28e-01 |
Breast_Cancer | SBLUP.Inf | LDpred1.MultiPRS | 0.166 | 0.217 | -0.051 | 0.0000000 | 0.154 | 0.200 | -0.046 | 5.07e-12 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.229 | 0.217 | 0.012 | 0.0884569 | 0.213 | 0.200 | 0.013 | 3.20e-04 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.225 | 0.217 | 0.008 | 0.2076280 | 0.213 | 0.200 | 0.013 | 1.14e-03 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.MultiPRS | 0.225 | 0.217 | 0.008 | 0.2343151 | 0.208 | 0.200 | 0.008 | 2.33e-02 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.Inf | 0.204 | 0.172 | 0.032 | 0.0000000 | 0.188 | 0.157 | 0.031 | 4.63e-22 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.Inf | 0.223 | 0.172 | 0.051 | 0.0000000 | 0.204 | 0.157 | 0.047 | 3.48e-10 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.Inf | 0.217 | 0.172 | 0.045 | 0.0000000 | 0.200 | 0.157 | 0.043 | 4.89e-12 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.Inf | 0.201 | 0.172 | 0.030 | 0.0000178 | 0.186 | 0.157 | 0.029 | 1.15e-04 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.Inf | 0.225 | 0.172 | 0.053 | 0.0000000 | 0.213 | 0.157 | 0.056 | 2.40e-16 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.Inf | 0.226 | 0.172 | 0.054 | 0.0000000 | 0.215 | 0.157 | 0.057 | 6.15e-18 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.Inf | 0.182 | 0.172 | 0.010 | 0.0392978 | 0.162 | 0.157 | 0.004 | 6.51e-01 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.Inf | 0.216 | 0.172 | 0.045 | 0.0000000 | 0.195 | 0.157 | 0.038 | 2.40e-05 |
Breast_Cancer | LDpred2.Inf | LDpred1.Inf | 0.168 | 0.172 | -0.004 | 0.0002548 | 0.157 | 0.157 | -0.001 | 7.90e-01 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.Inf | 0.216 | 0.172 | 0.044 | 0.0000000 | 0.207 | 0.157 | 0.049 | 3.55e-17 |
Breast_Cancer | SBLUP.Inf | LDpred1.Inf | 0.166 | 0.172 | -0.006 | 0.0000003 | 0.154 | 0.157 | -0.003 | 1.88e-01 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.Inf | 0.229 | 0.172 | 0.057 | 0.0000000 | 0.213 | 0.157 | 0.056 | 1.66e-15 |
Breast_Cancer | lassosum.10FCVal | LDpred1.Inf | 0.218 | 0.172 | 0.046 | 0.0000000 | 0.196 | 0.157 | 0.039 | 2.63e-07 |
Breast_Cancer | LDpred1.Inf | LDpred1.Inf | 0.172 | 0.172 | 0.000 | 1.0000000 | 0.157 | 0.157 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.Inf | 0.225 | 0.172 | 0.053 | 0.0000000 | 0.209 | 0.157 | 0.051 | 5.50e-13 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.Inf | 0.224 | 0.172 | 0.052 | 0.0000000 | 0.213 | 0.157 | 0.056 | 3.70e-19 |
Breast_Cancer | All.MultiPRS | LDpred1.Inf | 0.230 | 0.172 | 0.058 | 0.0000000 | 0.216 | 0.157 | 0.059 | 1.12e-17 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.Inf | 0.227 | 0.172 | 0.055 | 0.0000000 | 0.207 | 0.157 | 0.050 | 1.96e-13 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.Inf | 0.225 | 0.172 | 0.053 | 0.0000000 | 0.208 | 0.157 | 0.051 | 3.16e-15 |
Breast_Cancer | All.MultiPRS | LDpred1.10FCVal | 0.230 | 0.204 | 0.026 | 0.0000991 | 0.216 | 0.188 | 0.028 | 3.35e-09 |
Breast_Cancer | pT+clump.MultiPRS | LDpred1.10FCVal | 0.201 | 0.204 | -0.002 | 0.7423311 | 0.186 | 0.188 | -0.003 | 6.72e-01 |
Breast_Cancer | LDpred1.10FCVal | LDpred1.10FCVal | 0.204 | 0.204 | 0.000 | 1.0000000 | 0.188 | 0.188 | 0.000 | 1.00e+00 |
Breast_Cancer | SBayesR.PseudoVal | LDpred1.10FCVal | 0.227 | 0.204 | 0.023 | 0.0000000 | 0.207 | 0.188 | 0.019 | 9.70e-05 |
Breast_Cancer | LDpred1.MultiPRS | LDpred1.10FCVal | 0.217 | 0.204 | 0.013 | 0.0385839 | 0.200 | 0.188 | 0.012 | 3.80e-04 |
Breast_Cancer | SBLUP.Inf | LDpred1.10FCVal | 0.166 | 0.204 | -0.038 | 0.0000000 | 0.154 | 0.188 | -0.034 | 5.88e-19 |
Breast_Cancer | MegaPRS.10FCVal | LDpred1.10FCVal | 0.225 | 0.204 | 0.022 | 0.0000000 | 0.213 | 0.188 | 0.025 | 2.78e-07 |
Breast_Cancer | LDpred2.PseudoVal | LDpred1.10FCVal | 0.223 | 0.204 | 0.019 | 0.0000000 | 0.204 | 0.188 | 0.016 | 4.54e-03 |
Breast_Cancer | LDpred2.MultiPRS | LDpred1.10FCVal | 0.229 | 0.204 | 0.025 | 0.0002336 | 0.213 | 0.188 | 0.024 | 3.11e-07 |
Breast_Cancer | LDpred2.Inf | LDpred1.10FCVal | 0.168 | 0.204 | -0.036 | 0.0000000 | 0.157 | 0.188 | -0.032 | 8.91e-17 |
Breast_Cancer | LDpred1.Inf | LDpred1.10FCVal | 0.172 | 0.204 | -0.032 | 0.0000000 | 0.157 | 0.188 | -0.031 | 4.63e-22 |
Breast_Cancer | pT+clump.10FCVal | LDpred1.10FCVal | 0.182 | 0.204 | -0.022 | 0.0000002 | 0.162 | 0.188 | -0.027 | 1.46e-03 |
Breast_Cancer | LDpred2.10FCVal | LDpred1.10FCVal | 0.225 | 0.204 | 0.021 | 0.0000000 | 0.208 | 0.188 | 0.019 | 5.02e-06 |
Breast_Cancer | lassosum.PseudoVal | LDpred1.10FCVal | 0.216 | 0.204 | 0.013 | 0.0001461 | 0.195 | 0.188 | 0.006 | 3.47e-01 |
Breast_Cancer | lassosum.10FCVal | LDpred1.10FCVal | 0.218 | 0.204 | 0.014 | 0.0000002 | 0.196 | 0.188 | 0.008 | 1.56e-01 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.226 | 0.204 | 0.023 | 0.0009434 | 0.215 | 0.188 | 0.026 | 1.19e-08 |
Breast_Cancer | lassosum.MultiPRS | LDpred1.10FCVal | 0.225 | 0.204 | 0.021 | 0.0021953 | 0.209 | 0.188 | 0.020 | 4.60e-05 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.224 | 0.204 | 0.020 | 0.0000000 | 0.213 | 0.188 | 0.024 | 1.06e-08 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.216 | 0.204 | 0.012 | 0.0000000 | 0.207 | 0.188 | 0.018 | 1.38e-05 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.227 | 0.229 | -0.002 | 0.7549280 | 0.207 | 0.213 | -0.006 | 1.46e-02 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.229 | 0.229 | 0.000 | 1.0000000 | 0.213 | 0.213 | 0.000 | 1.00e+00 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.MultiPRS | 0.182 | 0.229 | -0.047 | 0.0000000 | 0.162 | 0.213 | -0.051 | 4.12e-15 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.223 | 0.229 | -0.006 | 0.4088104 | 0.204 | 0.213 | -0.009 | 2.14e-04 |
Breast_Cancer | LDpred2.Inf | LDpred2.MultiPRS | 0.168 | 0.229 | -0.061 | 0.0000000 | 0.157 | 0.213 | -0.056 | 2.85e-15 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.201 | 0.229 | -0.027 | 0.0000606 | 0.186 | 0.213 | -0.027 | 2.36e-08 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.225 | 0.229 | -0.003 | 0.6105336 | 0.213 | 0.213 | 0.001 | 8.38e-01 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.MultiPRS | 0.225 | 0.229 | -0.004 | 0.5438119 | 0.209 | 0.213 | -0.004 | 8.58e-02 |
Breast_Cancer | LDpred1.Inf | LDpred2.MultiPRS | 0.172 | 0.229 | -0.057 | 0.0000000 | 0.157 | 0.213 | -0.056 | 1.66e-15 |
Breast_Cancer | lassosum.10FCVal | LDpred2.MultiPRS | 0.218 | 0.229 | -0.011 | 0.1115162 | 0.196 | 0.213 | -0.016 | 1.13e-06 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.224 | 0.229 | -0.005 | 0.4943744 | 0.213 | 0.213 | 0.000 | 9.99e-01 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.226 | 0.229 | -0.003 | 0.0296371 | 0.215 | 0.213 | 0.002 | 4.08e-01 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.MultiPRS | 0.225 | 0.229 | -0.004 | 0.5640431 | 0.208 | 0.213 | -0.005 | 6.77e-03 |
Breast_Cancer | All.MultiPRS | LDpred2.MultiPRS | 0.230 | 0.229 | 0.001 | 0.8336349 | 0.216 | 0.213 | 0.003 | 3.76e-03 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.MultiPRS | 0.204 | 0.229 | -0.025 | 0.0002336 | 0.188 | 0.213 | -0.024 | 3.11e-07 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.216 | 0.229 | -0.013 | 0.0624164 | 0.207 | 0.213 | -0.006 | 8.69e-02 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.217 | 0.229 | -0.012 | 0.0884569 | 0.200 | 0.213 | -0.013 | 3.20e-04 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.MultiPRS | 0.216 | 0.229 | -0.012 | 0.0706636 | 0.195 | 0.213 | -0.018 | 8.28e-07 |
Breast_Cancer | SBLUP.Inf | LDpred2.MultiPRS | 0.166 | 0.229 | -0.063 | 0.0000000 | 0.154 | 0.213 | -0.059 | 5.14e-16 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.10FCVal | 0.225 | 0.225 | 0.000 | 0.7377993 | 0.213 | 0.208 | 0.005 | 5.45e-02 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.10FCVal | 0.225 | 0.225 | 0.000 | 1.0000000 | 0.208 | 0.208 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.224 | 0.225 | -0.001 | 0.6159292 | 0.213 | 0.208 | 0.005 | 1.00e-01 |
Breast_Cancer | All.MultiPRS | LDpred2.10FCVal | 0.230 | 0.225 | 0.005 | 0.4307443 | 0.216 | 0.208 | 0.008 | 8.95e-05 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.10FCVal | 0.227 | 0.225 | 0.002 | 0.1355789 | 0.207 | 0.208 | -0.001 | 7.32e-01 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.216 | 0.225 | -0.009 | 0.0000064 | 0.207 | 0.208 | -0.001 | 7.19e-01 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.10FCVal | 0.201 | 0.225 | -0.023 | 0.0006033 | 0.186 | 0.208 | -0.022 | 1.57e-05 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.10FCVal | 0.225 | 0.225 | 0.000 | 0.9769460 | 0.209 | 0.208 | 0.001 | 8.42e-01 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.10FCVal | 0.223 | 0.225 | -0.002 | 0.0461462 | 0.204 | 0.208 | -0.004 | 2.47e-02 |
Breast_Cancer | lassosum.10FCVal | LDpred2.10FCVal | 0.218 | 0.225 | -0.007 | 0.0000143 | 0.196 | 0.208 | -0.012 | 2.81e-04 |
Breast_Cancer | SBLUP.Inf | LDpred2.10FCVal | 0.166 | 0.225 | -0.059 | 0.0000000 | 0.154 | 0.208 | -0.054 | 4.14e-16 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.10FCVal | 0.204 | 0.225 | -0.021 | 0.0000000 | 0.188 | 0.208 | -0.019 | 5.02e-06 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.10FCVal | 0.182 | 0.225 | -0.043 | 0.0000000 | 0.162 | 0.208 | -0.046 | 1.88e-11 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.10FCVal | 0.217 | 0.225 | -0.008 | 0.2343151 | 0.200 | 0.208 | -0.008 | 2.33e-02 |
Breast_Cancer | LDpred2.Inf | LDpred2.10FCVal | 0.168 | 0.225 | -0.057 | 0.0000000 | 0.157 | 0.208 | -0.051 | 2.35e-15 |
Breast_Cancer | LDpred1.Inf | LDpred2.10FCVal | 0.172 | 0.225 | -0.053 | 0.0000000 | 0.157 | 0.208 | -0.051 | 3.16e-15 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.226 | 0.225 | 0.001 | 0.8386544 | 0.215 | 0.208 | 0.007 | 8.86e-03 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.10FCVal | 0.229 | 0.225 | 0.004 | 0.5640431 | 0.213 | 0.208 | 0.005 | 6.77e-03 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.10FCVal | 0.216 | 0.225 | -0.008 | 0.0000436 | 0.195 | 0.208 | -0.013 | 1.40e-03 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.201 | 0.223 | -0.022 | 0.0014642 | 0.186 | 0.204 | -0.018 | 9.64e-04 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.PseudoVal | 0.225 | 0.223 | 0.002 | 0.8252522 | 0.209 | 0.204 | 0.004 | 1.87e-01 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.227 | 0.223 | 0.003 | 0.0138390 | 0.207 | 0.204 | 0.003 | 2.90e-01 |
Breast_Cancer | All.MultiPRS | LDpred2.PseudoVal | 0.230 | 0.223 | 0.007 | 0.2991403 | 0.216 | 0.204 | 0.012 | 4.41e-06 |
Breast_Cancer | SBLUP.Inf | LDpred2.PseudoVal | 0.166 | 0.223 | -0.057 | 0.0000000 | 0.154 | 0.204 | -0.050 | 6.69e-11 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.PseudoVal | 0.204 | 0.223 | -0.019 | 0.0000000 | 0.188 | 0.204 | -0.016 | 4.54e-03 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.PseudoVal | 0.225 | 0.223 | 0.002 | 0.0461462 | 0.208 | 0.204 | 0.004 | 2.47e-02 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.217 | 0.223 | -0.006 | 0.3552261 | 0.200 | 0.204 | -0.004 | 3.73e-01 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.223 | 0.223 | 0.000 | 1.0000000 | 0.204 | 0.204 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.225 | 0.223 | 0.002 | 0.1794722 | 0.213 | 0.204 | 0.009 | 4.65e-03 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.226 | 0.223 | 0.003 | 0.6504276 | 0.215 | 0.204 | 0.011 | 7.45e-04 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.PseudoVal | 0.182 | 0.223 | -0.041 | 0.0000000 | 0.162 | 0.204 | -0.042 | 2.09e-10 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.PseudoVal | 0.216 | 0.223 | -0.007 | 0.0008198 | 0.195 | 0.204 | -0.009 | 2.08e-02 |
Breast_Cancer | LDpred2.Inf | LDpred2.PseudoVal | 0.168 | 0.223 | -0.055 | 0.0000000 | 0.157 | 0.204 | -0.047 | 3.08e-10 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.216 | 0.223 | -0.007 | 0.0029521 | 0.207 | 0.204 | 0.003 | 6.01e-01 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.224 | 0.223 | 0.001 | 0.5937333 | 0.213 | 0.204 | 0.009 | 1.92e-02 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.229 | 0.223 | 0.006 | 0.4088104 | 0.213 | 0.204 | 0.009 | 2.14e-04 |
Breast_Cancer | lassosum.10FCVal | LDpred2.PseudoVal | 0.218 | 0.223 | -0.005 | 0.0029602 | 0.196 | 0.204 | -0.008 | 2.84e-02 |
Breast_Cancer | LDpred1.Inf | LDpred2.PseudoVal | 0.172 | 0.223 | -0.051 | 0.0000000 | 0.157 | 0.204 | -0.047 | 3.48e-10 |
Breast_Cancer | All.MultiPRS | LDpred2.Inf | 0.230 | 0.168 | 0.062 | 0.0000000 | 0.216 | 0.157 | 0.060 | 2.84e-17 |
Breast_Cancer | LDpred1.10FCVal | LDpred2.Inf | 0.204 | 0.168 | 0.036 | 0.0000000 | 0.188 | 0.157 | 0.032 | 8.91e-17 |
Breast_Cancer | SBayesR.PseudoVal | LDpred2.Inf | 0.227 | 0.168 | 0.059 | 0.0000000 | 0.207 | 0.157 | 0.050 | 4.23e-13 |
Breast_Cancer | LDpred1.MultiPRS | LDpred2.Inf | 0.217 | 0.168 | 0.049 | 0.0000000 | 0.200 | 0.157 | 0.043 | 4.70e-11 |
Breast_Cancer | LDpred2.Inf | LDpred2.Inf | 0.168 | 0.168 | 0.000 | 1.0000000 | 0.157 | 0.157 | 0.000 | 1.00e+00 |
Breast_Cancer | MegaPRS.10FCVal | LDpred2.Inf | 0.225 | 0.168 | 0.058 | 0.0000000 | 0.213 | 0.157 | 0.057 | 2.59e-16 |
Breast_Cancer | pT+clump.10FCVal | LDpred2.Inf | 0.182 | 0.168 | 0.014 | 0.0048598 | 0.162 | 0.157 | 0.005 | 6.22e-01 |
Breast_Cancer | LDpred2.10FCVal | LDpred2.Inf | 0.225 | 0.168 | 0.057 | 0.0000000 | 0.208 | 0.157 | 0.051 | 2.35e-15 |
Breast_Cancer | lassosum.PseudoVal | LDpred2.Inf | 0.216 | 0.168 | 0.049 | 0.0000000 | 0.195 | 0.157 | 0.038 | 3.28e-05 |
Breast_Cancer | pT+clump.MultiPRS | LDpred2.Inf | 0.201 | 0.168 | 0.034 | 0.0000010 | 0.186 | 0.157 | 0.029 | 1.91e-04 |
Breast_Cancer | MegaPRS.MultiPRS | LDpred2.Inf | 0.226 | 0.168 | 0.059 | 0.0000000 | 0.215 | 0.157 | 0.058 | 8.36e-18 |
Breast_Cancer | LDpred2.PseudoVal | LDpred2.Inf | 0.223 | 0.168 | 0.055 | 0.0000000 | 0.204 | 0.157 | 0.047 | 3.08e-10 |
Breast_Cancer | LDpred2.MultiPRS | LDpred2.Inf | 0.229 | 0.168 | 0.061 | 0.0000000 | 0.213 | 0.157 | 0.056 | 2.85e-15 |
Breast_Cancer | SBLUP.Inf | LDpred2.Inf | 0.166 | 0.168 | -0.002 | 0.0025752 | 0.154 | 0.157 | -0.002 | 2.79e-02 |
Breast_Cancer | DBSLMM.PseudoVal | LDpred2.Inf | 0.216 | 0.168 | 0.048 | 0.0000000 | 0.207 | 0.157 | 0.050 | 4.40e-17 |
Breast_Cancer | lassosum.MultiPRS | LDpred2.Inf | 0.225 | 0.168 | 0.057 | 0.0000000 | 0.209 | 0.157 | 0.052 | 1.01e-12 |
Breast_Cancer | MegaPRS.PseudoVal | LDpred2.Inf | 0.224 | 0.168 | 0.056 | 0.0000000 | 0.213 | 0.157 | 0.056 | 2.14e-19 |
Breast_Cancer | lassosum.10FCVal | LDpred2.Inf | 0.218 | 0.168 | 0.050 | 0.0000000 | 0.196 | 0.157 | 0.040 | 3.89e-07 |
Breast_Cancer | LDpred1.Inf | LDpred2.Inf | 0.172 | 0.168 | 0.004 | 0.0002548 | 0.157 | 0.157 | 0.001 | 7.90e-01 |
Breast_Cancer | All.MultiPRS | pT+clump.MultiPRS | 0.230 | 0.201 | 0.029 | 0.0000269 | 0.216 | 0.186 | 0.030 | 1.31e-10 |
Breast_Cancer | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.227 | 0.201 | 0.025 | 0.0002165 | 0.207 | 0.186 | 0.021 | 2.74e-05 |
Breast_Cancer | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.226 | 0.201 | 0.025 | 0.0002755 | 0.215 | 0.186 | 0.029 | 2.19e-08 |
Breast_Cancer | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.201 | 0.201 | 0.000 | 1.0000000 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.PseudoVal | pT+clump.MultiPRS | 0.216 | 0.201 | 0.015 | 0.0276611 | 0.195 | 0.186 | 0.009 | 9.55e-02 |
Breast_Cancer | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.223 | 0.201 | 0.022 | 0.0014642 | 0.204 | 0.186 | 0.018 | 9.64e-04 |
Breast_Cancer | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.216 | 0.201 | 0.015 | 0.0322334 | 0.207 | 0.186 | 0.021 | 1.76e-05 |
Breast_Cancer | SBLUP.Inf | pT+clump.MultiPRS | 0.166 | 0.201 | -0.035 | 0.0000003 | 0.154 | 0.186 | -0.032 | 4.40e-05 |
Breast_Cancer | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.229 | 0.201 | 0.027 | 0.0000606 | 0.213 | 0.186 | 0.027 | 2.36e-08 |
Breast_Cancer | pT+clump.10FCVal | pT+clump.MultiPRS | 0.182 | 0.201 | -0.019 | 0.0045718 | 0.162 | 0.186 | -0.024 | 1.14e-07 |
Breast_Cancer | LDpred1.Inf | pT+clump.MultiPRS | 0.172 | 0.201 | -0.030 | 0.0000178 | 0.157 | 0.186 | -0.029 | 1.15e-04 |
Breast_Cancer | LDpred2.Inf | pT+clump.MultiPRS | 0.168 | 0.201 | -0.034 | 0.0000010 | 0.157 | 0.186 | -0.029 | 1.91e-04 |
Breast_Cancer | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.224 | 0.201 | 0.023 | 0.0008913 | 0.213 | 0.186 | 0.027 | 6.82e-07 |
Breast_Cancer | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.225 | 0.201 | 0.024 | 0.0004691 | 0.213 | 0.186 | 0.027 | 2.21e-07 |
Breast_Cancer | LDpred2.10FCVal | pT+clump.MultiPRS | 0.225 | 0.201 | 0.023 | 0.0006033 | 0.208 | 0.186 | 0.022 | 1.57e-05 |
Breast_Cancer | lassosum.10FCVal | pT+clump.MultiPRS | 0.218 | 0.201 | 0.016 | 0.0156107 | 0.196 | 0.186 | 0.010 | 4.10e-02 |
Breast_Cancer | LDpred1.10FCVal | pT+clump.MultiPRS | 0.204 | 0.201 | 0.002 | 0.7423311 | 0.188 | 0.186 | 0.003 | 6.72e-01 |
Breast_Cancer | lassosum.MultiPRS | pT+clump.MultiPRS | 0.225 | 0.201 | 0.023 | 0.0006957 | 0.209 | 0.186 | 0.023 | 1.70e-06 |
Breast_Cancer | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.217 | 0.201 | 0.016 | 0.0216279 | 0.200 | 0.186 | 0.014 | 8.49e-03 |
Breast_Cancer | LDpred1.Inf | pT+clump.10FCVal | 0.172 | 0.182 | -0.010 | 0.0392978 | 0.157 | 0.162 | -0.004 | 6.51e-01 |
Breast_Cancer | pT+clump.MultiPRS | pT+clump.10FCVal | 0.201 | 0.182 | 0.019 | 0.0045718 | 0.186 | 0.162 | 0.024 | 1.14e-07 |
Breast_Cancer | LDpred2.MultiPRS | pT+clump.10FCVal | 0.229 | 0.182 | 0.047 | 0.0000000 | 0.213 | 0.162 | 0.051 | 4.12e-15 |
Breast_Cancer | SBayesR.PseudoVal | pT+clump.10FCVal | 0.227 | 0.182 | 0.045 | 0.0000000 | 0.207 | 0.162 | 0.045 | 1.15e-11 |
Breast_Cancer | LDpred2.10FCVal | pT+clump.10FCVal | 0.225 | 0.182 | 0.043 | 0.0000000 | 0.208 | 0.162 | 0.046 | 1.88e-11 |
Breast_Cancer | SBLUP.Inf | pT+clump.10FCVal | 0.166 | 0.182 | -0.016 | 0.0015974 | 0.154 | 0.162 | -0.007 | 4.64e-01 |
Breast_Cancer | lassosum.MultiPRS | pT+clump.10FCVal | 0.225 | 0.182 | 0.043 | 0.0000000 | 0.209 | 0.162 | 0.047 | 2.73e-13 |
Breast_Cancer | LDpred2.PseudoVal | pT+clump.10FCVal | 0.223 | 0.182 | 0.041 | 0.0000000 | 0.204 | 0.162 | 0.042 | 2.09e-10 |
Breast_Cancer | LDpred1.MultiPRS | pT+clump.10FCVal | 0.217 | 0.182 | 0.035 | 0.0000001 | 0.200 | 0.162 | 0.038 | 2.10e-07 |
Breast_Cancer | lassosum.10FCVal | pT+clump.10FCVal | 0.218 | 0.182 | 0.036 | 0.0000000 | 0.196 | 0.162 | 0.035 | 1.38e-07 |
Breast_Cancer | LDpred1.10FCVal | pT+clump.10FCVal | 0.204 | 0.182 | 0.022 | 0.0000002 | 0.188 | 0.162 | 0.027 | 1.46e-03 |
Breast_Cancer | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.226 | 0.182 | 0.044 | 0.0000000 | 0.215 | 0.162 | 0.053 | 4.56e-14 |
Breast_Cancer | pT+clump.10FCVal | pT+clump.10FCVal | 0.182 | 0.182 | 0.000 | 1.0000000 | 0.162 | 0.162 | 0.000 | 1.00e+00 |
Breast_Cancer | All.MultiPRS | pT+clump.10FCVal | 0.230 | 0.182 | 0.048 | 0.0000000 | 0.216 | 0.162 | 0.055 | 4.21e-17 |
Breast_Cancer | MegaPRS.10FCVal | pT+clump.10FCVal | 0.225 | 0.182 | 0.043 | 0.0000000 | 0.213 | 0.162 | 0.052 | 5.83e-13 |
Breast_Cancer | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.216 | 0.182 | 0.034 | 0.0000000 | 0.207 | 0.162 | 0.045 | 2.95e-10 |
Breast_Cancer | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.224 | 0.182 | 0.042 | 0.0000000 | 0.213 | 0.162 | 0.051 | 1.29e-11 |
Breast_Cancer | lassosum.PseudoVal | pT+clump.10FCVal | 0.216 | 0.182 | 0.034 | 0.0000000 | 0.195 | 0.162 | 0.033 | 2.39e-08 |
Breast_Cancer | LDpred2.Inf | pT+clump.10FCVal | 0.168 | 0.182 | -0.014 | 0.0048598 | 0.157 | 0.162 | -0.005 | 6.22e-01 |
Breast_Cancer | LDpred1.Inf | SBayesR.PseudoVal | 0.172 | 0.227 | -0.055 | 0.0000000 | 0.157 | 0.207 | -0.050 | 1.96e-13 |
Breast_Cancer | LDpred2.Inf | SBayesR.PseudoVal | 0.168 | 0.227 | -0.059 | 0.0000000 | 0.157 | 0.207 | -0.050 | 4.23e-13 |
Breast_Cancer | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.224 | 0.227 | -0.003 | 0.1208759 | 0.213 | 0.207 | 0.006 | 8.78e-02 |
Breast_Cancer | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.229 | 0.227 | 0.002 | 0.7549280 | 0.213 | 0.207 | 0.006 | 1.46e-02 |
Breast_Cancer | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.227 | 0.227 | 0.000 | 1.0000000 | 0.207 | 0.207 | 0.000 | 1.00e+00 |
Breast_Cancer | lassosum.10FCVal | SBayesR.PseudoVal | 0.218 | 0.227 | -0.009 | 0.0000090 | 0.196 | 0.207 | -0.011 | 6.08e-03 |
Breast_Cancer | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.201 | 0.227 | -0.025 | 0.0002165 | 0.186 | 0.207 | -0.021 | 2.74e-05 |
Breast_Cancer | lassosum.MultiPRS | SBayesR.PseudoVal | 0.225 | 0.227 | -0.002 | 0.7692277 | 0.209 | 0.207 | 0.001 | 6.53e-01 |
Breast_Cancer | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.223 | 0.227 | -0.003 | 0.0138390 | 0.204 | 0.207 | -0.003 | 2.90e-01 |
Breast_Cancer | LDpred2.10FCVal | SBayesR.PseudoVal | 0.225 | 0.227 | -0.002 | 0.1355789 | 0.208 | 0.207 | 0.001 | 7.32e-01 |
Breast_Cancer | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.226 | 0.227 | 0.000 | 0.9512538 | 0.215 | 0.207 | 0.008 | 8.78e-03 |
Breast_Cancer | LDpred1.10FCVal | SBayesR.PseudoVal | 0.204 | 0.227 | -0.023 | 0.0000000 | 0.188 | 0.207 | -0.019 | 9.70e-05 |
Breast_Cancer | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.225 | 0.227 | -0.001 | 0.3726100 | 0.213 | 0.207 | 0.006 | 4.32e-02 |
Breast_Cancer | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.217 | 0.227 | -0.010 | 0.1426688 | 0.200 | 0.207 | -0.007 | 7.69e-02 |
Breast_Cancer | All.MultiPRS | SBayesR.PseudoVal | 0.230 | 0.227 | 0.004 | 0.6013276 | 0.216 | 0.207 | 0.009 | 8.14e-05 |
Breast_Cancer | SBLUP.Inf | SBayesR.PseudoVal | 0.166 | 0.227 | -0.061 | 0.0000000 | 0.154 | 0.207 | -0.053 | 5.60e-14 |
Breast_Cancer | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.216 | 0.227 | -0.011 | 0.0000000 | 0.207 | 0.207 | -0.001 | 8.85e-01 |
Breast_Cancer | pT+clump.10FCVal | SBayesR.PseudoVal | 0.182 | 0.227 | -0.045 | 0.0000000 | 0.162 | 0.207 | -0.045 | 1.15e-11 |
Breast_Cancer | lassosum.PseudoVal | SBayesR.PseudoVal | 0.216 | 0.227 | -0.010 | 0.0000028 | 0.195 | 0.207 | -0.012 | 4.46e-03 |
Breast_Cancer | LDpred2.PseudoVal | SBLUP.Inf | 0.223 | 0.166 | 0.057 | 0.0000000 | 0.204 | 0.154 | 0.050 | 6.69e-11 |
Breast_Cancer | MegaPRS.PseudoVal | SBLUP.Inf | 0.224 | 0.166 | 0.058 | 0.0000000 | 0.213 | 0.154 | 0.059 | 2.94e-20 |
Breast_Cancer | lassosum.MultiPRS | SBLUP.Inf | 0.225 | 0.166 | 0.059 | 0.0000000 | 0.209 | 0.154 | 0.054 | 1.05e-13 |
Breast_Cancer | LDpred1.MultiPRS | SBLUP.Inf | 0.217 | 0.166 | 0.051 | 0.0000000 | 0.200 | 0.154 | 0.046 | 5.07e-12 |
Breast_Cancer | All.MultiPRS | SBLUP.Inf | 0.230 | 0.166 | 0.064 | 0.0000000 | 0.216 | 0.154 | 0.062 | 3.93e-18 |
Breast_Cancer | LDpred2.Inf | SBLUP.Inf | 0.168 | 0.166 | 0.002 | 0.0025752 | 0.157 | 0.154 | 0.002 | 2.79e-02 |
Breast_Cancer | MegaPRS.MultiPRS | SBLUP.Inf | 0.226 | 0.166 | 0.060 | 0.0000000 | 0.215 | 0.154 | 0.060 | 1.20e-18 |
Breast_Cancer | pT+clump.MultiPRS | SBLUP.Inf | 0.201 | 0.166 | 0.035 | 0.0000003 | 0.186 | 0.154 | 0.032 | 4.40e-05 |
Breast_Cancer | lassosum.PseudoVal | SBLUP.Inf | 0.216 | 0.166 | 0.050 | 0.0000000 | 0.195 | 0.154 | 0.041 | 1.08e-05 |
Breast_Cancer | SBayesR.PseudoVal | SBLUP.Inf | 0.227 | 0.166 | 0.061 | 0.0000000 | 0.207 | 0.154 | 0.053 | 5.60e-14 |
Breast_Cancer | DBSLMM.PseudoVal | SBLUP.Inf | 0.216 | 0.166 | 0.050 | 0.0000000 | 0.207 | 0.154 | 0.052 | 1.16e-18 |
Breast_Cancer | SBLUP.Inf | SBLUP.Inf | 0.166 | 0.166 | 0.000 | 1.0000000 | 0.154 | 0.154 | 0.000 | 1.00e+00 |
Breast_Cancer | LDpred2.MultiPRS | SBLUP.Inf | 0.229 | 0.166 | 0.063 | 0.0000000 | 0.213 | 0.154 | 0.059 | 5.14e-16 |
Breast_Cancer | pT+clump.10FCVal | SBLUP.Inf | 0.182 | 0.166 | 0.016 | 0.0015974 | 0.162 | 0.154 | 0.007 | 4.64e-01 |
Breast_Cancer | LDpred1.Inf | SBLUP.Inf | 0.172 | 0.166 | 0.006 | 0.0000003 | 0.157 | 0.154 | 0.003 | 1.88e-01 |
Breast_Cancer | lassosum.10FCVal | SBLUP.Inf | 0.218 | 0.166 | 0.052 | 0.0000000 | 0.196 | 0.154 | 0.042 | 8.06e-08 |
Breast_Cancer | LDpred1.10FCVal | SBLUP.Inf | 0.204 | 0.166 | 0.038 | 0.0000000 | 0.188 | 0.154 | 0.034 | 5.88e-19 |
Breast_Cancer | MegaPRS.10FCVal | SBLUP.Inf | 0.225 | 0.166 | 0.059 | 0.0000000 | 0.213 | 0.154 | 0.059 | 4.07e-17 |
Breast_Cancer | LDpred2.10FCVal | SBLUP.Inf | 0.225 | 0.166 | 0.059 | 0.0000000 | 0.208 | 0.154 | 0.054 | 4.14e-16 |
Show differences between methods
Show results
Show TEDS results table
Phenotype | Method | Model | IndepVal_R | IndepVal_R_SE | IndepVal_pval |
---|---|---|---|---|---|
Height21 | All | MultiPRS | 0.461 | 0.027 | 1.48e-58 |
Height21 | DBSLMM | PseudoVal | 0.437 | 0.027 | 4.29e-52 |
Height21 | lassosum | MultiPRS | 0.445 | 0.027 | 3.44e-54 |
Height21 | lassosum | 10FCVal | 0.442 | 0.027 | 1.89e-53 |
Height21 | lassosum | PseudoVal | 0.395 | 0.028 | 4.77e-42 |
Height21 | MegaPRS | MultiPRS | 0.465 | 0.027 | 1.39e-59 |
Height21 | MegaPRS | PseudoVal | 0.450 | 0.027 | 1.67e-55 |
Height21 | MegaPRS | 10FCVal | 0.465 | 0.027 | 1.32e-59 |
Height21 | LDpred1 | MultiPRS | 0.402 | 0.028 | 1.03e-43 |
Height21 | LDpred1 | Inf | 0.394 | 0.028 | 6.70e-42 |
Height21 | LDpred1 | 10FCVal | 0.380 | 0.028 | 1.04e-38 |
Height21 | LDpred2 | MultiPRS | 0.459 | 0.027 | 7.83e-58 |
Height21 | LDpred2 | 10FCVal | 0.453 | 0.027 | 3.19e-56 |
Height21 | LDpred2 | PseudoVal | 0.446 | 0.027 | 2.43e-54 |
Height21 | LDpred2 | Inf | 0.400 | 0.028 | 3.63e-43 |
Height21 | pT+clump | MultiPRS | 0.396 | 0.028 | 2.65e-42 |
Height21 | pT+clump | 10FCVal | 0.353 | 0.028 | 2.30e-33 |
Height21 | SBayesR | PseudoVal | 0.467 | 0.027 | 4.48e-60 |
Height21 | SBLUP | Inf | 0.392 | 0.028 | 1.87e-41 |
BMI21 | All | MultiPRS | 0.356 | 0.029 | 1.64e-32 |
BMI21 | DBSLMM | PseudoVal | 0.320 | 0.029 | 2.64e-26 |
BMI21 | lassosum | MultiPRS | 0.337 | 0.029 | 3.64e-29 |
BMI21 | lassosum | 10FCVal | 0.333 | 0.029 | 2.02e-28 |
BMI21 | lassosum | PseudoVal | 0.268 | 0.030 | 1.26e-18 |
BMI21 | MegaPRS | MultiPRS | 0.354 | 0.029 | 4.17e-32 |
BMI21 | MegaPRS | 10FCVal | 0.356 | 0.029 | 1.72e-32 |
BMI21 | MegaPRS | PseudoVal | 0.356 | 0.029 | 1.72e-32 |
BMI21 | LDpred1 | MultiPRS | 0.320 | 0.029 | 2.92e-26 |
BMI21 | LDpred1 | Inf | 0.316 | 0.029 | 1.31e-25 |
BMI21 | LDpred1 | 10FCVal | 0.313 | 0.029 | 3.78e-25 |
BMI21 | LDpred2 | MultiPRS | 0.342 | 0.029 | 4.72e-30 |
BMI21 | LDpred2 | 10FCVal | 0.336 | 0.029 | 5.51e-29 |
BMI21 | LDpred2 | PseudoVal | 0.348 | 0.029 | 3.72e-31 |
BMI21 | LDpred2 | Inf | 0.319 | 0.029 | 3.98e-26 |
BMI21 | pT+clump | MultiPRS | 0.283 | 0.030 | 1.11e-20 |
BMI21 | pT+clump | 10FCVal | 0.285 | 0.030 | 6.78e-21 |
BMI21 | SBayesR | PseudoVal | 0.338 | 0.029 | 2.75e-29 |
BMI21 | SBLUP | Inf | 0.311 | 0.029 | 8.83e-25 |
GCSE | All | MultiPRS | 0.363 | 0.024 | 9.62e-47 |
GCSE | DBSLMM | PseudoVal | 0.339 | 0.025 | 1.59e-40 |
GCSE | lassosum | MultiPRS | 0.357 | 0.024 | 3.63e-45 |
GCSE | lassosum | PseudoVal | 0.286 | 0.025 | 6.17e-29 |
GCSE | lassosum | 10FCVal | 0.355 | 0.024 | 1.23e-44 |
GCSE | MegaPRS | MultiPRS | 0.364 | 0.024 | 5.50e-47 |
GCSE | MegaPRS | PseudoVal | 0.363 | 0.024 | 1.22e-46 |
GCSE | MegaPRS | 10FCVal | 0.363 | 0.024 | 9.00e-47 |
GCSE | LDpred1 | MultiPRS | 0.341 | 0.025 | 4.01e-41 |
GCSE | LDpred1 | Inf | 0.337 | 0.025 | 5.22e-40 |
GCSE | LDpred1 | 10FCVal | 0.337 | 0.025 | 4.32e-40 |
GCSE | LDpred2 | MultiPRS | 0.356 | 0.024 | 6.26e-45 |
GCSE | LDpred2 | 10FCVal | 0.358 | 0.024 | 1.82e-45 |
GCSE | LDpred2 | PseudoVal | 0.358 | 0.024 | 2.17e-45 |
GCSE | LDpred2 | Inf | 0.343 | 0.025 | 1.66e-41 |
GCSE | pT+clump | MultiPRS | 0.330 | 0.025 | 2.04e-38 |
GCSE | pT+clump | 10FCVal | 0.315 | 0.025 | 4.83e-35 |
GCSE | SBayesR | PseudoVal | 0.350 | 0.025 | 2.67e-43 |
GCSE | SBLUP | Inf | 0.344 | 0.025 | 6.57e-42 |
ADHD | All | MultiPRS | 0.179 | 0.025 | 7.82e-13 |
ADHD | DBSLMM | PseudoVal | 0.174 | 0.025 | 3.99e-12 |
ADHD | lassosum | MultiPRS | 0.190 | 0.025 | 2.42e-14 |
ADHD | lassosum | PseudoVal | 0.108 | 0.025 | 1.79e-05 |
ADHD | lassosum | 10FCVal | 0.186 | 0.025 | 1.03e-13 |
ADHD | MegaPRS | MultiPRS | 0.175 | 0.025 | 2.87e-12 |
ADHD | MegaPRS | PseudoVal | 0.181 | 0.025 | 4.15e-13 |
ADHD | MegaPRS | 10FCVal | 0.181 | 0.025 | 4.06e-13 |
ADHD | LDpred1 | MultiPRS | 0.190 | 0.025 | 2.86e-14 |
ADHD | LDpred1 | Inf | 0.188 | 0.025 | 5.50e-14 |
ADHD | LDpred1 | 10FCVal | 0.190 | 0.025 | 2.77e-14 |
ADHD | LDpred2 | MultiPRS | 0.190 | 0.025 | 3.07e-14 |
ADHD | LDpred2 | 10FCVal | 0.187 | 0.025 | 7.27e-14 |
ADHD | LDpred2 | PseudoVal | 0.190 | 0.025 | 2.71e-14 |
ADHD | LDpred2 | Inf | 0.189 | 0.025 | 4.07e-14 |
ADHD | pT+clump | MultiPRS | 0.151 | 0.025 | 1.91e-09 |
ADHD | pT+clump | 10FCVal | 0.144 | 0.025 | 9.71e-09 |
ADHD | SBayesR | PseudoVal | 0.189 | 0.025 | 4.37e-14 |
ADHD | SBLUP | Inf | 0.188 | 0.025 | 5.20e-14 |
Show results compared to pT+clump
Show difference results table
Phenotype | Model 1 Test | Model 2 Test | Model 1 CrossVal R | Model 2 CrossVal R | CrossVal R Diff | CrossVal R Diff P | Model 1 IndepVal R | Model 2 IndepVal R | IndepVal R Diff | IndepVal R Diff P |
---|---|---|---|---|---|---|---|---|---|---|
Height21 | LDpred1.10FCVal | All.MultiPRS | 0.364 | 0.464 | -0.100 | 5.88e-08 | 0.380 | 0.461 | -0.082 | 7.04e-07 |
Height21 | pT+clump.10FCVal | All.MultiPRS | 0.388 | 0.464 | -0.076 | 3.56e-05 | 0.353 | 0.461 | -0.108 | 8.12e-12 |
Height21 | LDpred1.MultiPRS | All.MultiPRS | 0.388 | 0.464 | -0.076 | 1.03e-24 | 0.402 | 0.461 | -0.059 | 3.22e-05 |
Height21 | LDpred2.Inf | All.MultiPRS | 0.388 | 0.464 | -0.076 | 3.00e-05 | 0.400 | 0.461 | -0.061 | 3.46e-05 |
Height21 | MegaPRS.PseudoVal | All.MultiPRS | 0.418 | 0.464 | -0.046 | 1.02e-02 | 0.450 | 0.461 | -0.011 | 2.85e-01 |
Height21 | LDpred2.10FCVal | All.MultiPRS | 0.447 | 0.464 | -0.017 | 3.45e-01 | 0.453 | 0.461 | -0.009 | 2.61e-01 |
Height21 | LDpred2.MultiPRS | All.MultiPRS | 0.447 | 0.464 | -0.017 | 3.43e-01 | 0.459 | 0.461 | -0.003 | 6.94e-01 |
Height21 | lassosum.PseudoVal | All.MultiPRS | 0.400 | 0.464 | -0.064 | 4.02e-04 | 0.395 | 0.461 | -0.066 | 4.19e-06 |
Height21 | LDpred1.Inf | All.MultiPRS | 0.381 | 0.464 | -0.084 | 4.84e-06 | 0.394 | 0.461 | -0.067 | 1.26e-05 |
Height21 | lassosum.MultiPRS | All.MultiPRS | 0.439 | 0.464 | -0.025 | 1.69e-01 | 0.445 | 0.461 | -0.016 | 5.36e-02 |
Height21 | MegaPRS.10FCVal | All.MultiPRS | 0.443 | 0.464 | -0.021 | 2.36e-01 | 0.465 | 0.461 | 0.004 | 6.61e-01 |
Height21 | All.MultiPRS | All.MultiPRS | 0.464 | 0.464 | 0.000 | 1.00e+00 | 0.461 | 0.461 | 0.000 | 1.00e+00 |
Height21 | SBayesR.PseudoVal | All.MultiPRS | 0.434 | 0.464 | -0.030 | 9.49e-02 | 0.467 | 0.461 | 0.005 | 5.29e-01 |
Height21 | MegaPRS.MultiPRS | All.MultiPRS | 0.452 | 0.464 | -0.012 | 5.08e-01 | 0.465 | 0.461 | 0.004 | 5.89e-01 |
Height21 | pT+clump.MultiPRS | All.MultiPRS | 0.403 | 0.464 | -0.061 | 7.24e-04 | 0.396 | 0.461 | -0.065 | 1.11e-06 |
Height21 | lassosum.10FCVal | All.MultiPRS | 0.436 | 0.464 | -0.028 | 1.14e-01 | 0.442 | 0.461 | -0.019 | 4.43e-02 |
Height21 | LDpred2.PseudoVal | All.MultiPRS | 0.432 | 0.464 | -0.032 | 7.52e-02 | 0.446 | 0.461 | -0.016 | 1.16e-01 |
Height21 | DBSLMM.PseudoVal | All.MultiPRS | 0.418 | 0.464 | -0.046 | 1.13e-02 | 0.437 | 0.461 | -0.024 | 3.06e-02 |
Height21 | SBLUP.Inf | All.MultiPRS | 0.381 | 0.464 | -0.083 | 5.57e-06 | 0.392 | 0.461 | -0.069 | 6.88e-06 |
Height21 | LDpred1.Inf | DBSLMM.PseudoVal | 0.381 | 0.418 | -0.038 | 4.65e-10 | 0.394 | 0.437 | -0.043 | 5.00e-04 |
Height21 | LDpred2.Inf | DBSLMM.PseudoVal | 0.388 | 0.418 | -0.030 | 2.22e-07 | 0.400 | 0.437 | -0.037 | 2.24e-03 |
Height21 | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.447 | 0.418 | 0.029 | 1.05e-01 | 0.459 | 0.437 | 0.022 | 4.70e-02 |
Height21 | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.388 | 0.418 | -0.030 | 1.21e-03 | 0.353 | 0.437 | -0.084 | 5.41e-06 |
Height21 | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.434 | 0.418 | 0.016 | 6.40e-04 | 0.467 | 0.437 | 0.030 | 1.23e-03 |
Height21 | All.MultiPRS | DBSLMM.PseudoVal | 0.464 | 0.418 | 0.046 | 1.13e-02 | 0.461 | 0.437 | 0.024 | 3.06e-02 |
Height21 | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.443 | 0.418 | 0.025 | 7.55e-06 | 0.465 | 0.437 | 0.028 | 8.06e-03 |
Height21 | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.452 | 0.418 | 0.034 | 6.18e-02 | 0.465 | 0.437 | 0.028 | 6.69e-03 |
Height21 | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.432 | 0.418 | 0.014 | 6.57e-03 | 0.446 | 0.437 | 0.009 | 4.07e-01 |
Height21 | lassosum.10FCVal | DBSLMM.PseudoVal | 0.436 | 0.418 | 0.017 | 5.51e-03 | 0.442 | 0.437 | 0.005 | 6.64e-01 |
Height21 | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.403 | 0.418 | -0.015 | 4.03e-01 | 0.396 | 0.437 | -0.041 | 1.99e-03 |
Height21 | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.418 | 0.418 | -0.001 | 9.24e-01 | 0.450 | 0.437 | 0.013 | 3.33e-01 |
Height21 | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.439 | 0.418 | 0.021 | 2.46e-01 | 0.445 | 0.437 | 0.008 | 4.31e-01 |
Height21 | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.447 | 0.418 | 0.029 | 1.75e-07 | 0.453 | 0.437 | 0.016 | 1.56e-01 |
Height21 | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.400 | 0.418 | -0.019 | 4.04e-02 | 0.395 | 0.437 | -0.042 | 1.48e-02 |
Height21 | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.364 | 0.418 | -0.054 | 4.24e-15 | 0.380 | 0.437 | -0.057 | 3.78e-05 |
Height21 | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.418 | 0.418 | 0.000 | 1.00e+00 | 0.437 | 0.437 | 0.000 | 1.00e+00 |
Height21 | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.388 | 0.418 | -0.031 | 9.84e-02 | 0.402 | 0.437 | -0.035 | 4.38e-03 |
Height21 | SBLUP.Inf | DBSLMM.PseudoVal | 0.381 | 0.418 | -0.037 | 2.01e-10 | 0.392 | 0.437 | -0.045 | 2.25e-04 |
Height21 | SBayesR.PseudoVal | lassosum.MultiPRS | 0.434 | 0.439 | -0.005 | 7.72e-01 | 0.467 | 0.445 | 0.022 | 2.36e-02 |
Height21 | LDpred1.Inf | lassosum.MultiPRS | 0.381 | 0.439 | -0.059 | 1.43e-03 | 0.394 | 0.445 | -0.051 | 7.45e-04 |
Height21 | MegaPRS.10FCVal | lassosum.MultiPRS | 0.443 | 0.439 | 0.004 | 8.43e-01 | 0.465 | 0.445 | 0.020 | 7.54e-02 |
Height21 | LDpred2.MultiPRS | lassosum.MultiPRS | 0.447 | 0.439 | 0.008 | 6.55e-01 | 0.459 | 0.445 | 0.014 | 1.37e-01 |
Height21 | LDpred2.PseudoVal | lassosum.MultiPRS | 0.432 | 0.439 | -0.007 | 6.93e-01 | 0.446 | 0.445 | 0.001 | 9.59e-01 |
Height21 | LDpred2.10FCVal | lassosum.MultiPRS | 0.447 | 0.439 | 0.008 | 6.60e-01 | 0.453 | 0.445 | 0.008 | 3.94e-01 |
Height21 | pT+clump.MultiPRS | lassosum.MultiPRS | 0.403 | 0.439 | -0.036 | 4.94e-02 | 0.396 | 0.445 | -0.049 | 1.27e-04 |
Height21 | lassosum.MultiPRS | lassosum.MultiPRS | 0.439 | 0.439 | 0.000 | 1.00e+00 | 0.445 | 0.445 | 0.000 | 1.00e+00 |
Height21 | lassosum.10FCVal | lassosum.MultiPRS | 0.436 | 0.439 | -0.004 | 8.43e-01 | 0.442 | 0.445 | -0.003 | 4.62e-01 |
Height21 | LDpred1.MultiPRS | lassosum.MultiPRS | 0.388 | 0.439 | -0.052 | 5.01e-03 | 0.402 | 0.445 | -0.043 | 2.81e-03 |
Height21 | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.452 | 0.439 | 0.013 | 4.73e-01 | 0.465 | 0.445 | 0.020 | 2.77e-02 |
Height21 | LDpred1.10FCVal | lassosum.MultiPRS | 0.364 | 0.439 | -0.075 | 5.16e-05 | 0.380 | 0.445 | -0.066 | 5.42e-05 |
Height21 | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.418 | 0.439 | -0.022 | 2.32e-01 | 0.450 | 0.445 | 0.005 | 6.70e-01 |
Height21 | pT+clump.10FCVal | lassosum.MultiPRS | 0.388 | 0.439 | -0.051 | 5.34e-03 | 0.353 | 0.445 | -0.092 | 1.61e-08 |
Height21 | lassosum.PseudoVal | lassosum.MultiPRS | 0.400 | 0.439 | -0.040 | 3.05e-02 | 0.395 | 0.445 | -0.050 | 8.77e-06 |
Height21 | SBLUP.Inf | lassosum.MultiPRS | 0.381 | 0.439 | -0.058 | 1.55e-03 | 0.392 | 0.445 | -0.053 | 5.17e-04 |
Height21 | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.418 | 0.439 | -0.021 | 2.46e-01 | 0.437 | 0.445 | -0.008 | 4.31e-01 |
Height21 | All.MultiPRS | lassosum.MultiPRS | 0.464 | 0.439 | 0.025 | 1.69e-01 | 0.461 | 0.445 | 0.016 | 5.36e-02 |
Height21 | LDpred2.Inf | lassosum.MultiPRS | 0.388 | 0.439 | -0.051 | 5.20e-03 | 0.400 | 0.445 | -0.045 | 2.37e-03 |
Height21 | MegaPRS.PseudoVal | lassosum.10FCVal | 0.418 | 0.436 | -0.018 | 3.67e-03 | 0.450 | 0.442 | 0.008 | 5.06e-01 |
Height21 | LDpred2.PseudoVal | lassosum.10FCVal | 0.432 | 0.436 | -0.004 | 5.72e-01 | 0.446 | 0.442 | 0.003 | 7.87e-01 |
Height21 | LDpred1.MultiPRS | lassosum.10FCVal | 0.388 | 0.436 | -0.048 | 8.94e-03 | 0.402 | 0.442 | -0.040 | 1.35e-02 |
Height21 | lassosum.10FCVal | lassosum.10FCVal | 0.436 | 0.436 | 0.000 | 1.00e+00 | 0.442 | 0.442 | 0.000 | 1.00e+00 |
Height21 | LDpred2.Inf | lassosum.10FCVal | 0.388 | 0.436 | -0.048 | 1.61e-08 | 0.400 | 0.442 | -0.042 | 1.21e-02 |
Height21 | DBSLMM.PseudoVal | lassosum.10FCVal | 0.418 | 0.436 | -0.017 | 5.51e-03 | 0.437 | 0.442 | -0.005 | 6.64e-01 |
Height21 | SBLUP.Inf | lassosum.10FCVal | 0.381 | 0.436 | -0.055 | 2.42e-10 | 0.392 | 0.442 | -0.050 | 3.74e-03 |
Height21 | LDpred2.MultiPRS | lassosum.10FCVal | 0.447 | 0.436 | 0.012 | 5.16e-01 | 0.459 | 0.442 | 0.016 | 9.35e-02 |
Height21 | pT+clump.10FCVal | lassosum.10FCVal | 0.388 | 0.436 | -0.048 | 1.06e-08 | 0.353 | 0.442 | -0.089 | 3.47e-08 |
Height21 | LDpred1.Inf | lassosum.10FCVal | 0.381 | 0.436 | -0.055 | 1.70e-10 | 0.394 | 0.442 | -0.048 | 4.92e-03 |
Height21 | lassosum.MultiPRS | lassosum.10FCVal | 0.439 | 0.436 | 0.004 | 8.43e-01 | 0.445 | 0.442 | 0.003 | 4.62e-01 |
Height21 | MegaPRS.10FCVal | lassosum.10FCVal | 0.443 | 0.436 | 0.007 | 2.70e-01 | 0.465 | 0.442 | 0.023 | 7.11e-02 |
Height21 | All.MultiPRS | lassosum.10FCVal | 0.464 | 0.436 | 0.028 | 1.14e-01 | 0.461 | 0.442 | 0.019 | 4.43e-02 |
Height21 | SBayesR.PseudoVal | lassosum.10FCVal | 0.434 | 0.436 | -0.002 | 7.63e-01 | 0.467 | 0.442 | 0.024 | 2.28e-02 |
Height21 | lassosum.PseudoVal | lassosum.10FCVal | 0.400 | 0.436 | -0.036 | 2.33e-10 | 0.395 | 0.442 | -0.047 | 1.51e-05 |
Height21 | pT+clump.MultiPRS | lassosum.10FCVal | 0.403 | 0.436 | -0.033 | 7.29e-02 | 0.396 | 0.442 | -0.046 | 4.49e-04 |
Height21 | LDpred1.10FCVal | lassosum.10FCVal | 0.364 | 0.436 | -0.072 | 7.42e-15 | 0.380 | 0.442 | -0.063 | 5.25e-04 |
Height21 | MegaPRS.MultiPRS | lassosum.10FCVal | 0.452 | 0.436 | 0.016 | 3.59e-01 | 0.465 | 0.442 | 0.023 | 2.63e-02 |
Height21 | LDpred2.10FCVal | lassosum.10FCVal | 0.447 | 0.436 | 0.011 | 1.35e-02 | 0.453 | 0.442 | 0.010 | 2.63e-01 |
Height21 | lassosum.PseudoVal | lassosum.PseudoVal | 0.400 | 0.400 | 0.000 | 1.00e+00 | 0.395 | 0.395 | 0.000 | 1.00e+00 |
Height21 | pT+clump.MultiPRS | lassosum.PseudoVal | 0.403 | 0.400 | 0.003 | 8.66e-01 | 0.396 | 0.395 | 0.001 | 9.46e-01 |
Height21 | LDpred2.MultiPRS | lassosum.PseudoVal | 0.447 | 0.400 | 0.048 | 8.66e-03 | 0.459 | 0.395 | 0.064 | 1.22e-04 |
Height21 | SBayesR.PseudoVal | lassosum.PseudoVal | 0.434 | 0.400 | 0.034 | 1.62e-04 | 0.467 | 0.395 | 0.072 | 4.91e-05 |
Height21 | LDpred2.10FCVal | lassosum.PseudoVal | 0.447 | 0.400 | 0.047 | 1.46e-08 | 0.453 | 0.395 | 0.058 | 4.78e-04 |
Height21 | SBLUP.Inf | lassosum.PseudoVal | 0.381 | 0.400 | -0.019 | 1.21e-01 | 0.392 | 0.395 | -0.003 | 9.11e-01 |
Height21 | lassosum.MultiPRS | lassosum.PseudoVal | 0.439 | 0.400 | 0.040 | 3.05e-02 | 0.445 | 0.395 | 0.050 | 8.77e-06 |
Height21 | LDpred2.PseudoVal | lassosum.PseudoVal | 0.432 | 0.400 | 0.032 | 1.41e-03 | 0.446 | 0.395 | 0.051 | 1.14e-02 |
Height21 | LDpred1.MultiPRS | lassosum.PseudoVal | 0.388 | 0.400 | -0.012 | 5.13e-01 | 0.402 | 0.395 | 0.007 | 7.43e-01 |
Height21 | LDpred2.Inf | lassosum.PseudoVal | 0.388 | 0.400 | -0.012 | 3.21e-01 | 0.400 | 0.395 | 0.005 | 8.31e-01 |
Height21 | LDpred1.10FCVal | lassosum.PseudoVal | 0.364 | 0.400 | -0.036 | 4.23e-03 | 0.380 | 0.395 | -0.015 | 5.22e-01 |
Height21 | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.452 | 0.400 | 0.052 | 3.96e-03 | 0.465 | 0.395 | 0.070 | 9.20e-06 |
Height21 | pT+clump.10FCVal | lassosum.PseudoVal | 0.388 | 0.400 | -0.012 | 1.75e-01 | 0.353 | 0.395 | -0.042 | 1.23e-02 |
Height21 | All.MultiPRS | lassosum.PseudoVal | 0.464 | 0.400 | 0.064 | 4.02e-04 | 0.461 | 0.395 | 0.066 | 4.19e-06 |
Height21 | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.418 | 0.400 | 0.018 | 3.06e-02 | 0.450 | 0.395 | 0.055 | 5.03e-04 |
Height21 | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.418 | 0.400 | 0.019 | 4.04e-02 | 0.437 | 0.395 | 0.042 | 1.48e-02 |
Height21 | MegaPRS.10FCVal | lassosum.PseudoVal | 0.443 | 0.400 | 0.043 | 3.85e-06 | 0.465 | 0.395 | 0.070 | 1.38e-04 |
Height21 | lassosum.10FCVal | lassosum.PseudoVal | 0.436 | 0.400 | 0.036 | 2.33e-10 | 0.442 | 0.395 | 0.047 | 1.51e-05 |
Height21 | LDpred1.Inf | lassosum.PseudoVal | 0.381 | 0.400 | -0.019 | 1.08e-01 | 0.394 | 0.395 | -0.001 | 9.78e-01 |
Height21 | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.418 | 0.452 | -0.035 | 5.62e-02 | 0.450 | 0.465 | -0.015 | 1.39e-01 |
Height21 | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.418 | 0.452 | -0.034 | 6.18e-02 | 0.437 | 0.465 | -0.028 | 6.69e-03 |
Height21 | SBLUP.Inf | MegaPRS.MultiPRS | 0.381 | 0.452 | -0.071 | 1.20e-04 | 0.392 | 0.465 | -0.073 | 5.71e-08 |
Height21 | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.447 | 0.452 | -0.005 | 7.84e-01 | 0.459 | 0.465 | -0.006 | 4.46e-01 |
Height21 | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.388 | 0.452 | -0.064 | 4.74e-04 | 0.353 | 0.465 | -0.112 | 5.15e-10 |
Height21 | LDpred1.Inf | MegaPRS.MultiPRS | 0.381 | 0.452 | -0.072 | 1.04e-04 | 0.394 | 0.465 | -0.071 | 1.25e-07 |
Height21 | LDpred2.Inf | MegaPRS.MultiPRS | 0.388 | 0.452 | -0.064 | 4.98e-04 | 0.400 | 0.465 | -0.065 | 3.83e-07 |
Height21 | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.443 | 0.452 | -0.009 | 6.02e-01 | 0.465 | 0.465 | 0.000 | 9.88e-01 |
Height21 | All.MultiPRS | MegaPRS.MultiPRS | 0.464 | 0.452 | 0.012 | 5.08e-01 | 0.461 | 0.465 | -0.004 | 5.89e-01 |
Height21 | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.434 | 0.452 | -0.018 | 3.16e-01 | 0.467 | 0.465 | 0.002 | 8.24e-01 |
Height21 | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.400 | 0.452 | -0.052 | 3.96e-03 | 0.395 | 0.465 | -0.070 | 9.20e-06 |
Height21 | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.403 | 0.452 | -0.049 | 7.01e-03 | 0.396 | 0.465 | -0.069 | 7.41e-07 |
Height21 | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.439 | 0.452 | -0.013 | 4.73e-01 | 0.445 | 0.465 | -0.020 | 2.77e-02 |
Height21 | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.432 | 0.452 | -0.020 | 2.68e-01 | 0.446 | 0.465 | -0.019 | 3.70e-02 |
Height21 | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.447 | 0.452 | -0.005 | 7.80e-01 | 0.453 | 0.465 | -0.012 | 1.49e-01 |
Height21 | lassosum.10FCVal | MegaPRS.MultiPRS | 0.436 | 0.452 | -0.016 | 3.59e-01 | 0.442 | 0.465 | -0.023 | 2.63e-02 |
Height21 | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.364 | 0.452 | -0.088 | 2.24e-06 | 0.380 | 0.465 | -0.085 | 4.34e-09 |
Height21 | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.452 | 0.452 | 0.000 | 1.00e+00 | 0.465 | 0.465 | 0.000 | 1.00e+00 |
Height21 | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.388 | 0.452 | -0.065 | 3.89e-04 | 0.402 | 0.465 | -0.062 | 7.92e-07 |
Height21 | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.400 | 0.418 | -0.018 | 3.06e-02 | 0.395 | 0.450 | -0.055 | 5.03e-04 |
Height21 | SBLUP.Inf | MegaPRS.PseudoVal | 0.381 | 0.418 | -0.037 | 8.19e-05 | 0.392 | 0.450 | -0.058 | 1.56e-03 |
Height21 | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.434 | 0.418 | 0.016 | 4.73e-03 | 0.467 | 0.450 | 0.017 | 1.23e-01 |
Height21 | All.MultiPRS | MegaPRS.PseudoVal | 0.464 | 0.418 | 0.046 | 1.02e-02 | 0.461 | 0.450 | 0.011 | 2.85e-01 |
Height21 | LDpred2.Inf | MegaPRS.PseudoVal | 0.388 | 0.418 | -0.030 | 1.16e-03 | 0.400 | 0.450 | -0.050 | 5.23e-03 |
Height21 | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.439 | 0.418 | 0.022 | 2.32e-01 | 0.445 | 0.450 | -0.005 | 6.70e-01 |
Height21 | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.447 | 0.418 | 0.030 | 5.58e-08 | 0.453 | 0.450 | 0.003 | 7.94e-01 |
Height21 | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.388 | 0.418 | -0.030 | 1.07e-01 | 0.402 | 0.450 | -0.048 | 5.49e-03 |
Height21 | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.432 | 0.418 | 0.015 | 2.79e-02 | 0.446 | 0.450 | -0.004 | 7.32e-01 |
Height21 | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.364 | 0.418 | -0.054 | 4.62e-08 | 0.380 | 0.450 | -0.070 | 2.07e-04 |
Height21 | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.403 | 0.418 | -0.015 | 4.25e-01 | 0.396 | 0.450 | -0.054 | 3.72e-04 |
Height21 | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.388 | 0.418 | -0.030 | 1.70e-03 | 0.353 | 0.450 | -0.097 | 5.98e-08 |
Height21 | lassosum.10FCVal | MegaPRS.PseudoVal | 0.436 | 0.418 | 0.018 | 3.67e-03 | 0.442 | 0.450 | -0.008 | 5.06e-01 |
Height21 | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.418 | 0.418 | 0.000 | 1.00e+00 | 0.450 | 0.450 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.452 | 0.418 | 0.035 | 5.62e-02 | 0.465 | 0.450 | 0.015 | 1.39e-01 |
Height21 | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.443 | 0.418 | 0.025 | 9.52e-07 | 0.465 | 0.450 | 0.015 | 1.40e-01 |
Height21 | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.447 | 0.418 | 0.030 | 9.90e-02 | 0.459 | 0.450 | 0.009 | 4.06e-01 |
Height21 | LDpred1.Inf | MegaPRS.PseudoVal | 0.381 | 0.418 | -0.037 | 6.39e-05 | 0.394 | 0.450 | -0.056 | 2.23e-03 |
Height21 | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.418 | 0.418 | 0.001 | 9.24e-01 | 0.437 | 0.450 | -0.013 | 3.33e-01 |
Height21 | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.418 | 0.443 | -0.025 | 9.52e-07 | 0.450 | 0.465 | -0.015 | 1.40e-01 |
Height21 | LDpred2.10FCVal | MegaPRS.10FCVal | 0.447 | 0.443 | 0.004 | 3.79e-01 | 0.453 | 0.465 | -0.012 | 2.01e-01 |
Height21 | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.388 | 0.443 | -0.055 | 2.65e-03 | 0.402 | 0.465 | -0.063 | 1.76e-07 |
Height21 | LDpred2.Inf | MegaPRS.10FCVal | 0.388 | 0.443 | -0.055 | 3.38e-18 | 0.400 | 0.465 | -0.065 | 9.25e-08 |
Height21 | LDpred1.Inf | MegaPRS.10FCVal | 0.381 | 0.443 | -0.062 | 1.44e-21 | 0.394 | 0.465 | -0.071 | 2.52e-08 |
Height21 | lassosum.MultiPRS | MegaPRS.10FCVal | 0.439 | 0.443 | -0.004 | 8.43e-01 | 0.445 | 0.465 | -0.020 | 7.54e-02 |
Height21 | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.443 | 0.443 | 0.000 | 1.00e+00 | 0.465 | 0.465 | 0.000 | 1.00e+00 |
Height21 | All.MultiPRS | MegaPRS.10FCVal | 0.464 | 0.443 | 0.021 | 2.36e-01 | 0.461 | 0.465 | -0.004 | 6.61e-01 |
Height21 | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.434 | 0.443 | -0.009 | 4.59e-02 | 0.467 | 0.465 | 0.002 | 8.36e-01 |
Height21 | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.418 | 0.443 | -0.025 | 7.55e-06 | 0.437 | 0.465 | -0.028 | 8.06e-03 |
Height21 | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.403 | 0.443 | -0.040 | 2.85e-02 | 0.396 | 0.465 | -0.069 | 7.04e-06 |
Height21 | lassosum.10FCVal | MegaPRS.10FCVal | 0.436 | 0.443 | -0.007 | 2.70e-01 | 0.442 | 0.465 | -0.023 | 7.11e-02 |
Height21 | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.432 | 0.443 | -0.011 | 1.84e-02 | 0.446 | 0.465 | -0.019 | 2.28e-02 |
Height21 | lassosum.PseudoVal | MegaPRS.10FCVal | 0.400 | 0.443 | -0.043 | 3.85e-06 | 0.395 | 0.465 | -0.070 | 1.38e-04 |
Height21 | SBLUP.Inf | MegaPRS.10FCVal | 0.381 | 0.443 | -0.062 | 9.88e-22 | 0.392 | 0.465 | -0.073 | 6.37e-09 |
Height21 | LDpred1.10FCVal | MegaPRS.10FCVal | 0.364 | 0.443 | -0.079 | 2.17e-27 | 0.380 | 0.465 | -0.085 | 6.19e-10 |
Height21 | pT+clump.10FCVal | MegaPRS.10FCVal | 0.388 | 0.443 | -0.055 | 4.05e-08 | 0.353 | 0.465 | -0.112 | 1.91e-08 |
Height21 | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.447 | 0.443 | 0.004 | 8.03e-01 | 0.459 | 0.465 | -0.006 | 4.98e-01 |
Height21 | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.452 | 0.443 | 0.009 | 6.02e-01 | 0.465 | 0.465 | 0.000 | 9.88e-01 |
Height21 | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.403 | 0.388 | 0.015 | 4.13e-01 | 0.396 | 0.402 | -0.006 | 7.18e-01 |
Height21 | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.443 | 0.388 | 0.055 | 2.65e-03 | 0.465 | 0.402 | 0.063 | 1.76e-07 |
Height21 | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.432 | 0.388 | 0.045 | 1.56e-02 | 0.446 | 0.402 | 0.043 | 9.52e-06 |
Height21 | LDpred1.Inf | LDpred1.MultiPRS | 0.381 | 0.388 | -0.007 | 7.05e-01 | 0.394 | 0.402 | -0.008 | 2.10e-01 |
Height21 | lassosum.PseudoVal | LDpred1.MultiPRS | 0.400 | 0.388 | 0.012 | 5.13e-01 | 0.395 | 0.402 | -0.007 | 7.43e-01 |
Height21 | LDpred1.10FCVal | LDpred1.MultiPRS | 0.364 | 0.388 | -0.023 | 2.18e-01 | 0.380 | 0.402 | -0.023 | 1.18e-02 |
Height21 | lassosum.MultiPRS | LDpred1.MultiPRS | 0.439 | 0.388 | 0.052 | 5.01e-03 | 0.445 | 0.402 | 0.043 | 2.81e-03 |
Height21 | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.388 | 0.388 | 0.000 | 1.00e+00 | 0.402 | 0.402 | 0.000 | 1.00e+00 |
Height21 | All.MultiPRS | LDpred1.MultiPRS | 0.464 | 0.388 | 0.076 | 1.03e-24 | 0.461 | 0.402 | 0.059 | 3.22e-05 |
Height21 | LDpred2.Inf | LDpred1.MultiPRS | 0.388 | 0.388 | 0.000 | 9.82e-01 | 0.400 | 0.402 | -0.002 | 7.52e-01 |
Height21 | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.452 | 0.388 | 0.065 | 3.89e-04 | 0.465 | 0.402 | 0.062 | 7.92e-07 |
Height21 | pT+clump.10FCVal | LDpred1.MultiPRS | 0.388 | 0.388 | 0.000 | 9.80e-01 | 0.353 | 0.402 | -0.049 | 2.96e-02 |
Height21 | lassosum.10FCVal | LDpred1.MultiPRS | 0.436 | 0.388 | 0.048 | 8.94e-03 | 0.442 | 0.402 | 0.040 | 1.35e-02 |
Height21 | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.434 | 0.388 | 0.047 | 1.17e-02 | 0.467 | 0.402 | 0.064 | 3.18e-09 |
Height21 | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.418 | 0.388 | 0.031 | 9.84e-02 | 0.437 | 0.402 | 0.035 | 4.38e-03 |
Height21 | SBLUP.Inf | LDpred1.MultiPRS | 0.381 | 0.388 | -0.007 | 7.28e-01 | 0.392 | 0.402 | -0.010 | 1.81e-01 |
Height21 | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.447 | 0.388 | 0.060 | 9.89e-04 | 0.459 | 0.402 | 0.056 | 1.20e-05 |
Height21 | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.418 | 0.388 | 0.030 | 1.07e-01 | 0.450 | 0.402 | 0.048 | 5.49e-03 |
Height21 | LDpred2.10FCVal | LDpred1.MultiPRS | 0.447 | 0.388 | 0.060 | 1.14e-03 | 0.453 | 0.402 | 0.050 | 1.33e-04 |
Height21 | LDpred1.10FCVal | LDpred1.Inf | 0.364 | 0.381 | -0.016 | 1.21e-04 | 0.380 | 0.394 | -0.015 | 7.66e-02 |
Height21 | LDpred2.PseudoVal | LDpred1.Inf | 0.432 | 0.381 | 0.052 | 2.30e-23 | 0.446 | 0.394 | 0.051 | 7.51e-07 |
Height21 | LDpred1.MultiPRS | LDpred1.Inf | 0.388 | 0.381 | 0.007 | 7.05e-01 | 0.402 | 0.394 | 0.008 | 2.10e-01 |
Height21 | pT+clump.MultiPRS | LDpred1.Inf | 0.403 | 0.381 | 0.023 | 2.29e-01 | 0.396 | 0.394 | 0.002 | 9.18e-01 |
Height21 | MegaPRS.PseudoVal | LDpred1.Inf | 0.418 | 0.381 | 0.037 | 6.39e-05 | 0.450 | 0.394 | 0.056 | 2.23e-03 |
Height21 | MegaPRS.MultiPRS | LDpred1.Inf | 0.452 | 0.381 | 0.072 | 1.04e-04 | 0.465 | 0.394 | 0.071 | 1.25e-07 |
Height21 | pT+clump.10FCVal | LDpred1.Inf | 0.388 | 0.381 | 0.008 | 5.09e-01 | 0.353 | 0.394 | -0.041 | 7.59e-02 |
Height21 | lassosum.10FCVal | LDpred1.Inf | 0.436 | 0.381 | 0.055 | 1.70e-10 | 0.442 | 0.394 | 0.048 | 4.92e-03 |
Height21 | LDpred2.Inf | LDpred1.Inf | 0.388 | 0.381 | 0.008 | 2.82e-03 | 0.400 | 0.394 | 0.006 | 2.74e-01 |
Height21 | DBSLMM.PseudoVal | LDpred1.Inf | 0.418 | 0.381 | 0.038 | 4.65e-10 | 0.437 | 0.394 | 0.043 | 5.00e-04 |
Height21 | SBLUP.Inf | LDpred1.Inf | 0.381 | 0.381 | 0.001 | 8.25e-01 | 0.392 | 0.394 | -0.002 | 6.94e-01 |
Height21 | LDpred2.MultiPRS | LDpred1.Inf | 0.447 | 0.381 | 0.067 | 2.43e-04 | 0.459 | 0.394 | 0.064 | 3.44e-06 |
Height21 | lassosum.PseudoVal | LDpred1.Inf | 0.400 | 0.381 | 0.019 | 1.08e-01 | 0.395 | 0.394 | 0.001 | 9.78e-01 |
Height21 | LDpred1.Inf | LDpred1.Inf | 0.381 | 0.381 | 0.000 | 1.00e+00 | 0.394 | 0.394 | 0.000 | 1.00e+00 |
Height21 | lassosum.MultiPRS | LDpred1.Inf | 0.439 | 0.381 | 0.059 | 1.43e-03 | 0.445 | 0.394 | 0.051 | 7.45e-04 |
Height21 | MegaPRS.10FCVal | LDpred1.Inf | 0.443 | 0.381 | 0.062 | 1.44e-21 | 0.465 | 0.394 | 0.071 | 2.52e-08 |
Height21 | All.MultiPRS | LDpred1.Inf | 0.464 | 0.381 | 0.084 | 4.84e-06 | 0.461 | 0.394 | 0.067 | 1.26e-05 |
Height21 | SBayesR.PseudoVal | LDpred1.Inf | 0.434 | 0.381 | 0.054 | 2.43e-20 | 0.467 | 0.394 | 0.072 | 3.56e-10 |
Height21 | LDpred2.10FCVal | LDpred1.Inf | 0.447 | 0.381 | 0.067 | 1.08e-20 | 0.453 | 0.394 | 0.058 | 4.17e-05 |
Height21 | All.MultiPRS | LDpred1.10FCVal | 0.464 | 0.364 | 0.100 | 5.88e-08 | 0.461 | 0.380 | 0.082 | 7.04e-07 |
Height21 | pT+clump.MultiPRS | LDpred1.10FCVal | 0.403 | 0.364 | 0.039 | 3.89e-02 | 0.396 | 0.380 | 0.017 | 3.84e-01 |
Height21 | LDpred1.10FCVal | LDpred1.10FCVal | 0.364 | 0.364 | 0.000 | 1.00e+00 | 0.380 | 0.380 | 0.000 | 1.00e+00 |
Height21 | SBayesR.PseudoVal | LDpred1.10FCVal | 0.434 | 0.364 | 0.070 | 4.03e-26 | 0.467 | 0.380 | 0.087 | 1.67e-11 |
Height21 | LDpred1.MultiPRS | LDpred1.10FCVal | 0.388 | 0.364 | 0.023 | 2.18e-01 | 0.402 | 0.380 | 0.023 | 1.18e-02 |
Height21 | SBLUP.Inf | LDpred1.10FCVal | 0.381 | 0.364 | 0.017 | 7.68e-05 | 0.392 | 0.380 | 0.013 | 1.34e-01 |
Height21 | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.418 | 0.364 | 0.054 | 4.62e-08 | 0.450 | 0.380 | 0.070 | 2.07e-04 |
Height21 | LDpred2.PseudoVal | LDpred1.10FCVal | 0.432 | 0.364 | 0.068 | 3.24e-29 | 0.446 | 0.380 | 0.066 | 1.70e-08 |
Height21 | LDpred2.MultiPRS | LDpred1.10FCVal | 0.447 | 0.364 | 0.083 | 5.74e-06 | 0.459 | 0.380 | 0.079 | 9.10e-08 |
Height21 | LDpred2.Inf | LDpred1.10FCVal | 0.388 | 0.364 | 0.024 | 4.73e-08 | 0.400 | 0.380 | 0.020 | 1.76e-02 |
Height21 | LDpred1.Inf | LDpred1.10FCVal | 0.381 | 0.364 | 0.016 | 1.21e-04 | 0.394 | 0.380 | 0.015 | 7.66e-02 |
Height21 | pT+clump.10FCVal | LDpred1.10FCVal | 0.388 | 0.364 | 0.024 | 4.79e-02 | 0.353 | 0.380 | -0.027 | 2.73e-01 |
Height21 | LDpred2.10FCVal | LDpred1.10FCVal | 0.447 | 0.364 | 0.083 | 2.11e-26 | 0.453 | 0.380 | 0.073 | 1.50e-06 |
Height21 | lassosum.10FCVal | LDpred1.10FCVal | 0.436 | 0.364 | 0.072 | 7.42e-15 | 0.442 | 0.380 | 0.063 | 5.25e-04 |
Height21 | lassosum.PseudoVal | LDpred1.10FCVal | 0.400 | 0.364 | 0.036 | 4.23e-03 | 0.395 | 0.380 | 0.015 | 5.22e-01 |
Height21 | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.452 | 0.364 | 0.088 | 2.24e-06 | 0.465 | 0.380 | 0.085 | 4.34e-09 |
Height21 | lassosum.MultiPRS | LDpred1.10FCVal | 0.439 | 0.364 | 0.075 | 5.16e-05 | 0.445 | 0.380 | 0.066 | 5.42e-05 |
Height21 | MegaPRS.10FCVal | LDpred1.10FCVal | 0.443 | 0.364 | 0.079 | 2.17e-27 | 0.465 | 0.380 | 0.085 | 6.19e-10 |
Height21 | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.418 | 0.364 | 0.054 | 4.24e-15 | 0.437 | 0.380 | 0.057 | 3.78e-05 |
Height21 | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.434 | 0.447 | -0.013 | 4.59e-01 | 0.467 | 0.459 | 0.008 | 1.92e-01 |
Height21 | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.447 | 0.447 | 0.000 | 1.00e+00 | 0.459 | 0.459 | 0.000 | 1.00e+00 |
Height21 | pT+clump.10FCVal | LDpred2.MultiPRS | 0.388 | 0.447 | -0.059 | 1.10e-03 | 0.353 | 0.459 | -0.106 | 2.98e-09 |
Height21 | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.432 | 0.447 | -0.015 | 3.97e-01 | 0.446 | 0.459 | -0.013 | 3.94e-02 |
Height21 | LDpred2.Inf | LDpred2.MultiPRS | 0.388 | 0.447 | -0.059 | 1.11e-03 | 0.400 | 0.459 | -0.059 | 7.28e-06 |
Height21 | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.403 | 0.447 | -0.044 | 1.46e-02 | 0.396 | 0.459 | -0.062 | 6.60e-06 |
Height21 | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.418 | 0.447 | -0.030 | 9.90e-02 | 0.450 | 0.459 | -0.009 | 4.06e-01 |
Height21 | lassosum.MultiPRS | LDpred2.MultiPRS | 0.439 | 0.447 | -0.008 | 6.55e-01 | 0.445 | 0.459 | -0.014 | 1.37e-01 |
Height21 | LDpred1.Inf | LDpred2.MultiPRS | 0.381 | 0.447 | -0.067 | 2.43e-04 | 0.394 | 0.459 | -0.064 | 3.44e-06 |
Height21 | lassosum.PseudoVal | LDpred2.MultiPRS | 0.400 | 0.447 | -0.048 | 8.66e-03 | 0.395 | 0.459 | -0.064 | 1.22e-04 |
Height21 | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.443 | 0.447 | -0.004 | 8.03e-01 | 0.465 | 0.459 | 0.006 | 4.98e-01 |
Height21 | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.452 | 0.447 | 0.005 | 7.84e-01 | 0.465 | 0.459 | 0.006 | 4.46e-01 |
Height21 | LDpred2.10FCVal | LDpred2.MultiPRS | 0.447 | 0.447 | 0.000 | 9.96e-01 | 0.453 | 0.459 | -0.006 | 5.27e-02 |
Height21 | All.MultiPRS | LDpred2.MultiPRS | 0.464 | 0.447 | 0.017 | 3.43e-01 | 0.461 | 0.459 | 0.003 | 6.94e-01 |
Height21 | LDpred1.10FCVal | LDpred2.MultiPRS | 0.364 | 0.447 | -0.083 | 5.74e-06 | 0.380 | 0.459 | -0.079 | 9.10e-08 |
Height21 | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.418 | 0.447 | -0.029 | 1.05e-01 | 0.437 | 0.459 | -0.022 | 4.70e-02 |
Height21 | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.388 | 0.447 | -0.060 | 9.89e-04 | 0.402 | 0.459 | -0.056 | 1.20e-05 |
Height21 | lassosum.10FCVal | LDpred2.MultiPRS | 0.436 | 0.447 | -0.012 | 5.16e-01 | 0.442 | 0.459 | -0.016 | 9.35e-02 |
Height21 | SBLUP.Inf | LDpred2.MultiPRS | 0.381 | 0.447 | -0.066 | 2.71e-04 | 0.392 | 0.459 | -0.066 | 1.26e-06 |
Height21 | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.418 | 0.447 | -0.030 | 5.58e-08 | 0.450 | 0.453 | -0.003 | 7.94e-01 |
Height21 | LDpred2.10FCVal | LDpred2.10FCVal | 0.447 | 0.447 | 0.000 | 1.00e+00 | 0.453 | 0.453 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.10FCVal | LDpred2.10FCVal | 0.443 | 0.447 | -0.004 | 3.79e-01 | 0.465 | 0.453 | 0.012 | 2.01e-01 |
Height21 | All.MultiPRS | LDpred2.10FCVal | 0.464 | 0.447 | 0.017 | 3.45e-01 | 0.461 | 0.453 | 0.009 | 2.61e-01 |
Height21 | SBayesR.PseudoVal | LDpred2.10FCVal | 0.434 | 0.447 | -0.013 | 9.07e-05 | 0.467 | 0.453 | 0.014 | 2.82e-02 |
Height21 | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.418 | 0.447 | -0.029 | 1.75e-07 | 0.437 | 0.453 | -0.016 | 1.56e-01 |
Height21 | pT+clump.MultiPRS | LDpred2.10FCVal | 0.403 | 0.447 | -0.044 | 1.53e-02 | 0.396 | 0.453 | -0.057 | 3.82e-05 |
Height21 | lassosum.MultiPRS | LDpred2.10FCVal | 0.439 | 0.447 | -0.008 | 6.60e-01 | 0.445 | 0.453 | -0.008 | 3.94e-01 |
Height21 | LDpred2.PseudoVal | LDpred2.10FCVal | 0.432 | 0.447 | -0.015 | 2.82e-06 | 0.446 | 0.453 | -0.007 | 2.71e-01 |
Height21 | lassosum.PseudoVal | LDpred2.10FCVal | 0.400 | 0.447 | -0.047 | 1.46e-08 | 0.395 | 0.453 | -0.058 | 4.78e-04 |
Height21 | SBLUP.Inf | LDpred2.10FCVal | 0.381 | 0.447 | -0.066 | 1.08e-20 | 0.392 | 0.453 | -0.060 | 1.82e-05 |
Height21 | LDpred1.10FCVal | LDpred2.10FCVal | 0.364 | 0.447 | -0.083 | 2.11e-26 | 0.380 | 0.453 | -0.073 | 1.50e-06 |
Height21 | pT+clump.10FCVal | LDpred2.10FCVal | 0.388 | 0.447 | -0.059 | 7.02e-11 | 0.353 | 0.453 | -0.100 | 1.99e-08 |
Height21 | LDpred1.MultiPRS | LDpred2.10FCVal | 0.388 | 0.447 | -0.060 | 1.14e-03 | 0.402 | 0.453 | -0.050 | 1.33e-04 |
Height21 | LDpred2.Inf | LDpred2.10FCVal | 0.388 | 0.447 | -0.059 | 2.54e-18 | 0.400 | 0.453 | -0.053 | 9.95e-05 |
Height21 | LDpred1.Inf | LDpred2.10FCVal | 0.381 | 0.447 | -0.067 | 1.08e-20 | 0.394 | 0.453 | -0.058 | 4.17e-05 |
Height21 | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.452 | 0.447 | 0.005 | 7.80e-01 | 0.465 | 0.453 | 0.012 | 1.49e-01 |
Height21 | LDpred2.MultiPRS | LDpred2.10FCVal | 0.447 | 0.447 | 0.000 | 9.96e-01 | 0.459 | 0.453 | 0.006 | 5.27e-02 |
Height21 | lassosum.10FCVal | LDpred2.10FCVal | 0.436 | 0.447 | -0.011 | 1.35e-02 | 0.442 | 0.453 | -0.010 | 2.63e-01 |
Height21 | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.403 | 0.432 | -0.029 | 1.11e-01 | 0.396 | 0.446 | -0.050 | 1.33e-03 |
Height21 | lassosum.MultiPRS | LDpred2.PseudoVal | 0.439 | 0.432 | 0.007 | 6.93e-01 | 0.445 | 0.446 | -0.001 | 9.59e-01 |
Height21 | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.434 | 0.432 | 0.002 | 5.62e-01 | 0.467 | 0.446 | 0.021 | 6.99e-04 |
Height21 | All.MultiPRS | LDpred2.PseudoVal | 0.464 | 0.432 | 0.032 | 7.52e-02 | 0.461 | 0.446 | 0.016 | 1.16e-01 |
Height21 | SBLUP.Inf | LDpred2.PseudoVal | 0.381 | 0.432 | -0.051 | 6.61e-25 | 0.392 | 0.446 | -0.053 | 5.62e-08 |
Height21 | LDpred1.10FCVal | LDpred2.PseudoVal | 0.364 | 0.432 | -0.068 | 3.24e-29 | 0.380 | 0.446 | -0.066 | 1.70e-08 |
Height21 | LDpred2.10FCVal | LDpred2.PseudoVal | 0.447 | 0.432 | 0.015 | 2.82e-06 | 0.453 | 0.446 | 0.007 | 2.71e-01 |
Height21 | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.388 | 0.432 | -0.045 | 1.56e-02 | 0.402 | 0.446 | -0.043 | 9.52e-06 |
Height21 | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.432 | 0.432 | 0.000 | 1.00e+00 | 0.446 | 0.446 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.418 | 0.432 | -0.015 | 2.79e-02 | 0.450 | 0.446 | 0.004 | 7.32e-01 |
Height21 | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.452 | 0.432 | 0.020 | 2.68e-01 | 0.465 | 0.446 | 0.019 | 3.70e-02 |
Height21 | pT+clump.10FCVal | LDpred2.PseudoVal | 0.388 | 0.432 | -0.044 | 2.10e-05 | 0.353 | 0.446 | -0.093 | 7.36e-06 |
Height21 | lassosum.10FCVal | LDpred2.PseudoVal | 0.436 | 0.432 | 0.004 | 5.72e-01 | 0.442 | 0.446 | -0.003 | 7.87e-01 |
Height21 | LDpred2.Inf | LDpred2.PseudoVal | 0.388 | 0.432 | -0.044 | 4.41e-21 | 0.400 | 0.446 | -0.046 | 8.90e-07 |
Height21 | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.418 | 0.432 | -0.014 | 6.57e-03 | 0.437 | 0.446 | -0.009 | 4.07e-01 |
Height21 | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.443 | 0.432 | 0.011 | 1.84e-02 | 0.465 | 0.446 | 0.019 | 2.28e-02 |
Height21 | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.447 | 0.432 | 0.015 | 3.97e-01 | 0.459 | 0.446 | 0.013 | 3.94e-02 |
Height21 | lassosum.PseudoVal | LDpred2.PseudoVal | 0.400 | 0.432 | -0.032 | 1.41e-03 | 0.395 | 0.446 | -0.051 | 1.14e-02 |
Height21 | LDpred1.Inf | LDpred2.PseudoVal | 0.381 | 0.432 | -0.052 | 2.30e-23 | 0.394 | 0.446 | -0.051 | 7.51e-07 |
Height21 | All.MultiPRS | LDpred2.Inf | 0.464 | 0.388 | 0.076 | 3.00e-05 | 0.461 | 0.400 | 0.061 | 3.46e-05 |
Height21 | LDpred1.10FCVal | LDpred2.Inf | 0.364 | 0.388 | -0.024 | 4.73e-08 | 0.380 | 0.400 | -0.020 | 1.76e-02 |
Height21 | SBayesR.PseudoVal | LDpred2.Inf | 0.434 | 0.388 | 0.046 | 3.61e-16 | 0.467 | 0.400 | 0.067 | 2.22e-09 |
Height21 | LDpred1.MultiPRS | LDpred2.Inf | 0.388 | 0.388 | 0.000 | 9.82e-01 | 0.402 | 0.400 | 0.002 | 7.52e-01 |
Height21 | LDpred2.Inf | LDpred2.Inf | 0.388 | 0.388 | 0.000 | 1.00e+00 | 0.400 | 0.400 | 0.000 | 1.00e+00 |
Height21 | MegaPRS.PseudoVal | LDpred2.Inf | 0.418 | 0.388 | 0.030 | 1.16e-03 | 0.450 | 0.400 | 0.050 | 5.23e-03 |
Height21 | pT+clump.10FCVal | LDpred2.Inf | 0.388 | 0.388 | 0.000 | 9.96e-01 | 0.353 | 0.400 | -0.047 | 4.48e-02 |
Height21 | LDpred2.10FCVal | LDpred2.Inf | 0.447 | 0.388 | 0.059 | 2.54e-18 | 0.453 | 0.400 | 0.053 | 9.95e-05 |
Height21 | lassosum.10FCVal | LDpred2.Inf | 0.436 | 0.388 | 0.048 | 1.61e-08 | 0.442 | 0.400 | 0.042 | 1.21e-02 |
Height21 | pT+clump.MultiPRS | LDpred2.Inf | 0.403 | 0.388 | 0.015 | 4.23e-01 | 0.396 | 0.400 | -0.004 | 8.30e-01 |
Height21 | MegaPRS.MultiPRS | LDpred2.Inf | 0.452 | 0.388 | 0.064 | 4.98e-04 | 0.465 | 0.400 | 0.065 | 3.83e-07 |
Height21 | LDpred2.PseudoVal | LDpred2.Inf | 0.432 | 0.388 | 0.044 | 4.41e-21 | 0.446 | 0.400 | 0.046 | 8.90e-07 |
Height21 | LDpred2.MultiPRS | LDpred2.Inf | 0.447 | 0.388 | 0.059 | 1.11e-03 | 0.459 | 0.400 | 0.059 | 7.28e-06 |
Height21 | SBLUP.Inf | LDpred2.Inf | 0.381 | 0.388 | -0.007 | 5.17e-04 | 0.392 | 0.400 | -0.008 | 5.59e-02 |
Height21 | DBSLMM.PseudoVal | LDpred2.Inf | 0.418 | 0.388 | 0.030 | 2.22e-07 | 0.437 | 0.400 | 0.037 | 2.24e-03 |
Height21 | lassosum.MultiPRS | LDpred2.Inf | 0.439 | 0.388 | 0.051 | 5.20e-03 | 0.445 | 0.400 | 0.045 | 2.37e-03 |
Height21 | MegaPRS.10FCVal | LDpred2.Inf | 0.443 | 0.388 | 0.055 | 3.38e-18 | 0.465 | 0.400 | 0.065 | 9.25e-08 |
Height21 | lassosum.PseudoVal | LDpred2.Inf | 0.400 | 0.388 | 0.012 | 3.21e-01 | 0.395 | 0.400 | -0.005 | 8.31e-01 |
Height21 | LDpred1.Inf | LDpred2.Inf | 0.381 | 0.388 | -0.008 | 2.82e-03 | 0.394 | 0.400 | -0.006 | 2.74e-01 |
Height21 | All.MultiPRS | pT+clump.MultiPRS | 0.464 | 0.403 | 0.061 | 7.24e-04 | 0.461 | 0.396 | 0.065 | 1.11e-06 |
Height21 | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.434 | 0.403 | 0.031 | 8.92e-02 | 0.467 | 0.396 | 0.070 | 1.78e-07 |
Height21 | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.452 | 0.403 | 0.049 | 7.01e-03 | 0.465 | 0.396 | 0.069 | 7.41e-07 |
Height21 | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.403 | 0.403 | 0.000 | 1.00e+00 | 0.396 | 0.396 | 0.000 | 1.00e+00 |
Height21 | lassosum.10FCVal | pT+clump.MultiPRS | 0.436 | 0.403 | 0.033 | 7.29e-02 | 0.442 | 0.396 | 0.046 | 4.49e-04 |
Height21 | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.432 | 0.403 | 0.029 | 1.11e-01 | 0.446 | 0.396 | 0.050 | 1.33e-03 |
Height21 | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.418 | 0.403 | 0.015 | 4.03e-01 | 0.437 | 0.396 | 0.041 | 1.99e-03 |
Height21 | SBLUP.Inf | pT+clump.MultiPRS | 0.381 | 0.403 | -0.022 | 2.41e-01 | 0.392 | 0.396 | -0.004 | 8.28e-01 |
Height21 | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.447 | 0.403 | 0.044 | 1.46e-02 | 0.459 | 0.396 | 0.062 | 6.60e-06 |
Height21 | pT+clump.10FCVal | pT+clump.MultiPRS | 0.388 | 0.403 | -0.015 | 4.26e-01 | 0.353 | 0.396 | -0.043 | 3.12e-06 |
Height21 | LDpred1.Inf | pT+clump.MultiPRS | 0.381 | 0.403 | -0.023 | 2.29e-01 | 0.394 | 0.396 | -0.002 | 9.18e-01 |
Height21 | LDpred2.Inf | pT+clump.MultiPRS | 0.388 | 0.403 | -0.015 | 4.23e-01 | 0.400 | 0.396 | 0.004 | 8.30e-01 |
Height21 | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.443 | 0.403 | 0.040 | 2.85e-02 | 0.465 | 0.396 | 0.069 | 7.04e-06 |
Height21 | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.418 | 0.403 | 0.015 | 4.25e-01 | 0.450 | 0.396 | 0.054 | 3.72e-04 |
Height21 | LDpred2.10FCVal | pT+clump.MultiPRS | 0.447 | 0.403 | 0.044 | 1.53e-02 | 0.453 | 0.396 | 0.057 | 3.82e-05 |
Height21 | lassosum.PseudoVal | pT+clump.MultiPRS | 0.400 | 0.403 | -0.003 | 8.66e-01 | 0.395 | 0.396 | -0.001 | 9.46e-01 |
Height21 | LDpred1.10FCVal | pT+clump.MultiPRS | 0.364 | 0.403 | -0.039 | 3.89e-02 | 0.380 | 0.396 | -0.017 | 3.84e-01 |
Height21 | lassosum.MultiPRS | pT+clump.MultiPRS | 0.439 | 0.403 | 0.036 | 4.94e-02 | 0.445 | 0.396 | 0.049 | 1.27e-04 |
Height21 | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.388 | 0.403 | -0.015 | 4.13e-01 | 0.402 | 0.396 | 0.006 | 7.18e-01 |
Height21 | LDpred1.Inf | pT+clump.10FCVal | 0.381 | 0.388 | -0.008 | 5.09e-01 | 0.394 | 0.353 | 0.041 | 7.59e-02 |
Height21 | pT+clump.MultiPRS | pT+clump.10FCVal | 0.403 | 0.388 | 0.015 | 4.26e-01 | 0.396 | 0.353 | 0.043 | 3.12e-06 |
Height21 | LDpred2.MultiPRS | pT+clump.10FCVal | 0.447 | 0.388 | 0.059 | 1.10e-03 | 0.459 | 0.353 | 0.106 | 2.98e-09 |
Height21 | SBayesR.PseudoVal | pT+clump.10FCVal | 0.434 | 0.388 | 0.046 | 6.52e-07 | 0.467 | 0.353 | 0.114 | 6.16e-10 |
Height21 | LDpred2.10FCVal | pT+clump.10FCVal | 0.447 | 0.388 | 0.059 | 7.02e-11 | 0.453 | 0.353 | 0.100 | 1.99e-08 |
Height21 | SBLUP.Inf | pT+clump.10FCVal | 0.381 | 0.388 | -0.007 | 5.45e-01 | 0.392 | 0.353 | 0.039 | 9.29e-02 |
Height21 | lassosum.MultiPRS | pT+clump.10FCVal | 0.439 | 0.388 | 0.051 | 5.34e-03 | 0.445 | 0.353 | 0.092 | 1.61e-08 |
Height21 | LDpred2.PseudoVal | pT+clump.10FCVal | 0.432 | 0.388 | 0.044 | 2.10e-05 | 0.446 | 0.353 | 0.093 | 7.36e-06 |
Height21 | LDpred1.MultiPRS | pT+clump.10FCVal | 0.388 | 0.388 | 0.000 | 9.80e-01 | 0.402 | 0.353 | 0.049 | 2.96e-02 |
Height21 | lassosum.PseudoVal | pT+clump.10FCVal | 0.400 | 0.388 | 0.012 | 1.75e-01 | 0.395 | 0.353 | 0.042 | 1.23e-02 |
Height21 | LDpred1.10FCVal | pT+clump.10FCVal | 0.364 | 0.388 | -0.024 | 4.79e-02 | 0.380 | 0.353 | 0.027 | 2.73e-01 |
Height21 | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.452 | 0.388 | 0.064 | 4.74e-04 | 0.465 | 0.353 | 0.112 | 5.15e-10 |
Height21 | pT+clump.10FCVal | pT+clump.10FCVal | 0.388 | 0.388 | 0.000 | 1.00e+00 | 0.353 | 0.353 | 0.000 | 1.00e+00 |
Height21 | All.MultiPRS | pT+clump.10FCVal | 0.464 | 0.388 | 0.076 | 3.56e-05 | 0.461 | 0.353 | 0.108 | 8.12e-12 |
Height21 | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.418 | 0.388 | 0.030 | 1.70e-03 | 0.450 | 0.353 | 0.097 | 5.98e-08 |
Height21 | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.418 | 0.388 | 0.030 | 1.21e-03 | 0.437 | 0.353 | 0.084 | 5.41e-06 |
Height21 | MegaPRS.10FCVal | pT+clump.10FCVal | 0.443 | 0.388 | 0.055 | 4.05e-08 | 0.465 | 0.353 | 0.112 | 1.91e-08 |
Height21 | lassosum.10FCVal | pT+clump.10FCVal | 0.436 | 0.388 | 0.048 | 1.06e-08 | 0.442 | 0.353 | 0.089 | 3.47e-08 |
Height21 | LDpred2.Inf | pT+clump.10FCVal | 0.388 | 0.388 | 0.000 | 9.96e-01 | 0.400 | 0.353 | 0.047 | 4.48e-02 |
Height21 | LDpred1.Inf | SBayesR.PseudoVal | 0.381 | 0.434 | -0.054 | 2.43e-20 | 0.394 | 0.467 | -0.072 | 3.56e-10 |
Height21 | LDpred2.Inf | SBayesR.PseudoVal | 0.388 | 0.434 | -0.046 | 3.61e-16 | 0.400 | 0.467 | -0.067 | 2.22e-09 |
Height21 | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.443 | 0.434 | 0.009 | 4.59e-02 | 0.465 | 0.467 | -0.002 | 8.36e-01 |
Height21 | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.447 | 0.434 | 0.013 | 4.59e-01 | 0.459 | 0.467 | -0.008 | 1.92e-01 |
Height21 | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.434 | 0.434 | 0.000 | 1.00e+00 | 0.467 | 0.467 | 0.000 | 1.00e+00 |
Height21 | lassosum.PseudoVal | SBayesR.PseudoVal | 0.400 | 0.434 | -0.034 | 1.62e-04 | 0.395 | 0.467 | -0.072 | 4.91e-05 |
Height21 | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.403 | 0.434 | -0.031 | 8.92e-02 | 0.396 | 0.467 | -0.070 | 1.78e-07 |
Height21 | lassosum.MultiPRS | SBayesR.PseudoVal | 0.439 | 0.434 | 0.005 | 7.72e-01 | 0.445 | 0.467 | -0.022 | 2.36e-02 |
Height21 | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.432 | 0.434 | -0.002 | 5.62e-01 | 0.446 | 0.467 | -0.021 | 6.99e-04 |
Height21 | LDpred2.10FCVal | SBayesR.PseudoVal | 0.447 | 0.434 | 0.013 | 9.07e-05 | 0.453 | 0.467 | -0.014 | 2.82e-02 |
Height21 | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.452 | 0.434 | 0.018 | 3.16e-01 | 0.465 | 0.467 | -0.002 | 8.24e-01 |
Height21 | LDpred1.10FCVal | SBayesR.PseudoVal | 0.364 | 0.434 | -0.070 | 4.03e-26 | 0.380 | 0.467 | -0.087 | 1.67e-11 |
Height21 | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.418 | 0.434 | -0.016 | 4.73e-03 | 0.450 | 0.467 | -0.017 | 1.23e-01 |
Height21 | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.388 | 0.434 | -0.047 | 1.17e-02 | 0.402 | 0.467 | -0.064 | 3.18e-09 |
Height21 | All.MultiPRS | SBayesR.PseudoVal | 0.464 | 0.434 | 0.030 | 9.49e-02 | 0.461 | 0.467 | -0.005 | 5.29e-01 |
Height21 | SBLUP.Inf | SBayesR.PseudoVal | 0.381 | 0.434 | -0.053 | 5.25e-20 | 0.392 | 0.467 | -0.074 | 1.15e-10 |
Height21 | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.418 | 0.434 | -0.016 | 6.40e-04 | 0.437 | 0.467 | -0.030 | 1.23e-03 |
Height21 | pT+clump.10FCVal | SBayesR.PseudoVal | 0.388 | 0.434 | -0.046 | 6.52e-07 | 0.353 | 0.467 | -0.114 | 6.16e-10 |
Height21 | lassosum.10FCVal | SBayesR.PseudoVal | 0.436 | 0.434 | 0.002 | 7.63e-01 | 0.442 | 0.467 | -0.024 | 2.28e-02 |
Height21 | LDpred2.PseudoVal | SBLUP.Inf | 0.432 | 0.381 | 0.051 | 6.61e-25 | 0.446 | 0.392 | 0.053 | 5.62e-08 |
Height21 | MegaPRS.10FCVal | SBLUP.Inf | 0.443 | 0.381 | 0.062 | 9.88e-22 | 0.465 | 0.392 | 0.073 | 6.37e-09 |
Height21 | lassosum.MultiPRS | SBLUP.Inf | 0.439 | 0.381 | 0.058 | 1.55e-03 | 0.445 | 0.392 | 0.053 | 5.17e-04 |
Height21 | LDpred1.MultiPRS | SBLUP.Inf | 0.388 | 0.381 | 0.007 | 7.28e-01 | 0.402 | 0.392 | 0.010 | 1.81e-01 |
Height21 | All.MultiPRS | SBLUP.Inf | 0.464 | 0.381 | 0.083 | 5.57e-06 | 0.461 | 0.392 | 0.069 | 6.88e-06 |
Height21 | LDpred2.Inf | SBLUP.Inf | 0.388 | 0.381 | 0.007 | 5.17e-04 | 0.400 | 0.392 | 0.008 | 5.59e-02 |
Height21 | MegaPRS.MultiPRS | SBLUP.Inf | 0.452 | 0.381 | 0.071 | 1.20e-04 | 0.465 | 0.392 | 0.073 | 5.71e-08 |
Height21 | pT+clump.MultiPRS | SBLUP.Inf | 0.403 | 0.381 | 0.022 | 2.41e-01 | 0.396 | 0.392 | 0.004 | 8.28e-01 |
Height21 | lassosum.10FCVal | SBLUP.Inf | 0.436 | 0.381 | 0.055 | 2.42e-10 | 0.442 | 0.392 | 0.050 | 3.74e-03 |
Height21 | SBayesR.PseudoVal | SBLUP.Inf | 0.434 | 0.381 | 0.053 | 5.25e-20 | 0.467 | 0.392 | 0.074 | 1.15e-10 |
Height21 | DBSLMM.PseudoVal | SBLUP.Inf | 0.418 | 0.381 | 0.037 | 2.01e-10 | 0.437 | 0.392 | 0.045 | 2.25e-04 |
Height21 | SBLUP.Inf | SBLUP.Inf | 0.381 | 0.381 | 0.000 | 1.00e+00 | 0.392 | 0.392 | 0.000 | 1.00e+00 |
Height21 | LDpred2.MultiPRS | SBLUP.Inf | 0.447 | 0.381 | 0.066 | 2.71e-04 | 0.459 | 0.392 | 0.066 | 1.26e-06 |
Height21 | pT+clump.10FCVal | SBLUP.Inf | 0.388 | 0.381 | 0.007 | 5.45e-01 | 0.353 | 0.392 | -0.039 | 9.29e-02 |
Height21 | LDpred1.Inf | SBLUP.Inf | 0.381 | 0.381 | -0.001 | 8.25e-01 | 0.394 | 0.392 | 0.002 | 6.94e-01 |
Height21 | lassosum.PseudoVal | SBLUP.Inf | 0.400 | 0.381 | 0.019 | 1.21e-01 | 0.395 | 0.392 | 0.003 | 9.11e-01 |
Height21 | LDpred1.10FCVal | SBLUP.Inf | 0.364 | 0.381 | -0.017 | 7.68e-05 | 0.380 | 0.392 | -0.013 | 1.34e-01 |
Height21 | MegaPRS.PseudoVal | SBLUP.Inf | 0.418 | 0.381 | 0.037 | 8.19e-05 | 0.450 | 0.392 | 0.058 | 1.56e-03 |
Height21 | LDpred2.10FCVal | SBLUP.Inf | 0.447 | 0.381 | 0.066 | 1.08e-20 | 0.453 | 0.392 | 0.060 | 1.82e-05 |
BMI21 | MegaPRS.PseudoVal | All.MultiPRS | 0.383 | 0.384 | -0.001 | 9.54e-01 | 0.356 | 0.356 | 0.000 | 9.82e-01 |
BMI21 | pT+clump.10FCVal | All.MultiPRS | 0.312 | 0.384 | -0.071 | 3.51e-04 | 0.285 | 0.356 | -0.071 | 3.44e-05 |
BMI21 | MegaPRS.MultiPRS | All.MultiPRS | 0.383 | 0.384 | -0.001 | 6.61e-01 | 0.354 | 0.356 | -0.002 | 5.98e-01 |
BMI21 | LDpred2.Inf | All.MultiPRS | 0.350 | 0.384 | -0.034 | 8.95e-02 | 0.319 | 0.356 | -0.037 | 3.53e-03 |
BMI21 | MegaPRS.10FCVal | All.MultiPRS | 0.383 | 0.384 | -0.001 | 9.54e-01 | 0.356 | 0.356 | 0.000 | 9.82e-01 |
BMI21 | lassosum.10FCVal | All.MultiPRS | 0.359 | 0.384 | -0.025 | 2.02e-01 | 0.333 | 0.356 | -0.023 | 2.54e-02 |
BMI21 | lassosum.PseudoVal | All.MultiPRS | 0.325 | 0.384 | -0.059 | 2.76e-03 | 0.268 | 0.356 | -0.088 | 6.01e-08 |
BMI21 | LDpred2.10FCVal | All.MultiPRS | 0.377 | 0.384 | -0.007 | 7.28e-01 | 0.336 | 0.356 | -0.020 | 2.93e-03 |
BMI21 | LDpred2.PseudoVal | All.MultiPRS | 0.378 | 0.384 | -0.006 | 7.58e-01 | 0.348 | 0.356 | -0.007 | 2.80e-01 |
BMI21 | DBSLMM.PseudoVal | All.MultiPRS | 0.357 | 0.384 | -0.027 | 1.72e-01 | 0.320 | 0.356 | -0.036 | 1.64e-03 |
BMI21 | lassosum.MultiPRS | All.MultiPRS | 0.365 | 0.384 | -0.019 | 3.35e-01 | 0.337 | 0.356 | -0.019 | 2.68e-02 |
BMI21 | LDpred1.10FCVal | All.MultiPRS | 0.336 | 0.384 | -0.048 | 1.51e-02 | 0.313 | 0.356 | -0.043 | 2.84e-03 |
BMI21 | LDpred2.MultiPRS | All.MultiPRS | 0.377 | 0.384 | -0.007 | 3.17e-02 | 0.342 | 0.356 | -0.014 | 3.14e-02 |
BMI21 | SBayesR.PseudoVal | All.MultiPRS | 0.373 | 0.384 | -0.011 | 5.62e-01 | 0.338 | 0.356 | -0.018 | 2.40e-02 |
BMI21 | All.MultiPRS | All.MultiPRS | 0.384 | 0.384 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.MultiPRS | All.MultiPRS | 0.348 | 0.384 | -0.035 | 2.22e-09 | 0.320 | 0.356 | -0.036 | 3.14e-03 |
BMI21 | LDpred1.Inf | All.MultiPRS | 0.346 | 0.384 | -0.038 | 5.36e-02 | 0.316 | 0.356 | -0.040 | 2.62e-03 |
BMI21 | pT+clump.MultiPRS | All.MultiPRS | 0.320 | 0.384 | -0.064 | 1.27e-03 | 0.283 | 0.356 | -0.073 | 4.08e-06 |
BMI21 | SBLUP.Inf | All.MultiPRS | 0.347 | 0.384 | -0.037 | 6.41e-02 | 0.311 | 0.356 | -0.045 | 4.72e-04 |
BMI21 | LDpred1.Inf | DBSLMM.PseudoVal | 0.346 | 0.357 | -0.011 | 5.84e-02 | 0.316 | 0.320 | -0.004 | 7.22e-01 |
BMI21 | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.365 | 0.357 | 0.008 | 6.74e-01 | 0.337 | 0.320 | 0.017 | 1.42e-01 |
BMI21 | SBLUP.Inf | DBSLMM.PseudoVal | 0.347 | 0.357 | -0.010 | 1.03e-01 | 0.311 | 0.320 | -0.010 | 4.23e-01 |
BMI21 | All.MultiPRS | DBSLMM.PseudoVal | 0.384 | 0.357 | 0.027 | 1.72e-01 | 0.356 | 0.320 | 0.036 | 1.64e-03 |
BMI21 | lassosum.10FCVal | DBSLMM.PseudoVal | 0.359 | 0.357 | 0.002 | 7.34e-01 | 0.333 | 0.320 | 0.013 | 2.61e-01 |
BMI21 | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.377 | 0.357 | 0.020 | 3.03e-01 | 0.342 | 0.320 | 0.022 | 3.38e-02 |
BMI21 | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.312 | 0.357 | -0.045 | 3.27e-08 | 0.285 | 0.320 | -0.036 | 2.72e-02 |
BMI21 | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.357 | 0.357 | 0.000 | 1.00e+00 | 0.320 | 0.320 | 0.000 | 1.00e+00 |
BMI21 | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.320 | 0.357 | -0.037 | 6.66e-02 | 0.283 | 0.320 | -0.037 | 9.66e-03 |
BMI21 | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.336 | 0.357 | -0.021 | 2.44e-03 | 0.313 | 0.320 | -0.007 | 6.07e-01 |
BMI21 | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.377 | 0.357 | 0.020 | 1.44e-04 | 0.336 | 0.320 | 0.016 | 1.42e-01 |
BMI21 | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.383 | 0.357 | 0.026 | 8.36e-07 | 0.356 | 0.320 | 0.036 | 9.40e-04 |
BMI21 | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.378 | 0.357 | 0.021 | 4.87e-05 | 0.348 | 0.320 | 0.028 | 6.77e-03 |
BMI21 | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.383 | 0.357 | 0.026 | 1.88e-01 | 0.354 | 0.320 | 0.033 | 1.17e-03 |
BMI21 | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.348 | 0.357 | -0.009 | 6.64e-01 | 0.320 | 0.320 | 0.000 | 9.82e-01 |
BMI21 | LDpred2.Inf | DBSLMM.PseudoVal | 0.350 | 0.357 | -0.007 | 2.63e-01 | 0.319 | 0.320 | -0.001 | 9.28e-01 |
BMI21 | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.373 | 0.357 | 0.016 | 3.39e-04 | 0.338 | 0.320 | 0.018 | 4.58e-02 |
BMI21 | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.325 | 0.357 | -0.032 | 3.93e-05 | 0.268 | 0.320 | -0.052 | 2.02e-03 |
BMI21 | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.383 | 0.357 | 0.026 | 8.36e-07 | 0.356 | 0.320 | 0.036 | 9.40e-04 |
BMI21 | All.MultiPRS | lassosum.MultiPRS | 0.384 | 0.365 | 0.019 | 3.35e-01 | 0.356 | 0.337 | 0.019 | 2.68e-02 |
BMI21 | SBLUP.Inf | lassosum.MultiPRS | 0.347 | 0.365 | -0.018 | 3.57e-01 | 0.311 | 0.337 | -0.027 | 6.04e-02 |
BMI21 | lassosum.PseudoVal | lassosum.MultiPRS | 0.325 | 0.365 | -0.040 | 4.27e-02 | 0.268 | 0.337 | -0.069 | 3.89e-06 |
BMI21 | LDpred2.PseudoVal | lassosum.MultiPRS | 0.378 | 0.365 | 0.013 | 5.16e-01 | 0.348 | 0.337 | 0.011 | 2.69e-01 |
BMI21 | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.357 | 0.365 | -0.008 | 6.74e-01 | 0.320 | 0.337 | -0.017 | 1.42e-01 |
BMI21 | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.383 | 0.365 | 0.018 | 3.58e-01 | 0.354 | 0.337 | 0.016 | 9.40e-02 |
BMI21 | pT+clump.10FCVal | lassosum.MultiPRS | 0.312 | 0.365 | -0.053 | 7.53e-03 | 0.285 | 0.337 | -0.053 | 2.36e-03 |
BMI21 | LDpred2.Inf | lassosum.MultiPRS | 0.350 | 0.365 | -0.015 | 4.45e-01 | 0.319 | 0.337 | -0.018 | 2.08e-01 |
BMI21 | SBayesR.PseudoVal | lassosum.MultiPRS | 0.373 | 0.365 | 0.007 | 7.08e-01 | 0.338 | 0.337 | 0.001 | 9.43e-01 |
BMI21 | lassosum.10FCVal | lassosum.MultiPRS | 0.359 | 0.365 | -0.006 | 7.46e-01 | 0.333 | 0.337 | -0.004 | 5.09e-01 |
BMI21 | LDpred1.Inf | lassosum.MultiPRS | 0.346 | 0.365 | -0.020 | 3.16e-01 | 0.316 | 0.337 | -0.021 | 1.39e-01 |
BMI21 | LDpred2.10FCVal | lassosum.MultiPRS | 0.377 | 0.365 | 0.012 | 5.43e-01 | 0.336 | 0.337 | -0.001 | 9.17e-01 |
BMI21 | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.383 | 0.365 | 0.017 | 3.68e-01 | 0.356 | 0.337 | 0.019 | 7.12e-02 |
BMI21 | pT+clump.MultiPRS | lassosum.MultiPRS | 0.320 | 0.365 | -0.045 | 2.41e-02 | 0.283 | 0.337 | -0.054 | 6.29e-04 |
BMI21 | lassosum.MultiPRS | lassosum.MultiPRS | 0.365 | 0.365 | 0.000 | 1.00e+00 | 0.337 | 0.337 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.10FCVal | lassosum.MultiPRS | 0.336 | 0.365 | -0.030 | 1.34e-01 | 0.313 | 0.337 | -0.024 | 1.20e-01 |
BMI21 | LDpred2.MultiPRS | lassosum.MultiPRS | 0.377 | 0.365 | 0.012 | 5.35e-01 | 0.342 | 0.337 | 0.005 | 6.11e-01 |
BMI21 | MegaPRS.10FCVal | lassosum.MultiPRS | 0.383 | 0.365 | 0.017 | 3.68e-01 | 0.356 | 0.337 | 0.019 | 7.12e-02 |
BMI21 | LDpred1.MultiPRS | lassosum.MultiPRS | 0.348 | 0.365 | -0.017 | 3.88e-01 | 0.320 | 0.337 | -0.017 | 2.02e-01 |
BMI21 | lassosum.10FCVal | lassosum.10FCVal | 0.359 | 0.359 | 0.000 | 1.00e+00 | 0.333 | 0.333 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.10FCVal | lassosum.10FCVal | 0.336 | 0.359 | -0.023 | 1.25e-03 | 0.313 | 0.333 | -0.020 | 1.70e-01 |
BMI21 | All.MultiPRS | lassosum.10FCVal | 0.384 | 0.359 | 0.025 | 2.02e-01 | 0.356 | 0.333 | 0.023 | 2.54e-02 |
BMI21 | MegaPRS.PseudoVal | lassosum.10FCVal | 0.383 | 0.359 | 0.024 | 1.10e-06 | 0.356 | 0.333 | 0.023 | 2.11e-02 |
BMI21 | LDpred2.10FCVal | lassosum.10FCVal | 0.377 | 0.359 | 0.018 | 1.57e-04 | 0.336 | 0.333 | 0.003 | 7.43e-01 |
BMI21 | SBLUP.Inf | lassosum.10FCVal | 0.347 | 0.359 | -0.012 | 6.55e-02 | 0.311 | 0.333 | -0.022 | 7.99e-02 |
BMI21 | SBayesR.PseudoVal | lassosum.10FCVal | 0.373 | 0.359 | 0.014 | 3.06e-03 | 0.338 | 0.333 | 0.005 | 6.01e-01 |
BMI21 | LDpred1.Inf | lassosum.10FCVal | 0.346 | 0.359 | -0.013 | 3.83e-02 | 0.316 | 0.333 | -0.017 | 1.93e-01 |
BMI21 | lassosum.PseudoVal | lassosum.10FCVal | 0.325 | 0.359 | -0.034 | 7.30e-06 | 0.268 | 0.333 | -0.065 | 7.34e-05 |
BMI21 | LDpred2.MultiPRS | lassosum.10FCVal | 0.377 | 0.359 | 0.018 | 3.48e-01 | 0.342 | 0.333 | 0.009 | 3.35e-01 |
BMI21 | pT+clump.10FCVal | lassosum.10FCVal | 0.312 | 0.359 | -0.046 | 3.12e-09 | 0.285 | 0.333 | -0.048 | 2.17e-03 |
BMI21 | DBSLMM.PseudoVal | lassosum.10FCVal | 0.357 | 0.359 | -0.002 | 7.34e-01 | 0.320 | 0.333 | -0.013 | 2.61e-01 |
BMI21 | MegaPRS.10FCVal | lassosum.10FCVal | 0.383 | 0.359 | 0.024 | 1.10e-06 | 0.356 | 0.333 | 0.023 | 2.11e-02 |
BMI21 | MegaPRS.MultiPRS | lassosum.10FCVal | 0.383 | 0.359 | 0.024 | 2.19e-01 | 0.354 | 0.333 | 0.021 | 3.44e-02 |
BMI21 | LDpred2.Inf | lassosum.10FCVal | 0.350 | 0.359 | -0.009 | 1.76e-01 | 0.319 | 0.333 | -0.014 | 2.89e-01 |
BMI21 | LDpred2.PseudoVal | lassosum.10FCVal | 0.378 | 0.359 | 0.019 | 3.52e-05 | 0.348 | 0.333 | 0.016 | 9.89e-02 |
BMI21 | pT+clump.MultiPRS | lassosum.10FCVal | 0.320 | 0.359 | -0.039 | 5.38e-02 | 0.283 | 0.333 | -0.050 | 7.63e-04 |
BMI21 | LDpred1.MultiPRS | lassosum.10FCVal | 0.348 | 0.359 | -0.011 | 5.96e-01 | 0.320 | 0.333 | -0.013 | 2.94e-01 |
BMI21 | lassosum.MultiPRS | lassosum.10FCVal | 0.365 | 0.359 | 0.006 | 7.46e-01 | 0.337 | 0.333 | 0.004 | 5.09e-01 |
BMI21 | lassosum.10FCVal | lassosum.PseudoVal | 0.359 | 0.325 | 0.034 | 7.30e-06 | 0.333 | 0.268 | 0.065 | 7.34e-05 |
BMI21 | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.383 | 0.325 | 0.058 | 4.01e-12 | 0.356 | 0.268 | 0.088 | 4.68e-07 |
BMI21 | All.MultiPRS | lassosum.PseudoVal | 0.384 | 0.325 | 0.059 | 2.76e-03 | 0.356 | 0.268 | 0.088 | 6.01e-08 |
BMI21 | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.357 | 0.325 | 0.032 | 3.93e-05 | 0.320 | 0.268 | 0.052 | 2.02e-03 |
BMI21 | MegaPRS.10FCVal | lassosum.PseudoVal | 0.383 | 0.325 | 0.058 | 4.01e-12 | 0.356 | 0.268 | 0.088 | 4.68e-07 |
BMI21 | LDpred2.Inf | lassosum.PseudoVal | 0.350 | 0.325 | 0.025 | 1.80e-02 | 0.319 | 0.268 | 0.051 | 2.38e-02 |
BMI21 | SBLUP.Inf | lassosum.PseudoVal | 0.347 | 0.325 | 0.022 | 3.75e-02 | 0.311 | 0.268 | 0.043 | 5.49e-02 |
BMI21 | LDpred1.Inf | lassosum.PseudoVal | 0.346 | 0.325 | 0.021 | 5.17e-02 | 0.316 | 0.268 | 0.048 | 3.06e-02 |
BMI21 | lassosum.MultiPRS | lassosum.PseudoVal | 0.365 | 0.325 | 0.040 | 4.27e-02 | 0.337 | 0.268 | 0.069 | 3.89e-06 |
BMI21 | LDpred2.10FCVal | lassosum.PseudoVal | 0.377 | 0.325 | 0.052 | 9.26e-12 | 0.336 | 0.268 | 0.068 | 1.42e-05 |
BMI21 | LDpred2.MultiPRS | lassosum.PseudoVal | 0.377 | 0.325 | 0.052 | 7.81e-03 | 0.342 | 0.268 | 0.074 | 4.64e-06 |
BMI21 | SBayesR.PseudoVal | lassosum.PseudoVal | 0.373 | 0.325 | 0.048 | 5.19e-10 | 0.338 | 0.268 | 0.070 | 1.27e-05 |
BMI21 | pT+clump.10FCVal | lassosum.PseudoVal | 0.312 | 0.325 | -0.013 | 2.63e-01 | 0.285 | 0.268 | 0.017 | 4.65e-01 |
BMI21 | LDpred1.10FCVal | lassosum.PseudoVal | 0.336 | 0.325 | 0.011 | 3.36e-01 | 0.313 | 0.268 | 0.045 | 5.34e-02 |
BMI21 | lassosum.PseudoVal | lassosum.PseudoVal | 0.325 | 0.325 | 0.000 | 1.00e+00 | 0.268 | 0.268 | 0.000 | 1.00e+00 |
BMI21 | pT+clump.MultiPRS | lassosum.PseudoVal | 0.320 | 0.325 | -0.005 | 8.16e-01 | 0.283 | 0.268 | 0.015 | 4.00e-01 |
BMI21 | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.383 | 0.325 | 0.058 | 3.25e-03 | 0.354 | 0.268 | 0.086 | 2.11e-07 |
BMI21 | LDpred1.MultiPRS | lassosum.PseudoVal | 0.348 | 0.325 | 0.023 | 2.39e-01 | 0.320 | 0.268 | 0.052 | 1.56e-02 |
BMI21 | LDpred2.PseudoVal | lassosum.PseudoVal | 0.378 | 0.325 | 0.053 | 1.40e-09 | 0.348 | 0.268 | 0.080 | 9.69e-06 |
BMI21 | All.MultiPRS | MegaPRS.MultiPRS | 0.384 | 0.383 | 0.001 | 6.61e-01 | 0.356 | 0.354 | 0.002 | 5.98e-01 |
BMI21 | LDpred1.Inf | MegaPRS.MultiPRS | 0.346 | 0.383 | -0.037 | 5.99e-02 | 0.316 | 0.354 | -0.038 | 1.93e-03 |
BMI21 | SBLUP.Inf | MegaPRS.MultiPRS | 0.347 | 0.383 | -0.036 | 7.15e-02 | 0.311 | 0.354 | -0.043 | 2.78e-04 |
BMI21 | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.365 | 0.383 | -0.018 | 3.58e-01 | 0.337 | 0.354 | -0.016 | 9.40e-02 |
BMI21 | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.377 | 0.383 | -0.006 | 7.63e-01 | 0.336 | 0.354 | -0.018 | 1.23e-02 |
BMI21 | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.377 | 0.383 | -0.006 | 6.95e-02 | 0.342 | 0.354 | -0.011 | 7.93e-02 |
BMI21 | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.312 | 0.383 | -0.071 | 4.23e-04 | 0.285 | 0.354 | -0.069 | 2.16e-05 |
BMI21 | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.373 | 0.383 | -0.010 | 5.94e-01 | 0.338 | 0.354 | -0.016 | 3.29e-02 |
BMI21 | lassosum.10FCVal | MegaPRS.MultiPRS | 0.359 | 0.383 | -0.024 | 2.19e-01 | 0.333 | 0.354 | -0.021 | 3.44e-02 |
BMI21 | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.336 | 0.383 | -0.047 | 1.73e-02 | 0.313 | 0.354 | -0.041 | 2.49e-03 |
BMI21 | LDpred2.Inf | MegaPRS.MultiPRS | 0.350 | 0.383 | -0.033 | 9.91e-02 | 0.319 | 0.354 | -0.035 | 2.53e-03 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.357 | 0.383 | -0.026 | 1.88e-01 | 0.320 | 0.354 | -0.033 | 1.17e-03 |
BMI21 | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.320 | 0.383 | -0.063 | 1.47e-03 | 0.283 | 0.354 | -0.071 | 2.49e-06 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.383 | 0.383 | 0.000 | 1.00e+00 | 0.354 | 0.354 | 0.000 | 1.00e+00 |
BMI21 | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.348 | 0.383 | -0.035 | 3.92e-10 | 0.320 | 0.354 | -0.034 | 2.85e-03 |
BMI21 | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.378 | 0.383 | -0.005 | 7.94e-01 | 0.348 | 0.354 | -0.005 | 4.36e-01 |
BMI21 | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.383 | 0.383 | 0.000 | 9.90e-01 | 0.356 | 0.354 | 0.002 | 5.16e-01 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.383 | 0.383 | 0.000 | 9.90e-01 | 0.356 | 0.354 | 0.002 | 5.16e-01 |
BMI21 | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.325 | 0.383 | -0.058 | 3.25e-03 | 0.268 | 0.354 | -0.086 | 2.11e-07 |
BMI21 | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.383 | 0.383 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.383 | 0.383 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.383 | 0.383 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.383 | 0.383 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
BMI21 | lassosum.PseudoVal | MegaPRS.10FCVal | 0.325 | 0.383 | -0.058 | 4.01e-12 | 0.268 | 0.356 | -0.088 | 4.68e-07 |
BMI21 | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.325 | 0.383 | -0.058 | 4.01e-12 | 0.268 | 0.356 | -0.088 | 4.68e-07 |
BMI21 | LDpred1.10FCVal | MegaPRS.10FCVal | 0.336 | 0.383 | -0.047 | 6.94e-12 | 0.313 | 0.356 | -0.043 | 1.61e-03 |
BMI21 | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.336 | 0.383 | -0.047 | 6.94e-12 | 0.313 | 0.356 | -0.043 | 1.61e-03 |
BMI21 | pT+clump.10FCVal | MegaPRS.10FCVal | 0.312 | 0.383 | -0.070 | 1.13e-17 | 0.285 | 0.356 | -0.071 | 1.29e-05 |
BMI21 | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.312 | 0.383 | -0.070 | 1.13e-17 | 0.285 | 0.356 | -0.071 | 1.29e-05 |
BMI21 | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.373 | 0.383 | -0.010 | 6.67e-03 | 0.338 | 0.356 | -0.018 | 2.29e-02 |
BMI21 | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.373 | 0.383 | -0.010 | 6.67e-03 | 0.338 | 0.356 | -0.018 | 2.29e-02 |
BMI21 | lassosum.10FCVal | MegaPRS.10FCVal | 0.359 | 0.383 | -0.024 | 1.10e-06 | 0.333 | 0.356 | -0.023 | 2.11e-02 |
BMI21 | lassosum.10FCVal | MegaPRS.PseudoVal | 0.359 | 0.383 | -0.024 | 1.10e-06 | 0.333 | 0.356 | -0.023 | 2.11e-02 |
BMI21 | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.348 | 0.383 | -0.034 | 8.17e-02 | 0.320 | 0.356 | -0.036 | 1.70e-03 |
BMI21 | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.348 | 0.383 | -0.034 | 8.17e-02 | 0.320 | 0.356 | -0.036 | 1.70e-03 |
BMI21 | LDpred2.Inf | MegaPRS.10FCVal | 0.350 | 0.383 | -0.032 | 9.42e-09 | 0.319 | 0.356 | -0.037 | 1.44e-03 |
BMI21 | LDpred2.Inf | MegaPRS.PseudoVal | 0.350 | 0.383 | -0.032 | 9.42e-09 | 0.319 | 0.356 | -0.037 | 1.44e-03 |
BMI21 | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.320 | 0.383 | -0.062 | 1.66e-03 | 0.283 | 0.356 | -0.073 | 2.35e-06 |
BMI21 | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.320 | 0.383 | -0.062 | 1.66e-03 | 0.283 | 0.356 | -0.073 | 2.35e-06 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.357 | 0.383 | -0.026 | 8.36e-07 | 0.320 | 0.356 | -0.036 | 9.40e-04 |
BMI21 | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.357 | 0.383 | -0.026 | 8.36e-07 | 0.320 | 0.356 | -0.036 | 9.40e-04 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.383 | 0.383 | 0.000 | 9.90e-01 | 0.354 | 0.356 | -0.002 | 5.16e-01 |
BMI21 | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.383 | 0.383 | 0.000 | 9.90e-01 | 0.354 | 0.356 | -0.002 | 5.16e-01 |
BMI21 | lassosum.MultiPRS | MegaPRS.10FCVal | 0.365 | 0.383 | -0.017 | 3.68e-01 | 0.337 | 0.356 | -0.019 | 7.12e-02 |
BMI21 | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.365 | 0.383 | -0.017 | 3.68e-01 | 0.337 | 0.356 | -0.019 | 7.12e-02 |
BMI21 | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.378 | 0.383 | -0.005 | 1.56e-01 | 0.348 | 0.356 | -0.007 | 2.97e-01 |
BMI21 | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.378 | 0.383 | -0.005 | 1.56e-01 | 0.348 | 0.356 | -0.007 | 2.97e-01 |
BMI21 | LDpred1.Inf | MegaPRS.10FCVal | 0.346 | 0.383 | -0.037 | 6.33e-10 | 0.316 | 0.356 | -0.040 | 1.13e-03 |
BMI21 | LDpred1.Inf | MegaPRS.PseudoVal | 0.346 | 0.383 | -0.037 | 6.33e-10 | 0.316 | 0.356 | -0.040 | 1.13e-03 |
BMI21 | All.MultiPRS | MegaPRS.10FCVal | 0.384 | 0.383 | 0.001 | 9.54e-01 | 0.356 | 0.356 | 0.000 | 9.82e-01 |
BMI21 | All.MultiPRS | MegaPRS.PseudoVal | 0.384 | 0.383 | 0.001 | 9.54e-01 | 0.356 | 0.356 | 0.000 | 9.82e-01 |
BMI21 | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.377 | 0.383 | -0.005 | 7.78e-01 | 0.342 | 0.356 | -0.013 | 6.56e-02 |
BMI21 | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.377 | 0.383 | -0.005 | 7.78e-01 | 0.342 | 0.356 | -0.013 | 6.56e-02 |
BMI21 | SBLUP.Inf | MegaPRS.10FCVal | 0.347 | 0.383 | -0.036 | 2.40e-09 | 0.311 | 0.356 | -0.045 | 1.47e-04 |
BMI21 | SBLUP.Inf | MegaPRS.PseudoVal | 0.347 | 0.383 | -0.036 | 2.40e-09 | 0.311 | 0.356 | -0.045 | 1.47e-04 |
BMI21 | LDpred2.10FCVal | MegaPRS.10FCVal | 0.377 | 0.383 | -0.006 | 1.33e-01 | 0.336 | 0.356 | -0.020 | 1.15e-02 |
BMI21 | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.377 | 0.383 | -0.006 | 1.33e-01 | 0.336 | 0.356 | -0.020 | 1.15e-02 |
BMI21 | LDpred1.Inf | LDpred1.MultiPRS | 0.346 | 0.348 | -0.003 | 8.90e-01 | 0.316 | 0.320 | -0.004 | 4.89e-01 |
BMI21 | LDpred1.10FCVal | LDpred1.MultiPRS | 0.336 | 0.348 | -0.013 | 5.29e-01 | 0.313 | 0.320 | -0.007 | 3.90e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.383 | 0.348 | 0.034 | 8.17e-02 | 0.356 | 0.320 | 0.036 | 1.70e-03 |
BMI21 | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.357 | 0.348 | 0.009 | 6.64e-01 | 0.320 | 0.320 | 0.000 | 9.82e-01 |
BMI21 | lassosum.MultiPRS | LDpred1.MultiPRS | 0.365 | 0.348 | 0.017 | 3.88e-01 | 0.337 | 0.320 | 0.017 | 2.02e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.383 | 0.348 | 0.035 | 3.92e-10 | 0.354 | 0.320 | 0.034 | 2.85e-03 |
BMI21 | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.377 | 0.348 | 0.029 | 6.37e-08 | 0.342 | 0.320 | 0.022 | 3.75e-02 |
BMI21 | LDpred2.Inf | LDpred1.MultiPRS | 0.350 | 0.348 | 0.002 | 9.24e-01 | 0.319 | 0.320 | -0.001 | 9.01e-01 |
BMI21 | All.MultiPRS | LDpred1.MultiPRS | 0.384 | 0.348 | 0.035 | 2.22e-09 | 0.356 | 0.320 | 0.036 | 3.14e-03 |
BMI21 | lassosum.10FCVal | LDpred1.MultiPRS | 0.359 | 0.348 | 0.011 | 5.96e-01 | 0.333 | 0.320 | 0.013 | 2.94e-01 |
BMI21 | lassosum.PseudoVal | LDpred1.MultiPRS | 0.325 | 0.348 | -0.023 | 2.39e-01 | 0.268 | 0.320 | -0.052 | 1.56e-02 |
BMI21 | SBLUP.Inf | LDpred1.MultiPRS | 0.347 | 0.348 | -0.001 | 9.54e-01 | 0.311 | 0.320 | -0.009 | 2.02e-01 |
BMI21 | pT+clump.10FCVal | LDpred1.MultiPRS | 0.312 | 0.348 | -0.036 | 7.54e-02 | 0.285 | 0.320 | -0.035 | 2.55e-02 |
BMI21 | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.320 | 0.348 | -0.028 | 1.60e-01 | 0.283 | 0.320 | -0.037 | 2.24e-02 |
BMI21 | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.383 | 0.348 | 0.034 | 8.17e-02 | 0.356 | 0.320 | 0.036 | 1.70e-03 |
BMI21 | LDpred2.10FCVal | LDpred1.MultiPRS | 0.377 | 0.348 | 0.029 | 1.47e-01 | 0.336 | 0.320 | 0.016 | 1.62e-01 |
BMI21 | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.373 | 0.348 | 0.024 | 2.22e-01 | 0.338 | 0.320 | 0.018 | 7.63e-02 |
BMI21 | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.348 | 0.348 | 0.000 | 1.00e+00 | 0.320 | 0.320 | 0.000 | 1.00e+00 |
BMI21 | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.378 | 0.348 | 0.029 | 1.36e-01 | 0.348 | 0.320 | 0.029 | 2.62e-03 |
BMI21 | lassosum.10FCVal | LDpred1.Inf | 0.359 | 0.346 | 0.013 | 3.83e-02 | 0.333 | 0.316 | 0.017 | 1.93e-01 |
BMI21 | LDpred2.Inf | LDpred1.Inf | 0.350 | 0.346 | 0.005 | 8.99e-02 | 0.319 | 0.316 | 0.003 | 5.77e-01 |
BMI21 | DBSLMM.PseudoVal | LDpred1.Inf | 0.357 | 0.346 | 0.011 | 5.84e-02 | 0.320 | 0.316 | 0.004 | 7.22e-01 |
BMI21 | LDpred1.10FCVal | LDpred1.Inf | 0.336 | 0.346 | -0.010 | 2.76e-02 | 0.313 | 0.316 | -0.003 | 7.55e-01 |
BMI21 | LDpred2.MultiPRS | LDpred1.Inf | 0.377 | 0.346 | 0.032 | 1.11e-01 | 0.342 | 0.316 | 0.026 | 2.44e-02 |
BMI21 | All.MultiPRS | LDpred1.Inf | 0.384 | 0.346 | 0.038 | 5.36e-02 | 0.356 | 0.316 | 0.040 | 2.62e-03 |
BMI21 | MegaPRS.PseudoVal | LDpred1.Inf | 0.383 | 0.346 | 0.037 | 6.33e-10 | 0.356 | 0.316 | 0.040 | 1.13e-03 |
BMI21 | LDpred1.Inf | LDpred1.Inf | 0.346 | 0.346 | 0.000 | 1.00e+00 | 0.316 | 0.316 | 0.000 | 1.00e+00 |
BMI21 | LDpred2.10FCVal | LDpred1.Inf | 0.377 | 0.346 | 0.031 | 2.22e-07 | 0.336 | 0.316 | 0.020 | 1.07e-01 |
BMI21 | SBLUP.Inf | LDpred1.Inf | 0.347 | 0.346 | 0.002 | 6.10e-01 | 0.311 | 0.316 | -0.005 | 4.37e-01 |
BMI21 | pT+clump.MultiPRS | LDpred1.Inf | 0.320 | 0.346 | -0.025 | 2.08e-01 | 0.283 | 0.316 | -0.033 | 4.27e-02 |
BMI21 | lassosum.MultiPRS | LDpred1.Inf | 0.365 | 0.346 | 0.020 | 3.16e-01 | 0.337 | 0.316 | 0.021 | 1.39e-01 |
BMI21 | lassosum.PseudoVal | LDpred1.Inf | 0.325 | 0.346 | -0.021 | 5.17e-02 | 0.268 | 0.316 | -0.048 | 3.06e-02 |
BMI21 | LDpred1.MultiPRS | LDpred1.Inf | 0.348 | 0.346 | 0.003 | 8.90e-01 | 0.320 | 0.316 | 0.004 | 4.89e-01 |
BMI21 | pT+clump.10FCVal | LDpred1.Inf | 0.312 | 0.346 | -0.033 | 1.48e-05 | 0.285 | 0.316 | -0.031 | 4.54e-02 |
BMI21 | SBayesR.PseudoVal | LDpred1.Inf | 0.373 | 0.346 | 0.027 | 1.97e-07 | 0.338 | 0.316 | 0.022 | 3.80e-02 |
BMI21 | MegaPRS.MultiPRS | LDpred1.Inf | 0.383 | 0.346 | 0.037 | 5.99e-02 | 0.354 | 0.316 | 0.038 | 1.93e-03 |
BMI21 | MegaPRS.10FCVal | LDpred1.Inf | 0.383 | 0.346 | 0.037 | 6.33e-10 | 0.356 | 0.316 | 0.040 | 1.13e-03 |
BMI21 | LDpred2.PseudoVal | LDpred1.Inf | 0.378 | 0.346 | 0.032 | 1.85e-10 | 0.348 | 0.316 | 0.033 | 1.68e-03 |
BMI21 | All.MultiPRS | LDpred1.10FCVal | 0.384 | 0.336 | 0.048 | 1.51e-02 | 0.356 | 0.313 | 0.043 | 2.84e-03 |
BMI21 | SBLUP.Inf | LDpred1.10FCVal | 0.347 | 0.336 | 0.011 | 8.16e-03 | 0.311 | 0.313 | -0.002 | 7.98e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.383 | 0.336 | 0.047 | 6.94e-12 | 0.356 | 0.313 | 0.043 | 1.61e-03 |
BMI21 | LDpred1.Inf | LDpred1.10FCVal | 0.346 | 0.336 | 0.010 | 2.76e-02 | 0.316 | 0.313 | 0.003 | 7.55e-01 |
BMI21 | LDpred2.10FCVal | LDpred1.10FCVal | 0.377 | 0.336 | 0.041 | 2.70e-09 | 0.336 | 0.313 | 0.023 | 9.86e-02 |
BMI21 | LDpred2.PseudoVal | LDpred1.10FCVal | 0.378 | 0.336 | 0.042 | 2.54e-12 | 0.348 | 0.313 | 0.035 | 3.12e-03 |
BMI21 | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.357 | 0.336 | 0.021 | 2.44e-03 | 0.320 | 0.313 | 0.007 | 6.07e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.383 | 0.336 | 0.047 | 1.73e-02 | 0.354 | 0.313 | 0.041 | 2.49e-03 |
BMI21 | lassosum.MultiPRS | LDpred1.10FCVal | 0.365 | 0.336 | 0.030 | 1.34e-01 | 0.337 | 0.313 | 0.024 | 1.20e-01 |
BMI21 | LDpred2.Inf | LDpred1.10FCVal | 0.350 | 0.336 | 0.015 | 9.52e-04 | 0.319 | 0.313 | 0.006 | 5.03e-01 |
BMI21 | LDpred2.MultiPRS | LDpred1.10FCVal | 0.377 | 0.336 | 0.042 | 3.64e-02 | 0.342 | 0.313 | 0.029 | 2.66e-02 |
BMI21 | lassosum.10FCVal | LDpred1.10FCVal | 0.359 | 0.336 | 0.023 | 1.25e-03 | 0.333 | 0.313 | 0.020 | 1.70e-01 |
BMI21 | MegaPRS.10FCVal | LDpred1.10FCVal | 0.383 | 0.336 | 0.047 | 6.94e-12 | 0.356 | 0.313 | 0.043 | 1.61e-03 |
BMI21 | LDpred1.10FCVal | LDpred1.10FCVal | 0.336 | 0.336 | 0.000 | 1.00e+00 | 0.313 | 0.313 | 0.000 | 1.00e+00 |
BMI21 | lassosum.PseudoVal | LDpred1.10FCVal | 0.325 | 0.336 | -0.011 | 3.36e-01 | 0.268 | 0.313 | -0.045 | 5.34e-02 |
BMI21 | pT+clump.MultiPRS | LDpred1.10FCVal | 0.320 | 0.336 | -0.015 | 4.44e-01 | 0.283 | 0.313 | -0.030 | 9.06e-02 |
BMI21 | SBayesR.PseudoVal | LDpred1.10FCVal | 0.373 | 0.336 | 0.037 | 3.72e-09 | 0.338 | 0.313 | 0.025 | 4.83e-02 |
BMI21 | pT+clump.10FCVal | LDpred1.10FCVal | 0.312 | 0.336 | -0.023 | 5.67e-03 | 0.285 | 0.313 | -0.028 | 9.40e-02 |
BMI21 | LDpred1.MultiPRS | LDpred1.10FCVal | 0.348 | 0.336 | 0.013 | 5.29e-01 | 0.320 | 0.313 | 0.007 | 3.90e-01 |
BMI21 | All.MultiPRS | LDpred2.MultiPRS | 0.384 | 0.377 | 0.007 | 3.17e-02 | 0.356 | 0.342 | 0.014 | 3.14e-02 |
BMI21 | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.373 | 0.377 | -0.005 | 8.09e-01 | 0.338 | 0.342 | -0.004 | 4.91e-01 |
BMI21 | SBLUP.Inf | LDpred2.MultiPRS | 0.347 | 0.377 | -0.030 | 1.30e-01 | 0.311 | 0.342 | -0.032 | 5.34e-03 |
BMI21 | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.357 | 0.377 | -0.020 | 3.03e-01 | 0.320 | 0.342 | -0.022 | 3.38e-02 |
BMI21 | LDpred1.Inf | LDpred2.MultiPRS | 0.346 | 0.377 | -0.032 | 1.11e-01 | 0.316 | 0.342 | -0.026 | 2.44e-02 |
BMI21 | LDpred2.10FCVal | LDpred2.MultiPRS | 0.377 | 0.377 | 0.000 | 9.93e-01 | 0.336 | 0.342 | -0.006 | 1.84e-02 |
BMI21 | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.383 | 0.377 | 0.005 | 7.78e-01 | 0.356 | 0.342 | 0.013 | 6.56e-02 |
BMI21 | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.383 | 0.377 | 0.005 | 7.78e-01 | 0.356 | 0.342 | 0.013 | 6.56e-02 |
BMI21 | lassosum.MultiPRS | LDpred2.MultiPRS | 0.365 | 0.377 | -0.012 | 5.35e-01 | 0.337 | 0.342 | -0.005 | 6.11e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.383 | 0.377 | 0.006 | 6.95e-02 | 0.354 | 0.342 | 0.011 | 7.93e-02 |
BMI21 | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.377 | 0.377 | 0.000 | 1.00e+00 | 0.342 | 0.342 | 0.000 | 1.00e+00 |
BMI21 | LDpred2.Inf | LDpred2.MultiPRS | 0.350 | 0.377 | -0.027 | 1.73e-01 | 0.319 | 0.342 | -0.023 | 2.83e-02 |
BMI21 | pT+clump.10FCVal | LDpred2.MultiPRS | 0.312 | 0.377 | -0.065 | 1.19e-03 | 0.285 | 0.342 | -0.058 | 6.51e-04 |
BMI21 | lassosum.10FCVal | LDpred2.MultiPRS | 0.359 | 0.377 | -0.018 | 3.48e-01 | 0.333 | 0.342 | -0.009 | 3.35e-01 |
BMI21 | LDpred1.10FCVal | LDpred2.MultiPRS | 0.336 | 0.377 | -0.042 | 3.64e-02 | 0.313 | 0.342 | -0.029 | 2.66e-02 |
BMI21 | lassosum.PseudoVal | LDpred2.MultiPRS | 0.325 | 0.377 | -0.052 | 7.81e-03 | 0.268 | 0.342 | -0.074 | 4.64e-06 |
BMI21 | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.320 | 0.377 | -0.057 | 3.87e-03 | 0.283 | 0.342 | -0.059 | 1.06e-04 |
BMI21 | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.348 | 0.377 | -0.029 | 6.37e-08 | 0.320 | 0.342 | -0.022 | 3.75e-02 |
BMI21 | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.378 | 0.377 | 0.001 | 9.75e-01 | 0.348 | 0.342 | 0.006 | 5.86e-02 |
BMI21 | pT+clump.10FCVal | LDpred2.10FCVal | 0.312 | 0.377 | -0.065 | 9.82e-14 | 0.285 | 0.336 | -0.052 | 2.90e-03 |
BMI21 | SBayesR.PseudoVal | LDpred2.10FCVal | 0.373 | 0.377 | -0.005 | 1.59e-01 | 0.338 | 0.336 | 0.002 | 7.88e-01 |
BMI21 | lassosum.10FCVal | LDpred2.10FCVal | 0.359 | 0.377 | -0.018 | 1.57e-04 | 0.333 | 0.336 | -0.003 | 7.43e-01 |
BMI21 | MegaPRS.10FCVal | LDpred2.10FCVal | 0.383 | 0.377 | 0.006 | 1.33e-01 | 0.356 | 0.336 | 0.020 | 1.15e-02 |
BMI21 | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.383 | 0.377 | 0.006 | 1.33e-01 | 0.356 | 0.336 | 0.020 | 1.15e-02 |
BMI21 | SBLUP.Inf | LDpred2.10FCVal | 0.347 | 0.377 | -0.030 | 9.07e-07 | 0.311 | 0.336 | -0.026 | 3.72e-02 |
BMI21 | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.357 | 0.377 | -0.020 | 1.44e-04 | 0.320 | 0.336 | -0.016 | 1.42e-01 |
BMI21 | lassosum.PseudoVal | LDpred2.10FCVal | 0.325 | 0.377 | -0.052 | 9.26e-12 | 0.268 | 0.336 | -0.068 | 1.42e-05 |
BMI21 | LDpred1.10FCVal | LDpred2.10FCVal | 0.336 | 0.377 | -0.041 | 2.70e-09 | 0.313 | 0.336 | -0.023 | 9.86e-02 |
BMI21 | LDpred2.PseudoVal | LDpred2.10FCVal | 0.378 | 0.377 | 0.001 | 7.03e-01 | 0.348 | 0.336 | 0.012 | 4.57e-03 |
BMI21 | LDpred2.MultiPRS | LDpred2.10FCVal | 0.377 | 0.377 | 0.000 | 9.93e-01 | 0.342 | 0.336 | 0.006 | 1.84e-02 |
BMI21 | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.383 | 0.377 | 0.006 | 7.63e-01 | 0.354 | 0.336 | 0.018 | 1.23e-02 |
BMI21 | lassosum.MultiPRS | LDpred2.10FCVal | 0.365 | 0.377 | -0.012 | 5.43e-01 | 0.337 | 0.336 | 0.001 | 9.17e-01 |
BMI21 | LDpred2.Inf | LDpred2.10FCVal | 0.350 | 0.377 | -0.027 | 1.37e-06 | 0.319 | 0.336 | -0.017 | 1.39e-01 |
BMI21 | LDpred1.Inf | LDpred2.10FCVal | 0.346 | 0.377 | -0.031 | 2.22e-07 | 0.316 | 0.336 | -0.020 | 1.07e-01 |
BMI21 | All.MultiPRS | LDpred2.10FCVal | 0.384 | 0.377 | 0.007 | 7.28e-01 | 0.356 | 0.336 | 0.020 | 2.93e-03 |
BMI21 | LDpred2.10FCVal | LDpred2.10FCVal | 0.377 | 0.377 | 0.000 | 1.00e+00 | 0.336 | 0.336 | 0.000 | 1.00e+00 |
BMI21 | pT+clump.MultiPRS | LDpred2.10FCVal | 0.320 | 0.377 | -0.057 | 4.30e-03 | 0.283 | 0.336 | -0.053 | 5.66e-04 |
BMI21 | LDpred1.MultiPRS | LDpred2.10FCVal | 0.348 | 0.377 | -0.029 | 1.47e-01 | 0.320 | 0.336 | -0.016 | 1.62e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.383 | 0.378 | 0.005 | 7.94e-01 | 0.354 | 0.348 | 0.005 | 4.36e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.PseudoVal | 0.312 | 0.378 | -0.065 | 1.40e-15 | 0.285 | 0.348 | -0.064 | 9.00e-05 |
BMI21 | lassosum.10FCVal | LDpred2.PseudoVal | 0.359 | 0.378 | -0.019 | 3.52e-05 | 0.333 | 0.348 | -0.016 | 9.89e-02 |
BMI21 | lassosum.PseudoVal | LDpred2.PseudoVal | 0.325 | 0.378 | -0.053 | 1.40e-09 | 0.268 | 0.348 | -0.080 | 9.69e-06 |
BMI21 | LDpred2.Inf | LDpred2.PseudoVal | 0.350 | 0.378 | -0.028 | 2.23e-10 | 0.319 | 0.348 | -0.029 | 9.00e-04 |
BMI21 | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.357 | 0.378 | -0.021 | 4.87e-05 | 0.320 | 0.348 | -0.028 | 6.77e-03 |
BMI21 | lassosum.MultiPRS | LDpred2.PseudoVal | 0.365 | 0.378 | -0.013 | 5.16e-01 | 0.337 | 0.348 | -0.011 | 2.69e-01 |
BMI21 | LDpred2.10FCVal | LDpred2.PseudoVal | 0.377 | 0.378 | -0.001 | 7.03e-01 | 0.336 | 0.348 | -0.012 | 4.57e-03 |
BMI21 | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.378 | 0.378 | 0.000 | 1.00e+00 | 0.348 | 0.348 | 0.000 | 1.00e+00 |
BMI21 | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.373 | 0.378 | -0.005 | 9.83e-02 | 0.338 | 0.348 | -0.011 | 1.10e-01 |
BMI21 | All.MultiPRS | LDpred2.PseudoVal | 0.384 | 0.378 | 0.006 | 7.58e-01 | 0.356 | 0.348 | 0.007 | 2.80e-01 |
BMI21 | LDpred1.10FCVal | LDpred2.PseudoVal | 0.336 | 0.378 | -0.042 | 2.54e-12 | 0.313 | 0.348 | -0.035 | 3.12e-03 |
BMI21 | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.377 | 0.378 | -0.001 | 9.75e-01 | 0.342 | 0.348 | -0.006 | 5.86e-02 |
BMI21 | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.383 | 0.378 | 0.005 | 1.56e-01 | 0.356 | 0.348 | 0.007 | 2.97e-01 |
BMI21 | SBLUP.Inf | LDpred2.PseudoVal | 0.347 | 0.378 | -0.031 | 6.87e-10 | 0.311 | 0.348 | -0.038 | 1.29e-04 |
BMI21 | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.320 | 0.378 | -0.058 | 3.77e-03 | 0.283 | 0.348 | -0.065 | 2.59e-05 |
BMI21 | LDpred1.Inf | LDpred2.PseudoVal | 0.346 | 0.378 | -0.032 | 1.85e-10 | 0.316 | 0.348 | -0.033 | 1.68e-03 |
BMI21 | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.348 | 0.378 | -0.029 | 1.36e-01 | 0.320 | 0.348 | -0.029 | 2.62e-03 |
BMI21 | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.383 | 0.378 | 0.005 | 1.56e-01 | 0.356 | 0.348 | 0.007 | 2.97e-01 |
BMI21 | MegaPRS.MultiPRS | LDpred2.Inf | 0.383 | 0.350 | 0.033 | 9.91e-02 | 0.354 | 0.319 | 0.035 | 2.53e-03 |
BMI21 | LDpred2.Inf | LDpred2.Inf | 0.350 | 0.350 | 0.000 | 1.00e+00 | 0.319 | 0.319 | 0.000 | 1.00e+00 |
BMI21 | lassosum.10FCVal | LDpred2.Inf | 0.359 | 0.350 | 0.009 | 1.76e-01 | 0.333 | 0.319 | 0.014 | 2.89e-01 |
BMI21 | MegaPRS.PseudoVal | LDpred2.Inf | 0.383 | 0.350 | 0.032 | 9.42e-09 | 0.356 | 0.319 | 0.037 | 1.44e-03 |
BMI21 | LDpred2.10FCVal | LDpred2.Inf | 0.377 | 0.350 | 0.027 | 1.37e-06 | 0.336 | 0.319 | 0.017 | 1.39e-01 |
BMI21 | DBSLMM.PseudoVal | LDpred2.Inf | 0.357 | 0.350 | 0.007 | 2.63e-01 | 0.320 | 0.319 | 0.001 | 9.28e-01 |
BMI21 | lassosum.MultiPRS | LDpred2.Inf | 0.365 | 0.350 | 0.015 | 4.45e-01 | 0.337 | 0.319 | 0.018 | 2.08e-01 |
BMI21 | LDpred1.10FCVal | LDpred2.Inf | 0.336 | 0.350 | -0.015 | 9.52e-04 | 0.313 | 0.319 | -0.006 | 5.03e-01 |
BMI21 | LDpred2.MultiPRS | LDpred2.Inf | 0.377 | 0.350 | 0.027 | 1.73e-01 | 0.342 | 0.319 | 0.023 | 2.83e-02 |
BMI21 | SBLUP.Inf | LDpred2.Inf | 0.347 | 0.350 | -0.003 | 2.58e-01 | 0.311 | 0.319 | -0.008 | 1.29e-01 |
BMI21 | All.MultiPRS | LDpred2.Inf | 0.384 | 0.350 | 0.034 | 8.95e-02 | 0.356 | 0.319 | 0.037 | 3.53e-03 |
BMI21 | MegaPRS.10FCVal | LDpred2.Inf | 0.383 | 0.350 | 0.032 | 9.42e-09 | 0.356 | 0.319 | 0.037 | 1.44e-03 |
BMI21 | LDpred1.Inf | LDpred2.Inf | 0.346 | 0.350 | -0.005 | 8.99e-02 | 0.316 | 0.319 | -0.003 | 5.77e-01 |
BMI21 | LDpred2.PseudoVal | LDpred2.Inf | 0.378 | 0.350 | 0.028 | 2.23e-10 | 0.348 | 0.319 | 0.029 | 9.00e-04 |
BMI21 | pT+clump.MultiPRS | LDpred2.Inf | 0.320 | 0.350 | -0.030 | 1.35e-01 | 0.283 | 0.319 | -0.036 | 3.27e-02 |
BMI21 | SBayesR.PseudoVal | LDpred2.Inf | 0.373 | 0.350 | 0.022 | 1.30e-05 | 0.338 | 0.319 | 0.019 | 7.64e-02 |
BMI21 | lassosum.PseudoVal | LDpred2.Inf | 0.325 | 0.350 | -0.025 | 1.80e-02 | 0.268 | 0.319 | -0.051 | 2.38e-02 |
BMI21 | LDpred1.MultiPRS | LDpred2.Inf | 0.348 | 0.350 | -0.002 | 9.24e-01 | 0.320 | 0.319 | 0.001 | 9.01e-01 |
BMI21 | pT+clump.10FCVal | LDpred2.Inf | 0.312 | 0.350 | -0.038 | 1.76e-06 | 0.285 | 0.319 | -0.034 | 3.17e-02 |
BMI21 | All.MultiPRS | pT+clump.MultiPRS | 0.384 | 0.320 | 0.064 | 1.27e-03 | 0.356 | 0.283 | 0.073 | 4.08e-06 |
BMI21 | lassosum.10FCVal | pT+clump.MultiPRS | 0.359 | 0.320 | 0.039 | 5.38e-02 | 0.333 | 0.283 | 0.050 | 7.63e-04 |
BMI21 | LDpred1.Inf | pT+clump.MultiPRS | 0.346 | 0.320 | 0.025 | 2.08e-01 | 0.316 | 0.283 | 0.033 | 4.27e-02 |
BMI21 | LDpred2.10FCVal | pT+clump.MultiPRS | 0.377 | 0.320 | 0.057 | 4.30e-03 | 0.336 | 0.283 | 0.053 | 5.66e-04 |
BMI21 | SBLUP.Inf | pT+clump.MultiPRS | 0.347 | 0.320 | 0.027 | 1.80e-01 | 0.311 | 0.283 | 0.028 | 9.34e-02 |
BMI21 | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.357 | 0.320 | 0.037 | 6.66e-02 | 0.320 | 0.283 | 0.037 | 9.66e-03 |
BMI21 | lassosum.PseudoVal | pT+clump.MultiPRS | 0.325 | 0.320 | 0.005 | 8.16e-01 | 0.268 | 0.283 | -0.015 | 4.00e-01 |
BMI21 | LDpred1.10FCVal | pT+clump.MultiPRS | 0.336 | 0.320 | 0.015 | 4.44e-01 | 0.313 | 0.283 | 0.030 | 9.06e-02 |
BMI21 | pT+clump.10FCVal | pT+clump.MultiPRS | 0.312 | 0.320 | -0.008 | 7.00e-01 | 0.285 | 0.283 | 0.002 | 8.48e-01 |
BMI21 | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.373 | 0.320 | 0.052 | 8.71e-03 | 0.338 | 0.283 | 0.055 | 3.75e-05 |
BMI21 | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.383 | 0.320 | 0.063 | 1.47e-03 | 0.354 | 0.283 | 0.071 | 2.49e-06 |
BMI21 | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.348 | 0.320 | 0.028 | 1.60e-01 | 0.320 | 0.283 | 0.037 | 2.24e-02 |
BMI21 | LDpred2.Inf | pT+clump.MultiPRS | 0.350 | 0.320 | 0.030 | 1.35e-01 | 0.319 | 0.283 | 0.036 | 3.27e-02 |
BMI21 | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.320 | 0.320 | 0.000 | 1.00e+00 | 0.283 | 0.283 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.383 | 0.320 | 0.062 | 1.66e-03 | 0.356 | 0.283 | 0.073 | 2.35e-06 |
BMI21 | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.383 | 0.320 | 0.062 | 1.66e-03 | 0.356 | 0.283 | 0.073 | 2.35e-06 |
BMI21 | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.378 | 0.320 | 0.058 | 3.77e-03 | 0.348 | 0.283 | 0.065 | 2.59e-05 |
BMI21 | lassosum.MultiPRS | pT+clump.MultiPRS | 0.365 | 0.320 | 0.045 | 2.41e-02 | 0.337 | 0.283 | 0.054 | 6.29e-04 |
BMI21 | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.377 | 0.320 | 0.057 | 3.87e-03 | 0.342 | 0.283 | 0.059 | 1.06e-04 |
BMI21 | lassosum.10FCVal | pT+clump.10FCVal | 0.359 | 0.312 | 0.046 | 3.12e-09 | 0.333 | 0.285 | 0.048 | 2.17e-03 |
BMI21 | LDpred1.MultiPRS | pT+clump.10FCVal | 0.348 | 0.312 | 0.036 | 7.54e-02 | 0.320 | 0.285 | 0.035 | 2.55e-02 |
BMI21 | All.MultiPRS | pT+clump.10FCVal | 0.384 | 0.312 | 0.071 | 3.51e-04 | 0.356 | 0.285 | 0.071 | 3.44e-05 |
BMI21 | LDpred1.Inf | pT+clump.10FCVal | 0.346 | 0.312 | 0.033 | 1.48e-05 | 0.316 | 0.285 | 0.031 | 4.54e-02 |
BMI21 | LDpred2.MultiPRS | pT+clump.10FCVal | 0.377 | 0.312 | 0.065 | 1.19e-03 | 0.342 | 0.285 | 0.058 | 6.51e-04 |
BMI21 | LDpred2.10FCVal | pT+clump.10FCVal | 0.377 | 0.312 | 0.065 | 9.82e-14 | 0.336 | 0.285 | 0.052 | 2.90e-03 |
BMI21 | SBLUP.Inf | pT+clump.10FCVal | 0.347 | 0.312 | 0.035 | 5.52e-06 | 0.311 | 0.285 | 0.026 | 9.79e-02 |
BMI21 | SBayesR.PseudoVal | pT+clump.10FCVal | 0.373 | 0.312 | 0.060 | 8.61e-16 | 0.338 | 0.285 | 0.053 | 3.99e-04 |
BMI21 | lassosum.MultiPRS | pT+clump.10FCVal | 0.365 | 0.312 | 0.053 | 7.53e-03 | 0.337 | 0.285 | 0.053 | 2.36e-03 |
BMI21 | LDpred1.10FCVal | pT+clump.10FCVal | 0.336 | 0.312 | 0.023 | 5.67e-03 | 0.313 | 0.285 | 0.028 | 9.40e-02 |
BMI21 | lassosum.PseudoVal | pT+clump.10FCVal | 0.325 | 0.312 | 0.013 | 2.63e-01 | 0.268 | 0.285 | -0.017 | 4.65e-01 |
BMI21 | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.357 | 0.312 | 0.045 | 3.27e-08 | 0.320 | 0.285 | 0.036 | 2.72e-02 |
BMI21 | pT+clump.10FCVal | pT+clump.10FCVal | 0.312 | 0.312 | 0.000 | 1.00e+00 | 0.285 | 0.285 | 0.000 | 1.00e+00 |
BMI21 | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.383 | 0.312 | 0.070 | 1.13e-17 | 0.356 | 0.285 | 0.071 | 1.29e-05 |
BMI21 | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.383 | 0.312 | 0.071 | 4.23e-04 | 0.354 | 0.285 | 0.069 | 2.16e-05 |
BMI21 | LDpred2.Inf | pT+clump.10FCVal | 0.350 | 0.312 | 0.038 | 1.76e-06 | 0.319 | 0.285 | 0.034 | 3.17e-02 |
BMI21 | pT+clump.MultiPRS | pT+clump.10FCVal | 0.320 | 0.312 | 0.008 | 7.00e-01 | 0.283 | 0.285 | -0.002 | 8.48e-01 |
BMI21 | MegaPRS.10FCVal | pT+clump.10FCVal | 0.383 | 0.312 | 0.070 | 1.13e-17 | 0.356 | 0.285 | 0.071 | 1.29e-05 |
BMI21 | LDpred2.PseudoVal | pT+clump.10FCVal | 0.378 | 0.312 | 0.065 | 1.40e-15 | 0.348 | 0.285 | 0.064 | 9.00e-05 |
BMI21 | SBLUP.Inf | SBayesR.PseudoVal | 0.347 | 0.373 | -0.025 | 1.30e-06 | 0.311 | 0.338 | -0.027 | 1.03e-02 |
BMI21 | LDpred1.10FCVal | SBayesR.PseudoVal | 0.336 | 0.373 | -0.037 | 3.72e-09 | 0.313 | 0.338 | -0.025 | 4.83e-02 |
BMI21 | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.377 | 0.373 | 0.005 | 8.09e-01 | 0.342 | 0.338 | 0.004 | 4.91e-01 |
BMI21 | pT+clump.10FCVal | SBayesR.PseudoVal | 0.312 | 0.373 | -0.060 | 8.61e-16 | 0.285 | 0.338 | -0.053 | 3.99e-04 |
BMI21 | All.MultiPRS | SBayesR.PseudoVal | 0.384 | 0.373 | 0.011 | 5.62e-01 | 0.356 | 0.338 | 0.018 | 2.40e-02 |
BMI21 | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.383 | 0.373 | 0.010 | 6.67e-03 | 0.356 | 0.338 | 0.018 | 2.29e-02 |
BMI21 | LDpred2.10FCVal | SBayesR.PseudoVal | 0.377 | 0.373 | 0.005 | 1.59e-01 | 0.336 | 0.338 | -0.002 | 7.88e-01 |
BMI21 | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.378 | 0.373 | 0.005 | 9.83e-02 | 0.348 | 0.338 | 0.011 | 1.10e-01 |
BMI21 | lassosum.PseudoVal | SBayesR.PseudoVal | 0.325 | 0.373 | -0.048 | 5.19e-10 | 0.268 | 0.338 | -0.070 | 1.27e-05 |
BMI21 | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.383 | 0.373 | 0.010 | 5.94e-01 | 0.354 | 0.338 | 0.016 | 3.29e-02 |
BMI21 | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.348 | 0.373 | -0.024 | 2.22e-01 | 0.320 | 0.338 | -0.018 | 7.63e-02 |
BMI21 | LDpred2.Inf | SBayesR.PseudoVal | 0.350 | 0.373 | -0.022 | 1.30e-05 | 0.319 | 0.338 | -0.019 | 7.64e-02 |
BMI21 | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.357 | 0.373 | -0.016 | 3.39e-04 | 0.320 | 0.338 | -0.018 | 4.58e-02 |
BMI21 | lassosum.10FCVal | SBayesR.PseudoVal | 0.359 | 0.373 | -0.014 | 3.06e-03 | 0.333 | 0.338 | -0.005 | 6.01e-01 |
BMI21 | LDpred1.Inf | SBayesR.PseudoVal | 0.346 | 0.373 | -0.027 | 1.97e-07 | 0.316 | 0.338 | -0.022 | 3.80e-02 |
BMI21 | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.383 | 0.373 | 0.010 | 6.67e-03 | 0.356 | 0.338 | 0.018 | 2.29e-02 |
BMI21 | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.373 | 0.373 | 0.000 | 1.00e+00 | 0.338 | 0.338 | 0.000 | 1.00e+00 |
BMI21 | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.320 | 0.373 | -0.052 | 8.71e-03 | 0.283 | 0.338 | -0.055 | 3.75e-05 |
BMI21 | lassosum.MultiPRS | SBayesR.PseudoVal | 0.365 | 0.373 | -0.007 | 7.08e-01 | 0.337 | 0.338 | -0.001 | 9.43e-01 |
BMI21 | MegaPRS.10FCVal | SBLUP.Inf | 0.383 | 0.347 | 0.036 | 2.40e-09 | 0.356 | 0.311 | 0.045 | 1.47e-04 |
BMI21 | LDpred1.10FCVal | SBLUP.Inf | 0.336 | 0.347 | -0.011 | 8.16e-03 | 0.313 | 0.311 | 0.002 | 7.98e-01 |
BMI21 | LDpred2.MultiPRS | SBLUP.Inf | 0.377 | 0.347 | 0.030 | 1.30e-01 | 0.342 | 0.311 | 0.032 | 5.34e-03 |
BMI21 | LDpred2.Inf | SBLUP.Inf | 0.350 | 0.347 | 0.003 | 2.58e-01 | 0.319 | 0.311 | 0.008 | 1.29e-01 |
BMI21 | All.MultiPRS | SBLUP.Inf | 0.384 | 0.347 | 0.037 | 6.41e-02 | 0.356 | 0.311 | 0.045 | 4.72e-04 |
BMI21 | lassosum.10FCVal | SBLUP.Inf | 0.359 | 0.347 | 0.012 | 6.55e-02 | 0.333 | 0.311 | 0.022 | 7.99e-02 |
BMI21 | lassosum.PseudoVal | SBLUP.Inf | 0.325 | 0.347 | -0.022 | 3.75e-02 | 0.268 | 0.311 | -0.043 | 5.49e-02 |
BMI21 | SBLUP.Inf | SBLUP.Inf | 0.347 | 0.347 | 0.000 | 1.00e+00 | 0.311 | 0.311 | 0.000 | 1.00e+00 |
BMI21 | pT+clump.10FCVal | SBLUP.Inf | 0.312 | 0.347 | -0.035 | 5.52e-06 | 0.285 | 0.311 | -0.026 | 9.79e-02 |
BMI21 | DBSLMM.PseudoVal | SBLUP.Inf | 0.357 | 0.347 | 0.010 | 1.03e-01 | 0.320 | 0.311 | 0.010 | 4.23e-01 |
BMI21 | MegaPRS.MultiPRS | SBLUP.Inf | 0.383 | 0.347 | 0.036 | 7.15e-02 | 0.354 | 0.311 | 0.043 | 2.78e-04 |
BMI21 | LDpred1.MultiPRS | SBLUP.Inf | 0.348 | 0.347 | 0.001 | 9.54e-01 | 0.320 | 0.311 | 0.009 | 2.02e-01 |
BMI21 | LDpred2.10FCVal | SBLUP.Inf | 0.377 | 0.347 | 0.030 | 9.07e-07 | 0.336 | 0.311 | 0.026 | 3.72e-02 |
BMI21 | SBayesR.PseudoVal | SBLUP.Inf | 0.373 | 0.347 | 0.025 | 1.30e-06 | 0.338 | 0.311 | 0.027 | 1.03e-02 |
BMI21 | MegaPRS.PseudoVal | SBLUP.Inf | 0.383 | 0.347 | 0.036 | 2.40e-09 | 0.356 | 0.311 | 0.045 | 1.47e-04 |
BMI21 | LDpred1.Inf | SBLUP.Inf | 0.346 | 0.347 | -0.002 | 6.10e-01 | 0.316 | 0.311 | 0.005 | 4.37e-01 |
BMI21 | LDpred2.PseudoVal | SBLUP.Inf | 0.378 | 0.347 | 0.031 | 6.87e-10 | 0.348 | 0.311 | 0.038 | 1.29e-04 |
BMI21 | lassosum.MultiPRS | SBLUP.Inf | 0.365 | 0.347 | 0.018 | 3.57e-01 | 0.337 | 0.311 | 0.027 | 6.04e-02 |
BMI21 | pT+clump.MultiPRS | SBLUP.Inf | 0.320 | 0.347 | -0.027 | 1.80e-01 | 0.283 | 0.311 | -0.028 | 9.34e-02 |
GCSE | LDpred1.10FCVal | All.MultiPRS | 0.405 | 0.426 | -0.021 | 1.86e-01 | 0.337 | 0.363 | -0.026 | 1.99e-03 |
GCSE | pT+clump.10FCVal | All.MultiPRS | 0.374 | 0.426 | -0.052 | 1.07e-03 | 0.315 | 0.363 | -0.048 | 1.53e-04 |
GCSE | LDpred1.MultiPRS | All.MultiPRS | 0.414 | 0.426 | -0.013 | 4.20e-01 | 0.341 | 0.363 | -0.022 | 5.18e-04 |
GCSE | LDpred2.Inf | All.MultiPRS | 0.413 | 0.426 | -0.013 | 4.12e-01 | 0.343 | 0.363 | -0.020 | 1.21e-03 |
GCSE | MegaPRS.PseudoVal | All.MultiPRS | 0.418 | 0.426 | -0.008 | 5.91e-01 | 0.363 | 0.363 | 0.000 | 9.40e-01 |
GCSE | LDpred2.10FCVal | All.MultiPRS | 0.423 | 0.426 | -0.004 | 8.05e-01 | 0.358 | 0.363 | -0.005 | 2.68e-01 |
GCSE | LDpred2.MultiPRS | All.MultiPRS | 0.423 | 0.426 | -0.003 | 8.23e-02 | 0.356 | 0.363 | -0.007 | 4.19e-02 |
GCSE | lassosum.10FCVal | All.MultiPRS | 0.410 | 0.426 | -0.016 | 3.06e-01 | 0.355 | 0.363 | -0.008 | 2.25e-01 |
GCSE | LDpred1.Inf | All.MultiPRS | 0.409 | 0.426 | -0.017 | 2.79e-01 | 0.337 | 0.363 | -0.027 | 2.46e-04 |
GCSE | lassosum.MultiPRS | All.MultiPRS | 0.412 | 0.426 | -0.015 | 4.23e-07 | 0.357 | 0.363 | -0.006 | 3.19e-01 |
GCSE | MegaPRS.10FCVal | All.MultiPRS | 0.424 | 0.426 | -0.002 | 8.77e-01 | 0.363 | 0.363 | 0.000 | 9.74e-01 |
GCSE | All.MultiPRS | All.MultiPRS | 0.426 | 0.426 | 0.000 | 1.00e+00 | 0.363 | 0.363 | 0.000 | 1.00e+00 |
GCSE | SBayesR.PseudoVal | All.MultiPRS | 0.420 | 0.426 | -0.007 | 6.77e-01 | 0.350 | 0.363 | -0.013 | 9.29e-03 |
GCSE | MegaPRS.MultiPRS | All.MultiPRS | 0.425 | 0.426 | -0.001 | 9.48e-01 | 0.364 | 0.363 | 0.001 | 7.30e-01 |
GCSE | pT+clump.MultiPRS | All.MultiPRS | 0.382 | 0.426 | -0.045 | 5.51e-03 | 0.330 | 0.363 | -0.033 | 2.44e-03 |
GCSE | lassosum.PseudoVal | All.MultiPRS | 0.338 | 0.426 | -0.088 | 5.58e-08 | 0.286 | 0.363 | -0.077 | 5.06e-07 |
GCSE | LDpred2.PseudoVal | All.MultiPRS | 0.422 | 0.426 | -0.004 | 7.82e-01 | 0.358 | 0.363 | -0.005 | 2.09e-01 |
GCSE | DBSLMM.PseudoVal | All.MultiPRS | 0.402 | 0.426 | -0.024 | 1.30e-01 | 0.339 | 0.363 | -0.024 | 1.33e-03 |
GCSE | SBLUP.Inf | All.MultiPRS | 0.412 | 0.426 | -0.015 | 3.54e-01 | 0.344 | 0.363 | -0.019 | 4.76e-03 |
GCSE | LDpred1.Inf | DBSLMM.PseudoVal | 0.409 | 0.402 | 0.007 | 1.11e-01 | 0.337 | 0.339 | -0.002 | 8.19e-01 |
GCSE | LDpred2.Inf | DBSLMM.PseudoVal | 0.413 | 0.402 | 0.011 | 9.10e-03 | 0.343 | 0.339 | 0.004 | 6.60e-01 |
GCSE | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.423 | 0.402 | 0.021 | 1.84e-01 | 0.356 | 0.339 | 0.018 | 1.77e-02 |
GCSE | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.374 | 0.402 | -0.028 | 2.01e-05 | 0.315 | 0.339 | -0.024 | 8.81e-02 |
GCSE | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.420 | 0.402 | 0.017 | 1.24e-06 | 0.350 | 0.339 | 0.011 | 1.37e-01 |
GCSE | All.MultiPRS | DBSLMM.PseudoVal | 0.426 | 0.402 | 0.024 | 1.30e-01 | 0.363 | 0.339 | 0.024 | 1.33e-03 |
GCSE | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.424 | 0.402 | 0.022 | 5.36e-08 | 0.363 | 0.339 | 0.025 | 2.79e-03 |
GCSE | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.425 | 0.402 | 0.023 | 1.52e-01 | 0.364 | 0.339 | 0.025 | 1.82e-03 |
GCSE | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.422 | 0.402 | 0.020 | 3.13e-07 | 0.358 | 0.339 | 0.019 | 1.67e-02 |
GCSE | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.338 | 0.402 | -0.064 | 1.41e-19 | 0.286 | 0.339 | -0.052 | 3.67e-04 |
GCSE | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.382 | 0.402 | -0.021 | 2.04e-01 | 0.330 | 0.339 | -0.009 | 4.34e-01 |
GCSE | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.418 | 0.402 | 0.016 | 4.15e-04 | 0.363 | 0.339 | 0.024 | 9.32e-03 |
GCSE | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.412 | 0.402 | 0.009 | 5.61e-01 | 0.357 | 0.339 | 0.018 | 3.52e-02 |
GCSE | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.423 | 0.402 | 0.020 | 2.79e-07 | 0.358 | 0.339 | 0.020 | 1.83e-02 |
GCSE | lassosum.10FCVal | DBSLMM.PseudoVal | 0.410 | 0.402 | 0.008 | 7.96e-02 | 0.355 | 0.339 | 0.016 | 8.16e-02 |
GCSE | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.405 | 0.402 | 0.003 | 5.35e-01 | 0.337 | 0.339 | -0.002 | 8.64e-01 |
GCSE | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.402 | 0.402 | 0.000 | 1.00e+00 | 0.339 | 0.339 | 0.000 | 1.00e+00 |
GCSE | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.414 | 0.402 | 0.011 | 4.92e-01 | 0.341 | 0.339 | 0.002 | 7.91e-01 |
GCSE | SBLUP.Inf | DBSLMM.PseudoVal | 0.412 | 0.402 | 0.009 | 2.45e-02 | 0.344 | 0.339 | 0.006 | 5.25e-01 |
GCSE | SBayesR.PseudoVal | lassosum.MultiPRS | 0.420 | 0.412 | 0.008 | 6.05e-01 | 0.350 | 0.357 | -0.007 | 2.72e-01 |
GCSE | LDpred1.Inf | lassosum.MultiPRS | 0.409 | 0.412 | -0.002 | 8.81e-01 | 0.337 | 0.357 | -0.021 | 1.33e-02 |
GCSE | MegaPRS.10FCVal | lassosum.MultiPRS | 0.424 | 0.412 | 0.012 | 4.37e-01 | 0.363 | 0.357 | 0.006 | 3.60e-01 |
GCSE | LDpred2.MultiPRS | lassosum.MultiPRS | 0.423 | 0.412 | 0.012 | 4.53e-05 | 0.356 | 0.357 | -0.001 | 8.81e-01 |
GCSE | LDpred2.PseudoVal | lassosum.MultiPRS | 0.422 | 0.412 | 0.010 | 5.12e-01 | 0.358 | 0.357 | 0.001 | 8.92e-01 |
GCSE | LDpred2.10FCVal | lassosum.MultiPRS | 0.423 | 0.412 | 0.011 | 4.92e-01 | 0.358 | 0.357 | 0.001 | 8.41e-01 |
GCSE | pT+clump.MultiPRS | lassosum.MultiPRS | 0.382 | 0.412 | -0.030 | 6.39e-02 | 0.330 | 0.357 | -0.027 | 1.72e-02 |
GCSE | lassosum.MultiPRS | lassosum.MultiPRS | 0.412 | 0.412 | 0.000 | 1.00e+00 | 0.357 | 0.357 | 0.000 | 1.00e+00 |
GCSE | lassosum.PseudoVal | lassosum.MultiPRS | 0.338 | 0.412 | -0.074 | 6.81e-06 | 0.286 | 0.357 | -0.071 | 2.43e-06 |
GCSE | LDpred1.MultiPRS | lassosum.MultiPRS | 0.414 | 0.412 | 0.002 | 9.04e-01 | 0.341 | 0.357 | -0.016 | 5.37e-02 |
GCSE | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.425 | 0.412 | 0.014 | 3.86e-01 | 0.364 | 0.357 | 0.007 | 2.93e-01 |
GCSE | LDpred1.10FCVal | lassosum.MultiPRS | 0.405 | 0.412 | -0.006 | 6.95e-01 | 0.337 | 0.357 | -0.020 | 3.66e-02 |
GCSE | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.418 | 0.412 | 0.006 | 6.93e-01 | 0.363 | 0.357 | 0.006 | 4.30e-01 |
GCSE | pT+clump.10FCVal | lassosum.MultiPRS | 0.374 | 0.412 | -0.038 | 1.93e-02 | 0.315 | 0.357 | -0.042 | 1.21e-03 |
GCSE | lassosum.10FCVal | lassosum.MultiPRS | 0.410 | 0.412 | -0.001 | 9.27e-01 | 0.355 | 0.357 | -0.002 | 3.85e-01 |
GCSE | SBLUP.Inf | lassosum.MultiPRS | 0.412 | 0.412 | 0.000 | 9.97e-01 | 0.344 | 0.357 | -0.013 | 1.08e-01 |
GCSE | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.402 | 0.412 | -0.009 | 5.61e-01 | 0.339 | 0.357 | -0.018 | 3.52e-02 |
GCSE | All.MultiPRS | lassosum.MultiPRS | 0.426 | 0.412 | 0.015 | 4.23e-07 | 0.363 | 0.357 | 0.006 | 3.19e-01 |
GCSE | LDpred2.Inf | lassosum.MultiPRS | 0.413 | 0.412 | 0.002 | 9.11e-01 | 0.343 | 0.357 | -0.014 | 7.59e-02 |
GCSE | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.418 | 0.338 | 0.080 | 1.90e-23 | 0.363 | 0.286 | 0.076 | 3.07e-06 |
GCSE | LDpred2.PseudoVal | lassosum.PseudoVal | 0.422 | 0.338 | 0.084 | 7.36e-28 | 0.358 | 0.286 | 0.072 | 6.49e-06 |
GCSE | LDpred1.MultiPRS | lassosum.PseudoVal | 0.414 | 0.338 | 0.076 | 5.44e-06 | 0.341 | 0.286 | 0.055 | 2.97e-03 |
GCSE | lassosum.PseudoVal | lassosum.PseudoVal | 0.338 | 0.338 | 0.000 | 1.00e+00 | 0.286 | 0.286 | 0.000 | 1.00e+00 |
GCSE | LDpred2.Inf | lassosum.PseudoVal | 0.413 | 0.338 | 0.075 | 1.05e-16 | 0.343 | 0.286 | 0.056 | 2.98e-03 |
GCSE | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.402 | 0.338 | 0.064 | 1.41e-19 | 0.339 | 0.286 | 0.052 | 3.67e-04 |
GCSE | SBLUP.Inf | lassosum.PseudoVal | 0.412 | 0.338 | 0.074 | 2.40e-16 | 0.344 | 0.286 | 0.058 | 2.01e-03 |
GCSE | LDpred2.MultiPRS | lassosum.PseudoVal | 0.423 | 0.338 | 0.086 | 1.53e-07 | 0.356 | 0.286 | 0.070 | 4.48e-06 |
GCSE | pT+clump.10FCVal | lassosum.PseudoVal | 0.374 | 0.338 | 0.036 | 2.59e-04 | 0.315 | 0.286 | 0.029 | 1.66e-01 |
GCSE | LDpred1.Inf | lassosum.PseudoVal | 0.409 | 0.338 | 0.071 | 1.65e-15 | 0.337 | 0.286 | 0.050 | 7.33e-03 |
GCSE | lassosum.MultiPRS | lassosum.PseudoVal | 0.412 | 0.338 | 0.074 | 6.81e-06 | 0.357 | 0.286 | 0.071 | 2.43e-06 |
GCSE | MegaPRS.10FCVal | lassosum.PseudoVal | 0.424 | 0.338 | 0.086 | 1.91e-28 | 0.363 | 0.286 | 0.077 | 1.38e-06 |
GCSE | All.MultiPRS | lassosum.PseudoVal | 0.426 | 0.338 | 0.088 | 5.58e-08 | 0.363 | 0.286 | 0.077 | 5.06e-07 |
GCSE | SBayesR.PseudoVal | lassosum.PseudoVal | 0.420 | 0.338 | 0.082 | 1.45e-31 | 0.350 | 0.286 | 0.064 | 1.38e-05 |
GCSE | lassosum.10FCVal | lassosum.PseudoVal | 0.410 | 0.338 | 0.072 | 5.95e-22 | 0.355 | 0.286 | 0.069 | 1.47e-05 |
GCSE | pT+clump.MultiPRS | lassosum.PseudoVal | 0.382 | 0.338 | 0.044 | 9.39e-03 | 0.330 | 0.286 | 0.044 | 1.03e-02 |
GCSE | LDpred1.10FCVal | lassosum.PseudoVal | 0.405 | 0.338 | 0.067 | 3.30e-13 | 0.337 | 0.286 | 0.051 | 9.42e-03 |
GCSE | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.425 | 0.338 | 0.087 | 9.21e-08 | 0.364 | 0.286 | 0.078 | 7.95e-07 |
GCSE | LDpred2.10FCVal | lassosum.PseudoVal | 0.423 | 0.338 | 0.085 | 2.20e-29 | 0.358 | 0.286 | 0.072 | 4.10e-06 |
GCSE | lassosum.10FCVal | lassosum.10FCVal | 0.410 | 0.410 | 0.000 | 1.00e+00 | 0.355 | 0.355 | 0.000 | 1.00e+00 |
GCSE | pT+clump.MultiPRS | lassosum.10FCVal | 0.382 | 0.410 | -0.029 | 8.07e-02 | 0.330 | 0.355 | -0.025 | 2.75e-02 |
GCSE | LDpred2.MultiPRS | lassosum.10FCVal | 0.423 | 0.410 | 0.013 | 4.02e-01 | 0.356 | 0.355 | 0.001 | 8.68e-01 |
GCSE | SBayesR.PseudoVal | lassosum.10FCVal | 0.420 | 0.410 | 0.010 | 5.89e-03 | 0.350 | 0.355 | -0.005 | 4.88e-01 |
GCSE | LDpred2.10FCVal | lassosum.10FCVal | 0.423 | 0.410 | 0.012 | 6.62e-05 | 0.358 | 0.355 | 0.003 | 6.23e-01 |
GCSE | SBLUP.Inf | lassosum.10FCVal | 0.412 | 0.410 | 0.002 | 7.09e-01 | 0.344 | 0.355 | -0.011 | 2.09e-01 |
GCSE | lassosum.MultiPRS | lassosum.10FCVal | 0.412 | 0.410 | 0.001 | 9.27e-01 | 0.357 | 0.355 | 0.002 | 3.85e-01 |
GCSE | LDpred2.PseudoVal | lassosum.10FCVal | 0.422 | 0.410 | 0.012 | 2.61e-04 | 0.358 | 0.355 | 0.003 | 6.71e-01 |
GCSE | LDpred1.MultiPRS | lassosum.10FCVal | 0.414 | 0.410 | 0.003 | 8.35e-01 | 0.341 | 0.355 | -0.014 | 1.17e-01 |
GCSE | LDpred2.Inf | lassosum.10FCVal | 0.413 | 0.410 | 0.003 | 4.34e-01 | 0.343 | 0.355 | -0.012 | 1.54e-01 |
GCSE | LDpred1.10FCVal | lassosum.10FCVal | 0.405 | 0.410 | -0.005 | 3.08e-01 | 0.337 | 0.355 | -0.018 | 7.39e-02 |
GCSE | MegaPRS.MultiPRS | lassosum.10FCVal | 0.425 | 0.410 | 0.015 | 3.41e-01 | 0.364 | 0.355 | 0.009 | 2.04e-01 |
GCSE | pT+clump.10FCVal | lassosum.10FCVal | 0.374 | 0.410 | -0.036 | 1.98e-09 | 0.315 | 0.355 | -0.040 | 1.58e-03 |
GCSE | All.MultiPRS | lassosum.10FCVal | 0.426 | 0.410 | 0.016 | 3.06e-01 | 0.363 | 0.355 | 0.008 | 2.25e-01 |
GCSE | MegaPRS.PseudoVal | lassosum.10FCVal | 0.418 | 0.410 | 0.008 | 5.37e-02 | 0.363 | 0.355 | 0.008 | 3.54e-01 |
GCSE | DBSLMM.PseudoVal | lassosum.10FCVal | 0.402 | 0.410 | -0.008 | 7.96e-02 | 0.339 | 0.355 | -0.016 | 8.16e-02 |
GCSE | MegaPRS.10FCVal | lassosum.10FCVal | 0.424 | 0.410 | 0.014 | 1.19e-04 | 0.363 | 0.355 | 0.008 | 2.63e-01 |
GCSE | lassosum.PseudoVal | lassosum.10FCVal | 0.338 | 0.410 | -0.072 | 5.95e-22 | 0.286 | 0.355 | -0.069 | 1.47e-05 |
GCSE | LDpred1.Inf | lassosum.10FCVal | 0.409 | 0.410 | -0.001 | 8.28e-01 | 0.337 | 0.355 | -0.019 | 3.95e-02 |
GCSE | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.418 | 0.425 | -0.007 | 6.39e-01 | 0.363 | 0.364 | -0.001 | 7.85e-01 |
GCSE | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.402 | 0.425 | -0.023 | 1.52e-01 | 0.339 | 0.364 | -0.025 | 1.82e-03 |
GCSE | SBLUP.Inf | MegaPRS.MultiPRS | 0.412 | 0.425 | -0.014 | 3.92e-01 | 0.344 | 0.364 | -0.020 | 4.61e-03 |
GCSE | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.423 | 0.425 | -0.002 | 9.04e-01 | 0.356 | 0.364 | -0.008 | 1.08e-01 |
GCSE | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.374 | 0.425 | -0.051 | 1.42e-03 | 0.315 | 0.364 | -0.049 | 1.79e-04 |
GCSE | LDpred1.Inf | MegaPRS.MultiPRS | 0.409 | 0.425 | -0.016 | 3.13e-01 | 0.337 | 0.364 | -0.027 | 2.58e-04 |
GCSE | LDpred2.Inf | MegaPRS.MultiPRS | 0.413 | 0.425 | -0.012 | 4.54e-01 | 0.343 | 0.364 | -0.021 | 1.39e-03 |
GCSE | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.424 | 0.425 | -0.001 | 9.29e-01 | 0.363 | 0.364 | -0.001 | 7.23e-01 |
GCSE | All.MultiPRS | MegaPRS.MultiPRS | 0.426 | 0.425 | 0.001 | 9.48e-01 | 0.363 | 0.364 | -0.001 | 7.30e-01 |
GCSE | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.420 | 0.425 | -0.006 | 7.27e-01 | 0.350 | 0.364 | -0.014 | 1.15e-02 |
GCSE | lassosum.10FCVal | MegaPRS.MultiPRS | 0.410 | 0.425 | -0.015 | 3.41e-01 | 0.355 | 0.364 | -0.009 | 2.04e-01 |
GCSE | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.382 | 0.425 | -0.044 | 6.39e-03 | 0.330 | 0.364 | -0.034 | 2.91e-03 |
GCSE | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.412 | 0.425 | -0.014 | 3.86e-01 | 0.357 | 0.364 | -0.007 | 2.93e-01 |
GCSE | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.422 | 0.425 | -0.003 | 8.33e-01 | 0.358 | 0.364 | -0.006 | 2.24e-01 |
GCSE | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.423 | 0.425 | -0.003 | 8.56e-01 | 0.358 | 0.364 | -0.006 | 2.92e-01 |
GCSE | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.338 | 0.425 | -0.087 | 9.21e-08 | 0.286 | 0.364 | -0.078 | 7.95e-07 |
GCSE | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.405 | 0.425 | -0.020 | 2.11e-01 | 0.337 | 0.364 | -0.027 | 1.71e-03 |
GCSE | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.425 | 0.425 | 0.000 | 1.00e+00 | 0.364 | 0.364 | 0.000 | 1.00e+00 |
GCSE | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.414 | 0.425 | -0.012 | 4.59e-01 | 0.341 | 0.364 | -0.023 | 1.72e-03 |
GCSE | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.418 | 0.418 | 0.000 | 1.00e+00 | 0.363 | 0.363 | 0.000 | 1.00e+00 |
GCSE | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.423 | 0.418 | 0.005 | 1.77e-01 | 0.358 | 0.363 | -0.004 | 5.28e-01 |
GCSE | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.414 | 0.418 | -0.004 | 7.89e-01 | 0.341 | 0.363 | -0.022 | 3.31e-03 |
GCSE | LDpred2.Inf | MegaPRS.PseudoVal | 0.413 | 0.418 | -0.004 | 1.59e-01 | 0.343 | 0.363 | -0.020 | 2.86e-03 |
GCSE | LDpred1.Inf | MegaPRS.PseudoVal | 0.409 | 0.418 | -0.009 | 1.02e-02 | 0.337 | 0.363 | -0.026 | 2.38e-04 |
GCSE | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.412 | 0.418 | -0.006 | 6.93e-01 | 0.357 | 0.363 | -0.006 | 4.30e-01 |
GCSE | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.424 | 0.418 | 0.006 | 1.44e-03 | 0.363 | 0.363 | 0.000 | 9.02e-01 |
GCSE | All.MultiPRS | MegaPRS.PseudoVal | 0.426 | 0.418 | 0.008 | 5.91e-01 | 0.363 | 0.363 | 0.000 | 9.40e-01 |
GCSE | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.420 | 0.418 | 0.002 | 5.74e-01 | 0.350 | 0.363 | -0.013 | 6.88e-02 |
GCSE | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.402 | 0.418 | -0.016 | 4.15e-04 | 0.339 | 0.363 | -0.024 | 9.32e-03 |
GCSE | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.382 | 0.418 | -0.036 | 2.61e-02 | 0.330 | 0.363 | -0.033 | 8.00e-03 |
GCSE | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.338 | 0.418 | -0.080 | 1.90e-23 | 0.286 | 0.363 | -0.076 | 3.07e-06 |
GCSE | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.422 | 0.418 | 0.004 | 2.38e-01 | 0.358 | 0.363 | -0.005 | 5.11e-01 |
GCSE | lassosum.10FCVal | MegaPRS.PseudoVal | 0.410 | 0.418 | -0.008 | 5.37e-02 | 0.355 | 0.363 | -0.008 | 3.54e-01 |
GCSE | SBLUP.Inf | MegaPRS.PseudoVal | 0.412 | 0.418 | -0.006 | 5.47e-02 | 0.344 | 0.363 | -0.018 | 6.35e-03 |
GCSE | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.405 | 0.418 | -0.013 | 1.67e-03 | 0.337 | 0.363 | -0.026 | 2.32e-03 |
GCSE | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.374 | 0.418 | -0.044 | 4.03e-11 | 0.315 | 0.363 | -0.048 | 6.21e-04 |
GCSE | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.423 | 0.418 | 0.006 | 7.24e-01 | 0.356 | 0.363 | -0.007 | 3.37e-01 |
GCSE | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.425 | 0.418 | 0.007 | 6.39e-01 | 0.364 | 0.363 | 0.001 | 7.85e-01 |
GCSE | lassosum.10FCVal | MegaPRS.10FCVal | 0.410 | 0.424 | -0.014 | 1.19e-04 | 0.355 | 0.363 | -0.008 | 2.63e-01 |
GCSE | SBLUP.Inf | MegaPRS.10FCVal | 0.412 | 0.424 | -0.012 | 2.37e-04 | 0.344 | 0.363 | -0.019 | 5.87e-03 |
GCSE | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.420 | 0.424 | -0.004 | 1.35e-01 | 0.350 | 0.363 | -0.013 | 1.76e-02 |
GCSE | All.MultiPRS | MegaPRS.10FCVal | 0.426 | 0.424 | 0.002 | 8.77e-01 | 0.363 | 0.363 | 0.000 | 9.74e-01 |
GCSE | LDpred2.Inf | MegaPRS.10FCVal | 0.413 | 0.424 | -0.011 | 9.93e-04 | 0.343 | 0.363 | -0.021 | 2.04e-03 |
GCSE | lassosum.MultiPRS | MegaPRS.10FCVal | 0.412 | 0.424 | -0.012 | 4.37e-01 | 0.357 | 0.363 | -0.006 | 3.60e-01 |
GCSE | LDpred2.10FCVal | MegaPRS.10FCVal | 0.423 | 0.424 | -0.001 | 6.04e-01 | 0.358 | 0.363 | -0.005 | 3.85e-01 |
GCSE | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.414 | 0.424 | -0.010 | 5.19e-01 | 0.341 | 0.363 | -0.022 | 2.30e-03 |
GCSE | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.422 | 0.424 | -0.002 | 4.67e-01 | 0.358 | 0.363 | -0.005 | 3.22e-01 |
GCSE | LDpred1.10FCVal | MegaPRS.10FCVal | 0.405 | 0.424 | -0.019 | 3.67e-06 | 0.337 | 0.363 | -0.026 | 2.12e-03 |
GCSE | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.382 | 0.424 | -0.042 | 9.31e-03 | 0.330 | 0.363 | -0.033 | 4.16e-03 |
GCSE | pT+clump.10FCVal | MegaPRS.10FCVal | 0.374 | 0.424 | -0.050 | 6.51e-15 | 0.315 | 0.363 | -0.048 | 2.66e-04 |
GCSE | lassosum.PseudoVal | MegaPRS.10FCVal | 0.338 | 0.424 | -0.086 | 1.91e-28 | 0.286 | 0.363 | -0.077 | 1.38e-06 |
GCSE | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.418 | 0.424 | -0.006 | 1.44e-03 | 0.363 | 0.363 | 0.000 | 9.02e-01 |
GCSE | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.425 | 0.424 | 0.001 | 9.29e-01 | 0.364 | 0.363 | 0.001 | 7.23e-01 |
GCSE | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.424 | 0.424 | 0.000 | 1.00e+00 | 0.363 | 0.363 | 0.000 | 1.00e+00 |
GCSE | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.423 | 0.424 | 0.000 | 9.76e-01 | 0.356 | 0.363 | -0.007 | 1.81e-01 |
GCSE | LDpred1.Inf | MegaPRS.10FCVal | 0.409 | 0.424 | -0.015 | 2.54e-05 | 0.337 | 0.363 | -0.027 | 3.05e-04 |
GCSE | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.402 | 0.424 | -0.022 | 5.36e-08 | 0.339 | 0.363 | -0.025 | 2.79e-03 |
GCSE | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.382 | 0.414 | -0.032 | 4.81e-02 | 0.330 | 0.341 | -0.011 | 3.57e-01 |
GCSE | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.424 | 0.414 | 0.010 | 5.19e-01 | 0.363 | 0.341 | 0.022 | 2.30e-03 |
GCSE | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.422 | 0.414 | 0.008 | 6.00e-01 | 0.358 | 0.341 | 0.017 | 1.19e-02 |
GCSE | LDpred1.Inf | LDpred1.MultiPRS | 0.409 | 0.414 | -0.004 | 7.90e-01 | 0.337 | 0.341 | -0.005 | 3.13e-01 |
GCSE | lassosum.10FCVal | LDpred1.MultiPRS | 0.410 | 0.414 | -0.003 | 8.35e-01 | 0.355 | 0.341 | 0.014 | 1.17e-01 |
GCSE | LDpred1.10FCVal | LDpred1.MultiPRS | 0.405 | 0.414 | -0.008 | 6.15e-01 | 0.337 | 0.341 | -0.004 | 4.62e-01 |
GCSE | lassosum.MultiPRS | LDpred1.MultiPRS | 0.412 | 0.414 | -0.002 | 9.04e-01 | 0.357 | 0.341 | 0.016 | 5.37e-02 |
GCSE | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.414 | 0.414 | 0.000 | 1.00e+00 | 0.341 | 0.341 | 0.000 | 1.00e+00 |
GCSE | All.MultiPRS | LDpred1.MultiPRS | 0.426 | 0.414 | 0.013 | 4.20e-01 | 0.363 | 0.341 | 0.022 | 5.18e-04 |
GCSE | LDpred2.Inf | LDpred1.MultiPRS | 0.413 | 0.414 | 0.000 | 9.92e-01 | 0.343 | 0.341 | 0.002 | 7.49e-01 |
GCSE | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.425 | 0.414 | 0.012 | 4.59e-01 | 0.364 | 0.341 | 0.023 | 1.72e-03 |
GCSE | pT+clump.10FCVal | LDpred1.MultiPRS | 0.374 | 0.414 | -0.040 | 1.59e-02 | 0.315 | 0.341 | -0.026 | 4.58e-02 |
GCSE | lassosum.PseudoVal | LDpred1.MultiPRS | 0.338 | 0.414 | -0.076 | 5.44e-06 | 0.286 | 0.341 | -0.055 | 2.97e-03 |
GCSE | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.420 | 0.414 | 0.006 | 6.98e-01 | 0.350 | 0.341 | 0.009 | 2.36e-01 |
GCSE | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.402 | 0.414 | -0.011 | 4.92e-01 | 0.339 | 0.341 | -0.002 | 7.91e-01 |
GCSE | SBLUP.Inf | LDpred1.MultiPRS | 0.412 | 0.414 | -0.002 | 9.08e-01 | 0.344 | 0.341 | 0.003 | 5.03e-01 |
GCSE | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.423 | 0.414 | 0.010 | 5.33e-01 | 0.356 | 0.341 | 0.015 | 2.09e-02 |
GCSE | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.418 | 0.414 | 0.004 | 7.89e-01 | 0.363 | 0.341 | 0.022 | 3.31e-03 |
GCSE | LDpred2.10FCVal | LDpred1.MultiPRS | 0.423 | 0.414 | 0.009 | 5.80e-01 | 0.358 | 0.341 | 0.017 | 1.27e-02 |
GCSE | LDpred1.10FCVal | LDpred1.Inf | 0.405 | 0.409 | -0.004 | 2.03e-01 | 0.337 | 0.337 | 0.000 | 9.59e-01 |
GCSE | LDpred2.PseudoVal | LDpred1.Inf | 0.422 | 0.409 | 0.013 | 1.40e-04 | 0.358 | 0.337 | 0.021 | 2.60e-03 |
GCSE | LDpred1.MultiPRS | LDpred1.Inf | 0.414 | 0.409 | 0.004 | 7.90e-01 | 0.341 | 0.337 | 0.005 | 3.13e-01 |
GCSE | pT+clump.MultiPRS | LDpred1.Inf | 0.382 | 0.409 | -0.028 | 9.07e-02 | 0.330 | 0.337 | -0.007 | 5.79e-01 |
GCSE | MegaPRS.PseudoVal | LDpred1.Inf | 0.418 | 0.409 | 0.009 | 1.02e-02 | 0.363 | 0.337 | 0.026 | 2.38e-04 |
GCSE | MegaPRS.MultiPRS | LDpred1.Inf | 0.425 | 0.409 | 0.016 | 3.13e-01 | 0.364 | 0.337 | 0.027 | 2.58e-04 |
GCSE | pT+clump.10FCVal | LDpred1.Inf | 0.374 | 0.409 | -0.035 | 5.56e-09 | 0.315 | 0.337 | -0.021 | 9.35e-02 |
GCSE | lassosum.PseudoVal | LDpred1.Inf | 0.338 | 0.409 | -0.071 | 1.65e-15 | 0.286 | 0.337 | -0.050 | 7.33e-03 |
GCSE | LDpred2.Inf | LDpred1.Inf | 0.413 | 0.409 | 0.004 | 3.42e-02 | 0.343 | 0.337 | 0.006 | 1.39e-01 |
GCSE | DBSLMM.PseudoVal | LDpred1.Inf | 0.402 | 0.409 | -0.007 | 1.11e-01 | 0.339 | 0.337 | 0.002 | 8.19e-01 |
GCSE | SBLUP.Inf | LDpred1.Inf | 0.412 | 0.409 | 0.002 | 1.91e-01 | 0.344 | 0.337 | 0.008 | 5.09e-02 |
GCSE | LDpred2.MultiPRS | LDpred1.Inf | 0.423 | 0.409 | 0.014 | 3.70e-01 | 0.356 | 0.337 | 0.020 | 4.06e-03 |
GCSE | lassosum.10FCVal | LDpred1.Inf | 0.410 | 0.409 | 0.001 | 8.28e-01 | 0.355 | 0.337 | 0.019 | 3.95e-02 |
GCSE | LDpred1.Inf | LDpred1.Inf | 0.409 | 0.409 | 0.000 | 1.00e+00 | 0.337 | 0.337 | 0.000 | 1.00e+00 |
GCSE | lassosum.MultiPRS | LDpred1.Inf | 0.412 | 0.409 | 0.002 | 8.81e-01 | 0.357 | 0.337 | 0.021 | 1.33e-02 |
GCSE | MegaPRS.10FCVal | LDpred1.Inf | 0.424 | 0.409 | 0.015 | 2.54e-05 | 0.363 | 0.337 | 0.027 | 3.05e-04 |
GCSE | All.MultiPRS | LDpred1.Inf | 0.426 | 0.409 | 0.017 | 2.79e-01 | 0.363 | 0.337 | 0.027 | 2.46e-04 |
GCSE | SBayesR.PseudoVal | LDpred1.Inf | 0.420 | 0.409 | 0.011 | 4.02e-03 | 0.350 | 0.337 | 0.013 | 8.36e-02 |
GCSE | LDpred2.10FCVal | LDpred1.Inf | 0.423 | 0.409 | 0.013 | 8.40e-05 | 0.358 | 0.337 | 0.022 | 2.52e-03 |
GCSE | All.MultiPRS | LDpred1.10FCVal | 0.426 | 0.405 | 0.021 | 1.86e-01 | 0.363 | 0.337 | 0.026 | 1.99e-03 |
GCSE | pT+clump.MultiPRS | LDpred1.10FCVal | 0.382 | 0.405 | -0.024 | 1.45e-01 | 0.330 | 0.337 | -0.007 | 5.96e-01 |
GCSE | LDpred1.10FCVal | LDpred1.10FCVal | 0.405 | 0.405 | 0.000 | 1.00e+00 | 0.337 | 0.337 | 0.000 | 1.00e+00 |
GCSE | SBayesR.PseudoVal | LDpred1.10FCVal | 0.420 | 0.405 | 0.014 | 7.00e-04 | 0.350 | 0.337 | 0.013 | 1.53e-01 |
GCSE | LDpred1.MultiPRS | LDpred1.10FCVal | 0.414 | 0.405 | 0.008 | 6.15e-01 | 0.341 | 0.337 | 0.004 | 4.62e-01 |
GCSE | SBLUP.Inf | LDpred1.10FCVal | 0.412 | 0.405 | 0.006 | 1.92e-02 | 0.344 | 0.337 | 0.007 | 2.02e-01 |
GCSE | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.418 | 0.405 | 0.013 | 1.67e-03 | 0.363 | 0.337 | 0.026 | 2.32e-03 |
GCSE | LDpred2.PseudoVal | LDpred1.10FCVal | 0.422 | 0.405 | 0.017 | 2.07e-05 | 0.358 | 0.337 | 0.021 | 1.21e-02 |
GCSE | LDpred2.MultiPRS | LDpred1.10FCVal | 0.423 | 0.405 | 0.018 | 2.55e-01 | 0.356 | 0.337 | 0.019 | 1.71e-02 |
GCSE | LDpred2.Inf | LDpred1.10FCVal | 0.413 | 0.405 | 0.008 | 4.69e-03 | 0.343 | 0.337 | 0.006 | 3.35e-01 |
GCSE | LDpred1.Inf | LDpred1.10FCVal | 0.409 | 0.405 | 0.004 | 2.03e-01 | 0.337 | 0.337 | 0.000 | 9.59e-01 |
GCSE | pT+clump.10FCVal | LDpred1.10FCVal | 0.374 | 0.405 | -0.031 | 1.51e-06 | 0.315 | 0.337 | -0.022 | 1.15e-01 |
GCSE | LDpred2.10FCVal | LDpred1.10FCVal | 0.423 | 0.405 | 0.017 | 1.64e-05 | 0.358 | 0.337 | 0.021 | 1.28e-02 |
GCSE | lassosum.PseudoVal | LDpred1.10FCVal | 0.338 | 0.405 | -0.067 | 3.30e-13 | 0.286 | 0.337 | -0.051 | 9.42e-03 |
GCSE | lassosum.10FCVal | LDpred1.10FCVal | 0.410 | 0.405 | 0.005 | 3.08e-01 | 0.355 | 0.337 | 0.018 | 7.39e-02 |
GCSE | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.425 | 0.405 | 0.020 | 2.11e-01 | 0.364 | 0.337 | 0.027 | 1.71e-03 |
GCSE | lassosum.MultiPRS | LDpred1.10FCVal | 0.412 | 0.405 | 0.006 | 6.95e-01 | 0.357 | 0.337 | 0.020 | 3.66e-02 |
GCSE | MegaPRS.10FCVal | LDpred1.10FCVal | 0.424 | 0.405 | 0.019 | 3.67e-06 | 0.363 | 0.337 | 0.026 | 2.12e-03 |
GCSE | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.402 | 0.405 | -0.003 | 5.35e-01 | 0.339 | 0.337 | 0.002 | 8.64e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.420 | 0.423 | -0.004 | 8.17e-01 | 0.350 | 0.356 | -0.006 | 1.85e-01 |
GCSE | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.423 | 0.423 | 0.000 | 1.00e+00 | 0.356 | 0.356 | 0.000 | 1.00e+00 |
GCSE | pT+clump.10FCVal | LDpred2.MultiPRS | 0.374 | 0.423 | -0.050 | 2.02e-03 | 0.315 | 0.356 | -0.041 | 1.51e-03 |
GCSE | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.422 | 0.423 | -0.001 | 9.27e-01 | 0.358 | 0.356 | 0.002 | 4.97e-01 |
GCSE | LDpred2.Inf | LDpred2.MultiPRS | 0.413 | 0.423 | -0.010 | 5.26e-01 | 0.343 | 0.356 | -0.014 | 1.58e-02 |
GCSE | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.382 | 0.423 | -0.042 | 9.62e-03 | 0.330 | 0.356 | -0.026 | 1.86e-02 |
GCSE | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.418 | 0.423 | -0.006 | 7.24e-01 | 0.363 | 0.356 | 0.007 | 3.37e-01 |
GCSE | lassosum.MultiPRS | LDpred2.MultiPRS | 0.412 | 0.423 | -0.012 | 4.53e-05 | 0.357 | 0.356 | 0.001 | 8.81e-01 |
GCSE | LDpred1.Inf | LDpred2.MultiPRS | 0.409 | 0.423 | -0.014 | 3.70e-01 | 0.337 | 0.356 | -0.020 | 4.06e-03 |
GCSE | lassosum.10FCVal | LDpred2.MultiPRS | 0.410 | 0.423 | -0.013 | 4.02e-01 | 0.355 | 0.356 | -0.001 | 8.68e-01 |
GCSE | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.424 | 0.423 | 0.000 | 9.76e-01 | 0.363 | 0.356 | 0.007 | 1.81e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.425 | 0.423 | 0.002 | 9.04e-01 | 0.364 | 0.356 | 0.008 | 1.08e-01 |
GCSE | LDpred2.10FCVal | LDpred2.MultiPRS | 0.423 | 0.423 | -0.001 | 9.51e-01 | 0.358 | 0.356 | 0.002 | 4.70e-01 |
GCSE | All.MultiPRS | LDpred2.MultiPRS | 0.426 | 0.423 | 0.003 | 8.23e-02 | 0.363 | 0.356 | 0.007 | 4.19e-02 |
GCSE | LDpred1.10FCVal | LDpred2.MultiPRS | 0.405 | 0.423 | -0.018 | 2.55e-01 | 0.337 | 0.356 | -0.019 | 1.71e-02 |
GCSE | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.402 | 0.423 | -0.021 | 1.84e-01 | 0.339 | 0.356 | -0.018 | 1.77e-02 |
GCSE | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.414 | 0.423 | -0.010 | 5.33e-01 | 0.341 | 0.356 | -0.015 | 2.09e-02 |
GCSE | lassosum.PseudoVal | LDpred2.MultiPRS | 0.338 | 0.423 | -0.086 | 1.53e-07 | 0.286 | 0.356 | -0.070 | 4.48e-06 |
GCSE | SBLUP.Inf | LDpred2.MultiPRS | 0.412 | 0.423 | -0.012 | 4.58e-01 | 0.344 | 0.356 | -0.012 | 5.65e-02 |
GCSE | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.418 | 0.423 | -0.005 | 1.77e-01 | 0.363 | 0.358 | 0.004 | 5.28e-01 |
GCSE | LDpred2.10FCVal | LDpred2.10FCVal | 0.423 | 0.423 | 0.000 | 1.00e+00 | 0.358 | 0.358 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.10FCVal | LDpred2.10FCVal | 0.424 | 0.423 | 0.001 | 6.04e-01 | 0.363 | 0.358 | 0.005 | 3.85e-01 |
GCSE | All.MultiPRS | LDpred2.10FCVal | 0.426 | 0.423 | 0.004 | 8.05e-01 | 0.363 | 0.358 | 0.005 | 2.68e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.10FCVal | 0.420 | 0.423 | -0.003 | 2.39e-01 | 0.350 | 0.358 | -0.008 | 8.44e-02 |
GCSE | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.402 | 0.423 | -0.020 | 2.79e-07 | 0.339 | 0.358 | -0.020 | 1.83e-02 |
GCSE | pT+clump.MultiPRS | LDpred2.10FCVal | 0.382 | 0.423 | -0.041 | 1.22e-02 | 0.330 | 0.358 | -0.028 | 1.23e-02 |
GCSE | lassosum.MultiPRS | LDpred2.10FCVal | 0.412 | 0.423 | -0.011 | 4.92e-01 | 0.357 | 0.358 | -0.001 | 8.41e-01 |
GCSE | LDpred2.PseudoVal | LDpred2.10FCVal | 0.422 | 0.423 | 0.000 | 6.87e-01 | 0.358 | 0.358 | 0.000 | 9.06e-01 |
GCSE | lassosum.10FCVal | LDpred2.10FCVal | 0.410 | 0.423 | -0.012 | 6.62e-05 | 0.355 | 0.358 | -0.003 | 6.23e-01 |
GCSE | SBLUP.Inf | LDpred2.10FCVal | 0.412 | 0.423 | -0.011 | 6.98e-04 | 0.344 | 0.358 | -0.014 | 3.85e-02 |
GCSE | LDpred1.10FCVal | LDpred2.10FCVal | 0.405 | 0.423 | -0.017 | 1.64e-05 | 0.337 | 0.358 | -0.021 | 1.28e-02 |
GCSE | pT+clump.10FCVal | LDpred2.10FCVal | 0.374 | 0.423 | -0.049 | 3.83e-15 | 0.315 | 0.358 | -0.043 | 8.13e-04 |
GCSE | LDpred1.MultiPRS | LDpred2.10FCVal | 0.414 | 0.423 | -0.009 | 5.80e-01 | 0.341 | 0.358 | -0.017 | 1.27e-02 |
GCSE | LDpred2.Inf | LDpred2.10FCVal | 0.413 | 0.423 | -0.009 | 2.10e-03 | 0.343 | 0.358 | -0.016 | 1.29e-02 |
GCSE | LDpred1.Inf | LDpred2.10FCVal | 0.409 | 0.423 | -0.013 | 8.40e-05 | 0.337 | 0.358 | -0.022 | 2.52e-03 |
GCSE | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.425 | 0.423 | 0.003 | 8.56e-01 | 0.364 | 0.358 | 0.006 | 2.92e-01 |
GCSE | LDpred2.MultiPRS | LDpred2.10FCVal | 0.423 | 0.423 | 0.001 | 9.51e-01 | 0.356 | 0.358 | -0.002 | 4.70e-01 |
GCSE | lassosum.PseudoVal | LDpred2.10FCVal | 0.338 | 0.423 | -0.085 | 2.20e-29 | 0.286 | 0.358 | -0.072 | 4.10e-06 |
GCSE | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.382 | 0.422 | -0.041 | 1.31e-02 | 0.330 | 0.358 | -0.028 | 1.47e-02 |
GCSE | lassosum.MultiPRS | LDpred2.PseudoVal | 0.412 | 0.422 | -0.010 | 5.12e-01 | 0.357 | 0.358 | -0.001 | 8.92e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.420 | 0.422 | -0.002 | 3.15e-01 | 0.350 | 0.358 | -0.008 | 7.45e-02 |
GCSE | All.MultiPRS | LDpred2.PseudoVal | 0.426 | 0.422 | 0.004 | 7.82e-01 | 0.363 | 0.358 | 0.005 | 2.09e-01 |
GCSE | SBLUP.Inf | LDpred2.PseudoVal | 0.412 | 0.422 | -0.010 | 9.20e-04 | 0.344 | 0.358 | -0.014 | 3.67e-02 |
GCSE | LDpred1.10FCVal | LDpred2.PseudoVal | 0.405 | 0.422 | -0.017 | 2.07e-05 | 0.337 | 0.358 | -0.021 | 1.21e-02 |
GCSE | LDpred2.10FCVal | LDpred2.PseudoVal | 0.423 | 0.422 | 0.000 | 6.87e-01 | 0.358 | 0.358 | 0.000 | 9.06e-01 |
GCSE | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.414 | 0.422 | -0.008 | 6.00e-01 | 0.341 | 0.358 | -0.017 | 1.19e-02 |
GCSE | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.422 | 0.422 | 0.000 | 1.00e+00 | 0.358 | 0.358 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.418 | 0.422 | -0.004 | 2.38e-01 | 0.363 | 0.358 | 0.005 | 5.11e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.425 | 0.422 | 0.003 | 8.33e-01 | 0.364 | 0.358 | 0.006 | 2.24e-01 |
GCSE | pT+clump.10FCVal | LDpred2.PseudoVal | 0.374 | 0.422 | -0.048 | 1.31e-14 | 0.315 | 0.358 | -0.043 | 9.82e-04 |
GCSE | lassosum.PseudoVal | LDpred2.PseudoVal | 0.338 | 0.422 | -0.084 | 7.36e-28 | 0.286 | 0.358 | -0.072 | 6.49e-06 |
GCSE | LDpred2.Inf | LDpred2.PseudoVal | 0.413 | 0.422 | -0.009 | 2.22e-03 | 0.343 | 0.358 | -0.015 | 1.02e-02 |
GCSE | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.402 | 0.422 | -0.020 | 3.13e-07 | 0.339 | 0.358 | -0.019 | 1.67e-02 |
GCSE | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.424 | 0.422 | 0.002 | 4.67e-01 | 0.363 | 0.358 | 0.005 | 3.22e-01 |
GCSE | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.423 | 0.422 | 0.001 | 9.27e-01 | 0.356 | 0.358 | -0.002 | 4.97e-01 |
GCSE | lassosum.10FCVal | LDpred2.PseudoVal | 0.410 | 0.422 | -0.012 | 2.61e-04 | 0.355 | 0.358 | -0.003 | 6.71e-01 |
GCSE | LDpred1.Inf | LDpred2.PseudoVal | 0.409 | 0.422 | -0.013 | 1.40e-04 | 0.337 | 0.358 | -0.021 | 2.60e-03 |
GCSE | All.MultiPRS | LDpred2.Inf | 0.426 | 0.413 | 0.013 | 4.12e-01 | 0.363 | 0.343 | 0.020 | 1.21e-03 |
GCSE | LDpred1.10FCVal | LDpred2.Inf | 0.405 | 0.413 | -0.008 | 4.69e-03 | 0.337 | 0.343 | -0.006 | 3.35e-01 |
GCSE | SBayesR.PseudoVal | LDpred2.Inf | 0.420 | 0.413 | 0.006 | 7.92e-02 | 0.350 | 0.343 | 0.007 | 3.43e-01 |
GCSE | LDpred1.MultiPRS | LDpred2.Inf | 0.414 | 0.413 | 0.000 | 9.92e-01 | 0.341 | 0.343 | -0.002 | 7.49e-01 |
GCSE | LDpred2.Inf | LDpred2.Inf | 0.413 | 0.413 | 0.000 | 1.00e+00 | 0.343 | 0.343 | 0.000 | 1.00e+00 |
GCSE | MegaPRS.PseudoVal | LDpred2.Inf | 0.418 | 0.413 | 0.004 | 1.59e-01 | 0.363 | 0.343 | 0.020 | 2.86e-03 |
GCSE | pT+clump.10FCVal | LDpred2.Inf | 0.374 | 0.413 | -0.039 | 1.47e-10 | 0.315 | 0.343 | -0.028 | 3.09e-02 |
GCSE | LDpred2.10FCVal | LDpred2.Inf | 0.423 | 0.413 | 0.009 | 2.10e-03 | 0.358 | 0.343 | 0.016 | 1.29e-02 |
GCSE | lassosum.PseudoVal | LDpred2.Inf | 0.338 | 0.413 | -0.075 | 1.05e-16 | 0.286 | 0.343 | -0.056 | 2.98e-03 |
GCSE | pT+clump.MultiPRS | LDpred2.Inf | 0.382 | 0.413 | -0.032 | 5.13e-02 | 0.330 | 0.343 | -0.013 | 2.93e-01 |
GCSE | MegaPRS.MultiPRS | LDpred2.Inf | 0.425 | 0.413 | 0.012 | 4.54e-01 | 0.364 | 0.343 | 0.021 | 1.39e-03 |
GCSE | LDpred2.PseudoVal | LDpred2.Inf | 0.422 | 0.413 | 0.009 | 2.22e-03 | 0.358 | 0.343 | 0.015 | 1.02e-02 |
GCSE | LDpred2.MultiPRS | LDpred2.Inf | 0.423 | 0.413 | 0.010 | 5.26e-01 | 0.356 | 0.343 | 0.014 | 1.58e-02 |
GCSE | SBLUP.Inf | LDpred2.Inf | 0.412 | 0.413 | -0.002 | 2.15e-01 | 0.344 | 0.343 | 0.002 | 5.61e-01 |
GCSE | DBSLMM.PseudoVal | LDpred2.Inf | 0.402 | 0.413 | -0.011 | 9.10e-03 | 0.339 | 0.343 | -0.004 | 6.60e-01 |
GCSE | lassosum.MultiPRS | LDpred2.Inf | 0.412 | 0.413 | -0.002 | 9.11e-01 | 0.357 | 0.343 | 0.014 | 7.59e-02 |
GCSE | MegaPRS.10FCVal | LDpred2.Inf | 0.424 | 0.413 | 0.011 | 9.93e-04 | 0.363 | 0.343 | 0.021 | 2.04e-03 |
GCSE | lassosum.10FCVal | LDpred2.Inf | 0.410 | 0.413 | -0.003 | 4.34e-01 | 0.355 | 0.343 | 0.012 | 1.54e-01 |
GCSE | LDpred1.Inf | LDpred2.Inf | 0.409 | 0.413 | -0.004 | 3.42e-02 | 0.337 | 0.343 | -0.006 | 1.39e-01 |
GCSE | All.MultiPRS | pT+clump.MultiPRS | 0.426 | 0.382 | 0.045 | 5.51e-03 | 0.363 | 0.330 | 0.033 | 2.44e-03 |
GCSE | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.420 | 0.382 | 0.038 | 1.92e-02 | 0.350 | 0.330 | 0.020 | 7.53e-02 |
GCSE | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.425 | 0.382 | 0.044 | 6.39e-03 | 0.364 | 0.330 | 0.034 | 2.91e-03 |
GCSE | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.382 | 0.382 | 0.000 | 1.00e+00 | 0.330 | 0.330 | 0.000 | 1.00e+00 |
GCSE | lassosum.PseudoVal | pT+clump.MultiPRS | 0.338 | 0.382 | -0.044 | 9.39e-03 | 0.286 | 0.330 | -0.044 | 1.03e-02 |
GCSE | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.422 | 0.382 | 0.041 | 1.31e-02 | 0.358 | 0.330 | 0.028 | 1.47e-02 |
GCSE | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.402 | 0.382 | 0.021 | 2.04e-01 | 0.339 | 0.330 | 0.009 | 4.34e-01 |
GCSE | SBLUP.Inf | pT+clump.MultiPRS | 0.412 | 0.382 | 0.030 | 6.54e-02 | 0.344 | 0.330 | 0.014 | 2.19e-01 |
GCSE | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.423 | 0.382 | 0.042 | 9.62e-03 | 0.356 | 0.330 | 0.026 | 1.86e-02 |
GCSE | pT+clump.10FCVal | pT+clump.MultiPRS | 0.374 | 0.382 | -0.008 | 6.48e-01 | 0.315 | 0.330 | -0.015 | 1.26e-02 |
GCSE | LDpred1.Inf | pT+clump.MultiPRS | 0.409 | 0.382 | 0.028 | 9.07e-02 | 0.337 | 0.330 | 0.007 | 5.79e-01 |
GCSE | LDpred2.Inf | pT+clump.MultiPRS | 0.413 | 0.382 | 0.032 | 5.13e-02 | 0.343 | 0.330 | 0.013 | 2.93e-01 |
GCSE | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.424 | 0.382 | 0.042 | 9.31e-03 | 0.363 | 0.330 | 0.033 | 4.16e-03 |
GCSE | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.418 | 0.382 | 0.036 | 2.61e-02 | 0.363 | 0.330 | 0.033 | 8.00e-03 |
GCSE | LDpred2.10FCVal | pT+clump.MultiPRS | 0.423 | 0.382 | 0.041 | 1.22e-02 | 0.358 | 0.330 | 0.028 | 1.23e-02 |
GCSE | lassosum.10FCVal | pT+clump.MultiPRS | 0.410 | 0.382 | 0.029 | 8.07e-02 | 0.355 | 0.330 | 0.025 | 2.75e-02 |
GCSE | LDpred1.10FCVal | pT+clump.MultiPRS | 0.405 | 0.382 | 0.024 | 1.45e-01 | 0.337 | 0.330 | 0.007 | 5.96e-01 |
GCSE | lassosum.MultiPRS | pT+clump.MultiPRS | 0.412 | 0.382 | 0.030 | 6.39e-02 | 0.357 | 0.330 | 0.027 | 1.72e-02 |
GCSE | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.414 | 0.382 | 0.032 | 4.81e-02 | 0.341 | 0.330 | 0.011 | 3.57e-01 |
GCSE | LDpred1.Inf | pT+clump.10FCVal | 0.409 | 0.374 | 0.035 | 5.56e-09 | 0.337 | 0.315 | 0.021 | 9.35e-02 |
GCSE | pT+clump.MultiPRS | pT+clump.10FCVal | 0.382 | 0.374 | 0.008 | 6.48e-01 | 0.330 | 0.315 | 0.015 | 1.26e-02 |
GCSE | LDpred2.MultiPRS | pT+clump.10FCVal | 0.423 | 0.374 | 0.050 | 2.02e-03 | 0.356 | 0.315 | 0.041 | 1.51e-03 |
GCSE | SBayesR.PseudoVal | pT+clump.10FCVal | 0.420 | 0.374 | 0.046 | 3.47e-13 | 0.350 | 0.315 | 0.035 | 8.78e-03 |
GCSE | LDpred2.10FCVal | pT+clump.10FCVal | 0.423 | 0.374 | 0.049 | 3.83e-15 | 0.358 | 0.315 | 0.043 | 8.13e-04 |
GCSE | SBLUP.Inf | pT+clump.10FCVal | 0.412 | 0.374 | 0.038 | 2.31e-10 | 0.344 | 0.315 | 0.029 | 1.90e-02 |
GCSE | lassosum.MultiPRS | pT+clump.10FCVal | 0.412 | 0.374 | 0.038 | 1.93e-02 | 0.357 | 0.315 | 0.042 | 1.21e-03 |
GCSE | LDpred2.PseudoVal | pT+clump.10FCVal | 0.422 | 0.374 | 0.048 | 1.31e-14 | 0.358 | 0.315 | 0.043 | 9.82e-04 |
GCSE | LDpred1.MultiPRS | pT+clump.10FCVal | 0.414 | 0.374 | 0.040 | 1.59e-02 | 0.341 | 0.315 | 0.026 | 4.58e-02 |
GCSE | lassosum.10FCVal | pT+clump.10FCVal | 0.410 | 0.374 | 0.036 | 1.98e-09 | 0.355 | 0.315 | 0.040 | 1.58e-03 |
GCSE | LDpred1.10FCVal | pT+clump.10FCVal | 0.405 | 0.374 | 0.031 | 1.51e-06 | 0.337 | 0.315 | 0.022 | 1.15e-01 |
GCSE | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.425 | 0.374 | 0.051 | 1.42e-03 | 0.364 | 0.315 | 0.049 | 1.79e-04 |
GCSE | pT+clump.10FCVal | pT+clump.10FCVal | 0.374 | 0.374 | 0.000 | 1.00e+00 | 0.315 | 0.315 | 0.000 | 1.00e+00 |
GCSE | All.MultiPRS | pT+clump.10FCVal | 0.426 | 0.374 | 0.052 | 1.07e-03 | 0.363 | 0.315 | 0.048 | 1.53e-04 |
GCSE | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.418 | 0.374 | 0.044 | 4.03e-11 | 0.363 | 0.315 | 0.048 | 6.21e-04 |
GCSE | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.402 | 0.374 | 0.028 | 2.01e-05 | 0.339 | 0.315 | 0.024 | 8.81e-02 |
GCSE | MegaPRS.10FCVal | pT+clump.10FCVal | 0.424 | 0.374 | 0.050 | 6.51e-15 | 0.363 | 0.315 | 0.048 | 2.66e-04 |
GCSE | lassosum.PseudoVal | pT+clump.10FCVal | 0.338 | 0.374 | -0.036 | 2.59e-04 | 0.286 | 0.315 | -0.029 | 1.66e-01 |
GCSE | LDpred2.Inf | pT+clump.10FCVal | 0.413 | 0.374 | 0.039 | 1.47e-10 | 0.343 | 0.315 | 0.028 | 3.09e-02 |
GCSE | LDpred1.Inf | SBayesR.PseudoVal | 0.409 | 0.420 | -0.011 | 4.02e-03 | 0.337 | 0.350 | -0.013 | 8.36e-02 |
GCSE | LDpred2.Inf | SBayesR.PseudoVal | 0.413 | 0.420 | -0.006 | 7.92e-02 | 0.343 | 0.350 | -0.007 | 3.43e-01 |
GCSE | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.424 | 0.420 | 0.004 | 1.35e-01 | 0.363 | 0.350 | 0.013 | 1.76e-02 |
GCSE | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.423 | 0.420 | 0.004 | 8.17e-01 | 0.356 | 0.350 | 0.006 | 1.85e-01 |
GCSE | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.420 | 0.420 | 0.000 | 1.00e+00 | 0.350 | 0.350 | 0.000 | 1.00e+00 |
GCSE | lassosum.10FCVal | SBayesR.PseudoVal | 0.410 | 0.420 | -0.010 | 5.89e-03 | 0.355 | 0.350 | 0.005 | 4.88e-01 |
GCSE | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.382 | 0.420 | -0.038 | 1.92e-02 | 0.330 | 0.350 | -0.020 | 7.53e-02 |
GCSE | lassosum.MultiPRS | SBayesR.PseudoVal | 0.412 | 0.420 | -0.008 | 6.05e-01 | 0.357 | 0.350 | 0.007 | 2.72e-01 |
GCSE | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.422 | 0.420 | 0.002 | 3.15e-01 | 0.358 | 0.350 | 0.008 | 7.45e-02 |
GCSE | LDpred2.10FCVal | SBayesR.PseudoVal | 0.423 | 0.420 | 0.003 | 2.39e-01 | 0.358 | 0.350 | 0.008 | 8.44e-02 |
GCSE | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.425 | 0.420 | 0.006 | 7.27e-01 | 0.364 | 0.350 | 0.014 | 1.15e-02 |
GCSE | LDpred1.10FCVal | SBayesR.PseudoVal | 0.405 | 0.420 | -0.014 | 7.00e-04 | 0.337 | 0.350 | -0.013 | 1.53e-01 |
GCSE | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.418 | 0.420 | -0.002 | 5.74e-01 | 0.363 | 0.350 | 0.013 | 6.88e-02 |
GCSE | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.414 | 0.420 | -0.006 | 6.98e-01 | 0.341 | 0.350 | -0.009 | 2.36e-01 |
GCSE | All.MultiPRS | SBayesR.PseudoVal | 0.426 | 0.420 | 0.007 | 6.77e-01 | 0.363 | 0.350 | 0.013 | 9.29e-03 |
GCSE | SBLUP.Inf | SBayesR.PseudoVal | 0.412 | 0.420 | -0.008 | 2.46e-02 | 0.344 | 0.350 | -0.006 | 4.58e-01 |
GCSE | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.402 | 0.420 | -0.017 | 1.24e-06 | 0.339 | 0.350 | -0.011 | 1.37e-01 |
GCSE | pT+clump.10FCVal | SBayesR.PseudoVal | 0.374 | 0.420 | -0.046 | 3.47e-13 | 0.315 | 0.350 | -0.035 | 8.78e-03 |
GCSE | lassosum.PseudoVal | SBayesR.PseudoVal | 0.338 | 0.420 | -0.082 | 1.45e-31 | 0.286 | 0.350 | -0.064 | 1.38e-05 |
GCSE | LDpred2.PseudoVal | SBLUP.Inf | 0.422 | 0.412 | 0.010 | 9.20e-04 | 0.358 | 0.344 | 0.014 | 3.67e-02 |
GCSE | MegaPRS.10FCVal | SBLUP.Inf | 0.424 | 0.412 | 0.012 | 2.37e-04 | 0.363 | 0.344 | 0.019 | 5.87e-03 |
GCSE | lassosum.MultiPRS | SBLUP.Inf | 0.412 | 0.412 | 0.000 | 9.97e-01 | 0.357 | 0.344 | 0.013 | 1.08e-01 |
GCSE | LDpred1.MultiPRS | SBLUP.Inf | 0.414 | 0.412 | 0.002 | 9.08e-01 | 0.341 | 0.344 | -0.003 | 5.03e-01 |
GCSE | All.MultiPRS | SBLUP.Inf | 0.426 | 0.412 | 0.015 | 3.54e-01 | 0.363 | 0.344 | 0.019 | 4.76e-03 |
GCSE | LDpred2.Inf | SBLUP.Inf | 0.413 | 0.412 | 0.002 | 2.15e-01 | 0.343 | 0.344 | -0.002 | 5.61e-01 |
GCSE | MegaPRS.MultiPRS | SBLUP.Inf | 0.425 | 0.412 | 0.014 | 3.92e-01 | 0.364 | 0.344 | 0.020 | 4.61e-03 |
GCSE | pT+clump.MultiPRS | SBLUP.Inf | 0.382 | 0.412 | -0.030 | 6.54e-02 | 0.330 | 0.344 | -0.014 | 2.19e-01 |
GCSE | lassosum.PseudoVal | SBLUP.Inf | 0.338 | 0.412 | -0.074 | 2.40e-16 | 0.286 | 0.344 | -0.058 | 2.01e-03 |
GCSE | SBayesR.PseudoVal | SBLUP.Inf | 0.420 | 0.412 | 0.008 | 2.46e-02 | 0.350 | 0.344 | 0.006 | 4.58e-01 |
GCSE | DBSLMM.PseudoVal | SBLUP.Inf | 0.402 | 0.412 | -0.009 | 2.45e-02 | 0.339 | 0.344 | -0.006 | 5.25e-01 |
GCSE | SBLUP.Inf | SBLUP.Inf | 0.412 | 0.412 | 0.000 | 1.00e+00 | 0.344 | 0.344 | 0.000 | 1.00e+00 |
GCSE | LDpred2.MultiPRS | SBLUP.Inf | 0.423 | 0.412 | 0.012 | 4.58e-01 | 0.356 | 0.344 | 0.012 | 5.65e-02 |
GCSE | pT+clump.10FCVal | SBLUP.Inf | 0.374 | 0.412 | -0.038 | 2.31e-10 | 0.315 | 0.344 | -0.029 | 1.90e-02 |
GCSE | LDpred1.Inf | SBLUP.Inf | 0.409 | 0.412 | -0.002 | 1.91e-01 | 0.337 | 0.344 | -0.008 | 5.09e-02 |
GCSE | lassosum.10FCVal | SBLUP.Inf | 0.410 | 0.412 | -0.002 | 7.09e-01 | 0.355 | 0.344 | 0.011 | 2.09e-01 |
GCSE | LDpred1.10FCVal | SBLUP.Inf | 0.405 | 0.412 | -0.006 | 1.92e-02 | 0.337 | 0.344 | -0.007 | 2.02e-01 |
GCSE | MegaPRS.PseudoVal | SBLUP.Inf | 0.418 | 0.412 | 0.006 | 5.47e-02 | 0.363 | 0.344 | 0.018 | 6.35e-03 |
GCSE | LDpred2.10FCVal | SBLUP.Inf | 0.423 | 0.412 | 0.011 | 6.98e-04 | 0.358 | 0.344 | 0.014 | 3.85e-02 |
ADHD | LDpred1.10FCVal | All.MultiPRS | 0.114 | 0.122 | -0.008 | 6.39e-01 | 0.190 | 0.179 | 0.011 | 4.02e-01 |
ADHD | pT+clump.10FCVal | All.MultiPRS | 0.092 | 0.122 | -0.030 | 8.99e-02 | 0.144 | 0.179 | -0.035 | 7.22e-02 |
ADHD | LDpred1.MultiPRS | All.MultiPRS | 0.113 | 0.122 | -0.009 | 6.09e-01 | 0.190 | 0.179 | 0.011 | 3.90e-01 |
ADHD | LDpred2.Inf | All.MultiPRS | 0.113 | 0.122 | -0.010 | 5.86e-01 | 0.189 | 0.179 | 0.010 | 4.67e-01 |
ADHD | MegaPRS.PseudoVal | All.MultiPRS | 0.120 | 0.122 | -0.002 | 8.89e-01 | 0.181 | 0.179 | 0.002 | 8.34e-01 |
ADHD | LDpred2.10FCVal | All.MultiPRS | 0.117 | 0.122 | -0.006 | 7.44e-01 | 0.187 | 0.179 | 0.008 | 5.19e-01 |
ADHD | LDpred2.MultiPRS | All.MultiPRS | 0.113 | 0.122 | -0.010 | 5.85e-01 | 0.190 | 0.179 | 0.011 | 3.79e-01 |
ADHD | lassosum.10FCVal | All.MultiPRS | 0.115 | 0.122 | -0.007 | 6.74e-01 | 0.186 | 0.179 | 0.007 | 5.98e-01 |
ADHD | LDpred1.Inf | All.MultiPRS | 0.111 | 0.122 | -0.011 | 5.31e-01 | 0.188 | 0.179 | 0.009 | 5.23e-01 |
ADHD | lassosum.MultiPRS | All.MultiPRS | 0.117 | 0.122 | -0.005 | 7.74e-01 | 0.190 | 0.179 | 0.011 | 2.64e-01 |
ADHD | MegaPRS.10FCVal | All.MultiPRS | 0.123 | 0.122 | 0.001 | 9.55e-01 | 0.181 | 0.179 | 0.002 | 8.19e-01 |
ADHD | All.MultiPRS | All.MultiPRS | 0.122 | 0.122 | 0.000 | 1.00e+00 | 0.179 | 0.179 | 0.000 | 1.00e+00 |
ADHD | SBayesR.PseudoVal | All.MultiPRS | 0.111 | 0.122 | -0.011 | 5.37e-01 | 0.189 | 0.179 | 0.009 | 4.59e-01 |
ADHD | MegaPRS.MultiPRS | All.MultiPRS | 0.121 | 0.122 | -0.001 | 9.58e-01 | 0.175 | 0.179 | -0.004 | 6.48e-01 |
ADHD | pT+clump.MultiPRS | All.MultiPRS | 0.093 | 0.122 | -0.029 | 9.75e-02 | 0.151 | 0.179 | -0.029 | 1.05e-01 |
ADHD | lassosum.PseudoVal | All.MultiPRS | 0.080 | 0.122 | -0.043 | 1.52e-02 | 0.108 | 0.179 | -0.071 | 8.44e-04 |
ADHD | LDpred2.PseudoVal | All.MultiPRS | 0.114 | 0.122 | -0.008 | 6.46e-01 | 0.190 | 0.179 | 0.011 | 3.89e-01 |
ADHD | DBSLMM.PseudoVal | All.MultiPRS | 0.110 | 0.122 | -0.012 | 4.92e-01 | 0.174 | 0.179 | -0.006 | 7.02e-01 |
ADHD | SBLUP.Inf | All.MultiPRS | 0.112 | 0.122 | -0.010 | 5.68e-01 | 0.188 | 0.179 | 0.009 | 5.06e-01 |
ADHD | LDpred1.Inf | DBSLMM.PseudoVal | 0.111 | 0.110 | 0.001 | 8.66e-01 | 0.188 | 0.174 | 0.014 | 2.43e-01 |
ADHD | LDpred2.Inf | DBSLMM.PseudoVal | 0.113 | 0.110 | 0.002 | 6.80e-01 | 0.189 | 0.174 | 0.015 | 1.96e-01 |
ADHD | LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.113 | 0.110 | 0.002 | 8.88e-01 | 0.190 | 0.174 | 0.016 | 1.43e-01 |
ADHD | pT+clump.10FCVal | DBSLMM.PseudoVal | 0.092 | 0.110 | -0.018 | 6.69e-02 | 0.144 | 0.174 | -0.030 | 1.22e-01 |
ADHD | SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.111 | 0.110 | 0.001 | 8.40e-01 | 0.189 | 0.174 | 0.015 | 2.03e-01 |
ADHD | All.MultiPRS | DBSLMM.PseudoVal | 0.122 | 0.110 | 0.012 | 4.92e-01 | 0.179 | 0.174 | 0.006 | 7.02e-01 |
ADHD | MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.123 | 0.110 | 0.013 | 5.93e-02 | 0.181 | 0.174 | 0.008 | 5.79e-01 |
ADHD | MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.121 | 0.110 | 0.011 | 5.28e-01 | 0.175 | 0.174 | 0.001 | 9.39e-01 |
ADHD | LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.114 | 0.110 | 0.004 | 4.90e-01 | 0.190 | 0.174 | 0.017 | 1.48e-01 |
ADHD | lassosum.PseudoVal | DBSLMM.PseudoVal | 0.080 | 0.110 | -0.030 | 6.19e-03 | 0.108 | 0.174 | -0.066 | 2.97e-03 |
ADHD | pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.093 | 0.110 | -0.017 | 3.37e-01 | 0.151 | 0.174 | -0.023 | 1.58e-01 |
ADHD | MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.120 | 0.110 | 0.010 | 1.58e-01 | 0.181 | 0.174 | 0.008 | 5.75e-01 |
ADHD | lassosum.MultiPRS | DBSLMM.PseudoVal | 0.117 | 0.110 | 0.007 | 6.92e-01 | 0.190 | 0.174 | 0.017 | 1.36e-01 |
ADHD | LDpred2.10FCVal | DBSLMM.PseudoVal | 0.117 | 0.110 | 0.006 | 2.74e-01 | 0.187 | 0.174 | 0.013 | 2.41e-01 |
ADHD | lassosum.10FCVal | DBSLMM.PseudoVal | 0.115 | 0.110 | 0.005 | 5.02e-01 | 0.186 | 0.174 | 0.012 | 3.69e-01 |
ADHD | LDpred1.10FCVal | DBSLMM.PseudoVal | 0.114 | 0.110 | 0.004 | 5.12e-01 | 0.190 | 0.174 | 0.016 | 1.63e-01 |
ADHD | DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.110 | 0.110 | 0.000 | 1.00e+00 | 0.174 | 0.174 | 0.000 | 1.00e+00 |
ADHD | LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.113 | 0.110 | 0.003 | 8.65e-01 | 0.190 | 0.174 | 0.016 | 1.70e-01 |
ADHD | SBLUP.Inf | DBSLMM.PseudoVal | 0.112 | 0.110 | 0.002 | 7.41e-01 | 0.188 | 0.174 | 0.014 | 2.26e-01 |
ADHD | SBayesR.PseudoVal | lassosum.MultiPRS | 0.111 | 0.117 | -0.006 | 7.44e-01 | 0.189 | 0.190 | -0.002 | 8.22e-01 |
ADHD | LDpred1.Inf | lassosum.MultiPRS | 0.111 | 0.117 | -0.006 | 7.37e-01 | 0.188 | 0.190 | -0.003 | 7.91e-01 |
ADHD | MegaPRS.10FCVal | lassosum.MultiPRS | 0.123 | 0.117 | 0.006 | 7.36e-01 | 0.181 | 0.190 | -0.009 | 3.27e-01 |
ADHD | LDpred2.MultiPRS | lassosum.MultiPRS | 0.113 | 0.117 | -0.005 | 2.20e-01 | 0.190 | 0.190 | -0.001 | 9.14e-01 |
ADHD | LDpred2.PseudoVal | lassosum.MultiPRS | 0.114 | 0.117 | -0.003 | 8.64e-01 | 0.190 | 0.190 | 0.000 | 9.66e-01 |
ADHD | LDpred2.10FCVal | lassosum.MultiPRS | 0.117 | 0.117 | -0.001 | 9.68e-01 | 0.187 | 0.190 | -0.004 | 6.24e-01 |
ADHD | pT+clump.MultiPRS | lassosum.MultiPRS | 0.093 | 0.117 | -0.024 | 1.74e-01 | 0.151 | 0.190 | -0.040 | 3.71e-03 |
ADHD | lassosum.MultiPRS | lassosum.MultiPRS | 0.117 | 0.117 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | lassosum.PseudoVal | lassosum.MultiPRS | 0.080 | 0.117 | -0.038 | 3.46e-02 | 0.108 | 0.190 | -0.083 | 3.77e-05 |
ADHD | LDpred1.MultiPRS | lassosum.MultiPRS | 0.113 | 0.117 | -0.004 | 8.18e-01 | 0.190 | 0.190 | -0.001 | 9.52e-01 |
ADHD | MegaPRS.MultiPRS | lassosum.MultiPRS | 0.121 | 0.117 | 0.004 | 8.17e-01 | 0.175 | 0.190 | -0.016 | 1.24e-01 |
ADHD | LDpred1.10FCVal | lassosum.MultiPRS | 0.114 | 0.117 | -0.003 | 8.57e-01 | 0.190 | 0.190 | 0.000 | 9.62e-01 |
ADHD | MegaPRS.PseudoVal | lassosum.MultiPRS | 0.120 | 0.117 | 0.003 | 8.85e-01 | 0.181 | 0.190 | -0.009 | 2.82e-01 |
ADHD | pT+clump.10FCVal | lassosum.MultiPRS | 0.092 | 0.117 | -0.025 | 1.63e-01 | 0.144 | 0.190 | -0.047 | 4.28e-03 |
ADHD | lassosum.10FCVal | lassosum.MultiPRS | 0.115 | 0.117 | -0.002 | 8.95e-01 | 0.186 | 0.190 | -0.005 | 4.70e-01 |
ADHD | SBLUP.Inf | lassosum.MultiPRS | 0.112 | 0.117 | -0.005 | 7.78e-01 | 0.188 | 0.190 | -0.002 | 7.87e-01 |
ADHD | DBSLMM.PseudoVal | lassosum.MultiPRS | 0.110 | 0.117 | -0.007 | 6.92e-01 | 0.174 | 0.190 | -0.017 | 1.36e-01 |
ADHD | All.MultiPRS | lassosum.MultiPRS | 0.122 | 0.117 | 0.005 | 7.74e-01 | 0.179 | 0.190 | -0.011 | 2.64e-01 |
ADHD | LDpred2.Inf | lassosum.MultiPRS | 0.113 | 0.117 | -0.005 | 7.98e-01 | 0.189 | 0.190 | -0.002 | 8.60e-01 |
ADHD | MegaPRS.PseudoVal | lassosum.PseudoVal | 0.120 | 0.080 | 0.040 | 3.31e-04 | 0.181 | 0.108 | 0.073 | 7.23e-04 |
ADHD | LDpred2.PseudoVal | lassosum.PseudoVal | 0.114 | 0.080 | 0.034 | 4.45e-03 | 0.190 | 0.108 | 0.082 | 5.76e-04 |
ADHD | LDpred1.MultiPRS | lassosum.PseudoVal | 0.113 | 0.080 | 0.033 | 5.66e-02 | 0.190 | 0.108 | 0.082 | 3.66e-04 |
ADHD | lassosum.PseudoVal | lassosum.PseudoVal | 0.080 | 0.080 | 0.000 | 1.00e+00 | 0.108 | 0.108 | 0.000 | 1.00e+00 |
ADHD | LDpred2.Inf | lassosum.PseudoVal | 0.113 | 0.080 | 0.033 | 8.85e-03 | 0.189 | 0.108 | 0.081 | 1.12e-03 |
ADHD | DBSLMM.PseudoVal | lassosum.PseudoVal | 0.110 | 0.080 | 0.030 | 6.19e-03 | 0.174 | 0.108 | 0.066 | 2.97e-03 |
ADHD | SBLUP.Inf | lassosum.PseudoVal | 0.112 | 0.080 | 0.032 | 9.88e-03 | 0.188 | 0.108 | 0.080 | 1.22e-03 |
ADHD | LDpred2.MultiPRS | lassosum.PseudoVal | 0.113 | 0.080 | 0.033 | 6.24e-02 | 0.190 | 0.108 | 0.082 | 1.21e-04 |
ADHD | pT+clump.10FCVal | lassosum.PseudoVal | 0.092 | 0.080 | 0.013 | 3.45e-01 | 0.144 | 0.108 | 0.036 | 1.77e-01 |
ADHD | LDpred1.Inf | lassosum.PseudoVal | 0.111 | 0.080 | 0.032 | 1.19e-02 | 0.188 | 0.108 | 0.080 | 1.27e-03 |
ADHD | lassosum.MultiPRS | lassosum.PseudoVal | 0.117 | 0.080 | 0.038 | 3.46e-02 | 0.190 | 0.108 | 0.083 | 3.77e-05 |
ADHD | MegaPRS.10FCVal | lassosum.PseudoVal | 0.123 | 0.080 | 0.044 | 1.34e-05 | 0.181 | 0.108 | 0.074 | 1.50e-04 |
ADHD | All.MultiPRS | lassosum.PseudoVal | 0.122 | 0.080 | 0.043 | 1.52e-02 | 0.179 | 0.108 | 0.071 | 8.44e-04 |
ADHD | SBayesR.PseudoVal | lassosum.PseudoVal | 0.111 | 0.080 | 0.032 | 1.60e-03 | 0.189 | 0.108 | 0.081 | 5.62e-05 |
ADHD | lassosum.10FCVal | lassosum.PseudoVal | 0.115 | 0.080 | 0.035 | 3.37e-03 | 0.186 | 0.108 | 0.078 | 9.92e-04 |
ADHD | pT+clump.MultiPRS | lassosum.PseudoVal | 0.093 | 0.080 | 0.014 | 4.44e-01 | 0.151 | 0.108 | 0.043 | 7.00e-02 |
ADHD | LDpred1.10FCVal | lassosum.PseudoVal | 0.114 | 0.080 | 0.034 | 4.13e-03 | 0.190 | 0.108 | 0.082 | 5.27e-04 |
ADHD | MegaPRS.MultiPRS | lassosum.PseudoVal | 0.121 | 0.080 | 0.042 | 1.79e-02 | 0.175 | 0.108 | 0.067 | 1.53e-03 |
ADHD | LDpred2.10FCVal | lassosum.PseudoVal | 0.117 | 0.080 | 0.037 | 6.55e-04 | 0.187 | 0.108 | 0.079 | 1.96e-04 |
ADHD | lassosum.10FCVal | lassosum.10FCVal | 0.115 | 0.115 | 0.000 | 1.00e+00 | 0.186 | 0.186 | 0.000 | 1.00e+00 |
ADHD | pT+clump.MultiPRS | lassosum.10FCVal | 0.093 | 0.115 | -0.022 | 2.20e-01 | 0.151 | 0.186 | -0.035 | 1.52e-02 |
ADHD | LDpred2.MultiPRS | lassosum.10FCVal | 0.113 | 0.115 | -0.002 | 9.02e-01 | 0.190 | 0.186 | 0.004 | 6.09e-01 |
ADHD | SBayesR.PseudoVal | lassosum.10FCVal | 0.111 | 0.115 | -0.003 | 4.91e-01 | 0.189 | 0.186 | 0.003 | 7.80e-01 |
ADHD | LDpred2.10FCVal | lassosum.10FCVal | 0.117 | 0.115 | 0.002 | 6.72e-01 | 0.187 | 0.186 | 0.001 | 8.81e-01 |
ADHD | SBLUP.Inf | lassosum.10FCVal | 0.112 | 0.115 | -0.003 | 4.75e-01 | 0.188 | 0.186 | 0.002 | 7.63e-01 |
ADHD | lassosum.MultiPRS | lassosum.10FCVal | 0.117 | 0.115 | 0.002 | 8.95e-01 | 0.190 | 0.186 | 0.005 | 4.70e-01 |
ADHD | LDpred2.PseudoVal | lassosum.10FCVal | 0.114 | 0.115 | -0.001 | 8.53e-01 | 0.190 | 0.186 | 0.004 | 5.63e-01 |
ADHD | LDpred1.MultiPRS | lassosum.10FCVal | 0.113 | 0.115 | -0.002 | 9.23e-01 | 0.190 | 0.186 | 0.004 | 6.35e-01 |
ADHD | LDpred2.Inf | lassosum.10FCVal | 0.113 | 0.115 | -0.002 | 5.91e-01 | 0.189 | 0.186 | 0.003 | 7.12e-01 |
ADHD | LDpred1.10FCVal | lassosum.10FCVal | 0.114 | 0.115 | -0.001 | 8.32e-01 | 0.190 | 0.186 | 0.004 | 6.08e-01 |
ADHD | MegaPRS.MultiPRS | lassosum.10FCVal | 0.121 | 0.115 | 0.006 | 7.14e-01 | 0.175 | 0.186 | -0.011 | 3.06e-01 |
ADHD | pT+clump.10FCVal | lassosum.10FCVal | 0.092 | 0.115 | -0.022 | 2.72e-03 | 0.144 | 0.186 | -0.042 | 4.85e-03 |
ADHD | All.MultiPRS | lassosum.10FCVal | 0.122 | 0.115 | 0.007 | 6.74e-01 | 0.179 | 0.186 | -0.007 | 5.98e-01 |
ADHD | MegaPRS.PseudoVal | lassosum.10FCVal | 0.120 | 0.115 | 0.005 | 2.40e-01 | 0.181 | 0.186 | -0.005 | 5.92e-01 |
ADHD | DBSLMM.PseudoVal | lassosum.10FCVal | 0.110 | 0.115 | -0.005 | 5.02e-01 | 0.174 | 0.186 | -0.012 | 3.69e-01 |
ADHD | MegaPRS.10FCVal | lassosum.10FCVal | 0.123 | 0.115 | 0.008 | 1.11e-01 | 0.181 | 0.186 | -0.004 | 6.73e-01 |
ADHD | lassosum.PseudoVal | lassosum.10FCVal | 0.080 | 0.115 | -0.035 | 3.37e-03 | 0.108 | 0.186 | -0.078 | 9.92e-04 |
ADHD | LDpred1.Inf | lassosum.10FCVal | 0.111 | 0.115 | -0.004 | 4.06e-01 | 0.188 | 0.186 | 0.002 | 8.15e-01 |
ADHD | MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.120 | 0.121 | -0.002 | 9.31e-01 | 0.181 | 0.175 | 0.007 | 2.78e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.110 | 0.121 | -0.011 | 5.28e-01 | 0.174 | 0.175 | -0.001 | 9.39e-01 |
ADHD | SBLUP.Inf | MegaPRS.MultiPRS | 0.112 | 0.121 | -0.009 | 6.05e-01 | 0.188 | 0.175 | 0.013 | 2.68e-01 |
ADHD | LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.113 | 0.121 | -0.009 | 6.27e-01 | 0.190 | 0.175 | 0.015 | 1.42e-01 |
ADHD | pT+clump.10FCVal | MegaPRS.MultiPRS | 0.092 | 0.121 | -0.029 | 1.02e-01 | 0.144 | 0.175 | -0.031 | 7.40e-02 |
ADHD | LDpred1.Inf | MegaPRS.MultiPRS | 0.111 | 0.121 | -0.010 | 5.67e-01 | 0.188 | 0.175 | 0.013 | 2.98e-01 |
ADHD | LDpred2.Inf | MegaPRS.MultiPRS | 0.113 | 0.121 | -0.009 | 6.23e-01 | 0.189 | 0.175 | 0.014 | 2.46e-01 |
ADHD | MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.123 | 0.121 | 0.002 | 9.13e-01 | 0.181 | 0.175 | 0.007 | 6.47e-02 |
ADHD | All.MultiPRS | MegaPRS.MultiPRS | 0.122 | 0.121 | 0.001 | 9.58e-01 | 0.179 | 0.175 | 0.004 | 6.48e-01 |
ADHD | SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.111 | 0.121 | -0.010 | 5.73e-01 | 0.189 | 0.175 | 0.014 | 2.23e-01 |
ADHD | lassosum.10FCVal | MegaPRS.MultiPRS | 0.115 | 0.121 | -0.006 | 7.14e-01 | 0.186 | 0.175 | 0.011 | 3.06e-01 |
ADHD | pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.093 | 0.121 | -0.028 | 1.10e-01 | 0.151 | 0.175 | -0.024 | 1.29e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.MultiPRS | 0.117 | 0.121 | -0.004 | 8.17e-01 | 0.190 | 0.175 | 0.016 | 1.24e-01 |
ADHD | LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.114 | 0.121 | -0.007 | 6.85e-01 | 0.190 | 0.175 | 0.015 | 1.77e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.MultiPRS | 0.117 | 0.121 | -0.005 | 7.84e-01 | 0.187 | 0.175 | 0.012 | 2.28e-01 |
ADHD | lassosum.PseudoVal | MegaPRS.MultiPRS | 0.080 | 0.121 | -0.042 | 1.79e-02 | 0.108 | 0.175 | -0.067 | 1.53e-03 |
ADHD | LDpred1.10FCVal | MegaPRS.MultiPRS | 0.114 | 0.121 | -0.007 | 6.78e-01 | 0.190 | 0.175 | 0.015 | 1.97e-01 |
ADHD | MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.121 | 0.121 | 0.000 | 1.00e+00 | 0.175 | 0.175 | 0.000 | 1.00e+00 |
ADHD | LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.113 | 0.121 | -0.008 | 6.47e-01 | 0.190 | 0.175 | 0.015 | 1.98e-01 |
ADHD | lassosum.10FCVal | MegaPRS.PseudoVal | 0.115 | 0.120 | -0.005 | 2.40e-01 | 0.186 | 0.181 | 0.005 | 5.92e-01 |
ADHD | SBLUP.Inf | MegaPRS.PseudoVal | 0.112 | 0.120 | -0.008 | 9.96e-02 | 0.188 | 0.181 | 0.007 | 4.73e-01 |
ADHD | SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.111 | 0.120 | -0.008 | 8.73e-02 | 0.189 | 0.181 | 0.007 | 4.63e-01 |
ADHD | All.MultiPRS | MegaPRS.PseudoVal | 0.122 | 0.120 | 0.002 | 8.89e-01 | 0.179 | 0.181 | -0.002 | 8.34e-01 |
ADHD | LDpred2.Inf | MegaPRS.PseudoVal | 0.113 | 0.120 | -0.007 | 1.25e-01 | 0.189 | 0.181 | 0.008 | 4.29e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.PseudoVal | 0.117 | 0.120 | -0.003 | 8.85e-01 | 0.190 | 0.181 | 0.009 | 2.82e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.PseudoVal | 0.117 | 0.120 | -0.003 | 4.20e-01 | 0.187 | 0.181 | 0.006 | 4.89e-01 |
ADHD | LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.113 | 0.120 | -0.007 | 7.05e-01 | 0.190 | 0.181 | 0.009 | 3.65e-01 |
ADHD | LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.114 | 0.120 | -0.006 | 1.93e-01 | 0.190 | 0.181 | 0.009 | 3.18e-01 |
ADHD | LDpred1.10FCVal | MegaPRS.PseudoVal | 0.114 | 0.120 | -0.006 | 2.08e-01 | 0.190 | 0.181 | 0.009 | 3.53e-01 |
ADHD | pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.093 | 0.120 | -0.027 | 1.33e-01 | 0.151 | 0.181 | -0.031 | 4.57e-02 |
ADHD | pT+clump.10FCVal | MegaPRS.PseudoVal | 0.092 | 0.120 | -0.027 | 6.53e-04 | 0.144 | 0.181 | -0.037 | 2.24e-02 |
ADHD | lassosum.PseudoVal | MegaPRS.PseudoVal | 0.080 | 0.120 | -0.040 | 3.31e-04 | 0.108 | 0.181 | -0.073 | 7.23e-04 |
ADHD | MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.120 | 0.120 | 0.000 | 1.00e+00 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.121 | 0.120 | 0.002 | 9.31e-01 | 0.175 | 0.181 | -0.007 | 2.78e-01 |
ADHD | MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.123 | 0.120 | 0.003 | 1.63e-01 | 0.181 | 0.181 | 0.000 | 9.87e-01 |
ADHD | LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.113 | 0.120 | -0.007 | 6.90e-01 | 0.190 | 0.181 | 0.008 | 3.02e-01 |
ADHD | LDpred1.Inf | MegaPRS.PseudoVal | 0.111 | 0.120 | -0.009 | 8.24e-02 | 0.188 | 0.181 | 0.007 | 5.13e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.110 | 0.120 | -0.010 | 1.58e-01 | 0.174 | 0.181 | -0.008 | 5.75e-01 |
ADHD | MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.120 | 0.123 | -0.003 | 1.63e-01 | 0.181 | 0.181 | 0.000 | 9.87e-01 |
ADHD | LDpred2.10FCVal | MegaPRS.10FCVal | 0.117 | 0.123 | -0.007 | 1.37e-01 | 0.187 | 0.181 | 0.006 | 5.41e-01 |
ADHD | LDpred1.MultiPRS | MegaPRS.10FCVal | 0.113 | 0.123 | -0.010 | 5.66e-01 | 0.190 | 0.181 | 0.009 | 4.33e-01 |
ADHD | LDpred2.Inf | MegaPRS.10FCVal | 0.113 | 0.123 | -0.011 | 6.48e-02 | 0.189 | 0.181 | 0.007 | 5.21e-01 |
ADHD | LDpred1.Inf | MegaPRS.10FCVal | 0.111 | 0.123 | -0.012 | 4.27e-02 | 0.188 | 0.181 | 0.007 | 5.88e-01 |
ADHD | lassosum.MultiPRS | MegaPRS.10FCVal | 0.117 | 0.123 | -0.006 | 7.36e-01 | 0.190 | 0.181 | 0.009 | 3.27e-01 |
ADHD | MegaPRS.10FCVal | MegaPRS.10FCVal | 0.123 | 0.123 | 0.000 | 1.00e+00 | 0.181 | 0.181 | 0.000 | 1.00e+00 |
ADHD | All.MultiPRS | MegaPRS.10FCVal | 0.122 | 0.123 | -0.001 | 9.55e-01 | 0.179 | 0.181 | -0.002 | 8.19e-01 |
ADHD | SBayesR.PseudoVal | MegaPRS.10FCVal | 0.111 | 0.123 | -0.012 | 1.67e-02 | 0.189 | 0.181 | 0.007 | 4.72e-01 |
ADHD | DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.110 | 0.123 | -0.013 | 5.93e-02 | 0.174 | 0.181 | -0.008 | 5.79e-01 |
ADHD | pT+clump.MultiPRS | MegaPRS.10FCVal | 0.093 | 0.123 | -0.030 | 8.98e-02 | 0.151 | 0.181 | -0.031 | 4.96e-02 |
ADHD | lassosum.PseudoVal | MegaPRS.10FCVal | 0.080 | 0.123 | -0.044 | 1.34e-05 | 0.108 | 0.181 | -0.074 | 1.50e-04 |
ADHD | LDpred2.PseudoVal | MegaPRS.10FCVal | 0.114 | 0.123 | -0.009 | 8.76e-02 | 0.190 | 0.181 | 0.009 | 4.17e-01 |
ADHD | lassosum.10FCVal | MegaPRS.10FCVal | 0.115 | 0.123 | -0.008 | 1.11e-01 | 0.186 | 0.181 | 0.004 | 6.73e-01 |
ADHD | SBLUP.Inf | MegaPRS.10FCVal | 0.112 | 0.123 | -0.011 | 5.33e-02 | 0.188 | 0.181 | 0.007 | 5.63e-01 |
ADHD | LDpred1.10FCVal | MegaPRS.10FCVal | 0.114 | 0.123 | -0.009 | 9.08e-02 | 0.190 | 0.181 | 0.009 | 4.36e-01 |
ADHD | pT+clump.10FCVal | MegaPRS.10FCVal | 0.092 | 0.123 | -0.031 | 3.03e-04 | 0.144 | 0.181 | -0.038 | 3.05e-02 |
ADHD | LDpred2.MultiPRS | MegaPRS.10FCVal | 0.113 | 0.123 | -0.011 | 5.53e-01 | 0.190 | 0.181 | 0.008 | 3.63e-01 |
ADHD | MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.121 | 0.123 | -0.002 | 9.13e-01 | 0.175 | 0.181 | -0.007 | 6.47e-02 |
ADHD | pT+clump.MultiPRS | LDpred1.MultiPRS | 0.093 | 0.113 | -0.020 | 2.61e-01 | 0.151 | 0.190 | -0.039 | 1.11e-02 |
ADHD | MegaPRS.10FCVal | LDpred1.MultiPRS | 0.123 | 0.113 | 0.010 | 5.66e-01 | 0.181 | 0.190 | -0.009 | 4.33e-01 |
ADHD | LDpred2.PseudoVal | LDpred1.MultiPRS | 0.114 | 0.113 | 0.001 | 9.55e-01 | 0.190 | 0.190 | 0.000 | 9.72e-01 |
ADHD | LDpred1.Inf | LDpred1.MultiPRS | 0.111 | 0.113 | -0.002 | 9.11e-01 | 0.188 | 0.190 | -0.002 | 6.32e-01 |
ADHD | lassosum.10FCVal | LDpred1.MultiPRS | 0.115 | 0.113 | 0.002 | 9.23e-01 | 0.186 | 0.190 | -0.004 | 6.35e-01 |
ADHD | LDpred1.10FCVal | LDpred1.MultiPRS | 0.114 | 0.113 | 0.001 | 9.62e-01 | 0.190 | 0.190 | 0.000 | 9.71e-01 |
ADHD | lassosum.MultiPRS | LDpred1.MultiPRS | 0.117 | 0.113 | 0.004 | 8.18e-01 | 0.190 | 0.190 | 0.001 | 9.52e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.MultiPRS | 0.113 | 0.113 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | All.MultiPRS | LDpred1.MultiPRS | 0.122 | 0.113 | 0.009 | 6.09e-01 | 0.179 | 0.190 | -0.011 | 3.90e-01 |
ADHD | LDpred2.Inf | LDpred1.MultiPRS | 0.113 | 0.113 | -0.001 | 9.76e-01 | 0.189 | 0.190 | -0.001 | 8.29e-01 |
ADHD | MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.121 | 0.113 | 0.008 | 6.47e-01 | 0.175 | 0.190 | -0.015 | 1.98e-01 |
ADHD | pT+clump.10FCVal | LDpred1.MultiPRS | 0.092 | 0.113 | -0.021 | 2.36e-01 | 0.144 | 0.190 | -0.046 | 4.68e-03 |
ADHD | lassosum.PseudoVal | LDpred1.MultiPRS | 0.080 | 0.113 | -0.033 | 5.66e-02 | 0.108 | 0.190 | -0.082 | 3.66e-04 |
ADHD | SBayesR.PseudoVal | LDpred1.MultiPRS | 0.111 | 0.113 | -0.002 | 9.19e-01 | 0.189 | 0.190 | -0.001 | 8.57e-01 |
ADHD | DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.110 | 0.113 | -0.003 | 8.65e-01 | 0.174 | 0.190 | -0.016 | 1.70e-01 |
ADHD | SBLUP.Inf | LDpred1.MultiPRS | 0.112 | 0.113 | -0.001 | 9.55e-01 | 0.188 | 0.190 | -0.002 | 7.11e-01 |
ADHD | LDpred2.MultiPRS | LDpred1.MultiPRS | 0.113 | 0.113 | 0.000 | 9.78e-01 | 0.190 | 0.190 | 0.000 | 9.65e-01 |
ADHD | MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.120 | 0.113 | 0.007 | 7.05e-01 | 0.181 | 0.190 | -0.009 | 3.65e-01 |
ADHD | LDpred2.10FCVal | LDpred1.MultiPRS | 0.117 | 0.113 | 0.003 | 8.49e-01 | 0.187 | 0.190 | -0.003 | 5.99e-01 |
ADHD | LDpred1.10FCVal | LDpred1.Inf | 0.114 | 0.111 | 0.003 | 5.98e-02 | 0.190 | 0.188 | 0.002 | 4.54e-01 |
ADHD | LDpred2.PseudoVal | LDpred1.Inf | 0.114 | 0.111 | 0.003 | 1.14e-01 | 0.190 | 0.188 | 0.002 | 5.51e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.Inf | 0.113 | 0.111 | 0.002 | 9.11e-01 | 0.190 | 0.188 | 0.002 | 6.32e-01 |
ADHD | pT+clump.MultiPRS | LDpred1.Inf | 0.093 | 0.111 | -0.018 | 3.08e-01 | 0.151 | 0.188 | -0.037 | 1.86e-02 |
ADHD | MegaPRS.PseudoVal | LDpred1.Inf | 0.120 | 0.111 | 0.009 | 8.24e-02 | 0.181 | 0.188 | -0.007 | 5.13e-01 |
ADHD | MegaPRS.MultiPRS | LDpred1.Inf | 0.121 | 0.111 | 0.010 | 5.67e-01 | 0.175 | 0.188 | -0.013 | 2.98e-01 |
ADHD | pT+clump.10FCVal | LDpred1.Inf | 0.092 | 0.111 | -0.019 | 2.00e-02 | 0.144 | 0.188 | -0.044 | 6.02e-03 |
ADHD | lassosum.PseudoVal | LDpred1.Inf | 0.080 | 0.111 | -0.032 | 1.19e-02 | 0.108 | 0.188 | -0.080 | 1.27e-03 |
ADHD | LDpred2.Inf | LDpred1.Inf | 0.113 | 0.111 | 0.001 | 3.99e-01 | 0.189 | 0.188 | 0.001 | 7.78e-01 |
ADHD | DBSLMM.PseudoVal | LDpred1.Inf | 0.110 | 0.111 | -0.001 | 8.66e-01 | 0.174 | 0.188 | -0.014 | 2.43e-01 |
ADHD | SBLUP.Inf | LDpred1.Inf | 0.112 | 0.111 | 0.001 | 5.89e-01 | 0.188 | 0.188 | 0.000 | 9.61e-01 |
ADHD | LDpred2.MultiPRS | LDpred1.Inf | 0.113 | 0.111 | 0.001 | 9.34e-01 | 0.190 | 0.188 | 0.002 | 7.64e-01 |
ADHD | lassosum.10FCVal | LDpred1.Inf | 0.115 | 0.111 | 0.004 | 4.06e-01 | 0.186 | 0.188 | -0.002 | 8.15e-01 |
ADHD | LDpred1.Inf | LDpred1.Inf | 0.111 | 0.111 | 0.000 | 1.00e+00 | 0.188 | 0.188 | 0.000 | 1.00e+00 |
ADHD | lassosum.MultiPRS | LDpred1.Inf | 0.117 | 0.111 | 0.006 | 7.37e-01 | 0.190 | 0.188 | 0.003 | 7.91e-01 |
ADHD | MegaPRS.10FCVal | LDpred1.Inf | 0.123 | 0.111 | 0.012 | 4.27e-02 | 0.181 | 0.188 | -0.007 | 5.88e-01 |
ADHD | All.MultiPRS | LDpred1.Inf | 0.122 | 0.111 | 0.011 | 5.31e-01 | 0.179 | 0.188 | -0.009 | 5.23e-01 |
ADHD | SBayesR.PseudoVal | LDpred1.Inf | 0.111 | 0.111 | 0.000 | 9.67e-01 | 0.189 | 0.188 | 0.001 | 9.33e-01 |
ADHD | LDpred2.10FCVal | LDpred1.Inf | 0.117 | 0.111 | 0.005 | 1.08e-01 | 0.187 | 0.188 | -0.001 | 8.93e-01 |
ADHD | All.MultiPRS | LDpred1.10FCVal | 0.122 | 0.114 | 0.008 | 6.39e-01 | 0.179 | 0.190 | -0.011 | 4.02e-01 |
ADHD | pT+clump.MultiPRS | LDpred1.10FCVal | 0.093 | 0.114 | -0.021 | 2.39e-01 | 0.151 | 0.190 | -0.040 | 1.08e-02 |
ADHD | LDpred1.10FCVal | LDpred1.10FCVal | 0.114 | 0.114 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | SBayesR.PseudoVal | LDpred1.10FCVal | 0.111 | 0.114 | -0.003 | 4.93e-01 | 0.189 | 0.190 | -0.001 | 8.48e-01 |
ADHD | LDpred1.MultiPRS | LDpred1.10FCVal | 0.113 | 0.114 | -0.001 | 9.62e-01 | 0.190 | 0.190 | 0.000 | 9.71e-01 |
ADHD | SBLUP.Inf | LDpred1.10FCVal | 0.112 | 0.114 | -0.002 | 3.55e-01 | 0.188 | 0.190 | -0.002 | 6.08e-01 |
ADHD | MegaPRS.PseudoVal | LDpred1.10FCVal | 0.120 | 0.114 | 0.006 | 2.08e-01 | 0.181 | 0.190 | -0.009 | 3.53e-01 |
ADHD | LDpred2.PseudoVal | LDpred1.10FCVal | 0.114 | 0.114 | 0.000 | 9.26e-01 | 0.190 | 0.190 | 0.000 | 9.86e-01 |
ADHD | LDpred2.MultiPRS | LDpred1.10FCVal | 0.113 | 0.114 | -0.001 | 9.41e-01 | 0.190 | 0.190 | 0.000 | 9.47e-01 |
ADHD | LDpred2.Inf | LDpred1.10FCVal | 0.113 | 0.114 | -0.001 | 4.91e-01 | 0.189 | 0.190 | -0.001 | 7.55e-01 |
ADHD | LDpred1.Inf | LDpred1.10FCVal | 0.111 | 0.114 | -0.003 | 5.98e-02 | 0.188 | 0.190 | -0.002 | 4.54e-01 |
ADHD | pT+clump.10FCVal | LDpred1.10FCVal | 0.092 | 0.114 | -0.022 | 7.45e-03 | 0.144 | 0.190 | -0.046 | 4.07e-03 |
ADHD | LDpred2.10FCVal | LDpred1.10FCVal | 0.117 | 0.114 | 0.003 | 3.47e-01 | 0.187 | 0.190 | -0.003 | 5.78e-01 |
ADHD | lassosum.PseudoVal | LDpred1.10FCVal | 0.080 | 0.114 | -0.034 | 4.13e-03 | 0.108 | 0.190 | -0.082 | 5.27e-04 |
ADHD | lassosum.10FCVal | LDpred1.10FCVal | 0.115 | 0.114 | 0.001 | 8.32e-01 | 0.186 | 0.190 | -0.004 | 6.08e-01 |
ADHD | MegaPRS.MultiPRS | LDpred1.10FCVal | 0.121 | 0.114 | 0.007 | 6.78e-01 | 0.175 | 0.190 | -0.015 | 1.97e-01 |
ADHD | lassosum.MultiPRS | LDpred1.10FCVal | 0.117 | 0.114 | 0.003 | 8.57e-01 | 0.190 | 0.190 | 0.000 | 9.62e-01 |
ADHD | MegaPRS.10FCVal | LDpred1.10FCVal | 0.123 | 0.114 | 0.009 | 9.08e-02 | 0.181 | 0.190 | -0.009 | 4.36e-01 |
ADHD | DBSLMM.PseudoVal | LDpred1.10FCVal | 0.110 | 0.114 | -0.004 | 5.12e-01 | 0.174 | 0.190 | -0.016 | 1.63e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.MultiPRS | 0.111 | 0.113 | -0.001 | 9.42e-01 | 0.189 | 0.190 | -0.001 | 8.55e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.MultiPRS | 0.113 | 0.113 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | pT+clump.10FCVal | LDpred2.MultiPRS | 0.092 | 0.113 | -0.020 | 2.54e-01 | 0.144 | 0.190 | -0.046 | 4.49e-03 |
ADHD | LDpred2.PseudoVal | LDpred2.MultiPRS | 0.114 | 0.113 | 0.001 | 9.34e-01 | 0.190 | 0.190 | 0.000 | 9.15e-01 |
ADHD | LDpred2.Inf | LDpred2.MultiPRS | 0.113 | 0.113 | 0.000 | 9.98e-01 | 0.189 | 0.190 | -0.001 | 8.62e-01 |
ADHD | pT+clump.MultiPRS | LDpred2.MultiPRS | 0.093 | 0.113 | -0.019 | 2.71e-01 | 0.151 | 0.190 | -0.039 | 8.00e-03 |
ADHD | MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.120 | 0.113 | 0.007 | 6.90e-01 | 0.181 | 0.190 | -0.008 | 3.02e-01 |
ADHD | lassosum.MultiPRS | LDpred2.MultiPRS | 0.117 | 0.113 | 0.005 | 2.20e-01 | 0.190 | 0.190 | 0.001 | 9.14e-01 |
ADHD | LDpred1.Inf | LDpred2.MultiPRS | 0.111 | 0.113 | -0.001 | 9.34e-01 | 0.188 | 0.190 | -0.002 | 7.64e-01 |
ADHD | lassosum.10FCVal | LDpred2.MultiPRS | 0.115 | 0.113 | 0.002 | 9.02e-01 | 0.186 | 0.190 | -0.004 | 6.09e-01 |
ADHD | MegaPRS.10FCVal | LDpred2.MultiPRS | 0.123 | 0.113 | 0.011 | 5.53e-01 | 0.181 | 0.190 | -0.008 | 3.63e-01 |
ADHD | MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.121 | 0.113 | 0.009 | 6.27e-01 | 0.175 | 0.190 | -0.015 | 1.42e-01 |
ADHD | LDpred2.10FCVal | LDpred2.MultiPRS | 0.117 | 0.113 | 0.004 | 8.30e-01 | 0.187 | 0.190 | -0.003 | 4.19e-02 |
ADHD | All.MultiPRS | LDpred2.MultiPRS | 0.122 | 0.113 | 0.010 | 5.85e-01 | 0.179 | 0.190 | -0.011 | 3.79e-01 |
ADHD | LDpred1.10FCVal | LDpred2.MultiPRS | 0.114 | 0.113 | 0.001 | 9.41e-01 | 0.190 | 0.190 | 0.000 | 9.47e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.110 | 0.113 | -0.002 | 8.88e-01 | 0.174 | 0.190 | -0.016 | 1.43e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.MultiPRS | 0.113 | 0.113 | 0.000 | 9.78e-01 | 0.190 | 0.190 | 0.000 | 9.65e-01 |
ADHD | lassosum.PseudoVal | LDpred2.MultiPRS | 0.080 | 0.113 | -0.033 | 6.24e-02 | 0.108 | 0.190 | -0.082 | 1.21e-04 |
ADHD | SBLUP.Inf | LDpred2.MultiPRS | 0.112 | 0.113 | -0.001 | 9.77e-01 | 0.188 | 0.190 | -0.002 | 7.53e-01 |
ADHD | MegaPRS.PseudoVal | LDpred2.10FCVal | 0.120 | 0.117 | 0.003 | 4.20e-01 | 0.181 | 0.187 | -0.006 | 4.89e-01 |
ADHD | LDpred2.10FCVal | LDpred2.10FCVal | 0.117 | 0.117 | 0.000 | 1.00e+00 | 0.187 | 0.187 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.10FCVal | LDpred2.10FCVal | 0.123 | 0.117 | 0.007 | 1.37e-01 | 0.181 | 0.187 | -0.006 | 5.41e-01 |
ADHD | All.MultiPRS | LDpred2.10FCVal | 0.122 | 0.117 | 0.006 | 7.44e-01 | 0.179 | 0.187 | -0.008 | 5.19e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.10FCVal | 0.111 | 0.117 | -0.005 | 1.09e-01 | 0.189 | 0.187 | 0.002 | 7.99e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.10FCVal | 0.110 | 0.117 | -0.006 | 2.74e-01 | 0.174 | 0.187 | -0.013 | 2.41e-01 |
ADHD | pT+clump.MultiPRS | LDpred2.10FCVal | 0.093 | 0.117 | -0.023 | 1.87e-01 | 0.151 | 0.187 | -0.036 | 1.36e-02 |
ADHD | lassosum.MultiPRS | LDpred2.10FCVal | 0.117 | 0.117 | 0.001 | 9.68e-01 | 0.190 | 0.187 | 0.004 | 6.24e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.10FCVal | 0.114 | 0.117 | -0.002 | 2.79e-01 | 0.190 | 0.187 | 0.003 | 4.67e-01 |
ADHD | lassosum.10FCVal | LDpred2.10FCVal | 0.115 | 0.117 | -0.002 | 6.72e-01 | 0.186 | 0.187 | -0.001 | 8.81e-01 |
ADHD | SBLUP.Inf | LDpred2.10FCVal | 0.112 | 0.117 | -0.004 | 1.38e-01 | 0.188 | 0.187 | 0.001 | 8.53e-01 |
ADHD | LDpred1.10FCVal | LDpred2.10FCVal | 0.114 | 0.117 | -0.003 | 3.47e-01 | 0.190 | 0.187 | 0.003 | 5.78e-01 |
ADHD | pT+clump.10FCVal | LDpred2.10FCVal | 0.092 | 0.117 | -0.024 | 3.07e-03 | 0.144 | 0.187 | -0.043 | 7.38e-03 |
ADHD | LDpred1.MultiPRS | LDpred2.10FCVal | 0.113 | 0.117 | -0.003 | 8.49e-01 | 0.190 | 0.187 | 0.003 | 5.99e-01 |
ADHD | LDpred2.Inf | LDpred2.10FCVal | 0.113 | 0.117 | -0.004 | 1.77e-01 | 0.189 | 0.187 | 0.002 | 7.46e-01 |
ADHD | LDpred1.Inf | LDpred2.10FCVal | 0.111 | 0.117 | -0.005 | 1.08e-01 | 0.188 | 0.187 | 0.001 | 8.93e-01 |
ADHD | MegaPRS.MultiPRS | LDpred2.10FCVal | 0.121 | 0.117 | 0.005 | 7.84e-01 | 0.175 | 0.187 | -0.012 | 2.28e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.10FCVal | 0.113 | 0.117 | -0.004 | 8.30e-01 | 0.190 | 0.187 | 0.003 | 4.19e-02 |
ADHD | lassosum.PseudoVal | LDpred2.10FCVal | 0.080 | 0.117 | -0.037 | 6.55e-04 | 0.108 | 0.187 | -0.079 | 1.96e-04 |
ADHD | pT+clump.MultiPRS | LDpred2.PseudoVal | 0.093 | 0.114 | -0.021 | 2.36e-01 | 0.151 | 0.190 | -0.040 | 9.04e-03 |
ADHD | lassosum.MultiPRS | LDpred2.PseudoVal | 0.117 | 0.114 | 0.003 | 8.64e-01 | 0.190 | 0.190 | 0.000 | 9.66e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.PseudoVal | 0.111 | 0.114 | -0.003 | 4.92e-01 | 0.189 | 0.190 | -0.002 | 8.48e-01 |
ADHD | All.MultiPRS | LDpred2.PseudoVal | 0.122 | 0.114 | 0.008 | 6.46e-01 | 0.179 | 0.190 | -0.011 | 3.89e-01 |
ADHD | SBLUP.Inf | LDpred2.PseudoVal | 0.112 | 0.114 | -0.002 | 8.47e-02 | 0.188 | 0.190 | -0.002 | 3.58e-01 |
ADHD | LDpred1.10FCVal | LDpred2.PseudoVal | 0.114 | 0.114 | 0.000 | 9.26e-01 | 0.190 | 0.190 | 0.000 | 9.86e-01 |
ADHD | LDpred2.10FCVal | LDpred2.PseudoVal | 0.117 | 0.114 | 0.002 | 2.79e-01 | 0.187 | 0.190 | -0.003 | 4.67e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.PseudoVal | 0.113 | 0.114 | -0.001 | 9.55e-01 | 0.190 | 0.190 | 0.000 | 9.72e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.PseudoVal | 0.114 | 0.114 | 0.000 | 1.00e+00 | 0.190 | 0.190 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.120 | 0.114 | 0.006 | 1.93e-01 | 0.181 | 0.190 | -0.009 | 3.18e-01 |
ADHD | MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.121 | 0.114 | 0.007 | 6.85e-01 | 0.175 | 0.190 | -0.015 | 1.77e-01 |
ADHD | pT+clump.10FCVal | LDpred2.PseudoVal | 0.092 | 0.114 | -0.022 | 6.31e-03 | 0.144 | 0.190 | -0.046 | 3.18e-03 |
ADHD | lassosum.PseudoVal | LDpred2.PseudoVal | 0.080 | 0.114 | -0.034 | 4.45e-03 | 0.108 | 0.190 | -0.082 | 5.76e-04 |
ADHD | LDpred2.Inf | LDpred2.PseudoVal | 0.113 | 0.114 | -0.002 | 4.74e-02 | 0.189 | 0.190 | -0.001 | 3.99e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.110 | 0.114 | -0.004 | 4.90e-01 | 0.174 | 0.190 | -0.017 | 1.48e-01 |
ADHD | MegaPRS.10FCVal | LDpred2.PseudoVal | 0.123 | 0.114 | 0.009 | 8.76e-02 | 0.181 | 0.190 | -0.009 | 4.17e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.PseudoVal | 0.113 | 0.114 | -0.001 | 9.34e-01 | 0.190 | 0.190 | 0.000 | 9.15e-01 |
ADHD | lassosum.10FCVal | LDpred2.PseudoVal | 0.115 | 0.114 | 0.001 | 8.53e-01 | 0.186 | 0.190 | -0.004 | 5.63e-01 |
ADHD | LDpred1.Inf | LDpred2.PseudoVal | 0.111 | 0.114 | -0.003 | 1.14e-01 | 0.188 | 0.190 | -0.002 | 5.51e-01 |
ADHD | All.MultiPRS | LDpred2.Inf | 0.122 | 0.113 | 0.010 | 5.86e-01 | 0.179 | 0.189 | -0.010 | 4.67e-01 |
ADHD | LDpred1.10FCVal | LDpred2.Inf | 0.114 | 0.113 | 0.001 | 4.91e-01 | 0.190 | 0.189 | 0.001 | 7.55e-01 |
ADHD | SBayesR.PseudoVal | LDpred2.Inf | 0.111 | 0.113 | -0.001 | 7.83e-01 | 0.189 | 0.189 | 0.000 | 9.80e-01 |
ADHD | LDpred1.MultiPRS | LDpred2.Inf | 0.113 | 0.113 | 0.001 | 9.76e-01 | 0.190 | 0.189 | 0.001 | 8.29e-01 |
ADHD | LDpred2.Inf | LDpred2.Inf | 0.113 | 0.113 | 0.000 | 1.00e+00 | 0.189 | 0.189 | 0.000 | 1.00e+00 |
ADHD | MegaPRS.PseudoVal | LDpred2.Inf | 0.120 | 0.113 | 0.007 | 1.25e-01 | 0.181 | 0.189 | -0.008 | 4.29e-01 |
ADHD | pT+clump.10FCVal | LDpred2.Inf | 0.092 | 0.113 | -0.020 | 1.19e-02 | 0.144 | 0.189 | -0.045 | 4.49e-03 |
ADHD | LDpred2.10FCVal | LDpred2.Inf | 0.117 | 0.113 | 0.004 | 1.77e-01 | 0.187 | 0.189 | -0.002 | 7.46e-01 |
ADHD | lassosum.PseudoVal | LDpred2.Inf | 0.080 | 0.113 | -0.033 | 8.85e-03 | 0.108 | 0.189 | -0.081 | 1.12e-03 |
ADHD | pT+clump.MultiPRS | LDpred2.Inf | 0.093 | 0.113 | -0.019 | 2.72e-01 | 0.151 | 0.189 | -0.038 | 1.42e-02 |
ADHD | MegaPRS.MultiPRS | LDpred2.Inf | 0.121 | 0.113 | 0.009 | 6.23e-01 | 0.175 | 0.189 | -0.014 | 2.46e-01 |
ADHD | LDpred2.PseudoVal | LDpred2.Inf | 0.114 | 0.113 | 0.002 | 4.74e-02 | 0.190 | 0.189 | 0.001 | 3.99e-01 |
ADHD | LDpred2.MultiPRS | LDpred2.Inf | 0.113 | 0.113 | 0.000 | 9.98e-01 | 0.190 | 0.189 | 0.001 | 8.62e-01 |
ADHD | SBLUP.Inf | LDpred2.Inf | 0.112 | 0.113 | 0.000 | 6.55e-01 | 0.188 | 0.189 | -0.001 | 6.98e-01 |
ADHD | DBSLMM.PseudoVal | LDpred2.Inf | 0.110 | 0.113 | -0.002 | 6.80e-01 | 0.174 | 0.189 | -0.015 | 1.96e-01 |
ADHD | lassosum.MultiPRS | LDpred2.Inf | 0.117 | 0.113 | 0.005 | 7.98e-01 | 0.190 | 0.189 | 0.002 | 8.60e-01 |
ADHD | MegaPRS.10FCVal | LDpred2.Inf | 0.123 | 0.113 | 0.011 | 6.48e-02 | 0.181 | 0.189 | -0.007 | 5.21e-01 |
ADHD | lassosum.10FCVal | LDpred2.Inf | 0.115 | 0.113 | 0.002 | 5.91e-01 | 0.186 | 0.189 | -0.003 | 7.12e-01 |
ADHD | LDpred1.Inf | LDpred2.Inf | 0.111 | 0.113 | -0.001 | 3.99e-01 | 0.188 | 0.189 | -0.001 | 7.78e-01 |
ADHD | All.MultiPRS | pT+clump.MultiPRS | 0.122 | 0.093 | 0.029 | 9.75e-02 | 0.179 | 0.151 | 0.029 | 1.05e-01 |
ADHD | SBayesR.PseudoVal | pT+clump.MultiPRS | 0.111 | 0.093 | 0.018 | 3.03e-01 | 0.189 | 0.151 | 0.038 | 1.58e-02 |
ADHD | MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.121 | 0.093 | 0.028 | 1.10e-01 | 0.175 | 0.151 | 0.024 | 1.29e-01 |
ADHD | pT+clump.MultiPRS | pT+clump.MultiPRS | 0.093 | 0.093 | 0.000 | 1.00e+00 | 0.151 | 0.151 | 0.000 | 1.00e+00 |
ADHD | lassosum.PseudoVal | pT+clump.MultiPRS | 0.080 | 0.093 | -0.014 | 4.44e-01 | 0.108 | 0.151 | -0.043 | 7.00e-02 |
ADHD | LDpred2.PseudoVal | pT+clump.MultiPRS | 0.114 | 0.093 | 0.021 | 2.36e-01 | 0.190 | 0.151 | 0.040 | 9.04e-03 |
ADHD | DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.110 | 0.093 | 0.017 | 3.37e-01 | 0.174 | 0.151 | 0.023 | 1.58e-01 |
ADHD | SBLUP.Inf | pT+clump.MultiPRS | 0.112 | 0.093 | 0.019 | 2.83e-01 | 0.188 | 0.151 | 0.038 | 1.28e-02 |
ADHD | LDpred2.MultiPRS | pT+clump.MultiPRS | 0.113 | 0.093 | 0.019 | 2.71e-01 | 0.190 | 0.151 | 0.039 | 8.00e-03 |
ADHD | pT+clump.10FCVal | pT+clump.MultiPRS | 0.092 | 0.093 | -0.001 | 9.62e-01 | 0.144 | 0.151 | -0.007 | 3.29e-01 |
ADHD | LDpred1.Inf | pT+clump.MultiPRS | 0.111 | 0.093 | 0.018 | 3.08e-01 | 0.188 | 0.151 | 0.037 | 1.86e-02 |
ADHD | LDpred2.Inf | pT+clump.MultiPRS | 0.113 | 0.093 | 0.019 | 2.72e-01 | 0.189 | 0.151 | 0.038 | 1.42e-02 |
ADHD | MegaPRS.10FCVal | pT+clump.MultiPRS | 0.123 | 0.093 | 0.030 | 8.98e-02 | 0.181 | 0.151 | 0.031 | 4.96e-02 |
ADHD | MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.120 | 0.093 | 0.027 | 1.33e-01 | 0.181 | 0.151 | 0.031 | 4.57e-02 |
ADHD | LDpred2.10FCVal | pT+clump.MultiPRS | 0.117 | 0.093 | 0.023 | 1.87e-01 | 0.187 | 0.151 | 0.036 | 1.36e-02 |
ADHD | lassosum.10FCVal | pT+clump.MultiPRS | 0.115 | 0.093 | 0.022 | 2.20e-01 | 0.186 | 0.151 | 0.035 | 1.52e-02 |
ADHD | LDpred1.10FCVal | pT+clump.MultiPRS | 0.114 | 0.093 | 0.021 | 2.39e-01 | 0.190 | 0.151 | 0.040 | 1.08e-02 |
ADHD | lassosum.MultiPRS | pT+clump.MultiPRS | 0.117 | 0.093 | 0.024 | 1.74e-01 | 0.190 | 0.151 | 0.040 | 3.71e-03 |
ADHD | LDpred1.MultiPRS | pT+clump.MultiPRS | 0.113 | 0.093 | 0.020 | 2.61e-01 | 0.190 | 0.151 | 0.039 | 1.11e-02 |
ADHD | LDpred1.Inf | pT+clump.10FCVal | 0.111 | 0.092 | 0.019 | 2.00e-02 | 0.188 | 0.144 | 0.044 | 6.02e-03 |
ADHD | pT+clump.MultiPRS | pT+clump.10FCVal | 0.093 | 0.092 | 0.001 | 9.62e-01 | 0.151 | 0.144 | 0.007 | 3.29e-01 |
ADHD | LDpred2.MultiPRS | pT+clump.10FCVal | 0.113 | 0.092 | 0.020 | 2.54e-01 | 0.190 | 0.144 | 0.046 | 4.49e-03 |
ADHD | SBayesR.PseudoVal | pT+clump.10FCVal | 0.111 | 0.092 | 0.019 | 3.36e-02 | 0.189 | 0.144 | 0.045 | 1.09e-02 |
ADHD | LDpred2.10FCVal | pT+clump.10FCVal | 0.117 | 0.092 | 0.024 | 3.07e-03 | 0.187 | 0.144 | 0.043 | 7.38e-03 |
ADHD | SBLUP.Inf | pT+clump.10FCVal | 0.112 | 0.092 | 0.020 | 1.02e-02 | 0.188 | 0.144 | 0.044 | 3.63e-03 |
ADHD | lassosum.MultiPRS | pT+clump.10FCVal | 0.117 | 0.092 | 0.025 | 1.63e-01 | 0.190 | 0.144 | 0.047 | 4.28e-03 |
ADHD | LDpred2.PseudoVal | pT+clump.10FCVal | 0.114 | 0.092 | 0.022 | 6.31e-03 | 0.190 | 0.144 | 0.046 | 3.18e-03 |
ADHD | LDpred1.MultiPRS | pT+clump.10FCVal | 0.113 | 0.092 | 0.021 | 2.36e-01 | 0.190 | 0.144 | 0.046 | 4.68e-03 |
ADHD | lassosum.10FCVal | pT+clump.10FCVal | 0.115 | 0.092 | 0.022 | 2.72e-03 | 0.186 | 0.144 | 0.042 | 4.85e-03 |
ADHD | LDpred1.10FCVal | pT+clump.10FCVal | 0.114 | 0.092 | 0.022 | 7.45e-03 | 0.190 | 0.144 | 0.046 | 4.07e-03 |
ADHD | MegaPRS.MultiPRS | pT+clump.10FCVal | 0.121 | 0.092 | 0.029 | 1.02e-01 | 0.175 | 0.144 | 0.031 | 7.40e-02 |
ADHD | pT+clump.10FCVal | pT+clump.10FCVal | 0.092 | 0.092 | 0.000 | 1.00e+00 | 0.144 | 0.144 | 0.000 | 1.00e+00 |
ADHD | All.MultiPRS | pT+clump.10FCVal | 0.122 | 0.092 | 0.030 | 8.99e-02 | 0.179 | 0.144 | 0.035 | 7.22e-02 |
ADHD | MegaPRS.PseudoVal | pT+clump.10FCVal | 0.120 | 0.092 | 0.027 | 6.53e-04 | 0.181 | 0.144 | 0.037 | 2.24e-02 |
ADHD | DBSLMM.PseudoVal | pT+clump.10FCVal | 0.110 | 0.092 | 0.018 | 6.69e-02 | 0.174 | 0.144 | 0.030 | 1.22e-01 |
ADHD | MegaPRS.10FCVal | pT+clump.10FCVal | 0.123 | 0.092 | 0.031 | 3.03e-04 | 0.181 | 0.144 | 0.038 | 3.05e-02 |
ADHD | lassosum.PseudoVal | pT+clump.10FCVal | 0.080 | 0.092 | -0.013 | 3.45e-01 | 0.108 | 0.144 | -0.036 | 1.77e-01 |
ADHD | LDpred2.Inf | pT+clump.10FCVal | 0.113 | 0.092 | 0.020 | 1.19e-02 | 0.189 | 0.144 | 0.045 | 4.49e-03 |
ADHD | LDpred1.Inf | SBayesR.PseudoVal | 0.111 | 0.111 | 0.000 | 9.67e-01 | 0.188 | 0.189 | -0.001 | 9.33e-01 |
ADHD | LDpred2.Inf | SBayesR.PseudoVal | 0.113 | 0.111 | 0.001 | 7.83e-01 | 0.189 | 0.189 | 0.000 | 9.80e-01 |
ADHD | MegaPRS.10FCVal | SBayesR.PseudoVal | 0.123 | 0.111 | 0.012 | 1.67e-02 | 0.181 | 0.189 | -0.007 | 4.72e-01 |
ADHD | LDpred2.MultiPRS | SBayesR.PseudoVal | 0.113 | 0.111 | 0.001 | 9.42e-01 | 0.190 | 0.189 | 0.001 | 8.55e-01 |
ADHD | SBayesR.PseudoVal | SBayesR.PseudoVal | 0.111 | 0.111 | 0.000 | 1.00e+00 | 0.189 | 0.189 | 0.000 | 1.00e+00 |
ADHD | lassosum.10FCVal | SBayesR.PseudoVal | 0.115 | 0.111 | 0.003 | 4.91e-01 | 0.186 | 0.189 | -0.003 | 7.80e-01 |
ADHD | pT+clump.MultiPRS | SBayesR.PseudoVal | 0.093 | 0.111 | -0.018 | 3.03e-01 | 0.151 | 0.189 | -0.038 | 1.58e-02 |
ADHD | lassosum.MultiPRS | SBayesR.PseudoVal | 0.117 | 0.111 | 0.006 | 7.44e-01 | 0.190 | 0.189 | 0.002 | 8.22e-01 |
ADHD | LDpred2.PseudoVal | SBayesR.PseudoVal | 0.114 | 0.111 | 0.003 | 4.92e-01 | 0.190 | 0.189 | 0.002 | 8.48e-01 |
ADHD | LDpred2.10FCVal | SBayesR.PseudoVal | 0.117 | 0.111 | 0.005 | 1.09e-01 | 0.187 | 0.189 | -0.002 | 7.99e-01 |
ADHD | MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.121 | 0.111 | 0.010 | 5.73e-01 | 0.175 | 0.189 | -0.014 | 2.23e-01 |
ADHD | LDpred1.10FCVal | SBayesR.PseudoVal | 0.114 | 0.111 | 0.003 | 4.93e-01 | 0.190 | 0.189 | 0.001 | 8.48e-01 |
ADHD | MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.120 | 0.111 | 0.008 | 8.73e-02 | 0.181 | 0.189 | -0.007 | 4.63e-01 |
ADHD | LDpred1.MultiPRS | SBayesR.PseudoVal | 0.113 | 0.111 | 0.002 | 9.19e-01 | 0.190 | 0.189 | 0.001 | 8.57e-01 |
ADHD | All.MultiPRS | SBayesR.PseudoVal | 0.122 | 0.111 | 0.011 | 5.37e-01 | 0.179 | 0.189 | -0.009 | 4.59e-01 |
ADHD | SBLUP.Inf | SBayesR.PseudoVal | 0.112 | 0.111 | 0.001 | 8.64e-01 | 0.188 | 0.189 | -0.001 | 9.50e-01 |
ADHD | DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.110 | 0.111 | -0.001 | 8.40e-01 | 0.174 | 0.189 | -0.015 | 2.03e-01 |
ADHD | pT+clump.10FCVal | SBayesR.PseudoVal | 0.092 | 0.111 | -0.019 | 3.36e-02 | 0.144 | 0.189 | -0.045 | 1.09e-02 |
ADHD | lassosum.PseudoVal | SBayesR.PseudoVal | 0.080 | 0.111 | -0.032 | 1.60e-03 | 0.108 | 0.189 | -0.081 | 5.62e-05 |
ADHD | LDpred2.PseudoVal | SBLUP.Inf | 0.114 | 0.112 | 0.002 | 8.47e-02 | 0.190 | 0.188 | 0.002 | 3.58e-01 |
ADHD | MegaPRS.10FCVal | SBLUP.Inf | 0.123 | 0.112 | 0.011 | 5.33e-02 | 0.181 | 0.188 | -0.007 | 5.63e-01 |
ADHD | lassosum.MultiPRS | SBLUP.Inf | 0.117 | 0.112 | 0.005 | 7.78e-01 | 0.190 | 0.188 | 0.002 | 7.87e-01 |
ADHD | LDpred1.MultiPRS | SBLUP.Inf | 0.113 | 0.112 | 0.001 | 9.55e-01 | 0.190 | 0.188 | 0.002 | 7.11e-01 |
ADHD | All.MultiPRS | SBLUP.Inf | 0.122 | 0.112 | 0.010 | 5.68e-01 | 0.179 | 0.188 | -0.009 | 5.06e-01 |
ADHD | LDpred2.Inf | SBLUP.Inf | 0.113 | 0.112 | 0.000 | 6.55e-01 | 0.189 | 0.188 | 0.001 | 6.98e-01 |
ADHD | MegaPRS.MultiPRS | SBLUP.Inf | 0.121 | 0.112 | 0.009 | 6.05e-01 | 0.175 | 0.188 | -0.013 | 2.68e-01 |
ADHD | pT+clump.MultiPRS | SBLUP.Inf | 0.093 | 0.112 | -0.019 | 2.83e-01 | 0.151 | 0.188 | -0.038 | 1.28e-02 |
ADHD | lassosum.PseudoVal | SBLUP.Inf | 0.080 | 0.112 | -0.032 | 9.88e-03 | 0.108 | 0.188 | -0.080 | 1.22e-03 |
ADHD | SBayesR.PseudoVal | SBLUP.Inf | 0.111 | 0.112 | -0.001 | 8.64e-01 | 0.189 | 0.188 | 0.001 | 9.50e-01 |
ADHD | DBSLMM.PseudoVal | SBLUP.Inf | 0.110 | 0.112 | -0.002 | 7.41e-01 | 0.174 | 0.188 | -0.014 | 2.26e-01 |
ADHD | SBLUP.Inf | SBLUP.Inf | 0.112 | 0.112 | 0.000 | 1.00e+00 | 0.188 | 0.188 | 0.000 | 1.00e+00 |
ADHD | LDpred2.MultiPRS | SBLUP.Inf | 0.113 | 0.112 | 0.001 | 9.77e-01 | 0.190 | 0.188 | 0.002 | 7.53e-01 |
ADHD | pT+clump.10FCVal | SBLUP.Inf | 0.092 | 0.112 | -0.020 | 1.02e-02 | 0.144 | 0.188 | -0.044 | 3.63e-03 |
ADHD | LDpred1.Inf | SBLUP.Inf | 0.111 | 0.112 | -0.001 | 5.89e-01 | 0.188 | 0.188 | 0.000 | 9.61e-01 |
ADHD | lassosum.10FCVal | SBLUP.Inf | 0.115 | 0.112 | 0.003 | 4.75e-01 | 0.186 | 0.188 | -0.002 | 7.63e-01 |
ADHD | LDpred1.10FCVal | SBLUP.Inf | 0.114 | 0.112 | 0.002 | 3.55e-01 | 0.190 | 0.188 | 0.002 | 6.08e-01 |
ADHD | MegaPRS.PseudoVal | SBLUP.Inf | 0.120 | 0.112 | 0.008 | 9.96e-02 | 0.181 | 0.188 | -0.007 | 4.73e-01 |
ADHD | LDpred2.10FCVal | SBLUP.Inf | 0.117 | 0.112 | 0.004 | 1.38e-01 | 0.187 | 0.188 | -0.001 | 8.53e-01 |
Show differences between methods
Show results
Show table: UKBB (1KG ref)
Method | Model | IndepVal R (SE) |
---|---|---|
pT+clump | 10FCVal | 0.153 (0.004) |
pT+clump | MultiPRS | 0.174 (0.004) |
lassosum | 10FCVal | 0.183 (0.004) |
lassosum | MultiPRS | 0.194 (0.004) |
lassosum | PseudoVal | 0.157 (0.004) |
PRScs | 10FCVal | 0.183 (0.004) |
PRScs | MultiPRS | 0.187 (0.004) |
PRScs | PseudoVal | 0.182 (0.004) |
SBLUP | Inf | 0.156 (0.004) |
SBayesR | PseudoVal | 0.167 (0.004) |
LDpred1 | 10FCVal | 0.171 (0.004) |
LDpred1 | MultiPRS | 0.175 (0.004) |
LDpred1 | Inf | 0.156 (0.004) |
LDpred2 | 10FCVal | 0.187 (0.004) |
LDpred2 | MultiPRS | 0.191 (0.004) |
LDpred2 | PseudoVal | 0.151 (0.004) |
LDpred2 | Inf | 0.155 (0.004) |
DBSLMM | PseudoVal | 0.175 (0.004) |
MegaPRS | 10FCVal | 0.192 (0.004) |
MegaPRS | MultiPRS | 0.194 (0.004) |
MegaPRS | PseudoVal | 0.183 (0.004) |
All | MultiPRS | 0.203 (0.004) |
Show table: UKBB (UKBB ref)
Method | Model | IndepVal R (SE) |
---|---|---|
pT+clump | 10FCVal | 0.152 (0.004) |
pT+clump | MultiPRS | 0.174 (0.004) |
lassosum | 10FCVal | 0.183 (0.004) |
lassosum | MultiPRS | 0.193 (0.004) |
lassosum | PseudoVal | 0.167 (0.004) |
SBLUP | Inf | 0.155 (0.004) |
SBayesR | PseudoVal | 0.178 (0.004) |
LDpred1 | 10FCVal | 0.171 (0.004) |
LDpred1 | MultiPRS | 0.176 (0.004) |
LDpred1 | Inf | 0.155 (0.004) |
LDpred2 | 10FCVal | 0.19 (0.004) |
LDpred2 | MultiPRS | 0.194 (0.004) |
LDpred2 | PseudoVal | 0.168 (0.004) |
LDpred2 | Inf | 0.154 (0.004) |
DBSLMM | PseudoVal | 0.177 (0.004) |
MegaPRS | 10FCVal | 0.193 (0.004) |
MegaPRS | MultiPRS | 0.196 (0.004) |
MegaPRS | PseudoVal | 0.188 (0.004) |
All | MultiPRS | 0.203 (0.004) |
Show table: TEDS (1KG ref)
Method | Model | IndepVal R (SE) |
---|---|---|
pT+clump | 10FCVal | 0.279 (0.016) |
pT+clump | MultiPRS | 0.293 (0.016) |
lassosum | 10FCVal | 0.325 (0.016) |
lassosum | MultiPRS | 0.328 (0.016) |
lassosum | PseudoVal | 0.245 (0.016) |
PRScs | 10FCVal | 0.327 (0.016) |
PRScs | MultiPRS | 0.328 (0.016) |
PRScs | PseudoVal | 0.319 (0.016) |
SBLUP | Inf | 0.303 (0.016) |
SBayesR | PseudoVal | 0.303 (0.016) |
LDpred1 | 10FCVal | 0.302 (0.016) |
LDpred1 | MultiPRS | 0.308 (0.016) |
LDpred1 | Inf | 0.305 (0.016) |
LDpred2 | 10FCVal | 0.325 (0.016) |
LDpred2 | MultiPRS | 0.319 (0.016) |
LDpred2 | PseudoVal | 0.303 (0.016) |
LDpred2 | Inf | 0.303 (0.016) |
DBSLMM | PseudoVal | 0.313 (0.016) |
MegaPRS | 10FCVal | 0.331 (0.016) |
MegaPRS | MultiPRS | 0.328 (0.016) |
MegaPRS | PseudoVal | 0.32 (0.016) |
All | MultiPRS | 0.327 (0.016) |
Show table: TEDS (UKBB ref)
Method | Model | IndepVal R (SE) |
---|---|---|
pT+clump | 10FCVal | 0.274 (0.016) |
pT+clump | MultiPRS | 0.29 (0.016) |
lassosum | 10FCVal | 0.329 (0.016) |
lassosum | MultiPRS | 0.332 (0.016) |
lassosum | PseudoVal | 0.264 (0.016) |
SBLUP | Inf | 0.309 (0.016) |
SBayesR | PseudoVal | 0.336 (0.016) |
LDpred1 | 10FCVal | 0.305 (0.016) |
LDpred1 | MultiPRS | 0.313 (0.016) |
LDpred1 | Inf | 0.309 (0.016) |
LDpred2 | 10FCVal | 0.334 (0.016) |
LDpred2 | MultiPRS | 0.337 (0.016) |
LDpred2 | PseudoVal | 0.336 (0.016) |
LDpred2 | Inf | 0.313 (0.016) |
DBSLMM | PseudoVal | 0.317 (0.016) |
MegaPRS | 10FCVal | 0.341 (0.016) |
MegaPRS | MultiPRS | 0.339 (0.016) |
MegaPRS | PseudoVal | 0.337 (0.016) |
All | MultiPRS | 0.34 (0.016) |
Show results
Show results
Show table: UKBB (1KG ref)
Reference | Test | IndepVal Diff | IndepVal Diff (%) | IndepVal Diff Z | IndepVal Diff P |
---|---|---|---|---|---|
pT+clump.10FCVal | pT+clump.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.MultiPRS | pT+clump.10FCVal | -0.020 | -13.020 | -6.724 | 1.77e-11 |
lassosum.10FCVal | pT+clump.10FCVal | -0.035 | -22.615 | -19.871 | 7.24e-88 |
lassosum.MultiPRS | pT+clump.10FCVal | -0.044 | -28.560 | -14.796 | 1.55e-49 |
lassosum.PseudoVal | pT+clump.10FCVal | -0.004 | -2.616 | -2.119 | 3.41e-02 |
PRScs.10FCVal | pT+clump.10FCVal | -0.036 | -23.037 | -19.236 | 1.84e-82 |
PRScs.MultiPRS | pT+clump.10FCVal | -0.039 | -25.496 | -13.216 | 7.11e-40 |
PRScs.PseudoVal | pT+clump.10FCVal | -0.034 | -21.666 | -18.786 | 9.88e-79 |
SBLUP.Inf | pT+clump.10FCVal | -0.008 | -4.963 | -3.517 | 4.36e-04 |
SBayesR.PseudoVal | pT+clump.10FCVal | -0.015 | -9.829 | -8.242 | 1.70e-16 |
LDpred1.10FCVal | pT+clump.10FCVal | -0.024 | -15.258 | -12.312 | 7.80e-35 |
LDpred1.MultiPRS | pT+clump.10FCVal | -0.027 | -17.272 | -8.939 | 3.92e-19 |
LDpred1.Inf | pT+clump.10FCVal | -0.008 | -5.186 | -3.784 | 1.54e-04 |
LDpred2.10FCVal | pT+clump.10FCVal | -0.039 | -25.109 | -23.022 | 2.79e-117 |
LDpred2.MultiPRS | pT+clump.10FCVal | -0.042 | -27.112 | -14.034 | 9.72e-45 |
LDpred2.PseudoVal | pT+clump.10FCVal | 0.000 | -0.101 | -0.069 | 9.45e-01 |
LDpred2.Inf | pT+clump.10FCVal | -0.006 | -3.751 | -2.610 | 9.04e-03 |
DBSLMM.PseudoVal | pT+clump.10FCVal | -0.027 | -17.677 | -15.912 | 5.21e-57 |
MegaPRS.10FCVal | pT+clump.10FCVal | -0.043 | -27.985 | -24.318 | 1.28e-130 |
MegaPRS.MultiPRS | pT+clump.10FCVal | -0.046 | -29.636 | -15.383 | 2.12e-53 |
MegaPRS.PseudoVal | pT+clump.10FCVal | -0.034 | -21.923 | -19.513 | 8.55e-85 |
All.MultiPRS | pT+clump.10FCVal | -0.053 | -33.939 | -17.646 | 1.10e-69 |
pT+clump.10FCVal | pT+clump.MultiPRS | 0.020 | 11.520 | 6.724 | 1.77e-11 |
pT+clump.MultiPRS | pT+clump.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.10FCVal | pT+clump.MultiPRS | -0.015 | -8.490 | -4.978 | 6.41e-07 |
lassosum.MultiPRS | pT+clump.MultiPRS | -0.024 | -13.750 | -8.081 | 6.40e-16 |
lassosum.PseudoVal | pT+clump.MultiPRS | 0.016 | 9.205 | 5.371 | 7.84e-08 |
PRScs.10FCVal | pT+clump.MultiPRS | -0.016 | -8.863 | -5.197 | 2.02e-07 |
PRScs.MultiPRS | pT+clump.MultiPRS | -0.019 | -11.039 | -6.477 | 9.38e-11 |
PRScs.PseudoVal | pT+clump.MultiPRS | -0.013 | -7.651 | -4.484 | 7.33e-06 |
SBLUP.Inf | pT+clump.MultiPRS | 0.012 | 7.128 | 4.164 | 3.13e-05 |
SBayesR.PseudoVal | pT+clump.MultiPRS | 0.005 | 2.823 | 1.650 | 9.90e-02 |
LDpred1.10FCVal | pT+clump.MultiPRS | -0.003 | -1.981 | -1.159 | 2.46e-01 |
LDpred1.MultiPRS | pT+clump.MultiPRS | -0.007 | -3.762 | -2.201 | 2.77e-02 |
LDpred1.Inf | pT+clump.MultiPRS | 0.012 | 6.931 | 4.049 | 5.13e-05 |
LDpred2.10FCVal | pT+clump.MultiPRS | -0.019 | -10.697 | -6.274 | 3.52e-10 |
LDpred2.MultiPRS | pT+clump.MultiPRS | -0.022 | -12.469 | -7.324 | 2.41e-13 |
LDpred2.PseudoVal | pT+clump.MultiPRS | 0.020 | 11.430 | 6.666 | 2.63e-11 |
LDpred2.Inf | pT+clump.MultiPRS | 0.014 | 8.201 | 4.789 | 1.68e-06 |
DBSLMM.PseudoVal | pT+clump.MultiPRS | -0.007 | -4.120 | -2.413 | 1.58e-02 |
MegaPRS.10FCVal | pT+clump.MultiPRS | -0.023 | -13.241 | -7.774 | 7.63e-15 |
MegaPRS.MultiPRS | pT+clump.MultiPRS | -0.026 | -14.702 | -8.635 | 5.89e-18 |
MegaPRS.PseudoVal | pT+clump.MultiPRS | -0.014 | -7.878 | -4.616 | 3.91e-06 |
All.MultiPRS | pT+clump.MultiPRS | -0.032 | -18.510 | -10.893 | 1.24e-27 |
pT+clump.10FCVal | lassosum.10FCVal | 0.035 | 18.444 | 19.871 | 7.24e-88 |
pT+clump.MultiPRS | lassosum.10FCVal | 0.015 | 7.825 | 4.978 | 6.41e-07 |
lassosum.10FCVal | lassosum.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.MultiPRS | lassosum.10FCVal | -0.009 | -4.849 | -3.092 | 1.99e-03 |
lassosum.PseudoVal | lassosum.10FCVal | 0.031 | 16.310 | 21.066 | 1.62e-98 |
PRScs.10FCVal | lassosum.10FCVal | -0.001 | -0.344 | -0.747 | 4.55e-01 |
PRScs.MultiPRS | lassosum.10FCVal | -0.004 | -2.350 | -1.501 | 1.33e-01 |
PRScs.PseudoVal | lassosum.10FCVal | 0.001 | 0.774 | 1.445 | 1.49e-01 |
SBLUP.Inf | lassosum.10FCVal | 0.027 | 14.396 | 18.505 | 1.88e-76 |
SBayesR.PseudoVal | lassosum.10FCVal | 0.020 | 10.428 | 11.949 | 6.54e-33 |
LDpred1.10FCVal | lassosum.10FCVal | 0.011 | 6.000 | 9.228 | 2.75e-20 |
LDpred1.MultiPRS | lassosum.10FCVal | 0.008 | 4.357 | 2.782 | 5.41e-03 |
LDpred1.Inf | lassosum.10FCVal | 0.027 | 14.214 | 18.843 | 3.35e-79 |
LDpred2.10FCVal | lassosum.10FCVal | -0.004 | -2.035 | -3.526 | 4.21e-04 |
LDpred2.MultiPRS | lassosum.10FCVal | -0.007 | -3.668 | -2.341 | 1.93e-02 |
LDpred2.PseudoVal | lassosum.10FCVal | 0.035 | 18.361 | 21.630 | 9.31e-104 |
LDpred2.Inf | lassosum.10FCVal | 0.029 | 15.385 | 18.957 | 3.88e-80 |
DBSLMM.PseudoVal | lassosum.10FCVal | 0.008 | 4.027 | 5.679 | 1.35e-08 |
MegaPRS.10FCVal | lassosum.10FCVal | -0.008 | -4.380 | -7.781 | 7.22e-15 |
MegaPRS.MultiPRS | lassosum.10FCVal | -0.011 | -5.726 | -3.663 | 2.49e-04 |
MegaPRS.PseudoVal | lassosum.10FCVal | 0.001 | 0.564 | 0.874 | 3.82e-01 |
All.MultiPRS | lassosum.10FCVal | -0.018 | -9.236 | -5.912 | 3.39e-09 |
pT+clump.10FCVal | lassosum.MultiPRS | 0.044 | 22.215 | 14.796 | 1.55e-49 |
pT+clump.MultiPRS | lassosum.MultiPRS | 0.024 | 12.088 | 8.081 | 6.40e-16 |
lassosum.10FCVal | lassosum.MultiPRS | 0.009 | 4.625 | 3.092 | 1.99e-03 |
lassosum.MultiPRS | lassosum.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.PseudoVal | lassosum.MultiPRS | 0.040 | 20.181 | 13.452 | 3.00e-41 |
PRScs.10FCVal | lassosum.MultiPRS | 0.009 | 4.296 | 2.872 | 4.08e-03 |
PRScs.MultiPRS | lassosum.MultiPRS | 0.005 | 2.383 | 2.364 | 1.81e-02 |
PRScs.PseudoVal | lassosum.MultiPRS | 0.011 | 5.362 | 3.583 | 3.40e-04 |
SBLUP.Inf | lassosum.MultiPRS | 0.037 | 18.355 | 12.218 | 2.49e-34 |
SBayesR.PseudoVal | lassosum.MultiPRS | 0.029 | 14.570 | 9.733 | 2.19e-22 |
LDpred1.10FCVal | lassosum.MultiPRS | 0.021 | 10.347 | 6.901 | 5.15e-12 |
LDpred1.MultiPRS | lassosum.MultiPRS | 0.017 | 8.781 | 7.264 | 3.76e-13 |
LDpred1.Inf | lassosum.MultiPRS | 0.036 | 18.181 | 12.100 | 1.06e-33 |
LDpred2.10FCVal | lassosum.MultiPRS | 0.005 | 2.684 | 1.797 | 7.24e-02 |
LDpred2.MultiPRS | lassosum.MultiPRS | 0.002 | 1.126 | 1.039 | 2.99e-01 |
LDpred2.PseudoVal | lassosum.MultiPRS | 0.044 | 22.137 | 14.727 | 4.31e-49 |
LDpred2.Inf | lassosum.MultiPRS | 0.038 | 19.298 | 12.843 | 9.36e-38 |
DBSLMM.PseudoVal | lassosum.MultiPRS | 0.017 | 8.466 | 5.653 | 1.58e-08 |
MegaPRS.10FCVal | lassosum.MultiPRS | 0.001 | 0.448 | 0.300 | 7.64e-01 |
MegaPRS.MultiPRS | lassosum.MultiPRS | -0.002 | -0.837 | -0.714 | 4.75e-01 |
MegaPRS.PseudoVal | lassosum.MultiPRS | 0.010 | 5.162 | 3.452 | 5.56e-04 |
All.MultiPRS | lassosum.MultiPRS | -0.008 | -4.184 | -4.406 | 1.06e-05 |
pT+clump.10FCVal | lassosum.PseudoVal | 0.004 | 2.549 | 2.119 | 3.41e-02 |
pT+clump.MultiPRS | lassosum.PseudoVal | -0.016 | -10.139 | -5.371 | 7.84e-08 |
lassosum.10FCVal | lassosum.PseudoVal | -0.031 | -19.489 | -21.066 | 1.62e-98 |
lassosum.MultiPRS | lassosum.PseudoVal | -0.040 | -25.283 | -13.452 | 3.00e-41 |
lassosum.PseudoVal | lassosum.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.10FCVal | lassosum.PseudoVal | -0.032 | -19.901 | -19.392 | 9.04e-84 |
PRScs.MultiPRS | lassosum.PseudoVal | -0.035 | -22.297 | -11.869 | 1.71e-32 |
PRScs.PseudoVal | lassosum.PseudoVal | -0.029 | -18.565 | -20.610 | 2.25e-94 |
SBLUP.Inf | lassosum.PseudoVal | -0.004 | -2.288 | -1.715 | 8.63e-02 |
SBayesR.PseudoVal | lassosum.PseudoVal | -0.011 | -7.029 | -6.858 | 6.99e-12 |
LDpred1.10FCVal | lassosum.PseudoVal | -0.020 | -12.320 | -12.368 | 3.90e-35 |
LDpred1.MultiPRS | lassosum.PseudoVal | -0.023 | -14.283 | -7.599 | 2.98e-14 |
LDpred1.Inf | lassosum.PseudoVal | -0.004 | -2.505 | -1.949 | 5.13e-02 |
LDpred2.10FCVal | lassosum.PseudoVal | -0.035 | -21.920 | -24.441 | 6.26e-132 |
LDpred2.MultiPRS | lassosum.PseudoVal | -0.038 | -23.872 | -12.691 | 6.67e-37 |
LDpred2.PseudoVal | lassosum.PseudoVal | 0.004 | 2.450 | 1.918 | 5.52e-02 |
LDpred2.Inf | lassosum.PseudoVal | -0.002 | -1.106 | -0.817 | 4.14e-01 |
DBSLMM.PseudoVal | lassosum.PseudoVal | -0.023 | -14.677 | -14.968 | 1.19e-50 |
MegaPRS.10FCVal | lassosum.PseudoVal | -0.039 | -24.722 | -24.636 | 5.17e-134 |
MegaPRS.MultiPRS | lassosum.PseudoVal | -0.042 | -26.332 | -14.043 | 8.48e-45 |
MegaPRS.PseudoVal | lassosum.PseudoVal | -0.030 | -18.815 | -20.161 | 2.15e-90 |
All.MultiPRS | lassosum.PseudoVal | -0.048 | -30.525 | -16.285 | 1.27e-59 |
pT+clump.10FCVal | PRScs.10FCVal | 0.036 | 18.724 | 19.236 | 1.84e-82 |
pT+clump.MultiPRS | PRScs.10FCVal | 0.016 | 8.142 | 5.197 | 2.02e-07 |
lassosum.10FCVal | PRScs.10FCVal | 0.001 | 0.343 | 0.747 | 4.55e-01 |
lassosum.MultiPRS | PRScs.10FCVal | -0.009 | -4.489 | -2.872 | 4.08e-03 |
lassosum.PseudoVal | PRScs.10FCVal | 0.032 | 16.598 | 19.392 | 9.04e-84 |
PRScs.10FCVal | PRScs.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.MultiPRS | PRScs.10FCVal | -0.004 | -1.999 | -1.281 | 2.00e-01 |
PRScs.PseudoVal | PRScs.10FCVal | 0.002 | 1.114 | 2.797 | 5.16e-03 |
SBLUP.Inf | PRScs.10FCVal | 0.028 | 14.690 | 22.036 | 1.30e-107 |
SBayesR.PseudoVal | PRScs.10FCVal | 0.020 | 10.735 | 12.128 | 7.48e-34 |
LDpred1.10FCVal | PRScs.10FCVal | 0.012 | 6.322 | 10.950 | 6.62e-28 |
LDpred1.MultiPRS | PRScs.10FCVal | 0.009 | 4.686 | 3.002 | 2.68e-03 |
LDpred1.Inf | PRScs.10FCVal | 0.028 | 14.508 | 22.021 | 1.81e-107 |
LDpred2.10FCVal | PRScs.10FCVal | -0.003 | -1.684 | -2.912 | 3.59e-03 |
LDpred2.MultiPRS | PRScs.10FCVal | -0.006 | -3.312 | -2.121 | 3.39e-02 |
LDpred2.PseudoVal | PRScs.10FCVal | 0.035 | 18.641 | 25.153 | 1.30e-139 |
LDpred2.Inf | PRScs.10FCVal | 0.030 | 15.675 | 22.427 | 2.15e-111 |
DBSLMM.PseudoVal | PRScs.10FCVal | 0.008 | 4.357 | 7.086 | 1.38e-12 |
MegaPRS.10FCVal | PRScs.10FCVal | -0.008 | -4.021 | -7.143 | 9.11e-13 |
MegaPRS.MultiPRS | PRScs.10FCVal | -0.010 | -5.364 | -3.442 | 5.77e-04 |
MegaPRS.PseudoVal | PRScs.10FCVal | 0.002 | 0.905 | 1.395 | 1.63e-01 |
All.MultiPRS | PRScs.10FCVal | -0.017 | -8.861 | -5.691 | 1.26e-08 |
pT+clump.10FCVal | PRScs.MultiPRS | 0.039 | 20.316 | 13.216 | 7.11e-40 |
pT+clump.MultiPRS | PRScs.MultiPRS | 0.019 | 9.942 | 6.477 | 9.38e-11 |
lassosum.10FCVal | PRScs.MultiPRS | 0.004 | 2.296 | 1.501 | 1.33e-01 |
lassosum.MultiPRS | PRScs.MultiPRS | -0.005 | -2.441 | -2.364 | 1.81e-02 |
lassosum.PseudoVal | PRScs.MultiPRS | 0.035 | 18.232 | 11.869 | 1.71e-32 |
PRScs.10FCVal | PRScs.MultiPRS | 0.004 | 1.960 | 1.281 | 2.00e-01 |
PRScs.MultiPRS | PRScs.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.PseudoVal | PRScs.MultiPRS | 0.006 | 3.052 | 1.996 | 4.59e-02 |
SBLUP.Inf | PRScs.MultiPRS | 0.032 | 16.361 | 10.660 | 1.56e-26 |
SBayesR.PseudoVal | PRScs.MultiPRS | 0.024 | 12.484 | 8.155 | 3.50e-16 |
LDpred1.10FCVal | PRScs.MultiPRS | 0.016 | 8.158 | 5.325 | 1.01e-07 |
LDpred1.MultiPRS | PRScs.MultiPRS | 0.013 | 6.553 | 6.298 | 3.02e-10 |
LDpred1.Inf | PRScs.MultiPRS | 0.031 | 16.184 | 10.547 | 5.26e-26 |
LDpred2.10FCVal | PRScs.MultiPRS | 0.001 | 0.308 | 0.202 | 8.40e-01 |
LDpred2.MultiPRS | PRScs.MultiPRS | -0.003 | -1.288 | -1.149 | 2.51e-01 |
LDpred2.PseudoVal | PRScs.MultiPRS | 0.039 | 20.236 | 13.167 | 1.35e-39 |
LDpred2.Inf | PRScs.MultiPRS | 0.034 | 17.327 | 11.288 | 1.50e-29 |
DBSLMM.PseudoVal | PRScs.MultiPRS | 0.012 | 6.231 | 4.071 | 4.68e-05 |
MegaPRS.10FCVal | PRScs.MultiPRS | -0.004 | -1.983 | -1.299 | 1.94e-01 |
MegaPRS.MultiPRS | PRScs.MultiPRS | -0.006 | -3.299 | -2.916 | 3.55e-03 |
MegaPRS.PseudoVal | PRScs.MultiPRS | 0.006 | 2.847 | 1.861 | 6.28e-02 |
All.MultiPRS | PRScs.MultiPRS | -0.013 | -6.727 | -5.510 | 3.60e-08 |
pT+clump.10FCVal | PRScs.PseudoVal | 0.034 | 17.808 | 18.786 | 9.88e-79 |
pT+clump.MultiPRS | PRScs.PseudoVal | 0.013 | 7.107 | 4.484 | 7.33e-06 |
lassosum.10FCVal | PRScs.PseudoVal | -0.001 | -0.780 | -1.445 | 1.49e-01 |
lassosum.MultiPRS | PRScs.PseudoVal | -0.011 | -5.666 | -3.583 | 3.40e-04 |
lassosum.PseudoVal | PRScs.PseudoVal | 0.029 | 15.658 | 20.610 | 2.25e-94 |
PRScs.10FCVal | PRScs.PseudoVal | -0.002 | -1.127 | -2.797 | 5.16e-03 |
PRScs.MultiPRS | PRScs.PseudoVal | -0.006 | -3.148 | -1.996 | 4.59e-02 |
PRScs.PseudoVal | PRScs.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBLUP.Inf | PRScs.PseudoVal | 0.026 | 13.728 | 17.804 | 6.54e-71 |
SBayesR.PseudoVal | PRScs.PseudoVal | 0.018 | 9.729 | 10.739 | 6.70e-27 |
LDpred1.10FCVal | PRScs.PseudoVal | 0.010 | 5.267 | 10.132 | 3.98e-24 |
LDpred1.MultiPRS | PRScs.PseudoVal | 0.007 | 3.612 | 2.287 | 2.22e-02 |
LDpred1.Inf | PRScs.PseudoVal | 0.026 | 13.545 | 19.530 | 6.08e-85 |
LDpred2.10FCVal | PRScs.PseudoVal | -0.005 | -2.830 | -5.564 | 2.64e-08 |
LDpred2.MultiPRS | PRScs.PseudoVal | -0.008 | -4.476 | -2.833 | 4.61e-03 |
LDpred2.PseudoVal | PRScs.PseudoVal | 0.033 | 17.725 | 22.100 | 3.14e-108 |
LDpred2.Inf | PRScs.PseudoVal | 0.028 | 14.725 | 18.304 | 7.65e-75 |
DBSLMM.PseudoVal | PRScs.PseudoVal | 0.006 | 3.279 | 6.561 | 5.36e-11 |
MegaPRS.10FCVal | PRScs.PseudoVal | -0.010 | -5.193 | -9.218 | 3.01e-20 |
MegaPRS.MultiPRS | PRScs.PseudoVal | -0.012 | -6.551 | -4.158 | 3.22e-05 |
MegaPRS.PseudoVal | PRScs.PseudoVal | 0.000 | -0.211 | -0.371 | 7.11e-01 |
All.MultiPRS | PRScs.PseudoVal | -0.019 | -10.087 | -6.403 | 1.53e-10 |
pT+clump.10FCVal | SBLUP.Inf | 0.008 | 4.729 | 3.517 | 4.36e-04 |
pT+clump.MultiPRS | SBLUP.Inf | -0.012 | -7.675 | -4.164 | 3.13e-05 |
lassosum.10FCVal | SBLUP.Inf | -0.027 | -16.817 | -18.505 | 1.88e-76 |
lassosum.MultiPRS | SBLUP.Inf | -0.037 | -22.481 | -12.218 | 2.49e-34 |
lassosum.PseudoVal | SBLUP.Inf | 0.004 | 2.237 | 1.715 | 8.63e-02 |
PRScs.10FCVal | SBLUP.Inf | -0.028 | -17.219 | -22.036 | 1.30e-107 |
PRScs.MultiPRS | SBLUP.Inf | -0.032 | -19.562 | -10.660 | 1.56e-26 |
PRScs.PseudoVal | SBLUP.Inf | -0.026 | -15.913 | -17.804 | 6.54e-71 |
SBLUP.Inf | SBLUP.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBayesR.PseudoVal | SBLUP.Inf | -0.008 | -4.635 | -3.881 | 1.04e-04 |
LDpred1.10FCVal | SBLUP.Inf | -0.016 | -9.808 | -12.976 | 1.68e-38 |
LDpred1.MultiPRS | SBLUP.Inf | -0.019 | -11.727 | -6.385 | 1.71e-10 |
LDpred1.Inf | SBLUP.Inf | 0.000 | -0.212 | -0.397 | 6.91e-01 |
LDpred2.10FCVal | SBLUP.Inf | -0.031 | -19.193 | -19.484 | 1.50e-84 |
LDpred2.MultiPRS | SBLUP.Inf | -0.034 | -21.102 | -11.480 | 1.66e-30 |
LDpred2.PseudoVal | SBLUP.Inf | 0.008 | 4.632 | 9.685 | 3.51e-22 |
LDpred2.Inf | SBLUP.Inf | 0.002 | 1.155 | 6.110 | 9.97e-10 |
DBSLMM.PseudoVal | SBLUP.Inf | -0.020 | -12.112 | -11.279 | 1.66e-29 |
MegaPRS.10FCVal | SBLUP.Inf | -0.036 | -21.933 | -24.795 | 1.02e-135 |
MegaPRS.MultiPRS | SBLUP.Inf | -0.038 | -23.506 | -12.812 | 1.41e-37 |
MegaPRS.PseudoVal | SBLUP.Inf | -0.026 | -16.158 | -15.590 | 8.57e-55 |
All.MultiPRS | SBLUP.Inf | -0.045 | -27.606 | -15.056 | 3.17e-51 |
pT+clump.10FCVal | SBayesR.PseudoVal | 0.015 | 8.949 | 8.242 | 1.70e-16 |
pT+clump.MultiPRS | SBayesR.PseudoVal | -0.005 | -2.905 | -1.650 | 9.90e-02 |
lassosum.10FCVal | SBayesR.PseudoVal | -0.020 | -11.642 | -11.949 | 6.54e-33 |
lassosum.MultiPRS | SBayesR.PseudoVal | -0.029 | -17.055 | -9.733 | 2.19e-22 |
lassosum.PseudoVal | SBayesR.PseudoVal | 0.011 | 6.568 | 6.858 | 6.99e-12 |
PRScs.10FCVal | SBayesR.PseudoVal | -0.020 | -12.026 | -12.128 | 7.48e-34 |
PRScs.MultiPRS | SBayesR.PseudoVal | -0.024 | -14.265 | -8.155 | 3.50e-16 |
PRScs.PseudoVal | SBayesR.PseudoVal | -0.018 | -10.778 | -10.739 | 6.70e-27 |
SBLUP.Inf | SBayesR.PseudoVal | 0.008 | 4.430 | 3.881 | 1.04e-04 |
SBayesR.PseudoVal | SBayesR.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.10FCVal | SBayesR.PseudoVal | -0.008 | -4.943 | -5.008 | 5.51e-07 |
LDpred1.MultiPRS | SBayesR.PseudoVal | -0.012 | -6.777 | -3.868 | 1.10e-04 |
LDpred1.Inf | SBayesR.PseudoVal | 0.007 | 4.227 | 3.665 | 2.47e-04 |
LDpred2.10FCVal | SBayesR.PseudoVal | -0.024 | -13.913 | -14.632 | 1.76e-48 |
LDpred2.MultiPRS | SBayesR.PseudoVal | -0.027 | -15.737 | -8.980 | 2.70e-19 |
LDpred2.PseudoVal | SBayesR.PseudoVal | 0.015 | 8.857 | 7.975 | 1.52e-15 |
LDpred2.Inf | SBayesR.PseudoVal | 0.009 | 5.534 | 4.781 | 1.74e-06 |
DBSLMM.PseudoVal | SBayesR.PseudoVal | -0.012 | -7.145 | -7.132 | 9.89e-13 |
MegaPRS.10FCVal | SBayesR.PseudoVal | -0.028 | -16.531 | -17.588 | 3.07e-69 |
MegaPRS.MultiPRS | SBayesR.PseudoVal | -0.031 | -18.035 | -10.317 | 5.91e-25 |
MegaPRS.PseudoVal | SBayesR.PseudoVal | -0.019 | -11.012 | -11.980 | 4.51e-33 |
All.MultiPRS | SBayesR.PseudoVal | -0.037 | -21.952 | -12.571 | 3.06e-36 |
pT+clump.10FCVal | LDpred1.10FCVal | 0.024 | 13.238 | 12.312 | 7.80e-35 |
pT+clump.MultiPRS | LDpred1.10FCVal | 0.003 | 1.942 | 1.159 | 2.46e-01 |
lassosum.10FCVal | LDpred1.10FCVal | -0.011 | -6.383 | -9.228 | 2.75e-20 |
lassosum.MultiPRS | LDpred1.10FCVal | -0.021 | -11.541 | -6.901 | 5.15e-12 |
lassosum.PseudoVal | LDpred1.10FCVal | 0.020 | 10.969 | 12.368 | 3.90e-35 |
PRScs.10FCVal | LDpred1.10FCVal | -0.012 | -6.749 | -10.950 | 6.62e-28 |
PRScs.MultiPRS | LDpred1.10FCVal | -0.016 | -8.883 | -5.325 | 1.01e-07 |
PRScs.PseudoVal | LDpred1.10FCVal | -0.010 | -5.560 | -10.132 | 3.98e-24 |
SBLUP.Inf | LDpred1.10FCVal | 0.016 | 8.932 | 12.976 | 1.68e-38 |
SBayesR.PseudoVal | LDpred1.10FCVal | 0.008 | 4.710 | 5.008 | 5.51e-07 |
LDpred1.10FCVal | LDpred1.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.MultiPRS | LDpred1.10FCVal | -0.003 | -1.747 | -1.047 | 2.95e-01 |
LDpred1.Inf | LDpred1.10FCVal | 0.016 | 8.738 | 18.234 | 2.79e-74 |
LDpred2.10FCVal | LDpred1.10FCVal | -0.015 | -8.547 | -13.324 | 1.67e-40 |
LDpred2.MultiPRS | LDpred1.10FCVal | -0.018 | -10.285 | -6.158 | 7.36e-10 |
LDpred2.PseudoVal | LDpred1.10FCVal | 0.023 | 13.150 | 18.108 | 2.78e-73 |
LDpred2.Inf | LDpred1.10FCVal | 0.018 | 9.984 | 13.602 | 3.90e-42 |
DBSLMM.PseudoVal | LDpred1.10FCVal | -0.004 | -2.098 | -2.989 | 2.80e-03 |
MegaPRS.10FCVal | LDpred1.10FCVal | -0.020 | -11.042 | -17.341 | 2.29e-67 |
MegaPRS.MultiPRS | LDpred1.10FCVal | -0.022 | -12.475 | -7.485 | 7.14e-14 |
MegaPRS.PseudoVal | LDpred1.10FCVal | -0.010 | -5.783 | -8.438 | 3.22e-17 |
All.MultiPRS | LDpred1.10FCVal | -0.029 | -16.208 | -9.729 | 2.28e-22 |
pT+clump.10FCVal | LDpred1.MultiPRS | 0.027 | 14.728 | 8.939 | 3.92e-19 |
pT+clump.MultiPRS | LDpred1.MultiPRS | 0.007 | 3.626 | 2.201 | 2.77e-02 |
lassosum.10FCVal | LDpred1.MultiPRS | -0.008 | -4.556 | -2.782 | 5.41e-03 |
lassosum.MultiPRS | LDpred1.MultiPRS | -0.017 | -9.626 | -7.264 | 3.76e-13 |
lassosum.PseudoVal | LDpred1.MultiPRS | 0.023 | 12.498 | 7.599 | 2.98e-14 |
PRScs.10FCVal | LDpred1.MultiPRS | -0.009 | -4.916 | -3.002 | 2.68e-03 |
PRScs.MultiPRS | LDpred1.MultiPRS | -0.013 | -7.013 | -6.298 | 3.02e-10 |
PRScs.PseudoVal | LDpred1.MultiPRS | -0.007 | -3.747 | -2.287 | 2.22e-02 |
SBLUP.Inf | LDpred1.MultiPRS | 0.019 | 10.496 | 6.385 | 1.71e-10 |
SBayesR.PseudoVal | LDpred1.MultiPRS | 0.012 | 6.347 | 3.868 | 1.10e-04 |
LDpred1.10FCVal | LDpred1.MultiPRS | 0.003 | 1.717 | 1.047 | 2.95e-01 |
LDpred1.MultiPRS | LDpred1.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.Inf | LDpred1.MultiPRS | 0.019 | 10.306 | 6.270 | 3.62e-10 |
LDpred2.10FCVal | LDpred1.MultiPRS | -0.012 | -6.683 | -4.086 | 4.38e-05 |
LDpred2.MultiPRS | LDpred1.MultiPRS | -0.015 | -8.391 | -6.405 | 1.51e-10 |
LDpred2.PseudoVal | LDpred1.MultiPRS | 0.027 | 14.642 | 8.895 | 5.82e-19 |
LDpred2.Inf | LDpred1.MultiPRS | 0.021 | 11.530 | 7.012 | 2.34e-12 |
DBSLMM.PseudoVal | LDpred1.MultiPRS | -0.001 | -0.345 | -0.210 | 8.33e-01 |
MegaPRS.10FCVal | LDpred1.MultiPRS | -0.017 | -9.135 | -5.588 | 2.30e-08 |
MegaPRS.MultiPRS | LDpred1.MultiPRS | -0.019 | -10.543 | -8.039 | 9.06e-16 |
MegaPRS.PseudoVal | LDpred1.MultiPRS | -0.007 | -3.966 | -2.421 | 1.55e-02 |
All.MultiPRS | LDpred1.MultiPRS | -0.026 | -14.212 | -10.152 | 3.24e-24 |
pT+clump.10FCVal | LDpred1.Inf | 0.008 | 4.931 | 3.784 | 1.54e-04 |
pT+clump.MultiPRS | LDpred1.Inf | -0.012 | -7.447 | -4.049 | 5.13e-05 |
lassosum.10FCVal | LDpred1.Inf | -0.027 | -16.569 | -18.843 | 3.35e-79 |
lassosum.MultiPRS | LDpred1.Inf | -0.036 | -22.221 | -12.100 | 1.06e-33 |
lassosum.PseudoVal | LDpred1.Inf | 0.004 | 2.444 | 1.949 | 5.13e-02 |
PRScs.10FCVal | LDpred1.Inf | -0.028 | -16.970 | -22.021 | 1.81e-107 |
PRScs.MultiPRS | LDpred1.Inf | -0.031 | -19.309 | -10.547 | 5.26e-26 |
PRScs.PseudoVal | LDpred1.Inf | -0.026 | -15.667 | -19.530 | 6.08e-85 |
SBLUP.Inf | LDpred1.Inf | 0.000 | 0.212 | 0.397 | 6.91e-01 |
SBayesR.PseudoVal | LDpred1.Inf | -0.007 | -4.414 | -3.665 | 2.47e-04 |
LDpred1.10FCVal | LDpred1.Inf | -0.016 | -9.575 | -18.234 | 2.79e-74 |
LDpred1.MultiPRS | LDpred1.Inf | -0.019 | -11.490 | -6.270 | 3.62e-10 |
LDpred1.Inf | LDpred1.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.10FCVal | LDpred1.Inf | -0.031 | -18.941 | -20.398 | 1.76e-92 |
LDpred2.MultiPRS | LDpred1.Inf | -0.034 | -20.845 | -11.368 | 6.03e-30 |
LDpred2.PseudoVal | LDpred1.Inf | 0.008 | 4.834 | 7.086 | 1.38e-12 |
LDpred2.Inf | LDpred1.Inf | 0.002 | 1.365 | 2.338 | 1.94e-02 |
DBSLMM.PseudoVal | LDpred1.Inf | -0.019 | -11.874 | -12.152 | 5.57e-34 |
MegaPRS.10FCVal | LDpred1.Inf | -0.035 | -21.674 | -25.894 | 7.82e-148 |
MegaPRS.MultiPRS | LDpred1.Inf | -0.038 | -23.244 | -12.699 | 6.02e-37 |
MegaPRS.PseudoVal | LDpred1.Inf | -0.026 | -15.912 | -16.618 | 5.15e-62 |
All.MultiPRS | LDpred1.Inf | -0.044 | -27.335 | -14.942 | 1.76e-50 |
pT+clump.10FCVal | LDpred2.10FCVal | 0.039 | 20.070 | 23.022 | 2.79e-117 |
pT+clump.MultiPRS | LDpred2.10FCVal | 0.019 | 9.663 | 6.274 | 3.52e-10 |
lassosum.10FCVal | LDpred2.10FCVal | 0.004 | 1.994 | 3.526 | 4.21e-04 |
lassosum.MultiPRS | LDpred2.10FCVal | -0.005 | -2.758 | -1.797 | 7.24e-02 |
lassosum.PseudoVal | LDpred2.10FCVal | 0.035 | 17.979 | 24.441 | 6.26e-132 |
PRScs.10FCVal | LDpred2.10FCVal | 0.003 | 1.657 | 2.912 | 3.59e-03 |
PRScs.MultiPRS | LDpred2.10FCVal | -0.001 | -0.309 | -0.202 | 8.40e-01 |
PRScs.PseudoVal | LDpred2.10FCVal | 0.005 | 2.752 | 5.564 | 2.64e-08 |
SBLUP.Inf | LDpred2.10FCVal | 0.031 | 16.103 | 19.484 | 1.50e-84 |
SBayesR.PseudoVal | LDpred2.10FCVal | 0.024 | 12.214 | 14.632 | 1.76e-48 |
LDpred1.10FCVal | LDpred2.10FCVal | 0.015 | 7.874 | 13.324 | 1.67e-40 |
LDpred1.MultiPRS | LDpred2.10FCVal | 0.012 | 6.265 | 4.086 | 4.38e-05 |
LDpred1.Inf | LDpred2.10FCVal | 0.031 | 15.925 | 20.398 | 1.76e-92 |
LDpred2.10FCVal | LDpred2.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.MultiPRS | LDpred2.10FCVal | -0.003 | -1.601 | -1.044 | 2.97e-01 |
LDpred2.PseudoVal | LDpred2.10FCVal | 0.039 | 19.989 | 23.852 | 9.63e-126 |
LDpred2.Inf | LDpred2.10FCVal | 0.033 | 17.072 | 20.616 | 1.98e-94 |
DBSLMM.PseudoVal | LDpred2.10FCVal | 0.012 | 5.941 | 10.442 | 1.59e-25 |
MegaPRS.10FCVal | LDpred2.10FCVal | -0.004 | -2.298 | -4.003 | 6.27e-05 |
MegaPRS.MultiPRS | LDpred2.10FCVal | -0.007 | -3.618 | -2.365 | 1.80e-02 |
MegaPRS.PseudoVal | LDpred2.10FCVal | 0.005 | 2.547 | 4.408 | 1.04e-05 |
All.MultiPRS | LDpred2.10FCVal | -0.014 | -7.058 | -4.616 | 3.91e-06 |
pT+clump.10FCVal | LDpred2.MultiPRS | 0.042 | 21.329 | 14.034 | 9.72e-45 |
pT+clump.MultiPRS | LDpred2.MultiPRS | 0.022 | 11.087 | 7.324 | 2.41e-13 |
lassosum.10FCVal | LDpred2.MultiPRS | 0.007 | 3.538 | 2.341 | 1.93e-02 |
lassosum.MultiPRS | LDpred2.MultiPRS | -0.002 | -1.139 | -1.039 | 2.99e-01 |
lassosum.PseudoVal | LDpred2.MultiPRS | 0.038 | 19.272 | 12.691 | 6.67e-37 |
PRScs.10FCVal | LDpred2.MultiPRS | 0.006 | 3.206 | 2.121 | 3.39e-02 |
PRScs.MultiPRS | LDpred2.MultiPRS | 0.003 | 1.271 | 1.149 | 2.51e-01 |
PRScs.PseudoVal | LDpred2.MultiPRS | 0.008 | 4.285 | 2.833 | 4.61e-03 |
SBLUP.Inf | LDpred2.MultiPRS | 0.034 | 17.425 | 11.480 | 1.66e-30 |
SBayesR.PseudoVal | LDpred2.MultiPRS | 0.027 | 13.597 | 8.980 | 2.70e-19 |
LDpred1.10FCVal | LDpred2.MultiPRS | 0.018 | 9.326 | 6.158 | 7.36e-10 |
LDpred1.MultiPRS | LDpred2.MultiPRS | 0.015 | 7.742 | 6.405 | 1.51e-10 |
LDpred1.Inf | LDpred2.MultiPRS | 0.034 | 17.249 | 11.368 | 6.03e-30 |
LDpred2.10FCVal | LDpred2.MultiPRS | 0.003 | 1.576 | 1.044 | 2.97e-01 |
LDpred2.MultiPRS | LDpred2.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.PseudoVal | LDpred2.MultiPRS | 0.042 | 21.250 | 13.985 | 1.94e-44 |
LDpred2.Inf | LDpred2.MultiPRS | 0.036 | 18.379 | 12.106 | 9.83e-34 |
DBSLMM.PseudoVal | LDpred2.MultiPRS | 0.015 | 7.423 | 4.904 | 9.37e-07 |
MegaPRS.10FCVal | LDpred2.MultiPRS | -0.001 | -0.686 | -0.455 | 6.49e-01 |
MegaPRS.MultiPRS | LDpred2.MultiPRS | -0.004 | -1.986 | -1.768 | 7.71e-02 |
MegaPRS.PseudoVal | LDpred2.MultiPRS | 0.008 | 4.082 | 2.700 | 6.93e-03 |
All.MultiPRS | LDpred2.MultiPRS | -0.011 | -5.371 | -4.971 | 6.66e-07 |
pT+clump.10FCVal | LDpred2.PseudoVal | 0.000 | 0.101 | 0.069 | 9.45e-01 |
pT+clump.MultiPRS | LDpred2.PseudoVal | -0.020 | -12.905 | -6.666 | 2.63e-11 |
lassosum.10FCVal | LDpred2.PseudoVal | -0.035 | -22.491 | -21.630 | 9.31e-104 |
lassosum.MultiPRS | LDpred2.PseudoVal | -0.044 | -28.430 | -14.727 | 4.31e-49 |
lassosum.PseudoVal | LDpred2.PseudoVal | -0.004 | -2.512 | -1.918 | 5.52e-02 |
PRScs.10FCVal | LDpred2.PseudoVal | -0.035 | -22.913 | -25.153 | 1.30e-139 |
PRScs.MultiPRS | LDpred2.PseudoVal | -0.039 | -25.369 | -13.167 | 1.35e-39 |
PRScs.PseudoVal | LDpred2.PseudoVal | -0.033 | -21.543 | -22.100 | 3.14e-108 |
SBLUP.Inf | LDpred2.PseudoVal | -0.008 | -4.857 | -9.685 | 3.51e-22 |
SBayesR.PseudoVal | LDpred2.PseudoVal | -0.015 | -9.718 | -7.975 | 1.52e-15 |
LDpred1.10FCVal | LDpred2.PseudoVal | -0.023 | -15.142 | -18.108 | 2.78e-73 |
LDpred1.MultiPRS | LDpred2.PseudoVal | -0.027 | -17.153 | -8.895 | 5.82e-19 |
LDpred1.Inf | LDpred2.PseudoVal | -0.008 | -5.080 | -7.086 | 1.38e-12 |
LDpred2.10FCVal | LDpred2.PseudoVal | -0.039 | -24.983 | -23.852 | 9.63e-126 |
LDpred2.MultiPRS | LDpred2.PseudoVal | -0.042 | -26.984 | -13.985 | 1.94e-44 |
LDpred2.PseudoVal | LDpred2.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.Inf | LDpred2.PseudoVal | -0.006 | -3.646 | -8.244 | 1.67e-16 |
DBSLMM.PseudoVal | LDpred2.PseudoVal | -0.027 | -17.558 | -15.306 | 6.92e-53 |
MegaPRS.10FCVal | LDpred2.PseudoVal | -0.043 | -27.855 | -27.570 | 2.52e-167 |
MegaPRS.MultiPRS | LDpred2.PseudoVal | -0.046 | -29.505 | -15.322 | 5.42e-53 |
MegaPRS.PseudoVal | LDpred2.PseudoVal | -0.034 | -21.800 | -19.792 | 3.49e-87 |
All.MultiPRS | LDpred2.PseudoVal | -0.052 | -33.804 | -17.571 | 4.10e-69 |
pT+clump.10FCVal | LDpred2.Inf | 0.006 | 3.615 | 2.610 | 9.04e-03 |
pT+clump.MultiPRS | LDpred2.Inf | -0.014 | -8.933 | -4.789 | 1.68e-06 |
lassosum.10FCVal | LDpred2.Inf | -0.029 | -18.182 | -18.957 | 3.88e-80 |
lassosum.MultiPRS | LDpred2.Inf | -0.038 | -23.912 | -12.843 | 9.36e-38 |
lassosum.PseudoVal | LDpred2.Inf | 0.002 | 1.094 | 0.817 | 4.14e-01 |
PRScs.10FCVal | LDpred2.Inf | -0.030 | -18.589 | -22.427 | 2.15e-111 |
PRScs.MultiPRS | LDpred2.Inf | -0.034 | -20.959 | -11.288 | 1.50e-29 |
PRScs.PseudoVal | LDpred2.Inf | -0.028 | -17.267 | -18.304 | 7.65e-75 |
SBLUP.Inf | LDpred2.Inf | -0.002 | -1.169 | -6.110 | 9.97e-10 |
SBayesR.PseudoVal | LDpred2.Inf | -0.009 | -5.858 | -4.781 | 1.74e-06 |
LDpred1.10FCVal | LDpred2.Inf | -0.018 | -11.091 | -13.602 | 3.90e-42 |
LDpred1.MultiPRS | LDpred2.Inf | -0.021 | -13.032 | -7.012 | 2.34e-12 |
LDpred1.Inf | LDpred2.Inf | -0.002 | -1.383 | -2.338 | 1.94e-02 |
LDpred2.10FCVal | LDpred2.Inf | -0.033 | -20.586 | -20.616 | 1.98e-94 |
LDpred2.MultiPRS | LDpred2.Inf | -0.036 | -22.517 | -12.106 | 9.83e-34 |
LDpred2.PseudoVal | LDpred2.Inf | 0.006 | 3.518 | 8.244 | 1.67e-16 |
LDpred2.Inf | LDpred2.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 |
DBSLMM.PseudoVal | LDpred2.Inf | -0.022 | -13.422 | -11.964 | 5.48e-33 |
MegaPRS.10FCVal | LDpred2.Inf | -0.038 | -23.358 | -24.892 | 9.17e-137 |
MegaPRS.MultiPRS | LDpred2.Inf | -0.040 | -24.949 | -13.440 | 3.51e-41 |
MegaPRS.PseudoVal | LDpred2.Inf | -0.028 | -17.515 | -16.125 | 1.71e-58 |
All.MultiPRS | LDpred2.Inf | -0.047 | -29.097 | -15.687 | 1.86e-55 |
pT+clump.10FCVal | DBSLMM.PseudoVal | 0.027 | 15.021 | 15.912 | 5.21e-57 |
pT+clump.MultiPRS | DBSLMM.PseudoVal | 0.007 | 3.957 | 2.413 | 1.58e-02 |
lassosum.10FCVal | DBSLMM.PseudoVal | -0.008 | -4.197 | -5.679 | 1.35e-08 |
lassosum.MultiPRS | DBSLMM.PseudoVal | -0.017 | -9.249 | -5.653 | 1.58e-08 |
lassosum.PseudoVal | DBSLMM.PseudoVal | 0.023 | 12.798 | 14.968 | 1.19e-50 |
PRScs.10FCVal | DBSLMM.PseudoVal | -0.008 | -4.555 | -7.086 | 1.38e-12 |
PRScs.MultiPRS | DBSLMM.PseudoVal | -0.012 | -6.645 | -4.071 | 4.68e-05 |
PRScs.PseudoVal | DBSLMM.PseudoVal | -0.006 | -3.390 | -6.561 | 5.36e-11 |
SBLUP.Inf | DBSLMM.PseudoVal | 0.020 | 10.803 | 11.279 | 1.66e-29 |
SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.012 | 6.669 | 7.132 | 9.89e-13 |
LDpred1.10FCVal | DBSLMM.PseudoVal | 0.004 | 2.055 | 2.989 | 2.80e-03 |
LDpred1.MultiPRS | DBSLMM.PseudoVal | 0.001 | 0.344 | 0.210 | 8.33e-01 |
LDpred1.Inf | DBSLMM.PseudoVal | 0.019 | 10.614 | 12.152 | 5.57e-34 |
LDpred2.10FCVal | DBSLMM.PseudoVal | -0.012 | -6.316 | -10.442 | 1.59e-25 |
LDpred2.MultiPRS | DBSLMM.PseudoVal | -0.015 | -8.019 | -4.904 | 9.37e-07 |
LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.027 | 14.935 | 15.306 | 6.92e-53 |
LDpred2.Inf | DBSLMM.PseudoVal | 0.022 | 11.834 | 11.964 | 5.48e-33 |
DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.10FCVal | DBSLMM.PseudoVal | -0.016 | -8.760 | -12.745 | 3.30e-37 |
MegaPRS.MultiPRS | DBSLMM.PseudoVal | -0.019 | -10.163 | -6.234 | 4.55e-10 |
MegaPRS.PseudoVal | DBSLMM.PseudoVal | -0.007 | -3.609 | -5.433 | 5.55e-08 |
All.MultiPRS | DBSLMM.PseudoVal | -0.025 | -13.820 | -8.477 | 2.30e-17 |
pT+clump.10FCVal | MegaPRS.10FCVal | 0.043 | 21.866 | 24.318 | 1.28e-130 |
pT+clump.MultiPRS | MegaPRS.10FCVal | 0.023 | 11.693 | 7.774 | 7.63e-15 |
lassosum.10FCVal | MegaPRS.10FCVal | 0.008 | 4.196 | 7.781 | 7.22e-15 |
lassosum.MultiPRS | MegaPRS.10FCVal | -0.001 | -0.450 | -0.300 | 7.64e-01 |
lassosum.PseudoVal | MegaPRS.10FCVal | 0.039 | 19.822 | 24.636 | 5.17e-134 |
PRScs.10FCVal | MegaPRS.10FCVal | 0.008 | 3.866 | 7.143 | 9.11e-13 |
PRScs.MultiPRS | MegaPRS.10FCVal | 0.004 | 1.944 | 1.299 | 1.94e-01 |
PRScs.PseudoVal | MegaPRS.10FCVal | 0.010 | 4.937 | 9.218 | 3.01e-20 |
SBLUP.Inf | MegaPRS.10FCVal | 0.036 | 17.988 | 24.795 | 1.02e-135 |
SBayesR.PseudoVal | MegaPRS.10FCVal | 0.028 | 14.186 | 17.588 | 3.07e-69 |
LDpred1.10FCVal | MegaPRS.10FCVal | 0.020 | 9.944 | 17.341 | 2.29e-67 |
LDpred1.MultiPRS | MegaPRS.10FCVal | 0.017 | 8.370 | 5.588 | 2.30e-08 |
LDpred1.Inf | MegaPRS.10FCVal | 0.035 | 17.813 | 25.894 | 7.82e-148 |
LDpred2.10FCVal | MegaPRS.10FCVal | 0.004 | 2.247 | 4.003 | 6.27e-05 |
LDpred2.MultiPRS | MegaPRS.10FCVal | 0.001 | 0.682 | 0.455 | 6.49e-01 |
LDpred2.PseudoVal | MegaPRS.10FCVal | 0.043 | 21.787 | 27.570 | 2.52e-167 |
LDpred2.Inf | MegaPRS.10FCVal | 0.038 | 18.935 | 24.892 | 9.17e-137 |
DBSLMM.PseudoVal | MegaPRS.10FCVal | 0.016 | 8.054 | 12.745 | 3.30e-37 |
MegaPRS.10FCVal | MegaPRS.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.MultiPRS | MegaPRS.10FCVal | -0.003 | -1.290 | -0.863 | 3.88e-01 |
MegaPRS.PseudoVal | MegaPRS.10FCVal | 0.009 | 4.736 | 13.369 | 9.20e-41 |
All.MultiPRS | MegaPRS.10FCVal | -0.009 | -4.652 | -3.114 | 1.85e-03 |
pT+clump.10FCVal | MegaPRS.MultiPRS | 0.046 | 22.861 | 15.383 | 2.12e-53 |
pT+clump.MultiPRS | MegaPRS.MultiPRS | 0.026 | 12.818 | 8.635 | 5.89e-18 |
lassosum.10FCVal | MegaPRS.MultiPRS | 0.011 | 5.416 | 3.663 | 2.49e-04 |
lassosum.MultiPRS | MegaPRS.MultiPRS | 0.002 | 0.830 | 0.714 | 4.75e-01 |
lassosum.PseudoVal | MegaPRS.MultiPRS | 0.042 | 20.843 | 14.043 | 8.48e-45 |
PRScs.10FCVal | MegaPRS.MultiPRS | 0.010 | 5.091 | 3.442 | 5.77e-04 |
PRScs.MultiPRS | MegaPRS.MultiPRS | 0.006 | 3.194 | 2.916 | 3.55e-03 |
PRScs.PseudoVal | MegaPRS.MultiPRS | 0.012 | 6.148 | 4.158 | 3.22e-05 |
SBLUP.Inf | MegaPRS.MultiPRS | 0.038 | 19.032 | 12.812 | 1.41e-37 |
SBayesR.PseudoVal | MegaPRS.MultiPRS | 0.031 | 15.279 | 10.317 | 5.91e-25 |
LDpred1.10FCVal | MegaPRS.MultiPRS | 0.022 | 11.091 | 7.485 | 7.14e-14 |
LDpred1.MultiPRS | MegaPRS.MultiPRS | 0.019 | 9.538 | 8.039 | 9.06e-16 |
LDpred1.Inf | MegaPRS.MultiPRS | 0.038 | 18.860 | 12.699 | 6.02e-37 |
LDpred2.10FCVal | MegaPRS.MultiPRS | 0.007 | 3.492 | 2.365 | 1.80e-02 |
LDpred2.MultiPRS | MegaPRS.MultiPRS | 0.004 | 1.947 | 1.768 | 7.71e-02 |
LDpred2.PseudoVal | MegaPRS.MultiPRS | 0.046 | 22.783 | 15.322 | 5.42e-53 |
LDpred2.Inf | MegaPRS.MultiPRS | 0.040 | 19.968 | 13.440 | 3.51e-41 |
DBSLMM.PseudoVal | MegaPRS.MultiPRS | 0.019 | 9.226 | 6.234 | 4.55e-10 |
MegaPRS.10FCVal | MegaPRS.MultiPRS | 0.003 | 1.274 | 0.863 | 3.88e-01 |
MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.PseudoVal | MegaPRS.MultiPRS | 0.012 | 5.950 | 4.023 | 5.74e-05 |
All.MultiPRS | MegaPRS.MultiPRS | -0.007 | -3.319 | -2.939 | 3.29e-03 |
pT+clump.10FCVal | MegaPRS.PseudoVal | 0.034 | 17.981 | 19.513 | 8.55e-85 |
pT+clump.MultiPRS | MegaPRS.PseudoVal | 0.014 | 7.303 | 4.616 | 3.91e-06 |
lassosum.10FCVal | MegaPRS.PseudoVal | -0.001 | -0.567 | -0.874 | 3.82e-01 |
lassosum.MultiPRS | MegaPRS.PseudoVal | -0.010 | -5.443 | -3.452 | 5.56e-04 |
lassosum.PseudoVal | MegaPRS.PseudoVal | 0.030 | 15.836 | 20.161 | 2.15e-90 |
PRScs.10FCVal | MegaPRS.PseudoVal | -0.002 | -0.913 | -1.395 | 1.63e-01 |
PRScs.MultiPRS | MegaPRS.PseudoVal | -0.006 | -2.930 | -1.861 | 6.28e-02 |
PRScs.PseudoVal | MegaPRS.PseudoVal | 0.000 | 0.211 | 0.371 | 7.11e-01 |
SBLUP.Inf | MegaPRS.PseudoVal | 0.026 | 13.910 | 15.590 | 8.57e-55 |
SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.019 | 9.920 | 11.980 | 4.51e-33 |
LDpred1.10FCVal | MegaPRS.PseudoVal | 0.010 | 5.467 | 8.438 | 3.22e-17 |
LDpred1.MultiPRS | MegaPRS.PseudoVal | 0.007 | 3.815 | 2.421 | 1.55e-02 |
LDpred1.Inf | MegaPRS.PseudoVal | 0.026 | 13.727 | 16.618 | 5.15e-62 |
LDpred2.10FCVal | MegaPRS.PseudoVal | -0.005 | -2.613 | -4.408 | 1.04e-05 |
LDpred2.MultiPRS | MegaPRS.PseudoVal | -0.008 | -4.256 | -2.700 | 6.93e-03 |
LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.034 | 17.898 | 19.792 | 3.49e-87 |
LDpred2.Inf | MegaPRS.PseudoVal | 0.028 | 14.905 | 16.125 | 1.71e-58 |
DBSLMM.PseudoVal | MegaPRS.PseudoVal | 0.007 | 3.483 | 5.433 | 5.55e-08 |
MegaPRS.10FCVal | MegaPRS.PseudoVal | -0.009 | -4.971 | -13.369 | 9.20e-41 |
MegaPRS.MultiPRS | MegaPRS.PseudoVal | -0.012 | -6.326 | -4.023 | 5.74e-05 |
MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 |
All.MultiPRS | MegaPRS.PseudoVal | -0.019 | -9.855 | -6.272 | 3.57e-10 |
pT+clump.10FCVal | All.MultiPRS | 0.053 | 25.339 | 17.646 | 1.10e-69 |
pT+clump.MultiPRS | All.MultiPRS | 0.032 | 15.619 | 10.893 | 1.24e-27 |
lassosum.10FCVal | All.MultiPRS | 0.018 | 8.455 | 5.912 | 3.39e-09 |
lassosum.MultiPRS | All.MultiPRS | 0.008 | 4.016 | 4.406 | 1.06e-05 |
lassosum.PseudoVal | All.MultiPRS | 0.048 | 23.386 | 16.285 | 1.27e-59 |
PRScs.10FCVal | All.MultiPRS | 0.017 | 8.140 | 5.691 | 1.26e-08 |
PRScs.MultiPRS | All.MultiPRS | 0.013 | 6.303 | 5.510 | 3.60e-08 |
PRScs.PseudoVal | All.MultiPRS | 0.019 | 9.163 | 6.403 | 1.53e-10 |
SBLUP.Inf | All.MultiPRS | 0.045 | 21.633 | 15.056 | 3.17e-51 |
SBayesR.PseudoVal | All.MultiPRS | 0.037 | 18.001 | 12.571 | 3.06e-36 |
LDpred1.10FCVal | All.MultiPRS | 0.029 | 13.947 | 9.729 | 2.28e-22 |
LDpred1.MultiPRS | All.MultiPRS | 0.026 | 12.444 | 10.152 | 3.24e-24 |
LDpred1.Inf | All.MultiPRS | 0.044 | 21.467 | 14.942 | 1.76e-50 |
LDpred2.10FCVal | All.MultiPRS | 0.014 | 6.592 | 4.616 | 3.91e-06 |
LDpred2.MultiPRS | All.MultiPRS | 0.011 | 5.097 | 4.971 | 6.66e-07 |
LDpred2.PseudoVal | All.MultiPRS | 0.052 | 25.264 | 17.571 | 4.10e-69 |
LDpred2.Inf | All.MultiPRS | 0.047 | 22.539 | 15.687 | 1.86e-55 |
DBSLMM.PseudoVal | All.MultiPRS | 0.025 | 12.142 | 8.477 | 2.30e-17 |
MegaPRS.10FCVal | All.MultiPRS | 0.009 | 4.446 | 3.114 | 1.85e-03 |
MegaPRS.MultiPRS | All.MultiPRS | 0.007 | 3.212 | 2.939 | 3.29e-03 |
MegaPRS.PseudoVal | All.MultiPRS | 0.019 | 8.971 | 6.272 | 3.57e-10 |
All.MultiPRS | All.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 |
Show table: UKBB (UKBB ref)
Reference | Test | IndepVal Diff | IndepVal Diff (%) | IndepVal Diff Z | IndepVal Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|
pT+clump.10FCVal | pT+clump.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.10FCVal | pT+clump.MultiPRS | -0.020 | -12.956 | -6.725 | 1.75e-11 | -0.022 | -14.832 | -10.134 | 3.90e-24 |
pT+clump.10FCVal | lassosum.10FCVal | -0.034 | -21.879 | -19.538 | 5.27e-85 | -0.032 | -20.866 | -9.057 | 1.33e-19 |
pT+clump.10FCVal | lassosum.MultiPRS | -0.042 | -27.196 | -14.153 | 1.80e-45 | -0.041 | -27.070 | -12.564 | 3.34e-36 |
pT+clump.10FCVal | lassosum.PseudoVal | -0.014 | -8.976 | -7.953 | 1.82e-15 | -0.016 | -10.357 | -4.461 | 8.16e-06 |
pT+clump.10FCVal | SBLUP.Inf | -0.007 | -4.216 | -2.965 | 3.03e-03 | -0.004 | -2.340 | -0.801 | 4.23e-01 |
pT+clump.10FCVal | SBayesR.PseudoVal | -0.025 | -16.178 | -14.037 | 9.21e-45 | -0.027 | -17.640 | -7.447 | 9.55e-14 |
pT+clump.10FCVal | LDpred1.10FCVal | -0.021 | -13.452 | -10.971 | 5.29e-28 | -0.019 | -12.510 | -4.957 | 7.16e-07 |
pT+clump.10FCVal | LDpred1.MultiPRS | -0.027 | -17.087 | -8.919 | 4.70e-19 | -0.025 | -16.170 | -6.671 | 2.55e-11 |
pT+clump.10FCVal | LDpred1.Inf | -0.006 | -4.109 | -2.989 | 2.80e-03 | -0.003 | -2.136 | -0.756 | 4.50e-01 |
pT+clump.10FCVal | LDpred2.10FCVal | -0.041 | -26.039 | -24.945 | 2.43e-137 | -0.039 | -25.505 | -11.861 | 1.88e-32 |
pT+clump.10FCVal | LDpred2.MultiPRS | -0.043 | -27.918 | -14.549 | 5.92e-48 | -0.042 | -27.643 | -12.766 | 2.54e-37 |
pT+clump.10FCVal | LDpred2.PseudoVal | -0.014 | -9.284 | -8.202 | 2.36e-16 | -0.016 | -10.839 | -4.632 | 3.62e-06 |
pT+clump.10FCVal | LDpred2.Inf | -0.005 | -3.122 | -2.159 | 3.08e-02 | -0.003 | -1.716 | -0.578 | 5.63e-01 |
pT+clump.10FCVal | DBSLMM.PseudoVal | -0.028 | -17.895 | -16.591 | 8.16e-62 | -0.026 | -16.834 | -7.580 | 3.47e-14 |
pT+clump.10FCVal | MegaPRS.10FCVal | -0.045 | -28.822 | -25.604 | 1.37e-144 | -0.042 | -27.497 | -11.851 | 2.12e-32 |
pT+clump.10FCVal | MegaPRS.MultiPRS | -0.047 | -30.183 | -15.759 | 5.92e-56 | -0.044 | -29.242 | -12.907 | 4.12e-38 |
pT+clump.10FCVal | MegaPRS.PseudoVal | -0.038 | -24.676 | -21.994 | 3.28e-107 | -0.037 | -24.095 | -10.395 | 2.62e-25 |
pT+clump.10FCVal | All.MultiPRS | -0.052 | -33.506 | -17.520 | 1.00e-68 | -0.051 | -33.561 | -15.690 | 1.78e-55 |
pT+clump.MultiPRS | pT+clump.10FCVal | 0.020 | 11.470 | 6.725 | 1.75e-11 | 0.022 | 12.916 | 10.134 | 3.90e-24 |
pT+clump.MultiPRS | pT+clump.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.MultiPRS | lassosum.10FCVal | -0.014 | -7.899 | -4.655 | 3.24e-06 | -0.009 | -5.255 | -3.399 | 6.77e-04 |
pT+clump.MultiPRS | lassosum.MultiPRS | -0.022 | -12.606 | -7.439 | 1.01e-13 | -0.019 | -10.657 | -7.752 | 9.08e-15 |
pT+clump.MultiPRS | lassosum.PseudoVal | 0.006 | 3.524 | 2.069 | 3.85e-02 | 0.007 | 3.897 | 2.236 | 2.54e-02 |
pT+clump.MultiPRS | SBLUP.Inf | 0.014 | 7.737 | 4.543 | 5.55e-06 | 0.019 | 10.879 | 5.522 | 3.36e-08 |
pT+clump.MultiPRS | SBayesR.PseudoVal | -0.005 | -2.852 | -1.676 | 9.38e-02 | -0.004 | -2.445 | -1.536 | 1.25e-01 |
pT+clump.MultiPRS | LDpred1.10FCVal | -0.001 | -0.439 | -0.258 | 7.96e-01 | 0.004 | 2.022 | 1.182 | 2.37e-01 |
pT+clump.MultiPRS | LDpred1.MultiPRS | -0.006 | -3.657 | -2.153 | 3.13e-02 | -0.002 | -1.165 | -0.708 | 4.79e-01 |
pT+clump.MultiPRS | LDpred1.Inf | 0.014 | 7.833 | 4.599 | 4.24e-06 | 0.019 | 11.056 | 5.612 | 2.00e-08 |
pT+clump.MultiPRS | LDpred2.10FCVal | -0.020 | -11.582 | -6.828 | 8.63e-12 | -0.016 | -9.295 | -6.073 | 1.26e-09 |
pT+clump.MultiPRS | LDpred2.MultiPRS | -0.023 | -13.246 | -7.814 | 5.53e-15 | -0.019 | -11.156 | -7.578 | 3.52e-14 |
pT+clump.MultiPRS | LDpred2.PseudoVal | 0.006 | 3.251 | 1.908 | 5.64e-02 | 0.006 | 3.477 | 1.905 | 5.68e-02 |
pT+clump.MultiPRS | LDpred2.Inf | 0.015 | 8.706 | 5.110 | 3.23e-07 | 0.020 | 11.422 | 5.644 | 1.66e-08 |
pT+clump.MultiPRS | DBSLMM.PseudoVal | -0.008 | -4.372 | -2.573 | 1.01e-02 | -0.003 | -1.743 | -1.053 | 2.92e-01 |
pT+clump.MultiPRS | MegaPRS.10FCVal | -0.025 | -14.046 | -8.292 | 1.12e-16 | -0.019 | -11.029 | -6.892 | 5.49e-12 |
pT+clump.MultiPRS | MegaPRS.MultiPRS | -0.027 | -15.251 | -9.009 | 2.07e-19 | -0.022 | -12.548 | -8.053 | 8.11e-16 |
pT+clump.MultiPRS | MegaPRS.PseudoVal | -0.018 | -10.376 | -6.114 | 9.71e-10 | -0.014 | -8.067 | -5.005 | 5.58e-07 |
pT+clump.MultiPRS | All.MultiPRS | -0.032 | -18.192 | -10.757 | 5.50e-27 | -0.028 | -16.310 | -11.276 | 1.73e-29 |
lassosum.10FCVal | pT+clump.10FCVal | 0.034 | 17.951 | 19.538 | 5.27e-85 | 0.032 | 17.264 | 9.057 | 1.33e-19 |
lassosum.10FCVal | pT+clump.MultiPRS | 0.014 | 7.321 | 4.655 | 3.24e-06 | 0.009 | 4.993 | 3.399 | 6.77e-04 |
lassosum.10FCVal | lassosum.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.10FCVal | lassosum.MultiPRS | -0.008 | -4.363 | -2.779 | 5.45e-03 | -0.009 | -5.132 | -7.183 | 6.83e-13 |
lassosum.10FCVal | lassosum.PseudoVal | 0.020 | 10.587 | 14.871 | 5.07e-50 | 0.016 | 8.695 | 5.915 | 3.31e-09 |
lassosum.10FCVal | SBLUP.Inf | 0.027 | 14.492 | 18.554 | 7.57e-77 | 0.028 | 15.328 | 9.456 | 3.19e-21 |
lassosum.10FCVal | SBayesR.PseudoVal | 0.009 | 4.678 | 6.222 | 4.91e-10 | 0.005 | 2.670 | 1.706 | 8.80e-02 |
lassosum.10FCVal | LDpred1.10FCVal | 0.013 | 6.914 | 10.722 | 8.03e-27 | 0.013 | 6.914 | 5.172 | 2.32e-07 |
lassosum.10FCVal | LDpred1.MultiPRS | 0.007 | 3.932 | 2.517 | 1.18e-02 | 0.007 | 3.886 | 3.058 | 2.22e-03 |
lassosum.10FCVal | LDpred1.Inf | 0.028 | 14.580 | 19.256 | 1.27e-82 | 0.028 | 15.496 | 9.850 | 6.83e-23 |
lassosum.10FCVal | LDpred2.10FCVal | -0.006 | -3.413 | -6.343 | 2.25e-10 | -0.007 | -3.838 | -3.466 | 5.28e-04 |
lassosum.10FCVal | LDpred2.MultiPRS | -0.009 | -4.955 | -3.161 | 1.57e-03 | -0.010 | -5.607 | -5.133 | 2.86e-07 |
lassosum.10FCVal | LDpred2.PseudoVal | 0.020 | 10.334 | 14.051 | 7.57e-45 | 0.015 | 8.296 | 5.456 | 4.86e-08 |
lassosum.10FCVal | LDpred2.Inf | 0.029 | 15.390 | 19.026 | 1.04e-80 | 0.029 | 15.845 | 9.437 | 3.83e-21 |
lassosum.10FCVal | DBSLMM.PseudoVal | 0.006 | 3.269 | 4.710 | 2.48e-06 | 0.006 | 3.336 | 2.316 | 2.05e-02 |
lassosum.10FCVal | MegaPRS.10FCVal | -0.011 | -5.697 | -10.105 | 5.22e-24 | -0.010 | -5.486 | -4.695 | 2.66e-06 |
lassosum.10FCVal | MegaPRS.MultiPRS | -0.013 | -6.813 | -4.358 | 1.31e-05 | -0.013 | -6.929 | -6.074 | 1.25e-09 |
lassosum.10FCVal | MegaPRS.PseudoVal | -0.004 | -2.295 | -3.591 | 3.30e-04 | -0.005 | -2.671 | -2.027 | 4.26e-02 |
lassosum.10FCVal | All.MultiPRS | -0.018 | -9.540 | -6.110 | 9.97e-10 | -0.019 | -10.503 | -9.137 | 6.39e-20 |
lassosum.MultiPRS | pT+clump.10FCVal | 0.042 | 21.381 | 14.153 | 1.80e-45 | 0.041 | 21.303 | 12.564 | 3.34e-36 |
lassosum.MultiPRS | pT+clump.MultiPRS | 0.022 | 11.195 | 7.439 | 1.01e-13 | 0.019 | 9.631 | 7.752 | 9.08e-15 |
lassosum.MultiPRS | lassosum.10FCVal | 0.008 | 4.180 | 2.779 | 5.45e-03 | 0.009 | 4.882 | 7.183 | 6.83e-13 |
lassosum.MultiPRS | lassosum.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.MultiPRS | lassosum.PseudoVal | 0.028 | 14.325 | 9.508 | 1.94e-21 | 0.025 | 13.153 | 10.928 | 8.51e-28 |
lassosum.MultiPRS | SBLUP.Inf | 0.036 | 18.066 | 11.967 | 5.30e-33 | 0.038 | 19.462 | 12.949 | 2.39e-38 |
lassosum.MultiPRS | SBayesR.PseudoVal | 0.017 | 8.663 | 5.756 | 8.60e-09 | 0.014 | 7.421 | 5.651 | 1.60e-08 |
lassosum.MultiPRS | LDpred1.10FCVal | 0.021 | 10.805 | 7.169 | 7.54e-13 | 0.022 | 11.458 | 10.252 | 1.16e-24 |
lassosum.MultiPRS | LDpred1.MultiPRS | 0.016 | 7.947 | 7.480 | 7.43e-14 | 0.017 | 8.578 | 8.221 | 2.02e-16 |
lassosum.MultiPRS | LDpred1.Inf | 0.036 | 18.151 | 12.022 | 2.71e-33 | 0.038 | 19.622 | 13.682 | 1.29e-42 |
lassosum.MultiPRS | LDpred2.10FCVal | 0.002 | 0.910 | 0.606 | 5.45e-01 | 0.002 | 1.231 | 1.391 | 1.64e-01 |
lassosum.MultiPRS | LDpred2.MultiPRS | -0.001 | -0.568 | -0.526 | 5.99e-01 | -0.001 | -0.451 | -0.550 | 5.82e-01 |
lassosum.MultiPRS | LDpred2.PseudoVal | 0.028 | 14.082 | 9.345 | 9.22e-21 | 0.025 | 12.773 | 9.486 | 2.40e-21 |
lassosum.MultiPRS | LDpred2.Inf | 0.037 | 18.927 | 12.534 | 4.86e-36 | 0.038 | 19.953 | 12.703 | 5.70e-37 |
lassosum.MultiPRS | DBSLMM.PseudoVal | 0.014 | 7.312 | 4.858 | 1.19e-06 | 0.016 | 8.055 | 7.186 | 6.66e-13 |
lassosum.MultiPRS | MegaPRS.10FCVal | -0.003 | -1.279 | -0.852 | 3.94e-01 | -0.001 | -0.336 | -0.346 | 7.29e-01 |
lassosum.MultiPRS | MegaPRS.MultiPRS | -0.005 | -2.348 | -2.155 | 3.12e-02 | -0.003 | -1.709 | -1.904 | 5.68e-02 |
lassosum.MultiPRS | MegaPRS.PseudoVal | 0.004 | 1.981 | 1.319 | 1.87e-01 | 0.005 | 2.341 | 2.234 | 2.55e-02 |
lassosum.MultiPRS | All.MultiPRS | -0.010 | -4.961 | -4.558 | 5.16e-06 | -0.010 | -5.108 | -6.128 | 8.89e-10 |
lassosum.PseudoVal | pT+clump.10FCVal | 0.014 | 8.236 | 7.953 | 1.82e-15 | 0.016 | 9.385 | 4.461 | 8.16e-06 |
lassosum.PseudoVal | pT+clump.MultiPRS | -0.006 | -3.653 | -2.069 | 3.85e-02 | -0.007 | -4.055 | -2.236 | 2.54e-02 |
lassosum.PseudoVal | lassosum.10FCVal | -0.020 | -11.841 | -14.871 | 5.07e-50 | -0.016 | -9.523 | -5.915 | 3.31e-09 |
lassosum.PseudoVal | lassosum.MultiPRS | -0.028 | -16.720 | -9.508 | 1.94e-21 | -0.025 | -15.144 | -10.928 | 8.51e-28 |
lassosum.PseudoVal | lassosum.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.PseudoVal | SBLUP.Inf | 0.007 | 4.367 | 3.647 | 2.65e-04 | 0.012 | 7.265 | 2.997 | 2.72e-03 |
lassosum.PseudoVal | SBayesR.PseudoVal | -0.011 | -6.609 | -7.452 | 9.17e-14 | -0.011 | -6.599 | -3.675 | 2.38e-04 |
lassosum.PseudoVal | LDpred1.10FCVal | -0.007 | -4.108 | -4.487 | 7.21e-06 | -0.003 | -1.951 | -1.055 | 2.92e-01 |
lassosum.PseudoVal | LDpred1.MultiPRS | -0.013 | -7.443 | -4.244 | 2.19e-05 | -0.009 | -5.268 | -3.002 | 2.68e-03 |
lassosum.PseudoVal | LDpred1.Inf | 0.008 | 4.466 | 3.874 | 1.07e-04 | 0.012 | 7.449 | 3.199 | 1.38e-03 |
lassosum.PseudoVal | LDpred2.10FCVal | -0.027 | -15.658 | -20.356 | 4.12e-92 | -0.023 | -13.727 | -8.813 | 1.22e-18 |
lassosum.PseudoVal | LDpred2.MultiPRS | -0.029 | -17.383 | -9.896 | 4.35e-23 | -0.026 | -15.664 | -9.914 | 3.62e-23 |
lassosum.PseudoVal | LDpred2.PseudoVal | 0.000 | -0.283 | -0.312 | 7.55e-01 | -0.001 | -0.437 | -0.237 | 8.12e-01 |
lassosum.PseudoVal | LDpred2.Inf | 0.009 | 5.371 | 4.407 | 1.05e-05 | 0.013 | 7.830 | 3.169 | 1.53e-03 |
lassosum.PseudoVal | DBSLMM.PseudoVal | -0.014 | -8.185 | -9.447 | 3.49e-21 | -0.010 | -5.869 | -3.339 | 8.41e-04 |
lassosum.PseudoVal | MegaPRS.10FCVal | -0.031 | -18.212 | -20.955 | 1.70e-97 | -0.026 | -15.532 | -8.838 | 9.77e-19 |
lassosum.PseudoVal | MegaPRS.MultiPRS | -0.033 | -19.461 | -11.104 | 1.20e-28 | -0.029 | -17.112 | -10.093 | 5.95e-24 |
lassosum.PseudoVal | MegaPRS.PseudoVal | -0.024 | -14.407 | -17.237 | 1.41e-66 | -0.021 | -12.449 | -7.392 | 1.45e-13 |
lassosum.PseudoVal | All.MultiPRS | -0.038 | -22.510 | -12.858 | 7.80e-38 | -0.035 | -21.026 | -12.646 | 1.17e-36 |
SBLUP.Inf | pT+clump.10FCVal | 0.007 | 4.046 | 2.965 | 3.03e-03 | 0.004 | 2.286 | 0.801 | 4.23e-01 |
SBLUP.Inf | pT+clump.MultiPRS | -0.014 | -8.386 | -4.543 | 5.55e-06 | -0.019 | -12.207 | -5.522 | 3.36e-08 |
SBLUP.Inf | lassosum.10FCVal | -0.027 | -16.948 | -18.554 | 7.57e-77 | -0.028 | -18.103 | -9.456 | 3.19e-21 |
SBLUP.Inf | lassosum.MultiPRS | -0.036 | -22.050 | -11.967 | 5.30e-33 | -0.038 | -24.165 | -12.949 | 2.39e-38 |
SBLUP.Inf | lassosum.PseudoVal | -0.007 | -4.567 | -3.647 | 2.65e-04 | -0.012 | -7.834 | -2.997 | 2.72e-03 |
SBLUP.Inf | SBLUP.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBLUP.Inf | SBayesR.PseudoVal | -0.019 | -11.477 | -12.012 | 3.06e-33 | -0.023 | -14.951 | -7.473 | 7.83e-14 |
SBLUP.Inf | LDpred1.10FCVal | -0.014 | -8.862 | -11.626 | 3.05e-31 | -0.015 | -9.938 | -6.223 | 4.89e-10 |
SBLUP.Inf | LDpred1.MultiPRS | -0.020 | -12.350 | -6.734 | 1.65e-11 | -0.021 | -13.514 | -8.056 | 7.91e-16 |
SBLUP.Inf | LDpred1.Inf | 0.000 | 0.103 | 0.196 | 8.45e-01 | 0.000 | 0.198 | 0.179 | 8.58e-01 |
SBLUP.Inf | LDpred2.10FCVal | -0.034 | -20.940 | -22.638 | 1.82e-113 | -0.035 | -22.636 | -11.689 | 1.45e-31 |
SBLUP.Inf | LDpred2.MultiPRS | -0.037 | -22.743 | -12.352 | 4.74e-35 | -0.038 | -24.725 | -12.961 | 2.03e-38 |
SBLUP.Inf | LDpred2.PseudoVal | -0.008 | -4.863 | -4.109 | 3.97e-05 | -0.013 | -8.305 | -3.357 | 7.88e-04 |
SBLUP.Inf | LDpred2.Inf | 0.002 | 1.050 | 6.837 | 8.06e-12 | 0.001 | 0.610 | 1.898 | 5.77e-02 |
SBLUP.Inf | DBSLMM.PseudoVal | -0.021 | -13.125 | -12.177 | 4.12e-34 | -0.022 | -14.163 | -6.265 | 3.72e-10 |
SBLUP.Inf | MegaPRS.10FCVal | -0.038 | -23.610 | -25.867 | 1.57e-147 | -0.038 | -24.583 | -12.826 | 1.18e-37 |
SBLUP.Inf | MegaPRS.MultiPRS | -0.040 | -24.916 | -13.572 | 5.90e-42 | -0.041 | -26.287 | -13.546 | 8.41e-42 |
SBLUP.Inf | MegaPRS.PseudoVal | -0.032 | -19.632 | -19.458 | 2.51e-84 | -0.033 | -21.258 | -10.080 | 6.76e-24 |
SBLUP.Inf | All.MultiPRS | -0.046 | -28.104 | -15.307 | 6.83e-53 | -0.047 | -30.507 | -15.293 | 8.52e-53 |
SBayesR.PseudoVal | pT+clump.10FCVal | 0.025 | 13.925 | 14.037 | 9.21e-45 | 0.027 | 14.995 | 7.447 | 9.55e-14 |
SBayesR.PseudoVal | pT+clump.MultiPRS | 0.005 | 2.773 | 1.676 | 9.38e-02 | 0.004 | 2.387 | 1.536 | 1.25e-01 |
SBayesR.PseudoVal | lassosum.10FCVal | -0.009 | -4.908 | -6.222 | 4.91e-10 | -0.005 | -2.743 | -1.706 | 8.80e-02 |
SBayesR.PseudoVal | lassosum.MultiPRS | -0.017 | -9.484 | -5.756 | 8.60e-09 | -0.014 | -8.016 | -5.651 | 1.60e-08 |
SBayesR.PseudoVal | lassosum.PseudoVal | 0.011 | 6.199 | 7.452 | 9.17e-14 | 0.011 | 6.191 | 3.675 | 2.38e-04 |
SBayesR.PseudoVal | SBLUP.Inf | 0.019 | 10.296 | 12.012 | 3.06e-33 | 0.023 | 13.006 | 7.473 | 7.83e-14 |
SBayesR.PseudoVal | SBayesR.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBayesR.PseudoVal | LDpred1.10FCVal | 0.004 | 2.346 | 3.065 | 2.17e-03 | 0.008 | 4.361 | 2.801 | 5.09e-03 |
SBayesR.PseudoVal | LDpred1.MultiPRS | -0.001 | -0.783 | -0.477 | 6.33e-01 | 0.002 | 1.249 | 0.843 | 3.99e-01 |
SBayesR.PseudoVal | LDpred1.Inf | 0.019 | 10.388 | 11.672 | 1.78e-31 | 0.024 | 13.179 | 7.298 | 2.93e-13 |
SBayesR.PseudoVal | LDpred2.10FCVal | -0.015 | -8.488 | -11.790 | 4.41e-32 | -0.012 | -6.686 | -4.556 | 5.21e-06 |
SBayesR.PseudoVal | LDpred2.MultiPRS | -0.018 | -10.106 | -6.141 | 8.22e-10 | -0.015 | -8.503 | -6.224 | 4.85e-10 |
SBayesR.PseudoVal | LDpred2.PseudoVal | 0.011 | 5.933 | 7.668 | 1.75e-14 | 0.010 | 5.781 | 3.674 | 2.39e-04 |
SBayesR.PseudoVal | LDpred2.Inf | 0.020 | 11.237 | 12.864 | 7.18e-38 | 0.024 | 13.536 | 7.631 | 2.33e-14 |
SBayesR.PseudoVal | DBSLMM.PseudoVal | -0.003 | -1.478 | -1.714 | 8.65e-02 | 0.001 | 0.685 | 0.389 | 6.97e-01 |
SBayesR.PseudoVal | MegaPRS.10FCVal | -0.020 | -10.884 | -15.035 | 4.31e-51 | -0.015 | -8.379 | -5.686 | 1.30e-08 |
SBayesR.PseudoVal | MegaPRS.MultiPRS | -0.022 | -12.055 | -7.347 | 2.02e-13 | -0.018 | -9.862 | -6.807 | 9.98e-12 |
SBayesR.PseudoVal | MegaPRS.PseudoVal | -0.013 | -7.315 | -10.263 | 1.04e-24 | -0.010 | -5.487 | -3.787 | 1.52e-04 |
SBayesR.PseudoVal | All.MultiPRS | -0.027 | -14.915 | -9.097 | 9.27e-20 | -0.024 | -13.533 | -9.825 | 8.77e-23 |
LDpred1.10FCVal | pT+clump.10FCVal | 0.021 | 11.857 | 10.971 | 5.29e-28 | 0.019 | 11.119 | 4.957 | 7.16e-07 |
LDpred1.10FCVal | pT+clump.MultiPRS | 0.001 | 0.437 | 0.258 | 7.96e-01 | -0.004 | -2.064 | -1.182 | 2.37e-01 |
LDpred1.10FCVal | lassosum.10FCVal | -0.013 | -7.428 | -10.722 | 8.03e-27 | -0.013 | -7.427 | -5.172 | 2.32e-07 |
LDpred1.10FCVal | lassosum.MultiPRS | -0.021 | -12.114 | -7.169 | 7.54e-13 | -0.022 | -12.941 | -10.252 | 1.16e-24 |
LDpred1.10FCVal | lassosum.PseudoVal | 0.007 | 3.946 | 4.487 | 7.21e-06 | 0.003 | 1.914 | 1.055 | 2.92e-01 |
LDpred1.10FCVal | SBLUP.Inf | 0.014 | 8.141 | 11.626 | 3.05e-31 | 0.015 | 9.040 | 6.223 | 4.89e-10 |
LDpred1.10FCVal | SBayesR.PseudoVal | -0.004 | -2.402 | -3.065 | 2.17e-03 | -0.008 | -4.559 | -2.801 | 5.09e-03 |
LDpred1.10FCVal | LDpred1.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.10FCVal | LDpred1.MultiPRS | -0.006 | -3.204 | -1.906 | 5.67e-02 | -0.006 | -3.253 | -5.635 | 1.75e-08 |
LDpred1.10FCVal | LDpred1.Inf | 0.015 | 8.236 | 16.927 | 2.84e-64 | 0.016 | 9.220 | 9.127 | 7.05e-20 |
LDpred1.10FCVal | LDpred2.10FCVal | -0.020 | -11.094 | -18.082 | 4.46e-73 | -0.020 | -11.550 | -9.115 | 7.89e-20 |
LDpred1.10FCVal | LDpred2.MultiPRS | -0.023 | -12.751 | -7.556 | 4.15e-14 | -0.023 | -13.450 | -10.224 | 1.55e-24 |
LDpred1.10FCVal | LDpred2.PseudoVal | 0.006 | 3.674 | 4.265 | 2.00e-05 | 0.003 | 1.485 | 0.834 | 4.04e-01 |
LDpred1.10FCVal | LDpred2.Inf | 0.016 | 9.105 | 12.397 | 2.71e-35 | 0.016 | 9.594 | 6.299 | 3.00e-10 |
LDpred1.10FCVal | DBSLMM.PseudoVal | -0.007 | -3.916 | -5.736 | 9.70e-09 | -0.007 | -3.843 | -2.708 | 6.76e-03 |
LDpred1.10FCVal | MegaPRS.10FCVal | -0.024 | -13.548 | -20.183 | 1.39e-90 | -0.023 | -13.321 | -9.566 | 1.11e-21 |
LDpred1.10FCVal | MegaPRS.MultiPRS | -0.026 | -14.747 | -8.761 | 1.93e-18 | -0.025 | -14.871 | -10.958 | 6.10e-28 |
LDpred1.10FCVal | MegaPRS.PseudoVal | -0.017 | -9.893 | -14.468 | 1.94e-47 | -0.018 | -10.297 | -7.265 | 3.74e-13 |
LDpred1.10FCVal | All.MultiPRS | -0.031 | -17.676 | -10.514 | 7.47e-26 | -0.032 | -18.710 | -13.075 | 4.56e-39 |
LDpred1.MultiPRS | pT+clump.10FCVal | 0.027 | 14.593 | 8.919 | 4.70e-19 | 0.025 | 13.919 | 6.671 | 2.55e-11 |
LDpred1.MultiPRS | pT+clump.MultiPRS | 0.006 | 3.528 | 2.153 | 3.13e-02 | 0.002 | 1.152 | 0.708 | 4.79e-01 |
LDpred1.MultiPRS | lassosum.10FCVal | -0.007 | -4.093 | -2.517 | 1.18e-02 | -0.007 | -4.043 | -3.058 | 2.22e-03 |
LDpred1.MultiPRS | lassosum.MultiPRS | -0.016 | -8.634 | -7.480 | 7.43e-14 | -0.017 | -9.383 | -8.221 | 2.02e-16 |
LDpred1.MultiPRS | lassosum.PseudoVal | 0.013 | 6.928 | 4.244 | 2.19e-05 | 0.009 | 5.004 | 3.002 | 2.68e-03 |
LDpred1.MultiPRS | SBLUP.Inf | 0.020 | 10.992 | 6.734 | 1.65e-11 | 0.021 | 11.905 | 8.056 | 7.91e-16 |
LDpred1.MultiPRS | SBayesR.PseudoVal | 0.001 | 0.777 | 0.477 | 6.33e-01 | -0.002 | -1.265 | -0.843 | 3.99e-01 |
LDpred1.MultiPRS | LDpred1.10FCVal | 0.006 | 3.104 | 1.906 | 5.67e-02 | 0.006 | 3.151 | 5.635 | 1.75e-08 |
LDpred1.MultiPRS | LDpred1.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.MultiPRS | LDpred1.Inf | 0.020 | 11.084 | 6.789 | 1.13e-11 | 0.021 | 12.080 | 11.268 | 1.89e-29 |
LDpred1.MultiPRS | LDpred2.10FCVal | -0.014 | -7.646 | -4.709 | 2.49e-06 | -0.014 | -8.036 | -7.068 | 1.57e-12 |
LDpred1.MultiPRS | LDpred2.MultiPRS | -0.017 | -9.251 | -7.125 | 1.04e-12 | -0.017 | -9.876 | -8.372 | 5.66e-17 |
LDpred1.MultiPRS | LDpred2.PseudoVal | 0.012 | 6.664 | 4.088 | 4.35e-05 | 0.008 | 4.589 | 2.785 | 5.35e-03 |
LDpred1.MultiPRS | LDpred2.Inf | 0.022 | 11.927 | 7.305 | 2.78e-13 | 0.022 | 12.442 | 8.018 | 1.07e-15 |
LDpred1.MultiPRS | DBSLMM.PseudoVal | -0.001 | -0.690 | -0.424 | 6.72e-01 | -0.001 | -0.572 | -0.420 | 6.74e-01 |
LDpred1.MultiPRS | MegaPRS.10FCVal | -0.018 | -10.023 | -6.178 | 6.48e-10 | -0.017 | -9.750 | -7.652 | 1.98e-14 |
LDpred1.MultiPRS | MegaPRS.MultiPRS | -0.020 | -11.185 | -8.534 | 1.41e-17 | -0.020 | -11.252 | -9.140 | 6.24e-20 |
LDpred1.MultiPRS | MegaPRS.PseudoVal | -0.012 | -6.482 | -3.992 | 6.56e-05 | -0.012 | -6.822 | -5.194 | 2.06e-07 |
LDpred1.MultiPRS | All.MultiPRS | -0.026 | -14.023 | -10.096 | 5.76e-24 | -0.026 | -14.970 | -11.587 | 4.80e-31 |
LDpred1.Inf | pT+clump.10FCVal | 0.006 | 3.947 | 2.989 | 2.80e-03 | 0.003 | 2.092 | 0.756 | 4.50e-01 |
LDpred1.Inf | pT+clump.MultiPRS | -0.014 | -8.498 | -4.599 | 4.24e-06 | -0.019 | -12.430 | -5.612 | 2.00e-08 |
LDpred1.Inf | lassosum.10FCVal | -0.028 | -17.069 | -19.256 | 1.27e-82 | -0.028 | -18.338 | -9.850 | 6.83e-23 |
LDpred1.Inf | lassosum.MultiPRS | -0.036 | -22.176 | -12.022 | 2.71e-33 | -0.038 | -24.412 | -13.682 | 1.29e-42 |
LDpred1.Inf | lassosum.PseudoVal | -0.008 | -4.675 | -3.874 | 1.07e-04 | -0.012 | -8.049 | -3.199 | 1.38e-03 |
LDpred1.Inf | SBLUP.Inf | 0.000 | -0.103 | -0.196 | 8.45e-01 | 0.000 | -0.199 | -0.179 | 8.58e-01 |
LDpred1.Inf | SBayesR.PseudoVal | -0.019 | -11.592 | -11.672 | 1.78e-31 | -0.024 | -15.179 | -7.298 | 2.93e-13 |
LDpred1.Inf | LDpred1.10FCVal | -0.015 | -8.975 | -16.927 | 2.84e-64 | -0.016 | -10.157 | -9.127 | 7.05e-20 |
LDpred1.Inf | LDpred1.MultiPRS | -0.020 | -12.466 | -6.789 | 1.13e-11 | -0.021 | -13.740 | -11.268 | 1.89e-29 |
LDpred1.Inf | LDpred1.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.Inf | LDpred2.10FCVal | -0.034 | -21.065 | -23.701 | 3.52e-124 | -0.035 | -22.880 | -12.284 | 1.11e-34 |
LDpred1.Inf | LDpred2.MultiPRS | -0.037 | -22.870 | -12.410 | 2.32e-35 | -0.039 | -24.973 | -13.301 | 2.28e-40 |
LDpred1.Inf | LDpred2.PseudoVal | -0.008 | -4.971 | -4.384 | 1.16e-05 | -0.013 | -8.521 | -3.591 | 3.29e-04 |
LDpred1.Inf | LDpred2.Inf | 0.002 | 0.948 | 1.653 | 9.83e-02 | 0.001 | 0.412 | 0.342 | 7.32e-01 |
LDpred1.Inf | DBSLMM.PseudoVal | -0.021 | -13.242 | -13.584 | 4.96e-42 | -0.022 | -14.390 | -7.034 | 2.01e-12 |
LDpred1.Inf | MegaPRS.10FCVal | -0.038 | -23.738 | -26.987 | 2.10e-160 | -0.038 | -24.830 | -13.444 | 3.32e-41 |
LDpred1.Inf | MegaPRS.MultiPRS | -0.041 | -25.045 | -13.630 | 2.67e-42 | -0.041 | -26.538 | -14.362 | 8.96e-47 |
LDpred1.Inf | MegaPRS.PseudoVal | -0.032 | -19.756 | -20.708 | 2.94e-95 | -0.033 | -21.499 | -10.763 | 5.17e-27 |
LDpred1.Inf | All.MultiPRS | -0.046 | -28.237 | -15.374 | 2.45e-53 | -0.048 | -30.767 | -15.850 | 1.40e-56 |
LDpred2.10FCVal | pT+clump.10FCVal | 0.041 | 20.660 | 24.945 | 2.43e-137 | 0.039 | 20.322 | 11.861 | 1.88e-32 |
LDpred2.10FCVal | pT+clump.MultiPRS | 0.020 | 10.380 | 6.828 | 8.63e-12 | 0.016 | 8.504 | 6.073 | 1.26e-09 |
LDpred2.10FCVal | lassosum.10FCVal | 0.006 | 3.301 | 6.343 | 2.25e-10 | 0.007 | 3.696 | 3.466 | 5.28e-04 |
LDpred2.10FCVal | lassosum.MultiPRS | -0.002 | -0.918 | -0.606 | 5.45e-01 | -0.002 | -1.247 | -1.391 | 1.64e-01 |
LDpred2.10FCVal | lassosum.PseudoVal | 0.027 | 13.538 | 20.356 | 4.12e-92 | 0.023 | 12.070 | 8.813 | 1.22e-18 |
LDpred2.10FCVal | SBLUP.Inf | 0.034 | 17.314 | 22.638 | 1.82e-113 | 0.035 | 18.458 | 11.689 | 1.45e-31 |
LDpred2.10FCVal | SBayesR.PseudoVal | 0.015 | 7.824 | 11.790 | 4.41e-32 | 0.012 | 6.267 | 4.556 | 5.21e-06 |
LDpred2.10FCVal | LDpred1.10FCVal | 0.020 | 9.986 | 18.082 | 4.46e-73 | 0.020 | 10.354 | 9.115 | 7.89e-20 |
LDpred2.10FCVal | LDpred1.MultiPRS | 0.014 | 7.103 | 4.709 | 2.49e-06 | 0.014 | 7.438 | 7.068 | 1.57e-12 |
LDpred2.10FCVal | LDpred1.Inf | 0.034 | 17.400 | 23.701 | 3.52e-124 | 0.035 | 18.620 | 12.284 | 1.11e-34 |
LDpred2.10FCVal | LDpred2.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.10FCVal | LDpred2.MultiPRS | -0.003 | -1.491 | -0.985 | 3.25e-01 | -0.003 | -1.703 | -3.887 | 1.02e-04 |
LDpred2.10FCVal | LDpred2.PseudoVal | 0.026 | 13.293 | 25.675 | 2.21e-145 | 0.022 | 11.686 | 10.937 | 7.68e-28 |
LDpred2.10FCVal | LDpred2.Inf | 0.036 | 18.182 | 23.582 | 5.94e-123 | 0.036 | 18.955 | 11.900 | 1.19e-32 |
LDpred2.10FCVal | DBSLMM.PseudoVal | 0.013 | 6.462 | 11.787 | 4.56e-32 | 0.013 | 6.909 | 6.090 | 1.13e-09 |
LDpred2.10FCVal | MegaPRS.10FCVal | -0.004 | -2.208 | -4.413 | 1.02e-05 | -0.003 | -1.587 | -1.541 | 1.23e-01 |
LDpred2.10FCVal | MegaPRS.MultiPRS | -0.006 | -3.288 | -2.178 | 2.94e-02 | -0.006 | -2.977 | -3.060 | 2.21e-03 |
LDpred2.10FCVal | MegaPRS.PseudoVal | 0.002 | 1.081 | 2.004 | 4.51e-02 | 0.002 | 1.124 | 1.011 | 3.12e-01 |
LDpred2.10FCVal | All.MultiPRS | -0.012 | -5.924 | -3.931 | 8.47e-05 | -0.012 | -6.418 | -7.036 | 1.98e-12 |
LDpred2.MultiPRS | pT+clump.10FCVal | 0.043 | 21.825 | 14.549 | 5.92e-48 | 0.042 | 21.656 | 12.766 | 2.54e-37 |
LDpred2.MultiPRS | pT+clump.MultiPRS | 0.023 | 11.697 | 7.814 | 5.53e-15 | 0.019 | 10.037 | 7.578 | 3.52e-14 |
LDpred2.MultiPRS | lassosum.10FCVal | 0.009 | 4.721 | 3.161 | 1.57e-03 | 0.010 | 5.309 | 5.133 | 2.86e-07 |
LDpred2.MultiPRS | lassosum.MultiPRS | 0.001 | 0.565 | 0.526 | 5.99e-01 | 0.001 | 0.449 | 0.550 | 5.82e-01 |
LDpred2.MultiPRS | lassosum.PseudoVal | 0.029 | 14.808 | 9.896 | 4.35e-23 | 0.026 | 13.542 | 9.914 | 3.62e-23 |
LDpred2.MultiPRS | SBLUP.Inf | 0.037 | 18.529 | 12.352 | 4.74e-35 | 0.038 | 19.824 | 12.961 | 2.03e-38 |
LDpred2.MultiPRS | SBayesR.PseudoVal | 0.018 | 9.178 | 6.141 | 8.22e-10 | 0.015 | 7.837 | 6.224 | 4.85e-10 |
LDpred2.MultiPRS | LDpred1.10FCVal | 0.023 | 11.309 | 7.556 | 4.15e-14 | 0.023 | 11.856 | 10.224 | 1.55e-24 |
LDpred2.MultiPRS | LDpred1.MultiPRS | 0.017 | 8.467 | 7.125 | 1.04e-12 | 0.017 | 8.988 | 8.372 | 5.66e-17 |
LDpred2.MultiPRS | LDpred1.Inf | 0.037 | 18.613 | 12.410 | 2.32e-35 | 0.039 | 19.983 | 13.301 | 2.28e-40 |
LDpred2.MultiPRS | LDpred2.10FCVal | 0.003 | 1.469 | 0.985 | 3.25e-01 | 0.003 | 1.675 | 3.887 | 1.02e-04 |
LDpred2.MultiPRS | LDpred2.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.MultiPRS | LDpred2.PseudoVal | 0.029 | 14.567 | 9.733 | 2.19e-22 | 0.025 | 13.165 | 12.270 | 1.32e-34 |
LDpred2.MultiPRS | LDpred2.Inf | 0.039 | 19.385 | 12.919 | 3.50e-38 | 0.039 | 20.312 | 13.172 | 1.27e-39 |
LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.016 | 7.836 | 5.239 | 1.61e-07 | 0.016 | 8.468 | 7.201 | 6.00e-13 |
LDpred2.MultiPRS | MegaPRS.10FCVal | -0.001 | -0.707 | -0.474 | 6.35e-01 | 0.000 | 0.114 | 0.115 | 9.08e-01 |
LDpred2.MultiPRS | MegaPRS.MultiPRS | -0.004 | -1.770 | -1.630 | 1.03e-01 | -0.002 | -1.253 | -1.357 | 1.75e-01 |
LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.005 | 2.535 | 1.699 | 8.93e-02 | 0.005 | 2.779 | 2.584 | 9.77e-03 |
LDpred2.MultiPRS | All.MultiPRS | -0.009 | -4.368 | -4.448 | 8.65e-06 | -0.009 | -4.636 | -6.074 | 1.25e-09 |
LDpred2.PseudoVal | pT+clump.10FCVal | 0.014 | 8.496 | 8.202 | 2.36e-16 | 0.016 | 9.779 | 4.632 | 3.62e-06 |
LDpred2.PseudoVal | pT+clump.MultiPRS | -0.006 | -3.360 | -1.908 | 5.64e-02 | -0.006 | -3.602 | -1.905 | 5.68e-02 |
LDpred2.PseudoVal | lassosum.10FCVal | -0.020 | -11.525 | -14.051 | 7.57e-45 | -0.015 | -9.047 | -5.456 | 4.86e-08 |
LDpred2.PseudoVal | lassosum.MultiPRS | -0.028 | -16.390 | -9.345 | 9.22e-21 | -0.025 | -14.644 | -9.486 | 2.40e-21 |
LDpred2.PseudoVal | lassosum.PseudoVal | 0.000 | 0.282 | 0.312 | 7.55e-01 | 0.001 | 0.435 | 0.237 | 8.12e-01 |
LDpred2.PseudoVal | SBLUP.Inf | 0.008 | 4.637 | 4.109 | 3.97e-05 | 0.013 | 7.668 | 3.357 | 7.88e-04 |
LDpred2.PseudoVal | SBayesR.PseudoVal | -0.011 | -6.307 | -7.668 | 1.75e-14 | -0.010 | -6.136 | -3.674 | 2.39e-04 |
LDpred2.PseudoVal | LDpred1.10FCVal | -0.006 | -3.814 | -4.265 | 2.00e-05 | -0.003 | -1.508 | -0.834 | 4.04e-01 |
LDpred2.PseudoVal | LDpred1.MultiPRS | -0.012 | -7.140 | -4.088 | 4.35e-05 | -0.008 | -4.810 | -2.785 | 5.35e-03 |
LDpred2.PseudoVal | LDpred1.Inf | 0.008 | 4.736 | 4.384 | 1.16e-05 | 0.013 | 7.852 | 3.591 | 3.29e-04 |
LDpred2.PseudoVal | LDpred2.10FCVal | -0.026 | -15.331 | -25.675 | 2.21e-145 | -0.022 | -13.232 | -10.937 | 7.68e-28 |
LDpred2.PseudoVal | LDpred2.MultiPRS | -0.029 | -17.051 | -9.733 | 2.19e-22 | -0.025 | -15.161 | -12.270 | 1.32e-34 |
LDpred2.PseudoVal | LDpred2.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.PseudoVal | LDpred2.Inf | 0.010 | 5.639 | 4.981 | 6.33e-07 | 0.014 | 8.231 | 3.590 | 3.31e-04 |
LDpred2.PseudoVal | DBSLMM.PseudoVal | -0.013 | -7.879 | -9.195 | 3.74e-20 | -0.009 | -5.409 | -3.114 | 1.84e-03 |
LDpred2.PseudoVal | MegaPRS.10FCVal | -0.030 | -17.878 | -22.564 | 9.77e-113 | -0.025 | -15.029 | -9.422 | 4.42e-21 |
LDpred2.PseudoVal | MegaPRS.MultiPRS | -0.033 | -19.123 | -10.944 | 7.08e-28 | -0.028 | -16.603 | -10.810 | 3.07e-27 |
LDpred2.PseudoVal | MegaPRS.PseudoVal | -0.024 | -14.084 | -18.700 | 4.96e-78 | -0.020 | -11.960 | -7.896 | 2.88e-15 |
LDpred2.PseudoVal | All.MultiPRS | -0.038 | -22.164 | -12.701 | 5.81e-37 | -0.034 | -20.500 | -13.777 | 3.49e-43 |
LDpred2.Inf | pT+clump.10FCVal | 0.005 | 3.028 | 2.159 | 3.08e-02 | 0.003 | 1.687 | 0.578 | 5.63e-01 |
LDpred2.Inf | pT+clump.MultiPRS | -0.015 | -9.536 | -5.110 | 3.23e-07 | -0.020 | -12.895 | -5.644 | 1.66e-08 |
LDpred2.Inf | lassosum.10FCVal | -0.029 | -18.189 | -19.026 | 1.04e-80 | -0.029 | -18.828 | -9.437 | 3.83e-21 |
LDpred2.Inf | lassosum.MultiPRS | -0.037 | -23.345 | -12.534 | 4.86e-36 | -0.038 | -24.926 | -12.703 | 5.70e-37 |
LDpred2.Inf | lassosum.PseudoVal | -0.009 | -5.676 | -4.407 | 1.05e-05 | -0.013 | -8.495 | -3.169 | 1.53e-03 |
LDpred2.Inf | SBLUP.Inf | -0.002 | -1.061 | -6.837 | 8.06e-12 | -0.001 | -0.613 | -1.898 | 5.77e-02 |
LDpred2.Inf | SBayesR.PseudoVal | -0.020 | -12.660 | -12.864 | 7.18e-38 | -0.024 | -15.656 | -7.631 | 2.33e-14 |
LDpred2.Inf | LDpred1.10FCVal | -0.016 | -10.017 | -12.397 | 2.71e-35 | -0.016 | -10.612 | -6.299 | 3.00e-10 |
LDpred2.Inf | LDpred1.MultiPRS | -0.022 | -13.542 | -7.305 | 2.78e-13 | -0.022 | -14.211 | -8.018 | 1.07e-15 |
LDpred2.Inf | LDpred1.Inf | -0.002 | -0.957 | -1.653 | 9.83e-02 | -0.001 | -0.414 | -0.342 | 7.32e-01 |
LDpred2.Inf | LDpred2.10FCVal | -0.036 | -22.223 | -23.582 | 5.94e-123 | -0.036 | -23.388 | -11.900 | 1.19e-32 |
LDpred2.Inf | LDpred2.MultiPRS | -0.039 | -24.046 | -12.919 | 3.50e-38 | -0.039 | -25.490 | -13.172 | 1.27e-39 |
LDpred2.Inf | LDpred2.PseudoVal | -0.010 | -5.976 | -4.981 | 6.33e-07 | -0.014 | -8.969 | -3.590 | 3.31e-04 |
LDpred2.Inf | LDpred2.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.Inf | DBSLMM.PseudoVal | -0.023 | -14.325 | -12.770 | 2.41e-37 | -0.023 | -14.863 | -6.344 | 2.24e-10 |
LDpred2.Inf | MegaPRS.10FCVal | -0.040 | -24.922 | -26.155 | 8.60e-151 | -0.039 | -25.347 | -12.728 | 4.11e-37 |
LDpred2.Inf | MegaPRS.MultiPRS | -0.042 | -26.242 | -14.141 | 2.11e-45 | -0.042 | -27.062 | -13.404 | 5.70e-41 |
LDpred2.Inf | MegaPRS.PseudoVal | -0.034 | -20.902 | -19.907 | 3.55e-88 | -0.034 | -22.002 | -10.070 | 7.51e-24 |
LDpred2.Inf | All.MultiPRS | -0.047 | -29.464 | -15.877 | 9.13e-57 | -0.048 | -31.308 | -15.185 | 4.43e-52 |
DBSLMM.PseudoVal | pT+clump.10FCVal | 0.028 | 15.179 | 16.591 | 8.16e-62 | 0.026 | 14.409 | 7.580 | 3.47e-14 |
DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.008 | 4.189 | 2.573 | 1.01e-02 | 0.003 | 1.714 | 1.053 | 2.92e-01 |
DBSLMM.PseudoVal | lassosum.10FCVal | -0.006 | -3.379 | -4.710 | 2.48e-06 | -0.006 | -3.451 | -2.316 | 2.05e-02 |
DBSLMM.PseudoVal | lassosum.MultiPRS | -0.014 | -7.889 | -4.858 | 1.19e-06 | -0.016 | -8.761 | -7.186 | 6.66e-13 |
DBSLMM.PseudoVal | lassosum.PseudoVal | 0.014 | 7.565 | 9.447 | 3.49e-21 | 0.010 | 5.544 | 3.339 | 8.41e-04 |
DBSLMM.PseudoVal | SBLUP.Inf | 0.021 | 11.602 | 12.177 | 4.12e-34 | 0.022 | 12.406 | 6.265 | 3.72e-10 |
DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.003 | 1.457 | 1.714 | 8.65e-02 | -0.001 | -0.690 | -0.389 | 6.97e-01 |
DBSLMM.PseudoVal | LDpred1.10FCVal | 0.007 | 3.768 | 5.736 | 9.70e-09 | 0.007 | 3.701 | 2.708 | 6.76e-03 |
DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.001 | 0.685 | 0.424 | 6.72e-01 | 0.001 | 0.568 | 0.420 | 6.74e-01 |
DBSLMM.PseudoVal | LDpred1.Inf | 0.021 | 11.694 | 13.584 | 4.96e-42 | 0.022 | 12.580 | 7.034 | 2.01e-12 |
DBSLMM.PseudoVal | LDpred2.10FCVal | -0.013 | -6.908 | -11.787 | 4.56e-32 | -0.013 | -7.422 | -6.090 | 1.13e-09 |
DBSLMM.PseudoVal | LDpred2.MultiPRS | -0.016 | -8.502 | -5.239 | 1.61e-07 | -0.016 | -9.251 | -7.201 | 6.00e-13 |
DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.013 | 7.303 | 9.195 | 3.74e-20 | 0.009 | 5.131 | 3.114 | 1.84e-03 |
DBSLMM.PseudoVal | LDpred2.Inf | 0.023 | 12.530 | 12.770 | 2.41e-37 | 0.023 | 12.940 | 6.344 | 2.24e-10 |
DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
DBSLMM.PseudoVal | MegaPRS.10FCVal | -0.017 | -9.269 | -13.569 | 6.11e-42 | -0.016 | -9.127 | -6.400 | 1.55e-10 |
DBSLMM.PseudoVal | MegaPRS.MultiPRS | -0.019 | -10.423 | -6.444 | 1.16e-10 | -0.019 | -10.620 | -7.896 | 2.88e-15 |
DBSLMM.PseudoVal | MegaPRS.PseudoVal | -0.011 | -5.752 | -8.593 | 8.47e-18 | -0.011 | -6.215 | -4.444 | 8.82e-06 |
DBSLMM.PseudoVal | All.MultiPRS | -0.024 | -13.241 | -8.197 | 2.46e-16 | -0.025 | -14.316 | -10.516 | 7.31e-26 |
MegaPRS.10FCVal | pT+clump.10FCVal | 0.045 | 22.374 | 25.604 | 1.37e-144 | 0.042 | 21.567 | 11.851 | 2.12e-32 |
MegaPRS.10FCVal | pT+clump.MultiPRS | 0.025 | 12.316 | 8.292 | 1.12e-16 | 0.019 | 9.934 | 6.892 | 5.49e-12 |
MegaPRS.10FCVal | lassosum.10FCVal | 0.011 | 5.390 | 10.105 | 5.22e-24 | 0.010 | 5.201 | 4.695 | 2.66e-06 |
MegaPRS.10FCVal | lassosum.MultiPRS | 0.003 | 1.262 | 0.852 | 3.94e-01 | 0.001 | 0.335 | 0.346 | 7.29e-01 |
MegaPRS.10FCVal | lassosum.PseudoVal | 0.031 | 15.406 | 20.955 | 1.70e-97 | 0.026 | 13.444 | 8.838 | 9.77e-19 |
MegaPRS.10FCVal | SBLUP.Inf | 0.038 | 19.101 | 25.867 | 1.57e-147 | 0.038 | 19.732 | 12.826 | 1.18e-37 |
MegaPRS.10FCVal | SBayesR.PseudoVal | 0.020 | 9.816 | 15.035 | 4.31e-51 | 0.015 | 7.731 | 5.686 | 1.30e-08 |
MegaPRS.10FCVal | LDpred1.10FCVal | 0.024 | 11.931 | 20.183 | 1.39e-90 | 0.023 | 11.755 | 9.566 | 1.11e-21 |
MegaPRS.10FCVal | LDpred1.MultiPRS | 0.018 | 9.110 | 6.178 | 6.48e-10 | 0.017 | 8.884 | 7.652 | 1.98e-14 |
MegaPRS.10FCVal | LDpred1.Inf | 0.038 | 19.184 | 26.987 | 2.10e-160 | 0.038 | 19.891 | 13.444 | 3.32e-41 |
MegaPRS.10FCVal | LDpred2.10FCVal | 0.004 | 2.161 | 4.413 | 1.02e-05 | 0.003 | 1.562 | 1.541 | 1.23e-01 |
MegaPRS.10FCVal | LDpred2.MultiPRS | 0.001 | 0.702 | 0.474 | 6.35e-01 | 0.000 | -0.114 | -0.115 | 9.08e-01 |
MegaPRS.10FCVal | LDpred2.PseudoVal | 0.030 | 15.167 | 22.564 | 9.77e-113 | 0.025 | 13.066 | 9.422 | 4.42e-21 |
MegaPRS.10FCVal | LDpred2.Inf | 0.040 | 19.950 | 26.155 | 8.60e-151 | 0.039 | 20.221 | 12.728 | 4.11e-37 |
MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.017 | 8.483 | 13.569 | 6.11e-42 | 0.016 | 8.363 | 6.400 | 1.55e-10 |
MegaPRS.10FCVal | MegaPRS.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.10FCVal | MegaPRS.MultiPRS | -0.002 | -1.056 | -0.716 | 4.74e-01 | -0.003 | -1.368 | -3.714 | 2.04e-04 |
MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.006 | 3.218 | 9.909 | 3.79e-23 | 0.005 | 2.668 | 3.984 | 6.77e-05 |
MegaPRS.10FCVal | All.MultiPRS | -0.007 | -3.636 | -2.466 | 1.37e-02 | -0.009 | -4.756 | -6.923 | 4.41e-12 |
MegaPRS.MultiPRS | pT+clump.10FCVal | 0.047 | 23.185 | 15.759 | 5.92e-56 | 0.044 | 22.626 | 12.907 | 4.12e-38 |
MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.027 | 13.233 | 9.009 | 2.07e-19 | 0.022 | 11.149 | 8.053 | 8.11e-16 |
MegaPRS.MultiPRS | lassosum.10FCVal | 0.013 | 6.379 | 4.358 | 1.31e-05 | 0.013 | 6.480 | 6.074 | 1.25e-09 |
MegaPRS.MultiPRS | lassosum.MultiPRS | 0.005 | 2.295 | 2.155 | 3.12e-02 | 0.003 | 1.680 | 1.904 | 5.68e-02 |
MegaPRS.MultiPRS | lassosum.PseudoVal | 0.033 | 16.290 | 11.104 | 1.20e-28 | 0.029 | 14.612 | 10.093 | 5.95e-24 |
MegaPRS.MultiPRS | SBLUP.Inf | 0.040 | 19.946 | 13.572 | 5.90e-42 | 0.041 | 20.815 | 13.546 | 8.41e-42 |
MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.022 | 10.758 | 7.347 | 2.02e-13 | 0.018 | 8.977 | 6.807 | 9.98e-12 |
MegaPRS.MultiPRS | LDpred1.10FCVal | 0.026 | 12.852 | 8.761 | 1.93e-18 | 0.025 | 12.946 | 10.958 | 6.10e-28 |
MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.020 | 10.060 | 8.534 | 1.41e-17 | 0.020 | 10.114 | 9.140 | 6.24e-20 |
MegaPRS.MultiPRS | LDpred1.Inf | 0.041 | 20.029 | 13.630 | 2.67e-42 | 0.041 | 20.973 | 14.362 | 8.96e-47 |
MegaPRS.MultiPRS | LDpred2.10FCVal | 0.006 | 3.183 | 2.178 | 2.94e-02 | 0.006 | 2.891 | 3.060 | 2.21e-03 |
MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.004 | 1.740 | 1.630 | 1.03e-01 | 0.002 | 1.237 | 1.357 | 1.75e-01 |
MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.033 | 16.053 | 10.944 | 7.08e-28 | 0.028 | 14.239 | 10.810 | 3.07e-27 |
MegaPRS.MultiPRS | LDpred2.Inf | 0.042 | 20.787 | 14.141 | 2.11e-45 | 0.042 | 21.298 | 13.404 | 5.70e-41 |
MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.019 | 9.439 | 6.444 | 1.16e-10 | 0.019 | 9.600 | 7.896 | 2.88e-15 |
MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.002 | 1.045 | 0.716 | 4.74e-01 | 0.003 | 1.350 | 3.714 | 2.04e-04 |
MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.009 | 4.230 | 2.894 | 3.80e-03 | 0.008 | 3.982 | 7.208 | 5.66e-13 |
MegaPRS.MultiPRS | All.MultiPRS | -0.005 | -2.552 | -2.584 | 9.78e-03 | -0.007 | -3.342 | -5.749 | 8.95e-09 |
MegaPRS.PseudoVal | pT+clump.10FCVal | 0.038 | 19.792 | 21.994 | 3.28e-107 | 0.037 | 19.417 | 10.395 | 2.62e-25 |
MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.018 | 9.400 | 6.114 | 9.71e-10 | 0.014 | 7.465 | 5.005 | 5.58e-07 |
MegaPRS.PseudoVal | lassosum.10FCVal | 0.004 | 2.244 | 3.591 | 3.30e-04 | 0.005 | 2.602 | 2.027 | 4.26e-02 |
MegaPRS.PseudoVal | lassosum.MultiPRS | -0.004 | -2.021 | -1.319 | 1.87e-01 | -0.005 | -2.397 | -2.234 | 2.55e-02 |
MegaPRS.PseudoVal | lassosum.PseudoVal | 0.024 | 12.593 | 17.237 | 1.41e-66 | 0.021 | 11.071 | 7.392 | 1.45e-13 |
MegaPRS.PseudoVal | SBLUP.Inf | 0.032 | 16.410 | 19.458 | 2.51e-84 | 0.033 | 17.531 | 10.080 | 6.76e-24 |
MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.013 | 6.817 | 10.263 | 1.04e-24 | 0.010 | 5.202 | 3.787 | 1.52e-04 |
MegaPRS.PseudoVal | LDpred1.10FCVal | 0.017 | 9.003 | 14.468 | 1.94e-47 | 0.018 | 9.336 | 7.265 | 3.74e-13 |
MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.012 | 6.087 | 3.992 | 6.56e-05 | 0.012 | 6.386 | 5.194 | 2.06e-07 |
MegaPRS.PseudoVal | LDpred1.Inf | 0.032 | 16.497 | 20.708 | 2.94e-95 | 0.033 | 17.695 | 10.763 | 5.17e-27 |
MegaPRS.PseudoVal | LDpred2.10FCVal | -0.002 | -1.093 | -2.004 | 4.51e-02 | -0.002 | -1.136 | -1.011 | 3.12e-01 |
MegaPRS.PseudoVal | LDpred2.MultiPRS | -0.005 | -2.601 | -1.699 | 8.93e-02 | -0.005 | -2.859 | -2.584 | 9.77e-03 |
MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.024 | 12.345 | 18.700 | 4.96e-78 | 0.020 | 10.682 | 7.896 | 2.88e-15 |
MegaPRS.PseudoVal | LDpred2.Inf | 0.034 | 17.288 | 19.907 | 3.55e-88 | 0.034 | 18.034 | 10.070 | 7.51e-24 |
MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.011 | 5.439 | 8.593 | 8.47e-18 | 0.011 | 5.851 | 4.444 | 8.82e-06 |
MegaPRS.PseudoVal | MegaPRS.10FCVal | -0.006 | -3.325 | -9.909 | 3.79e-23 | -0.005 | -2.741 | -3.984 | 6.77e-05 |
MegaPRS.PseudoVal | MegaPRS.MultiPRS | -0.009 | -4.417 | -2.894 | 3.80e-03 | -0.008 | -4.147 | -7.208 | 5.66e-13 |
MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.PseudoVal | All.MultiPRS | -0.014 | -7.082 | -4.645 | 3.41e-06 | -0.014 | -7.628 | -9.018 | 1.91e-19 |
All.MultiPRS | pT+clump.10FCVal | 0.052 | 25.097 | 17.520 | 1.00e-68 | 0.051 | 25.128 | 15.690 | 1.78e-55 |
All.MultiPRS | pT+clump.MultiPRS | 0.032 | 15.392 | 10.757 | 5.50e-27 | 0.028 | 14.023 | 11.276 | 1.73e-29 |
All.MultiPRS | lassosum.10FCVal | 0.018 | 8.709 | 6.110 | 9.97e-10 | 0.019 | 9.504 | 9.137 | 6.39e-20 |
All.MultiPRS | lassosum.MultiPRS | 0.010 | 4.726 | 4.558 | 5.16e-06 | 0.010 | 4.860 | 6.128 | 8.89e-10 |
All.MultiPRS | lassosum.PseudoVal | 0.038 | 18.374 | 12.858 | 7.80e-38 | 0.035 | 17.373 | 12.646 | 1.17e-36 |
All.MultiPRS | SBLUP.Inf | 0.046 | 21.939 | 15.307 | 6.83e-53 | 0.047 | 23.376 | 15.293 | 8.52e-53 |
All.MultiPRS | SBayesR.PseudoVal | 0.027 | 12.979 | 9.097 | 9.27e-20 | 0.024 | 11.920 | 9.825 | 8.77e-23 |
All.MultiPRS | LDpred1.10FCVal | 0.031 | 15.021 | 10.514 | 7.47e-26 | 0.032 | 15.761 | 13.075 | 4.56e-39 |
All.MultiPRS | LDpred1.MultiPRS | 0.026 | 12.298 | 10.096 | 5.76e-24 | 0.026 | 13.021 | 11.587 | 4.80e-31 |
All.MultiPRS | LDpred1.Inf | 0.046 | 22.019 | 15.374 | 2.45e-53 | 0.048 | 23.528 | 15.850 | 1.40e-56 |
All.MultiPRS | LDpred2.10FCVal | 0.012 | 5.593 | 3.931 | 8.47e-05 | 0.012 | 6.031 | 7.036 | 1.98e-12 |
All.MultiPRS | LDpred2.MultiPRS | 0.009 | 4.185 | 4.448 | 8.65e-06 | 0.009 | 4.431 | 6.074 | 1.25e-09 |
All.MultiPRS | LDpred2.PseudoVal | 0.038 | 18.142 | 12.701 | 5.81e-37 | 0.034 | 17.012 | 13.777 | 3.49e-43 |
All.MultiPRS | LDpred2.Inf | 0.047 | 22.758 | 15.877 | 9.13e-57 | 0.048 | 23.843 | 15.185 | 4.43e-52 |
All.MultiPRS | DBSLMM.PseudoVal | 0.024 | 11.693 | 8.197 | 2.46e-16 | 0.025 | 12.524 | 10.516 | 7.31e-26 |
All.MultiPRS | MegaPRS.10FCVal | 0.007 | 3.508 | 2.466 | 1.37e-02 | 0.009 | 4.540 | 6.923 | 4.41e-12 |
All.MultiPRS | MegaPRS.MultiPRS | 0.005 | 2.489 | 2.584 | 9.78e-03 | 0.007 | 3.234 | 5.749 | 8.95e-09 |
All.MultiPRS | MegaPRS.PseudoVal | 0.014 | 6.614 | 4.645 | 3.41e-06 | 0.014 | 7.087 | 9.018 | 1.91e-19 |
All.MultiPRS | All.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
Show table: TEDS (1KG ref)
Reference | Test | IndepVal Diff | IndepVal Diff (%) | IndepVal Diff Z | IndepVal Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|
pT+clump.10FCVal | pT+clump.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.10FCVal | pT+clump.MultiPRS | -0.007 | -2.450 | -0.651 | 5.15e-01 | -0.015 | -5.242 | -3.302 | 9.60e-04 |
pT+clump.10FCVal | lassosum.10FCVal | -0.037 | -12.753 | -7.873 | 3.47e-15 | -0.046 | -16.458 | -4.868 | 1.13e-06 |
pT+clump.10FCVal | lassosum.MultiPRS | -0.041 | -14.173 | -3.796 | 1.47e-04 | -0.049 | -17.504 | -5.066 | 4.05e-07 |
pT+clump.10FCVal | lassosum.PseudoVal | 0.030 | 10.405 | 4.221 | 2.43e-05 | 0.034 | 12.244 | 2.364 | 1.81e-02 |
pT+clump.10FCVal | PRScs.10FCVal | -0.036 | -12.253 | -7.738 | 1.01e-14 | -0.048 | -17.323 | -5.209 | 1.90e-07 |
pT+clump.10FCVal | PRScs.MultiPRS | -0.038 | -13.036 | -3.491 | 4.82e-04 | -0.049 | -17.502 | -5.334 | 9.63e-08 |
pT+clump.10FCVal | PRScs.PseudoVal | -0.031 | -10.801 | -6.316 | 2.69e-10 | -0.040 | -14.492 | -4.017 | 5.91e-05 |
pT+clump.10FCVal | SBLUP.Inf | -0.013 | -4.610 | -2.582 | 9.82e-03 | -0.025 | -8.842 | -2.328 | 1.99e-02 |
pT+clump.10FCVal | SBayesR.PseudoVal | -0.023 | -7.865 | -3.861 | 1.13e-04 | -0.024 | -8.541 | -2.008 | 4.46e-02 |
pT+clump.10FCVal | LDpred1.10FCVal | -0.018 | -6.199 | -3.412 | 6.45e-04 | -0.024 | -8.432 | -2.182 | 2.91e-02 |
pT+clump.10FCVal | LDpred1.MultiPRS | -0.024 | -8.198 | -2.189 | 2.86e-02 | -0.030 | -10.647 | -2.887 | 3.88e-03 |
pT+clump.10FCVal | LDpred1.Inf | -0.021 | -7.055 | -4.094 | 4.24e-05 | -0.026 | -9.419 | -2.562 | 1.04e-02 |
pT+clump.10FCVal | LDpred2.10FCVal | -0.039 | -13.519 | -7.938 | 2.05e-15 | -0.046 | -16.649 | -4.654 | 3.25e-06 |
pT+clump.10FCVal | LDpred2.MultiPRS | -0.040 | -13.803 | -3.700 | 2.15e-04 | -0.041 | -14.599 | -4.107 | 4.01e-05 |
pT+clump.10FCVal | LDpred2.PseudoVal | -0.017 | -5.854 | -3.241 | 1.19e-03 | -0.024 | -8.698 | -2.268 | 2.33e-02 |
pT+clump.10FCVal | LDpred2.Inf | -0.017 | -5.959 | -3.342 | 8.31e-04 | -0.024 | -8.525 | -2.251 | 2.44e-02 |
pT+clump.10FCVal | DBSLMM.PseudoVal | -0.031 | -10.509 | -6.001 | 1.96e-09 | -0.034 | -12.239 | -3.349 | 8.12e-04 |
pT+clump.10FCVal | MegaPRS.10FCVal | -0.046 | -15.689 | -9.441 | 3.71e-21 | -0.052 | -18.632 | -5.357 | 8.45e-08 |
pT+clump.10FCVal | MegaPRS.MultiPRS | -0.050 | -17.217 | -4.647 | 3.37e-06 | -0.049 | -17.639 | -5.179 | 2.24e-07 |
pT+clump.10FCVal | MegaPRS.PseudoVal | -0.038 | -12.963 | -7.852 | 4.10e-15 | -0.041 | -14.668 | -4.272 | 1.93e-05 |
pT+clump.10FCVal | All.MultiPRS | -0.052 | -17.807 | -4.796 | 1.61e-06 | -0.049 | -17.427 | -4.916 | 8.82e-07 |
pT+clump.MultiPRS | pT+clump.10FCVal | 0.007 | 2.392 | 0.651 | 5.15e-01 | 0.015 | 4.981 | 3.302 | 9.60e-04 |
pT+clump.MultiPRS | pT+clump.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.MultiPRS | lassosum.10FCVal | -0.030 | -10.056 | -2.770 | 5.61e-03 | -0.031 | -10.657 | -3.681 | 2.32e-04 |
pT+clump.MultiPRS | lassosum.MultiPRS | -0.034 | -11.443 | -3.152 | 1.62e-03 | -0.034 | -11.651 | -4.084 | 4.42e-05 |
pT+clump.MultiPRS | lassosum.PseudoVal | 0.037 | 12.548 | 3.394 | 6.88e-04 | 0.049 | 16.615 | 3.880 | 1.04e-04 |
pT+clump.MultiPRS | PRScs.10FCVal | -0.029 | -9.568 | -2.635 | 8.41e-03 | -0.034 | -11.480 | -3.949 | 7.85e-05 |
pT+clump.MultiPRS | PRScs.MultiPRS | -0.031 | -10.333 | -2.855 | 4.30e-03 | -0.034 | -11.649 | -4.283 | 1.84e-05 |
pT+clump.MultiPRS | PRScs.PseudoVal | -0.024 | -8.151 | -2.241 | 2.50e-02 | -0.026 | -8.789 | -3.061 | 2.21e-03 |
pT+clump.MultiPRS | SBLUP.Inf | -0.006 | -2.108 | -0.576 | 5.65e-01 | -0.010 | -3.420 | -1.014 | 3.10e-01 |
pT+clump.MultiPRS | SBayesR.PseudoVal | -0.016 | -5.285 | -1.450 | 1.47e-01 | -0.009 | -3.134 | -0.889 | 3.74e-01 |
pT+clump.MultiPRS | LDpred1.10FCVal | -0.011 | -3.659 | -1.000 | 3.17e-01 | -0.009 | -3.031 | -0.888 | 3.75e-01 |
pT+clump.MultiPRS | LDpred1.MultiPRS | -0.017 | -5.610 | -1.540 | 1.24e-01 | -0.015 | -5.136 | -1.598 | 1.10e-01 |
pT+clump.MultiPRS | LDpred1.Inf | -0.013 | -4.495 | -1.231 | 2.18e-01 | -0.012 | -3.969 | -1.221 | 2.22e-01 |
pT+clump.MultiPRS | LDpred2.10FCVal | -0.032 | -10.804 | -2.976 | 2.92e-03 | -0.032 | -10.839 | -3.594 | 3.26e-04 |
pT+clump.MultiPRS | LDpred2.MultiPRS | -0.033 | -11.081 | -3.067 | 2.17e-03 | -0.026 | -8.891 | -2.926 | 3.43e-03 |
pT+clump.MultiPRS | LDpred2.PseudoVal | -0.010 | -3.322 | -0.909 | 3.63e-01 | -0.010 | -3.284 | -0.967 | 3.34e-01 |
pT+clump.MultiPRS | LDpred2.Inf | -0.010 | -3.425 | -0.937 | 3.49e-01 | -0.009 | -3.119 | -0.929 | 3.53e-01 |
pT+clump.MultiPRS | DBSLMM.PseudoVal | -0.023 | -7.866 | -2.160 | 3.08e-02 | -0.020 | -6.648 | -2.322 | 2.02e-02 |
pT+clump.MultiPRS | MegaPRS.10FCVal | -0.039 | -12.922 | -3.564 | 3.65e-04 | -0.037 | -12.723 | -4.355 | 1.33e-05 |
pT+clump.MultiPRS | MegaPRS.MultiPRS | -0.043 | -14.414 | -3.990 | 6.61e-05 | -0.035 | -11.780 | -4.121 | 3.78e-05 |
pT+clump.MultiPRS | MegaPRS.PseudoVal | -0.031 | -10.261 | -2.823 | 4.76e-03 | -0.026 | -8.956 | -2.936 | 3.33e-03 |
pT+clump.MultiPRS | All.MultiPRS | -0.045 | -14.989 | -4.186 | 2.84e-05 | -0.034 | -11.578 | -3.833 | 1.27e-04 |
lassosum.10FCVal | pT+clump.10FCVal | 0.037 | 11.311 | 7.873 | 3.47e-15 | 0.046 | 14.132 | 4.868 | 1.13e-06 |
lassosum.10FCVal | pT+clump.MultiPRS | 0.030 | 9.137 | 2.770 | 5.61e-03 | 0.031 | 9.631 | 3.681 | 2.32e-04 |
lassosum.10FCVal | lassosum.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.10FCVal | lassosum.MultiPRS | -0.004 | -1.260 | -0.386 | 7.00e-01 | -0.003 | -0.899 | -0.879 | 3.79e-01 |
lassosum.10FCVal | lassosum.PseudoVal | 0.067 | 20.539 | 12.555 | 3.73e-36 | 0.080 | 24.645 | 7.323 | 2.43e-13 |
lassosum.10FCVal | PRScs.10FCVal | 0.001 | 0.444 | 0.554 | 5.80e-01 | -0.002 | -0.743 | -0.450 | 6.53e-01 |
lassosum.10FCVal | PRScs.MultiPRS | -0.001 | -0.251 | -0.077 | 9.39e-01 | -0.003 | -0.896 | -0.629 | 5.29e-01 |
lassosum.10FCVal | PRScs.PseudoVal | 0.006 | 1.731 | 2.195 | 2.82e-02 | 0.005 | 1.688 | 1.043 | 2.97e-01 |
lassosum.10FCVal | SBLUP.Inf | 0.024 | 7.222 | 6.026 | 1.68e-09 | 0.021 | 6.540 | 2.709 | 6.75e-03 |
lassosum.10FCVal | SBayesR.PseudoVal | 0.014 | 4.335 | 3.387 | 7.07e-04 | 0.022 | 6.798 | 2.585 | 9.75e-03 |
lassosum.10FCVal | LDpred1.10FCVal | 0.019 | 5.812 | 5.036 | 4.76e-07 | 0.022 | 6.892 | 2.901 | 3.72e-03 |
lassosum.10FCVal | LDpred1.MultiPRS | 0.013 | 4.040 | 1.234 | 2.17e-01 | 0.016 | 4.990 | 2.301 | 2.14e-02 |
lassosum.10FCVal | LDpred1.Inf | 0.017 | 5.053 | 4.512 | 6.43e-06 | 0.020 | 6.044 | 2.618 | 8.84e-03 |
lassosum.10FCVal | LDpred2.10FCVal | -0.002 | -0.680 | -0.819 | 4.13e-01 | -0.001 | -0.164 | -0.097 | 9.23e-01 |
lassosum.10FCVal | LDpred2.MultiPRS | -0.003 | -0.931 | -0.285 | 7.76e-01 | 0.005 | 1.596 | 0.915 | 3.60e-01 |
lassosum.10FCVal | LDpred2.PseudoVal | 0.020 | 6.119 | 5.293 | 1.20e-07 | 0.022 | 6.663 | 2.824 | 4.74e-03 |
lassosum.10FCVal | LDpred2.Inf | 0.020 | 6.026 | 5.260 | 1.44e-07 | 0.022 | 6.812 | 2.910 | 3.61e-03 |
lassosum.10FCVal | DBSLMM.PseudoVal | 0.007 | 1.990 | 1.867 | 6.19e-02 | 0.012 | 3.623 | 1.665 | 9.59e-02 |
lassosum.10FCVal | MegaPRS.10FCVal | -0.009 | -2.604 | -2.636 | 8.39e-03 | -0.006 | -1.867 | -0.928 | 3.53e-01 |
lassosum.10FCVal | MegaPRS.MultiPRS | -0.013 | -3.959 | -1.221 | 2.22e-01 | -0.003 | -1.015 | -0.537 | 5.91e-01 |
lassosum.10FCVal | MegaPRS.PseudoVal | -0.001 | -0.186 | -0.180 | 8.57e-01 | 0.005 | 1.537 | 0.731 | 4.65e-01 |
lassosum.10FCVal | All.MultiPRS | -0.015 | -4.482 | -1.383 | 1.67e-01 | -0.003 | -0.832 | -0.428 | 6.69e-01 |
lassosum.MultiPRS | pT+clump.10FCVal | 0.041 | 12.414 | 3.796 | 1.47e-04 | 0.049 | 14.897 | 5.066 | 4.05e-07 |
lassosum.MultiPRS | pT+clump.MultiPRS | 0.034 | 10.268 | 3.152 | 1.62e-03 | 0.034 | 10.435 | 4.084 | 4.42e-05 |
lassosum.MultiPRS | lassosum.10FCVal | 0.004 | 1.244 | 0.386 | 7.00e-01 | 0.003 | 0.891 | 0.879 | 3.79e-01 |
lassosum.MultiPRS | lassosum.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.MultiPRS | lassosum.PseudoVal | 0.071 | 21.528 | 6.547 | 5.86e-11 | 0.083 | 25.316 | 7.541 | 4.67e-14 |
lassosum.MultiPRS | PRScs.10FCVal | 0.006 | 1.682 | 0.521 | 6.02e-01 | 0.001 | 0.154 | 0.098 | 9.22e-01 |
lassosum.MultiPRS | PRScs.MultiPRS | 0.003 | 0.996 | 0.448 | 6.54e-01 | 0.000 | 0.002 | 0.002 | 9.99e-01 |
lassosum.MultiPRS | PRScs.PseudoVal | 0.010 | 2.954 | 0.913 | 3.61e-01 | 0.008 | 2.564 | 1.633 | 1.02e-01 |
lassosum.MultiPRS | SBLUP.Inf | 0.028 | 8.376 | 2.568 | 1.02e-02 | 0.024 | 7.372 | 3.184 | 1.45e-03 |
lassosum.MultiPRS | SBayesR.PseudoVal | 0.018 | 5.525 | 1.705 | 8.82e-02 | 0.025 | 7.628 | 2.974 | 2.94e-03 |
lassosum.MultiPRS | LDpred1.10FCVal | 0.023 | 6.984 | 2.147 | 3.18e-02 | 0.025 | 7.721 | 3.401 | 6.72e-04 |
lassosum.MultiPRS | LDpred1.MultiPRS | 0.017 | 5.234 | 2.297 | 2.16e-02 | 0.019 | 5.836 | 2.824 | 4.75e-03 |
lassosum.MultiPRS | LDpred1.Inf | 0.021 | 6.234 | 1.917 | 5.53e-02 | 0.023 | 6.881 | 3.115 | 1.84e-03 |
lassosum.MultiPRS | LDpred2.10FCVal | 0.002 | 0.573 | 0.177 | 8.59e-01 | 0.002 | 0.728 | 0.445 | 6.56e-01 |
lassosum.MultiPRS | LDpred2.MultiPRS | 0.001 | 0.325 | 0.155 | 8.77e-01 | 0.008 | 2.472 | 1.459 | 1.45e-01 |
lassosum.MultiPRS | LDpred2.PseudoVal | 0.024 | 7.287 | 2.237 | 2.53e-02 | 0.025 | 7.495 | 3.315 | 9.16e-04 |
lassosum.MultiPRS | LDpred2.Inf | 0.024 | 7.195 | 2.209 | 2.72e-02 | 0.025 | 7.642 | 3.409 | 6.53e-04 |
lassosum.MultiPRS | DBSLMM.PseudoVal | 0.011 | 3.210 | 0.994 | 3.20e-01 | 0.015 | 4.481 | 2.392 | 1.68e-02 |
lassosum.MultiPRS | MegaPRS.10FCVal | -0.004 | -1.328 | -0.412 | 6.80e-01 | -0.003 | -0.960 | -0.522 | 6.02e-01 |
lassosum.MultiPRS | MegaPRS.MultiPRS | -0.009 | -2.666 | -0.995 | 3.20e-01 | 0.000 | -0.115 | -0.066 | 9.48e-01 |
lassosum.MultiPRS | MegaPRS.PseudoVal | 0.004 | 1.060 | 0.329 | 7.42e-01 | 0.008 | 2.414 | 1.217 | 2.23e-01 |
lassosum.MultiPRS | All.MultiPRS | -0.011 | -3.182 | -0.997 | 3.19e-01 | 0.000 | 0.066 | 0.040 | 9.68e-01 |
lassosum.PseudoVal | pT+clump.10FCVal | -0.030 | -11.614 | -4.221 | 2.43e-05 | -0.034 | -13.952 | -2.364 | 1.81e-02 |
lassosum.PseudoVal | pT+clump.MultiPRS | -0.037 | -14.349 | -3.394 | 6.88e-04 | -0.049 | -19.925 | -3.880 | 1.04e-04 |
lassosum.PseudoVal | lassosum.10FCVal | -0.067 | -25.848 | -12.555 | 3.73e-36 | -0.080 | -32.706 | -7.323 | 2.43e-13 |
lassosum.PseudoVal | lassosum.MultiPRS | -0.071 | -27.433 | -6.547 | 5.86e-11 | -0.083 | -33.898 | -7.541 | 4.67e-14 |
lassosum.PseudoVal | lassosum.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.PseudoVal | PRScs.10FCVal | -0.066 | -25.289 | -11.309 | 1.19e-29 | -0.082 | -33.692 | -6.927 | 4.29e-12 |
lassosum.PseudoVal | PRScs.MultiPRS | -0.068 | -26.164 | -6.272 | 3.58e-10 | -0.083 | -33.895 | -7.374 | 1.65e-13 |
lassosum.PseudoVal | PRScs.PseudoVal | -0.062 | -23.669 | -12.255 | 1.57e-34 | -0.075 | -30.466 | -7.446 | 9.64e-14 |
lassosum.PseudoVal | SBLUP.Inf | -0.044 | -16.760 | -5.991 | 2.09e-09 | -0.059 | -24.027 | -4.016 | 5.93e-05 |
lassosum.PseudoVal | SBayesR.PseudoVal | -0.053 | -20.392 | -10.739 | 6.69e-27 | -0.058 | -23.684 | -5.743 | 9.32e-09 |
lassosum.PseudoVal | LDpred1.10FCVal | -0.048 | -18.533 | -7.027 | 2.11e-12 | -0.058 | -23.560 | -4.144 | 3.41e-05 |
lassosum.PseudoVal | LDpred1.MultiPRS | -0.054 | -20.764 | -4.956 | 7.21e-07 | -0.064 | -26.084 | -4.659 | 3.17e-06 |
lassosum.PseudoVal | LDpred1.Inf | -0.051 | -19.489 | -7.198 | 6.12e-13 | -0.060 | -24.685 | -4.217 | 2.47e-05 |
lassosum.PseudoVal | LDpred2.10FCVal | -0.070 | -26.703 | -11.687 | 1.48e-31 | -0.081 | -32.924 | -6.717 | 1.85e-11 |
lassosum.PseudoVal | LDpred2.MultiPRS | -0.070 | -27.019 | -6.446 | 1.15e-10 | -0.075 | -30.588 | -6.375 | 1.83e-10 |
lassosum.PseudoVal | LDpred2.PseudoVal | -0.047 | -18.147 | -6.658 | 2.78e-11 | -0.058 | -23.863 | -4.069 | 4.73e-05 |
lassosum.PseudoVal | LDpred2.Inf | -0.048 | -18.265 | -6.693 | 2.19e-11 | -0.058 | -23.666 | -4.032 | 5.54e-05 |
lassosum.PseudoVal | DBSLMM.PseudoVal | -0.061 | -23.343 | -10.096 | 5.76e-24 | -0.068 | -27.898 | -5.597 | 2.17e-08 |
lassosum.PseudoVal | MegaPRS.10FCVal | -0.076 | -29.125 | -12.562 | 3.41e-36 | -0.086 | -35.184 | -7.099 | 1.25e-12 |
lassosum.PseudoVal | MegaPRS.MultiPRS | -0.080 | -30.831 | -7.397 | 1.39e-13 | -0.083 | -34.052 | -6.901 | 5.17e-12 |
lassosum.PseudoVal | MegaPRS.PseudoVal | -0.068 | -26.082 | -10.873 | 1.55e-27 | -0.075 | -30.666 | -5.967 | 2.42e-09 |
lassosum.PseudoVal | All.MultiPRS | -0.082 | -31.488 | -7.581 | 3.42e-14 | -0.083 | -33.810 | -7.001 | 2.54e-12 |
PRScs.10FCVal | pT+clump.10FCVal | 0.036 | 10.915 | 7.738 | 1.01e-14 | 0.048 | 14.766 | 5.209 | 1.90e-07 |
PRScs.10FCVal | pT+clump.MultiPRS | 0.029 | 8.732 | 2.635 | 8.41e-03 | 0.034 | 10.297 | 3.949 | 7.85e-05 |
PRScs.10FCVal | lassosum.10FCVal | -0.001 | -0.446 | -0.554 | 5.80e-01 | 0.002 | 0.738 | 0.450 | 6.53e-01 |
PRScs.10FCVal | lassosum.MultiPRS | -0.006 | -1.711 | -0.521 | 6.02e-01 | -0.001 | -0.154 | -0.098 | 9.22e-01 |
PRScs.10FCVal | lassosum.PseudoVal | 0.066 | 20.185 | 11.309 | 1.19e-29 | 0.082 | 25.201 | 6.927 | 4.29e-12 |
PRScs.10FCVal | PRScs.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.10FCVal | PRScs.MultiPRS | -0.002 | -0.698 | -0.213 | 8.31e-01 | 0.000 | -0.152 | -0.205 | 8.37e-01 |
PRScs.10FCVal | PRScs.PseudoVal | 0.004 | 1.293 | 1.697 | 8.98e-02 | 0.008 | 2.413 | 1.529 | 1.26e-01 |
PRScs.10FCVal | SBLUP.Inf | 0.022 | 6.808 | 6.677 | 2.44e-11 | 0.024 | 7.229 | 3.506 | 4.55e-04 |
PRScs.10FCVal | SBayesR.PseudoVal | 0.013 | 3.909 | 2.864 | 4.18e-03 | 0.024 | 7.486 | 2.707 | 6.80e-03 |
PRScs.10FCVal | LDpred1.10FCVal | 0.018 | 5.393 | 5.523 | 3.33e-08 | 0.025 | 7.579 | 3.801 | 1.44e-04 |
PRScs.10FCVal | LDpred1.MultiPRS | 0.012 | 3.612 | 1.098 | 2.72e-01 | 0.019 | 5.691 | 3.286 | 1.02e-03 |
PRScs.10FCVal | LDpred1.Inf | 0.015 | 4.630 | 5.044 | 4.57e-07 | 0.022 | 6.737 | 3.661 | 2.51e-04 |
PRScs.10FCVal | LDpred2.10FCVal | -0.004 | -1.128 | -1.428 | 1.53e-01 | 0.002 | 0.575 | 0.358 | 7.21e-01 |
PRScs.10FCVal | LDpred2.MultiPRS | -0.005 | -1.381 | -0.421 | 6.74e-01 | 0.008 | 2.322 | 1.430 | 1.53e-01 |
PRScs.10FCVal | LDpred2.PseudoVal | 0.019 | 5.700 | 5.895 | 3.75e-09 | 0.024 | 7.352 | 3.762 | 1.69e-04 |
PRScs.10FCVal | LDpred2.Inf | 0.018 | 5.607 | 5.857 | 4.71e-09 | 0.025 | 7.499 | 3.881 | 1.04e-04 |
PRScs.10FCVal | DBSLMM.PseudoVal | 0.005 | 1.553 | 1.698 | 8.95e-02 | 0.014 | 4.334 | 2.360 | 1.83e-02 |
PRScs.10FCVal | MegaPRS.10FCVal | -0.010 | -3.062 | -3.286 | 1.02e-03 | -0.004 | -1.116 | -0.604 | 5.46e-01 |
PRScs.10FCVal | MegaPRS.MultiPRS | -0.014 | -4.423 | -1.360 | 1.74e-01 | -0.001 | -0.269 | -0.148 | 8.82e-01 |
PRScs.10FCVal | MegaPRS.PseudoVal | -0.002 | -0.633 | -0.614 | 5.39e-01 | 0.007 | 2.263 | 1.106 | 2.69e-01 |
PRScs.10FCVal | All.MultiPRS | -0.016 | -4.948 | -1.517 | 1.29e-01 | 0.000 | -0.088 | -0.045 | 9.64e-01 |
PRScs.MultiPRS | pT+clump.10FCVal | 0.038 | 11.533 | 3.491 | 4.82e-04 | 0.049 | 14.895 | 5.334 | 9.63e-08 |
PRScs.MultiPRS | pT+clump.MultiPRS | 0.031 | 9.365 | 2.855 | 4.30e-03 | 0.034 | 10.433 | 4.283 | 1.84e-05 |
PRScs.MultiPRS | lassosum.10FCVal | 0.001 | 0.251 | 0.077 | 9.39e-01 | 0.003 | 0.888 | 0.629 | 5.29e-01 |
PRScs.MultiPRS | lassosum.MultiPRS | -0.003 | -1.006 | -0.448 | 6.54e-01 | 0.000 | -0.002 | -0.002 | 9.99e-01 |
PRScs.MultiPRS | lassosum.PseudoVal | 0.068 | 20.738 | 6.272 | 3.58e-10 | 0.083 | 25.315 | 7.374 | 1.65e-13 |
PRScs.MultiPRS | PRScs.10FCVal | 0.002 | 0.693 | 0.213 | 8.31e-01 | 0.000 | 0.152 | 0.205 | 8.37e-01 |
PRScs.MultiPRS | PRScs.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.MultiPRS | PRScs.PseudoVal | 0.007 | 1.978 | 0.607 | 5.44e-01 | 0.008 | 2.561 | 2.229 | 2.58e-02 |
PRScs.MultiPRS | SBLUP.Inf | 0.025 | 7.454 | 2.267 | 2.34e-02 | 0.024 | 7.370 | 3.772 | 1.62e-04 |
PRScs.MultiPRS | SBayesR.PseudoVal | 0.015 | 4.575 | 1.404 | 1.60e-01 | 0.025 | 7.626 | 3.017 | 2.56e-03 |
PRScs.MultiPRS | LDpred1.10FCVal | 0.020 | 6.049 | 1.843 | 6.54e-02 | 0.025 | 7.719 | 3.981 | 6.86e-05 |
PRScs.MultiPRS | LDpred1.MultiPRS | 0.014 | 4.280 | 2.714 | 6.64e-03 | 0.019 | 5.834 | 3.528 | 4.19e-04 |
PRScs.MultiPRS | LDpred1.Inf | 0.017 | 5.291 | 1.615 | 1.06e-01 | 0.023 | 6.879 | 3.888 | 1.01e-04 |
PRScs.MultiPRS | LDpred2.10FCVal | -0.001 | -0.427 | -0.131 | 8.95e-01 | 0.002 | 0.726 | 0.515 | 6.06e-01 |
PRScs.MultiPRS | LDpred2.MultiPRS | -0.002 | -0.678 | -0.251 | 8.02e-01 | 0.008 | 2.470 | 1.675 | 9.38e-02 |
PRScs.MultiPRS | LDpred2.PseudoVal | 0.021 | 6.354 | 1.937 | 5.27e-02 | 0.025 | 7.492 | 3.966 | 7.30e-05 |
PRScs.MultiPRS | LDpred2.Inf | 0.021 | 6.261 | 1.908 | 5.64e-02 | 0.025 | 7.640 | 4.121 | 3.78e-05 |
PRScs.MultiPRS | DBSLMM.PseudoVal | 0.007 | 2.236 | 0.686 | 4.93e-01 | 0.015 | 4.479 | 2.682 | 7.33e-03 |
PRScs.MultiPRS | MegaPRS.10FCVal | -0.008 | -2.347 | -0.723 | 4.70e-01 | -0.003 | -0.962 | -0.559 | 5.76e-01 |
PRScs.MultiPRS | MegaPRS.MultiPRS | -0.012 | -3.699 | -1.142 | 2.53e-01 | 0.000 | -0.117 | -0.070 | 9.44e-01 |
PRScs.MultiPRS | MegaPRS.PseudoVal | 0.000 | 0.065 | 0.020 | 9.84e-01 | 0.008 | 2.412 | 1.233 | 2.18e-01 |
PRScs.MultiPRS | All.MultiPRS | -0.014 | -4.220 | -1.872 | 6.12e-02 | 0.000 | 0.064 | 0.035 | 9.72e-01 |
PRScs.PseudoVal | pT+clump.10FCVal | 0.031 | 9.748 | 6.316 | 2.69e-10 | 0.040 | 12.658 | 4.017 | 5.91e-05 |
PRScs.PseudoVal | pT+clump.MultiPRS | 0.024 | 7.536 | 2.241 | 2.50e-02 | 0.026 | 8.079 | 3.061 | 2.21e-03 |
PRScs.PseudoVal | lassosum.10FCVal | -0.006 | -1.762 | -2.195 | 2.82e-02 | -0.005 | -1.717 | -1.043 | 2.97e-01 |
PRScs.PseudoVal | lassosum.MultiPRS | -0.010 | -3.044 | -0.913 | 3.61e-01 | -0.008 | -2.631 | -1.633 | 1.02e-01 |
PRScs.PseudoVal | lassosum.PseudoVal | 0.062 | 19.139 | 12.255 | 1.57e-34 | 0.075 | 23.352 | 7.446 | 9.64e-14 |
PRScs.PseudoVal | PRScs.10FCVal | -0.004 | -1.310 | -1.697 | 8.98e-02 | -0.008 | -2.473 | -1.529 | 1.26e-01 |
PRScs.PseudoVal | PRScs.MultiPRS | -0.007 | -2.018 | -0.607 | 5.44e-01 | -0.008 | -2.629 | -2.229 | 2.58e-02 |
PRScs.PseudoVal | PRScs.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
PRScs.PseudoVal | SBLUP.Inf | 0.018 | 5.587 | 4.776 | 1.79e-06 | 0.016 | 4.935 | 2.038 | 4.16e-02 |
PRScs.PseudoVal | SBayesR.PseudoVal | 0.009 | 2.650 | 2.275 | 2.29e-02 | 0.017 | 5.198 | 2.215 | 2.67e-02 |
PRScs.PseudoVal | LDpred1.10FCVal | 0.013 | 4.153 | 3.715 | 2.03e-04 | 0.017 | 5.293 | 2.255 | 2.41e-02 |
PRScs.PseudoVal | LDpred1.MultiPRS | 0.008 | 2.349 | 0.704 | 4.81e-01 | 0.011 | 3.358 | 1.593 | 1.11e-01 |
PRScs.PseudoVal | LDpred1.Inf | 0.011 | 3.380 | 3.175 | 1.50e-03 | 0.014 | 4.431 | 1.976 | 4.81e-02 |
PRScs.PseudoVal | LDpred2.10FCVal | -0.008 | -2.453 | -3.054 | 2.26e-03 | -0.006 | -1.884 | -1.151 | 2.50e-01 |
PRScs.PseudoVal | LDpred2.MultiPRS | -0.009 | -2.709 | -0.813 | 4.16e-01 | 0.000 | -0.094 | -0.055 | 9.56e-01 |
PRScs.PseudoVal | LDpred2.PseudoVal | 0.014 | 4.465 | 4.064 | 4.82e-05 | 0.016 | 5.061 | 2.209 | 2.72e-02 |
PRScs.PseudoVal | LDpred2.Inf | 0.014 | 4.370 | 3.996 | 6.44e-05 | 0.017 | 5.212 | 2.286 | 2.23e-02 |
PRScs.PseudoVal | DBSLMM.PseudoVal | 0.001 | 0.264 | 0.280 | 7.79e-01 | 0.006 | 1.968 | 1.018 | 3.09e-01 |
PRScs.PseudoVal | MegaPRS.10FCVal | -0.014 | -4.412 | -4.471 | 7.80e-06 | -0.012 | -3.616 | -1.816 | 6.93e-02 |
PRScs.PseudoVal | MegaPRS.MultiPRS | -0.019 | -5.791 | -1.755 | 7.93e-02 | -0.009 | -2.749 | -1.418 | 1.56e-01 |
PRScs.PseudoVal | MegaPRS.PseudoVal | -0.006 | -1.951 | -1.807 | 7.08e-02 | 0.000 | -0.154 | -0.070 | 9.44e-01 |
PRScs.PseudoVal | All.MultiPRS | -0.020 | -6.323 | -1.914 | 5.56e-02 | -0.008 | -2.563 | -1.244 | 2.13e-01 |
SBLUP.Inf | pT+clump.10FCVal | 0.013 | 4.407 | 2.582 | 9.82e-03 | 0.025 | 8.123 | 2.328 | 1.99e-02 |
SBLUP.Inf | pT+clump.MultiPRS | 0.006 | 2.065 | 0.576 | 5.65e-01 | 0.010 | 3.307 | 1.014 | 3.10e-01 |
SBLUP.Inf | lassosum.10FCVal | -0.024 | -7.784 | -6.026 | 1.68e-09 | -0.021 | -6.997 | -2.709 | 6.75e-03 |
SBLUP.Inf | lassosum.MultiPRS | -0.028 | -9.142 | -2.568 | 1.02e-02 | -0.024 | -7.959 | -3.184 | 1.45e-03 |
SBLUP.Inf | lassosum.PseudoVal | 0.044 | 14.354 | 5.991 | 2.09e-09 | 0.059 | 19.372 | 4.016 | 5.93e-05 |
SBLUP.Inf | PRScs.10FCVal | -0.022 | -7.305 | -6.677 | 2.44e-11 | -0.024 | -7.793 | -3.506 | 4.55e-04 |
SBLUP.Inf | PRScs.MultiPRS | -0.025 | -8.055 | -2.267 | 2.34e-02 | -0.024 | -7.956 | -3.772 | 1.62e-04 |
SBLUP.Inf | PRScs.PseudoVal | -0.018 | -5.918 | -4.776 | 1.79e-06 | -0.016 | -5.191 | -2.038 | 4.16e-02 |
SBLUP.Inf | SBLUP.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBLUP.Inf | SBayesR.PseudoVal | -0.009 | -3.111 | -1.704 | 8.83e-02 | 0.001 | 0.276 | 0.075 | 9.41e-01 |
SBLUP.Inf | LDpred1.10FCVal | -0.005 | -1.519 | -1.650 | 9.89e-02 | 0.001 | 0.376 | 0.198 | 8.43e-01 |
SBLUP.Inf | LDpred1.MultiPRS | -0.010 | -3.429 | -0.961 | 3.37e-01 | -0.005 | -1.659 | -1.057 | 2.91e-01 |
SBLUP.Inf | LDpred1.Inf | -0.007 | -2.337 | -3.294 | 9.87e-04 | -0.002 | -0.531 | -0.357 | 7.21e-01 |
SBLUP.Inf | LDpred2.10FCVal | -0.026 | -8.516 | -8.507 | 1.79e-17 | -0.022 | -7.173 | -3.547 | 3.90e-04 |
SBLUP.Inf | LDpred2.MultiPRS | -0.027 | -8.787 | -2.474 | 1.34e-02 | -0.016 | -5.290 | -2.324 | 2.01e-02 |
SBLUP.Inf | LDpred2.PseudoVal | -0.004 | -1.189 | -1.567 | 1.17e-01 | 0.000 | 0.132 | 0.084 | 9.33e-01 |
SBLUP.Inf | LDpred2.Inf | -0.004 | -1.289 | -1.747 | 8.06e-02 | 0.001 | 0.291 | 0.189 | 8.50e-01 |
SBLUP.Inf | DBSLMM.PseudoVal | -0.017 | -5.639 | -4.706 | 2.52e-06 | -0.009 | -3.121 | -1.261 | 2.07e-01 |
SBLUP.Inf | MegaPRS.10FCVal | -0.032 | -10.591 | -8.882 | 6.55e-19 | -0.027 | -8.995 | -3.734 | 1.88e-04 |
SBLUP.Inf | MegaPRS.MultiPRS | -0.037 | -12.051 | -3.420 | 6.27e-04 | -0.025 | -8.083 | -3.369 | 7.55e-04 |
SBLUP.Inf | MegaPRS.PseudoVal | -0.024 | -7.984 | -5.898 | 3.68e-09 | -0.016 | -5.353 | -1.957 | 5.03e-02 |
SBLUP.Inf | All.MultiPRS | -0.038 | -12.615 | -3.573 | 3.53e-04 | -0.024 | -7.888 | -2.945 | 3.22e-03 |
SBayesR.PseudoVal | pT+clump.10FCVal | 0.023 | 7.292 | 3.861 | 1.13e-04 | 0.024 | 7.869 | 2.008 | 4.46e-02 |
SBayesR.PseudoVal | pT+clump.MultiPRS | 0.016 | 5.020 | 1.450 | 1.47e-01 | 0.009 | 3.039 | 0.889 | 3.74e-01 |
SBayesR.PseudoVal | lassosum.10FCVal | -0.014 | -4.531 | -3.387 | 7.07e-04 | -0.022 | -7.294 | -2.585 | 9.75e-03 |
SBayesR.PseudoVal | lassosum.MultiPRS | -0.018 | -5.848 | -1.705 | 8.82e-02 | -0.025 | -8.258 | -2.974 | 2.94e-03 |
SBayesR.PseudoVal | lassosum.PseudoVal | 0.053 | 16.938 | 10.739 | 6.69e-27 | 0.058 | 19.149 | 5.743 | 9.32e-09 |
SBayesR.PseudoVal | PRScs.10FCVal | -0.013 | -4.067 | -2.864 | 4.18e-03 | -0.024 | -8.092 | -2.707 | 6.80e-03 |
SBayesR.PseudoVal | PRScs.MultiPRS | -0.015 | -4.794 | -1.404 | 1.60e-01 | -0.025 | -8.256 | -3.017 | 2.56e-03 |
SBayesR.PseudoVal | PRScs.PseudoVal | -0.009 | -2.722 | -2.275 | 2.29e-02 | -0.017 | -5.483 | -2.215 | 2.67e-02 |
SBayesR.PseudoVal | SBLUP.Inf | 0.009 | 3.018 | 1.704 | 8.83e-02 | -0.001 | -0.277 | -0.075 | 9.41e-01 |
SBayesR.PseudoVal | SBayesR.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBayesR.PseudoVal | LDpred1.10FCVal | 0.005 | 1.544 | 0.893 | 3.72e-01 | 0.000 | 0.100 | 0.027 | 9.78e-01 |
SBayesR.PseudoVal | LDpred1.MultiPRS | -0.001 | -0.308 | -0.090 | 9.28e-01 | -0.006 | -1.940 | -0.553 | 5.80e-01 |
SBayesR.PseudoVal | LDpred1.Inf | 0.002 | 0.751 | 0.438 | 6.61e-01 | -0.002 | -0.809 | -0.223 | 8.24e-01 |
SBayesR.PseudoVal | LDpred2.10FCVal | -0.016 | -5.242 | -3.788 | 1.52e-04 | -0.023 | -7.470 | -2.561 | 1.04e-02 |
SBayesR.PseudoVal | LDpred2.MultiPRS | -0.017 | -5.505 | -1.603 | 1.09e-01 | -0.017 | -5.582 | -1.951 | 5.11e-02 |
SBayesR.PseudoVal | LDpred2.PseudoVal | 0.006 | 1.865 | 1.089 | 2.76e-01 | 0.000 | -0.145 | -0.040 | 9.68e-01 |
SBayesR.PseudoVal | LDpred2.Inf | 0.006 | 1.767 | 1.032 | 3.02e-01 | 0.000 | 0.015 | 0.004 | 9.97e-01 |
SBayesR.PseudoVal | DBSLMM.PseudoVal | -0.008 | -2.451 | -1.721 | 8.53e-02 | -0.010 | -3.407 | -1.140 | 2.54e-01 |
SBayesR.PseudoVal | MegaPRS.10FCVal | -0.023 | -7.254 | -5.025 | 5.03e-07 | -0.028 | -9.297 | -3.064 | 2.19e-03 |
SBayesR.PseudoVal | MegaPRS.MultiPRS | -0.027 | -8.670 | -2.546 | 1.09e-02 | -0.025 | -8.383 | -2.825 | 4.73e-03 |
SBayesR.PseudoVal | MegaPRS.PseudoVal | -0.015 | -4.726 | -3.259 | 1.12e-03 | -0.017 | -5.645 | -1.866 | 6.20e-02 |
SBayesR.PseudoVal | All.MultiPRS | -0.029 | -9.217 | -2.714 | 6.65e-03 | -0.025 | -8.187 | -2.857 | 4.28e-03 |
LDpred1.10FCVal | pT+clump.10FCVal | 0.018 | 5.837 | 3.412 | 6.45e-04 | 0.024 | 7.776 | 2.182 | 2.91e-02 |
LDpred1.10FCVal | pT+clump.MultiPRS | 0.011 | 3.530 | 1.000 | 3.17e-01 | 0.009 | 2.942 | 0.888 | 3.75e-01 |
LDpred1.10FCVal | lassosum.10FCVal | -0.019 | -6.171 | -5.036 | 4.76e-07 | -0.022 | -7.402 | -2.901 | 3.72e-03 |
LDpred1.10FCVal | lassosum.MultiPRS | -0.023 | -7.509 | -2.147 | 3.18e-02 | -0.025 | -8.367 | -3.401 | 6.72e-04 |
LDpred1.10FCVal | lassosum.PseudoVal | 0.048 | 15.635 | 7.027 | 2.11e-12 | 0.058 | 19.068 | 4.144 | 3.41e-05 |
LDpred1.10FCVal | PRScs.10FCVal | -0.018 | -5.700 | -5.523 | 3.33e-08 | -0.025 | -8.200 | -3.801 | 1.44e-04 |
LDpred1.10FCVal | PRScs.MultiPRS | -0.020 | -6.438 | -1.843 | 6.54e-02 | -0.025 | -8.364 | -3.981 | 6.86e-05 |
LDpred1.10FCVal | PRScs.PseudoVal | -0.013 | -4.333 | -3.715 | 2.03e-04 | -0.017 | -5.589 | -2.255 | 2.41e-02 |
LDpred1.10FCVal | SBLUP.Inf | 0.005 | 1.496 | 1.650 | 9.89e-02 | -0.001 | -0.378 | -0.198 | 8.43e-01 |
LDpred1.10FCVal | SBayesR.PseudoVal | -0.005 | -1.569 | -0.893 | 3.72e-01 | 0.000 | -0.100 | -0.027 | 9.78e-01 |
LDpred1.10FCVal | LDpred1.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.10FCVal | LDpred1.MultiPRS | -0.006 | -1.882 | -0.536 | 5.92e-01 | -0.006 | -2.043 | -1.903 | 5.71e-02 |
LDpred1.10FCVal | LDpred1.Inf | -0.002 | -0.806 | -1.012 | 3.11e-01 | -0.003 | -0.911 | -0.546 | 5.85e-01 |
LDpred1.10FCVal | LDpred2.10FCVal | -0.021 | -6.893 | -7.013 | 2.33e-12 | -0.023 | -7.578 | -3.691 | 2.23e-04 |
LDpred1.10FCVal | LDpred2.MultiPRS | -0.022 | -7.160 | -2.047 | 4.07e-02 | -0.017 | -5.688 | -2.509 | 1.21e-02 |
LDpred1.10FCVal | LDpred2.PseudoVal | 0.001 | 0.325 | 0.354 | 7.23e-01 | -0.001 | -0.245 | -0.128 | 8.98e-01 |
LDpred1.10FCVal | LDpred2.Inf | 0.001 | 0.226 | 0.247 | 8.05e-01 | 0.000 | -0.086 | -0.045 | 9.64e-01 |
LDpred1.10FCVal | DBSLMM.PseudoVal | -0.013 | -4.058 | -3.406 | 6.58e-04 | -0.011 | -3.511 | -1.389 | 1.65e-01 |
LDpred1.10FCVal | MegaPRS.10FCVal | -0.028 | -8.936 | -7.917 | 2.44e-15 | -0.028 | -9.407 | -4.027 | 5.65e-05 |
LDpred1.10FCVal | MegaPRS.MultiPRS | -0.032 | -10.375 | -2.995 | 2.74e-03 | -0.026 | -8.492 | -3.617 | 2.98e-04 |
LDpred1.10FCVal | MegaPRS.PseudoVal | -0.020 | -6.369 | -4.847 | 1.26e-06 | -0.017 | -5.751 | -2.124 | 3.37e-02 |
LDpred1.10FCVal | All.MultiPRS | -0.034 | -10.930 | -3.147 | 1.65e-03 | -0.025 | -8.296 | -3.178 | 1.48e-03 |
LDpred1.MultiPRS | pT+clump.10FCVal | 0.024 | 7.577 | 2.189 | 2.86e-02 | 0.030 | 9.622 | 2.887 | 3.88e-03 |
LDpred1.MultiPRS | pT+clump.MultiPRS | 0.017 | 5.312 | 1.540 | 1.24e-01 | 0.015 | 4.885 | 1.598 | 1.10e-01 |
LDpred1.MultiPRS | lassosum.10FCVal | -0.013 | -4.210 | -1.234 | 2.17e-01 | -0.016 | -5.252 | -2.301 | 2.14e-02 |
LDpred1.MultiPRS | lassosum.MultiPRS | -0.017 | -5.523 | -2.297 | 2.16e-02 | -0.019 | -6.197 | -2.824 | 4.75e-03 |
LDpred1.MultiPRS | lassosum.PseudoVal | 0.054 | 17.194 | 4.956 | 7.21e-07 | 0.064 | 20.688 | 4.659 | 3.17e-06 |
LDpred1.MultiPRS | PRScs.10FCVal | -0.012 | -3.748 | -1.098 | 2.72e-01 | -0.019 | -6.034 | -3.286 | 1.02e-03 |
LDpred1.MultiPRS | PRScs.MultiPRS | -0.014 | -4.472 | -2.714 | 6.64e-03 | -0.019 | -6.195 | -3.528 | 4.19e-04 |
LDpred1.MultiPRS | PRScs.PseudoVal | -0.008 | -2.406 | -0.704 | 4.81e-01 | -0.011 | -3.475 | -1.593 | 1.11e-01 |
LDpred1.MultiPRS | SBLUP.Inf | 0.010 | 3.316 | 0.961 | 3.37e-01 | 0.005 | 1.632 | 1.057 | 2.91e-01 |
LDpred1.MultiPRS | SBayesR.PseudoVal | 0.001 | 0.307 | 0.090 | 9.28e-01 | 0.006 | 1.903 | 0.553 | 5.80e-01 |
LDpred1.MultiPRS | LDpred1.10FCVal | 0.006 | 1.847 | 0.536 | 5.92e-01 | 0.006 | 2.002 | 1.903 | 5.71e-02 |
LDpred1.MultiPRS | LDpred1.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.MultiPRS | LDpred1.Inf | 0.003 | 1.056 | 0.307 | 7.59e-01 | 0.003 | 1.110 | 1.125 | 2.61e-01 |
LDpred1.MultiPRS | LDpred2.10FCVal | -0.015 | -4.918 | -1.441 | 1.50e-01 | -0.017 | -5.424 | -3.206 | 1.35e-03 |
LDpred1.MultiPRS | LDpred2.MultiPRS | -0.016 | -5.180 | -1.833 | 6.68e-02 | -0.011 | -3.572 | -1.825 | 6.80e-02 |
LDpred1.MultiPRS | LDpred2.PseudoVal | 0.007 | 2.167 | 0.629 | 5.29e-01 | 0.005 | 1.762 | 1.194 | 2.32e-01 |
LDpred1.MultiPRS | LDpred2.Inf | 0.007 | 2.069 | 0.601 | 5.48e-01 | 0.006 | 1.918 | 1.308 | 1.91e-01 |
LDpred1.MultiPRS | DBSLMM.PseudoVal | -0.007 | -2.136 | -0.625 | 5.32e-01 | -0.004 | -1.439 | -0.647 | 5.18e-01 |
LDpred1.MultiPRS | MegaPRS.10FCVal | -0.022 | -6.924 | -2.031 | 4.22e-02 | -0.022 | -7.217 | -3.535 | 4.07e-04 |
LDpred1.MultiPRS | MegaPRS.MultiPRS | -0.026 | -8.336 | -2.450 | 1.43e-02 | -0.019 | -6.320 | -3.091 | 2.00e-03 |
LDpred1.MultiPRS | MegaPRS.PseudoVal | -0.014 | -4.404 | -1.289 | 1.97e-01 | -0.011 | -3.634 | -1.484 | 1.38e-01 |
LDpred1.MultiPRS | All.MultiPRS | -0.028 | -8.881 | -3.125 | 1.78e-03 | -0.019 | -6.128 | -2.653 | 7.98e-03 |
LDpred1.Inf | pT+clump.10FCVal | 0.021 | 6.590 | 4.094 | 4.24e-05 | 0.026 | 8.608 | 2.562 | 1.04e-02 |
LDpred1.Inf | pT+clump.MultiPRS | 0.013 | 4.301 | 1.231 | 2.18e-01 | 0.012 | 3.817 | 1.221 | 2.22e-01 |
LDpred1.Inf | lassosum.10FCVal | -0.017 | -5.322 | -4.512 | 6.43e-06 | -0.020 | -6.433 | -2.618 | 8.84e-03 |
LDpred1.Inf | lassosum.MultiPRS | -0.021 | -6.649 | -1.917 | 5.53e-02 | -0.023 | -7.389 | -3.115 | 1.84e-03 |
LDpred1.Inf | lassosum.PseudoVal | 0.051 | 16.310 | 7.198 | 6.12e-13 | 0.060 | 19.798 | 4.217 | 2.47e-05 |
LDpred1.Inf | PRScs.10FCVal | -0.015 | -4.855 | -5.044 | 4.57e-07 | -0.022 | -7.224 | -3.661 | 2.51e-04 |
LDpred1.Inf | PRScs.MultiPRS | -0.017 | -5.587 | -1.615 | 1.06e-01 | -0.023 | -7.387 | -3.888 | 1.01e-04 |
LDpred1.Inf | PRScs.PseudoVal | -0.011 | -3.499 | -3.175 | 1.50e-03 | -0.014 | -4.636 | -1.976 | 4.81e-02 |
LDpred1.Inf | SBLUP.Inf | 0.007 | 2.284 | 3.294 | 9.87e-04 | 0.002 | 0.528 | 0.357 | 7.21e-01 |
LDpred1.Inf | SBayesR.PseudoVal | -0.002 | -0.756 | -0.438 | 6.61e-01 | 0.002 | 0.803 | 0.223 | 8.24e-01 |
LDpred1.Inf | LDpred1.10FCVal | 0.002 | 0.800 | 1.012 | 3.11e-01 | 0.003 | 0.902 | 0.546 | 5.85e-01 |
LDpred1.Inf | LDpred1.MultiPRS | -0.003 | -1.067 | -0.307 | 7.59e-01 | -0.003 | -1.122 | -1.125 | 2.61e-01 |
LDpred1.Inf | LDpred1.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.Inf | LDpred2.10FCVal | -0.019 | -6.038 | -6.879 | 6.02e-12 | -0.020 | -6.607 | -3.603 | 3.14e-04 |
LDpred1.Inf | LDpred2.MultiPRS | -0.020 | -6.303 | -1.821 | 6.86e-02 | -0.014 | -4.734 | -2.254 | 2.42e-02 |
LDpred1.Inf | LDpred2.PseudoVal | 0.003 | 1.123 | 1.779 | 7.53e-02 | 0.002 | 0.659 | 0.505 | 6.13e-01 |
LDpred1.Inf | LDpred2.Inf | 0.003 | 1.024 | 1.642 | 1.01e-01 | 0.002 | 0.817 | 0.634 | 5.26e-01 |
LDpred1.Inf | DBSLMM.PseudoVal | -0.010 | -3.226 | -2.950 | 3.18e-03 | -0.008 | -2.577 | -1.113 | 2.66e-01 |
LDpred1.Inf | MegaPRS.10FCVal | -0.025 | -8.065 | -7.556 | 4.16e-14 | -0.026 | -8.420 | -3.832 | 1.27e-04 |
LDpred1.Inf | MegaPRS.MultiPRS | -0.030 | -9.492 | -2.765 | 5.70e-03 | -0.023 | -7.513 | -3.411 | 6.47e-04 |
LDpred1.Inf | MegaPRS.PseudoVal | -0.017 | -5.518 | -4.481 | 7.42e-06 | -0.015 | -4.797 | -1.894 | 5.82e-02 |
LDpred1.Inf | All.MultiPRS | -0.031 | -10.043 | -2.920 | 3.50e-03 | -0.022 | -7.318 | -2.922 | 3.47e-03 |
LDpred2.10FCVal | pT+clump.10FCVal | 0.039 | 11.909 | 7.938 | 2.05e-15 | 0.046 | 14.273 | 4.654 | 3.25e-06 |
LDpred2.10FCVal | pT+clump.MultiPRS | 0.032 | 9.751 | 2.976 | 2.92e-03 | 0.032 | 9.779 | 3.594 | 3.26e-04 |
LDpred2.10FCVal | lassosum.10FCVal | 0.002 | 0.675 | 0.819 | 4.13e-01 | 0.001 | 0.164 | 0.097 | 9.23e-01 |
LDpred2.10FCVal | lassosum.MultiPRS | -0.002 | -0.576 | -0.177 | 8.59e-01 | -0.002 | -0.733 | -0.445 | 6.56e-01 |
LDpred2.10FCVal | lassosum.PseudoVal | 0.070 | 21.075 | 11.687 | 1.48e-31 | 0.081 | 24.769 | 6.717 | 1.85e-11 |
LDpred2.10FCVal | PRScs.10FCVal | 0.004 | 1.116 | 1.428 | 1.53e-01 | -0.002 | -0.578 | -0.358 | 7.21e-01 |
LDpred2.10FCVal | PRScs.MultiPRS | 0.001 | 0.425 | 0.131 | 8.95e-01 | -0.002 | -0.731 | -0.515 | 6.06e-01 |
LDpred2.10FCVal | PRScs.PseudoVal | 0.008 | 2.395 | 3.054 | 2.26e-03 | 0.006 | 1.849 | 1.151 | 2.50e-01 |
LDpred2.10FCVal | SBLUP.Inf | 0.026 | 7.848 | 8.507 | 1.79e-17 | 0.022 | 6.693 | 3.547 | 3.90e-04 |
LDpred2.10FCVal | SBayesR.PseudoVal | 0.016 | 4.981 | 3.788 | 1.52e-04 | 0.023 | 6.951 | 2.561 | 1.04e-02 |
LDpred2.10FCVal | LDpred1.10FCVal | 0.021 | 6.448 | 7.013 | 2.33e-12 | 0.023 | 7.044 | 3.691 | 2.23e-04 |
LDpred2.10FCVal | LDpred1.MultiPRS | 0.015 | 4.688 | 1.441 | 1.50e-01 | 0.017 | 5.145 | 3.206 | 1.35e-03 |
LDpred2.10FCVal | LDpred1.Inf | 0.019 | 5.694 | 6.879 | 6.02e-12 | 0.020 | 6.198 | 3.603 | 3.14e-04 |
LDpred2.10FCVal | LDpred2.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.10FCVal | LDpred2.MultiPRS | -0.001 | -0.250 | -0.077 | 9.39e-01 | 0.006 | 1.757 | 2.344 | 1.91e-02 |
LDpred2.10FCVal | LDpred2.PseudoVal | 0.022 | 6.753 | 10.504 | 8.27e-26 | 0.022 | 6.816 | 5.125 | 2.97e-07 |
LDpred2.10FCVal | LDpred2.Inf | 0.022 | 6.660 | 10.381 | 3.04e-25 | 0.023 | 6.965 | 5.248 | 1.53e-07 |
LDpred2.10FCVal | DBSLMM.PseudoVal | 0.009 | 2.652 | 2.776 | 5.51e-03 | 0.012 | 3.781 | 1.916 | 5.53e-02 |
LDpred2.10FCVal | MegaPRS.10FCVal | -0.006 | -1.912 | -2.145 | 3.19e-02 | -0.006 | -1.700 | -0.938 | 3.48e-01 |
LDpred2.10FCVal | MegaPRS.MultiPRS | -0.011 | -3.258 | -1.012 | 3.12e-01 | -0.003 | -0.849 | -0.491 | 6.24e-01 |
LDpred2.10FCVal | MegaPRS.PseudoVal | 0.002 | 0.490 | 0.487 | 6.26e-01 | 0.006 | 1.698 | 0.827 | 4.08e-01 |
LDpred2.10FCVal | All.MultiPRS | -0.012 | -3.777 | -1.172 | 2.41e-01 | -0.002 | -0.667 | -0.361 | 7.18e-01 |
LDpred2.MultiPRS | pT+clump.10FCVal | 0.040 | 12.129 | 3.700 | 2.15e-04 | 0.041 | 12.739 | 4.107 | 4.01e-05 |
LDpred2.MultiPRS | pT+clump.MultiPRS | 0.033 | 9.975 | 3.067 | 2.17e-03 | 0.026 | 8.165 | 2.926 | 3.43e-03 |
LDpred2.MultiPRS | lassosum.10FCVal | 0.003 | 0.922 | 0.285 | 7.76e-01 | -0.005 | -1.622 | -0.915 | 3.60e-01 |
LDpred2.MultiPRS | lassosum.MultiPRS | -0.001 | -0.326 | -0.155 | 8.77e-01 | -0.008 | -2.535 | -1.459 | 1.45e-01 |
LDpred2.MultiPRS | lassosum.PseudoVal | 0.070 | 21.272 | 6.446 | 1.15e-10 | 0.075 | 23.423 | 6.375 | 1.83e-10 |
LDpred2.MultiPRS | PRScs.10FCVal | 0.005 | 1.362 | 0.421 | 6.74e-01 | -0.008 | -2.377 | -1.430 | 1.53e-01 |
LDpred2.MultiPRS | PRScs.MultiPRS | 0.002 | 0.673 | 0.251 | 8.02e-01 | -0.008 | -2.533 | -1.675 | 9.38e-02 |
LDpred2.MultiPRS | PRScs.PseudoVal | 0.009 | 2.638 | 0.813 | 4.16e-01 | 0.000 | 0.094 | 0.055 | 9.56e-01 |
LDpred2.MultiPRS | SBLUP.Inf | 0.027 | 8.077 | 2.474 | 1.34e-02 | 0.016 | 5.024 | 2.324 | 2.01e-02 |
LDpred2.MultiPRS | SBayesR.PseudoVal | 0.017 | 5.217 | 1.603 | 1.09e-01 | 0.017 | 5.287 | 1.951 | 5.11e-02 |
LDpred2.MultiPRS | LDpred1.10FCVal | 0.022 | 6.681 | 2.047 | 4.07e-02 | 0.017 | 5.382 | 2.509 | 1.21e-02 |
LDpred2.MultiPRS | LDpred1.MultiPRS | 0.016 | 4.925 | 1.833 | 6.68e-02 | 0.011 | 3.449 | 1.825 | 6.80e-02 |
LDpred2.MultiPRS | LDpred1.Inf | 0.020 | 5.929 | 1.821 | 6.86e-02 | 0.014 | 4.520 | 2.254 | 2.42e-02 |
LDpred2.MultiPRS | LDpred2.10FCVal | 0.001 | 0.249 | 0.077 | 9.39e-01 | -0.006 | -1.789 | -2.344 | 1.91e-02 |
LDpred2.MultiPRS | LDpred2.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.MultiPRS | LDpred2.PseudoVal | 0.023 | 6.985 | 2.142 | 3.22e-02 | 0.016 | 5.150 | 3.078 | 2.09e-03 |
LDpred2.MultiPRS | LDpred2.Inf | 0.023 | 6.892 | 2.113 | 3.46e-02 | 0.017 | 5.301 | 3.188 | 1.43e-03 |
LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.010 | 2.894 | 0.893 | 3.72e-01 | 0.007 | 2.060 | 0.987 | 3.24e-01 |
LDpred2.MultiPRS | MegaPRS.10FCVal | -0.005 | -1.658 | -0.513 | 6.08e-01 | -0.011 | -3.519 | -1.803 | 7.13e-02 |
LDpred2.MultiPRS | MegaPRS.MultiPRS | -0.010 | -3.000 | -1.394 | 1.63e-01 | -0.008 | -2.653 | -1.418 | 1.56e-01 |
LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.002 | 0.738 | 0.228 | 8.20e-01 | 0.000 | -0.060 | -0.029 | 9.77e-01 |
LDpred2.MultiPRS | All.MultiPRS | -0.012 | -3.518 | -1.313 | 1.89e-01 | -0.008 | -2.468 | -1.353 | 1.76e-01 |
LDpred2.PseudoVal | pT+clump.10FCVal | 0.017 | 5.530 | 3.241 | 1.19e-03 | 0.024 | 8.002 | 2.268 | 2.33e-02 |
LDpred2.PseudoVal | pT+clump.MultiPRS | 0.010 | 3.215 | 0.909 | 3.63e-01 | 0.010 | 3.179 | 0.967 | 3.34e-01 |
LDpred2.PseudoVal | lassosum.10FCVal | -0.020 | -6.518 | -5.293 | 1.20e-07 | -0.022 | -7.139 | -2.824 | 4.74e-03 |
LDpred2.PseudoVal | lassosum.MultiPRS | -0.024 | -7.860 | -2.237 | 2.53e-02 | -0.025 | -8.102 | -3.315 | 9.16e-04 |
LDpred2.PseudoVal | lassosum.PseudoVal | 0.047 | 15.360 | 6.658 | 2.78e-11 | 0.058 | 19.266 | 4.069 | 4.73e-05 |
LDpred2.PseudoVal | PRScs.10FCVal | -0.019 | -6.045 | -5.895 | 3.75e-09 | -0.024 | -7.935 | -3.762 | 1.69e-04 |
LDpred2.PseudoVal | PRScs.MultiPRS | -0.021 | -6.785 | -1.937 | 5.27e-02 | -0.025 | -8.099 | -3.966 | 7.30e-05 |
LDpred2.PseudoVal | PRScs.PseudoVal | -0.014 | -4.674 | -4.064 | 4.82e-05 | -0.016 | -5.330 | -2.209 | 2.72e-02 |
LDpred2.PseudoVal | SBLUP.Inf | 0.004 | 1.175 | 1.567 | 1.17e-01 | 0.000 | -0.132 | -0.084 | 9.33e-01 |
LDpred2.PseudoVal | SBayesR.PseudoVal | -0.006 | -1.900 | -1.089 | 2.76e-01 | 0.000 | 0.145 | 0.040 | 9.68e-01 |
LDpred2.PseudoVal | LDpred1.10FCVal | -0.001 | -0.326 | -0.354 | 7.23e-01 | 0.001 | 0.245 | 0.128 | 8.98e-01 |
LDpred2.PseudoVal | LDpred1.MultiPRS | -0.007 | -2.215 | -0.629 | 5.29e-01 | -0.005 | -1.793 | -1.194 | 2.32e-01 |
LDpred2.PseudoVal | LDpred1.Inf | -0.003 | -1.135 | -1.779 | 7.53e-02 | -0.002 | -0.664 | -0.505 | 6.13e-01 |
LDpred2.PseudoVal | LDpred2.10FCVal | -0.022 | -7.242 | -10.504 | 8.27e-26 | -0.022 | -7.315 | -5.125 | 2.97e-07 |
LDpred2.PseudoVal | LDpred2.MultiPRS | -0.023 | -7.509 | -2.142 | 3.22e-02 | -0.016 | -5.429 | -3.078 | 2.09e-03 |
LDpred2.PseudoVal | LDpred2.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.PseudoVal | LDpred2.Inf | 0.000 | -0.100 | -0.811 | 4.17e-01 | 0.000 | 0.159 | 0.637 | 5.24e-01 |
LDpred2.PseudoVal | DBSLMM.PseudoVal | -0.014 | -4.398 | -3.830 | 1.28e-04 | -0.010 | -3.257 | -1.358 | 1.74e-01 |
LDpred2.PseudoVal | MegaPRS.10FCVal | -0.029 | -9.292 | -8.242 | 1.69e-16 | -0.028 | -9.139 | -3.974 | 7.06e-05 |
LDpred2.PseudoVal | MegaPRS.MultiPRS | -0.033 | -10.735 | -3.085 | 2.03e-03 | -0.025 | -8.226 | -3.607 | 3.10e-04 |
LDpred2.PseudoVal | MegaPRS.PseudoVal | -0.021 | -6.716 | -5.277 | 1.32e-07 | -0.017 | -5.492 | -2.113 | 3.46e-02 |
LDpred2.PseudoVal | All.MultiPRS | -0.035 | -11.292 | -3.239 | 1.20e-03 | -0.024 | -8.031 | -3.183 | 1.46e-03 |
LDpred2.Inf | pT+clump.10FCVal | 0.017 | 5.624 | 3.342 | 8.31e-04 | 0.024 | 7.855 | 2.251 | 2.44e-02 |
LDpred2.Inf | pT+clump.MultiPRS | 0.010 | 3.311 | 0.937 | 3.49e-01 | 0.009 | 3.025 | 0.929 | 3.53e-01 |
LDpred2.Inf | lassosum.10FCVal | -0.020 | -6.412 | -5.260 | 1.44e-07 | -0.022 | -7.310 | -2.910 | 3.61e-03 |
LDpred2.Inf | lassosum.MultiPRS | -0.024 | -7.752 | -2.209 | 2.72e-02 | -0.025 | -8.274 | -3.409 | 6.53e-04 |
LDpred2.Inf | lassosum.PseudoVal | 0.048 | 15.444 | 6.693 | 2.19e-11 | 0.058 | 19.137 | 4.032 | 5.54e-05 |
LDpred2.Inf | PRScs.10FCVal | -0.018 | -5.940 | -5.857 | 4.71e-09 | -0.025 | -8.108 | -3.881 | 1.04e-04 |
LDpred2.Inf | PRScs.MultiPRS | -0.021 | -6.679 | -1.908 | 5.64e-02 | -0.025 | -8.272 | -4.121 | 3.78e-05 |
LDpred2.Inf | PRScs.PseudoVal | -0.014 | -4.570 | -3.996 | 6.44e-05 | -0.017 | -5.498 | -2.286 | 2.23e-02 |
LDpred2.Inf | SBLUP.Inf | 0.004 | 1.273 | 1.747 | 8.06e-02 | -0.001 | -0.292 | -0.189 | 8.50e-01 |
LDpred2.Inf | SBayesR.PseudoVal | -0.006 | -1.799 | -1.032 | 3.02e-01 | 0.000 | -0.015 | -0.004 | 9.97e-01 |
LDpred2.Inf | LDpred1.10FCVal | -0.001 | -0.227 | -0.247 | 8.05e-01 | 0.000 | 0.086 | 0.045 | 9.64e-01 |
LDpred2.Inf | LDpred1.MultiPRS | -0.007 | -2.113 | -0.601 | 5.48e-01 | -0.006 | -1.955 | -1.308 | 1.91e-01 |
LDpred2.Inf | LDpred1.Inf | -0.003 | -1.035 | -1.642 | 1.01e-01 | -0.002 | -0.824 | -0.634 | 5.26e-01 |
LDpred2.Inf | LDpred2.10FCVal | -0.022 | -7.135 | -10.381 | 3.04e-25 | -0.023 | -7.486 | -5.248 | 1.53e-07 |
LDpred2.Inf | LDpred2.MultiPRS | -0.023 | -7.402 | -2.113 | 3.46e-02 | -0.017 | -5.597 | -3.188 | 1.43e-03 |
LDpred2.Inf | LDpred2.PseudoVal | 0.000 | 0.099 | 0.811 | 4.17e-01 | 0.000 | -0.159 | -0.637 | 5.24e-01 |
LDpred2.Inf | LDpred2.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.Inf | DBSLMM.PseudoVal | -0.013 | -4.294 | -3.730 | 1.92e-04 | -0.010 | -3.422 | -1.424 | 1.55e-01 |
LDpred2.Inf | MegaPRS.10FCVal | -0.028 | -9.183 | -8.210 | 2.22e-16 | -0.028 | -9.313 | -4.070 | 4.71e-05 |
LDpred2.Inf | MegaPRS.MultiPRS | -0.033 | -10.625 | -3.056 | 2.24e-03 | -0.025 | -8.399 | -3.702 | 2.14e-04 |
LDpred2.Inf | MegaPRS.PseudoVal | -0.020 | -6.610 | -5.210 | 1.89e-07 | -0.017 | -5.661 | -2.179 | 2.93e-02 |
LDpred2.Inf | All.MultiPRS | -0.034 | -11.181 | -3.211 | 1.32e-03 | -0.025 | -8.203 | -3.255 | 1.13e-03 |
DBSLMM.PseudoVal | pT+clump.10FCVal | 0.031 | 9.510 | 6.001 | 1.96e-09 | 0.034 | 10.904 | 3.349 | 8.12e-04 |
DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.023 | 7.292 | 2.160 | 3.08e-02 | 0.020 | 6.234 | 2.322 | 2.02e-02 |
DBSLMM.PseudoVal | lassosum.10FCVal | -0.007 | -2.031 | -1.867 | 6.19e-02 | -0.012 | -3.759 | -1.665 | 9.59e-02 |
DBSLMM.PseudoVal | lassosum.MultiPRS | -0.011 | -3.316 | -0.994 | 3.20e-01 | -0.015 | -4.691 | -2.392 | 1.68e-02 |
DBSLMM.PseudoVal | lassosum.PseudoVal | 0.061 | 18.925 | 10.096 | 5.76e-24 | 0.068 | 21.813 | 5.597 | 2.17e-08 |
DBSLMM.PseudoVal | PRScs.10FCVal | -0.005 | -1.578 | -1.698 | 8.95e-02 | -0.014 | -4.530 | -2.360 | 1.83e-02 |
DBSLMM.PseudoVal | PRScs.MultiPRS | -0.007 | -2.287 | -0.686 | 4.93e-01 | -0.015 | -4.689 | -2.682 | 7.33e-03 |
DBSLMM.PseudoVal | PRScs.PseudoVal | -0.001 | -0.264 | -0.280 | 7.79e-01 | -0.006 | -2.008 | -1.018 | 3.09e-01 |
DBSLMM.PseudoVal | SBLUP.Inf | 0.017 | 5.338 | 4.706 | 2.52e-06 | 0.009 | 3.027 | 1.261 | 2.07e-01 |
DBSLMM.PseudoVal | SBayesR.PseudoVal | 0.008 | 2.392 | 1.721 | 8.53e-02 | 0.010 | 3.295 | 1.140 | 2.54e-01 |
DBSLMM.PseudoVal | LDpred1.10FCVal | 0.013 | 3.900 | 3.406 | 6.58e-04 | 0.011 | 3.392 | 1.389 | 1.65e-01 |
DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.007 | 2.091 | 0.625 | 5.32e-01 | 0.004 | 1.418 | 0.647 | 5.18e-01 |
DBSLMM.PseudoVal | LDpred1.Inf | 0.010 | 3.125 | 2.950 | 3.18e-03 | 0.008 | 2.512 | 1.113 | 2.66e-01 |
DBSLMM.PseudoVal | LDpred2.10FCVal | -0.009 | -2.724 | -2.776 | 5.51e-03 | -0.012 | -3.929 | -1.916 | 5.53e-02 |
DBSLMM.PseudoVal | LDpred2.MultiPRS | -0.010 | -2.981 | -0.893 | 3.72e-01 | -0.007 | -2.103 | -0.987 | 3.24e-01 |
DBSLMM.PseudoVal | LDpred2.PseudoVal | 0.014 | 4.213 | 3.830 | 1.28e-04 | 0.010 | 3.155 | 1.358 | 1.74e-01 |
DBSLMM.PseudoVal | LDpred2.Inf | 0.013 | 4.117 | 3.730 | 1.92e-04 | 0.010 | 3.309 | 1.424 | 1.55e-01 |
DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
DBSLMM.PseudoVal | MegaPRS.10FCVal | -0.015 | -4.688 | -4.472 | 7.76e-06 | -0.018 | -5.696 | -2.626 | 8.64e-03 |
DBSLMM.PseudoVal | MegaPRS.MultiPRS | -0.020 | -6.070 | -1.833 | 6.69e-02 | -0.015 | -4.812 | -2.271 | 2.31e-02 |
DBSLMM.PseudoVal | MegaPRS.PseudoVal | -0.007 | -2.220 | -1.873 | 6.11e-02 | -0.007 | -2.164 | -0.895 | 3.71e-01 |
DBSLMM.PseudoVal | All.MultiPRS | -0.021 | -6.604 | -1.992 | 4.64e-02 | -0.014 | -4.623 | -2.103 | 3.54e-02 |
MegaPRS.10FCVal | pT+clump.10FCVal | 0.046 | 13.561 | 9.441 | 3.71e-21 | 0.052 | 15.706 | 5.357 | 8.45e-08 |
MegaPRS.10FCVal | pT+clump.MultiPRS | 0.039 | 11.443 | 3.564 | 3.65e-04 | 0.037 | 11.287 | 4.355 | 1.33e-05 |
MegaPRS.10FCVal | lassosum.10FCVal | 0.009 | 2.538 | 2.636 | 8.39e-03 | 0.006 | 1.833 | 0.928 | 3.53e-01 |
MegaPRS.10FCVal | lassosum.MultiPRS | 0.004 | 1.310 | 0.412 | 6.80e-01 | 0.003 | 0.951 | 0.522 | 6.02e-01 |
MegaPRS.10FCVal | lassosum.PseudoVal | 0.076 | 22.556 | 12.562 | 3.41e-36 | 0.086 | 26.027 | 7.099 | 1.25e-12 |
MegaPRS.10FCVal | PRScs.10FCVal | 0.010 | 2.971 | 3.286 | 1.02e-03 | 0.004 | 1.103 | 0.604 | 5.46e-01 |
MegaPRS.10FCVal | PRScs.MultiPRS | 0.008 | 2.293 | 0.723 | 4.70e-01 | 0.003 | 0.953 | 0.559 | 5.76e-01 |
MegaPRS.10FCVal | PRScs.PseudoVal | 0.014 | 4.225 | 4.471 | 7.80e-06 | 0.012 | 3.490 | 1.816 | 6.93e-02 |
MegaPRS.10FCVal | SBLUP.Inf | 0.032 | 9.576 | 8.882 | 6.55e-19 | 0.027 | 8.253 | 3.734 | 1.88e-04 |
MegaPRS.10FCVal | SBayesR.PseudoVal | 0.023 | 6.763 | 5.025 | 5.03e-07 | 0.028 | 8.507 | 3.064 | 2.19e-03 |
MegaPRS.10FCVal | LDpred1.10FCVal | 0.028 | 8.203 | 7.917 | 2.44e-15 | 0.028 | 8.598 | 4.027 | 5.65e-05 |
MegaPRS.10FCVal | LDpred1.MultiPRS | 0.022 | 6.475 | 2.031 | 4.22e-02 | 0.022 | 6.731 | 3.535 | 4.07e-04 |
MegaPRS.10FCVal | LDpred1.Inf | 0.025 | 7.463 | 7.556 | 4.16e-14 | 0.026 | 7.766 | 3.832 | 1.27e-04 |
MegaPRS.10FCVal | LDpred2.10FCVal | 0.006 | 1.876 | 2.145 | 3.19e-02 | 0.006 | 1.672 | 0.938 | 3.48e-01 |
MegaPRS.10FCVal | LDpred2.MultiPRS | 0.005 | 1.631 | 0.513 | 6.08e-01 | 0.011 | 3.400 | 1.803 | 7.13e-02 |
MegaPRS.10FCVal | LDpred2.PseudoVal | 0.029 | 8.502 | 8.242 | 1.69e-16 | 0.028 | 8.374 | 3.974 | 7.06e-05 |
MegaPRS.10FCVal | LDpred2.Inf | 0.028 | 8.411 | 8.210 | 2.22e-16 | 0.028 | 8.520 | 4.070 | 4.71e-05 |
MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.015 | 4.478 | 4.472 | 7.76e-06 | 0.018 | 5.389 | 2.626 | 8.64e-03 |
MegaPRS.10FCVal | MegaPRS.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.10FCVal | MegaPRS.MultiPRS | -0.004 | -1.321 | -0.420 | 6.75e-01 | 0.003 | 0.837 | 0.965 | 3.34e-01 |
MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.008 | 2.357 | 3.468 | 5.24e-04 | 0.011 | 3.342 | 2.398 | 1.65e-02 |
MegaPRS.10FCVal | All.MultiPRS | -0.006 | -1.830 | -0.581 | 5.61e-01 | 0.003 | 1.016 | 0.688 | 4.92e-01 |
MegaPRS.MultiPRS | pT+clump.10FCVal | 0.050 | 14.688 | 4.647 | 3.37e-06 | 0.049 | 14.994 | 5.179 | 2.24e-07 |
MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.043 | 12.598 | 3.990 | 6.61e-05 | 0.035 | 10.538 | 4.121 | 3.78e-05 |
MegaPRS.MultiPRS | lassosum.10FCVal | 0.013 | 3.808 | 1.221 | 2.22e-01 | 0.003 | 1.004 | 0.537 | 5.91e-01 |
MegaPRS.MultiPRS | lassosum.MultiPRS | 0.009 | 2.597 | 0.995 | 3.20e-01 | 0.000 | 0.115 | 0.066 | 9.48e-01 |
MegaPRS.MultiPRS | lassosum.PseudoVal | 0.080 | 23.565 | 7.397 | 1.39e-13 | 0.083 | 25.402 | 6.901 | 5.17e-12 |
MegaPRS.MultiPRS | PRScs.10FCVal | 0.014 | 4.235 | 1.360 | 1.74e-01 | 0.001 | 0.269 | 0.148 | 8.82e-01 |
MegaPRS.MultiPRS | PRScs.MultiPRS | 0.012 | 3.567 | 1.142 | 2.53e-01 | 0.000 | 0.117 | 0.070 | 9.44e-01 |
MegaPRS.MultiPRS | PRScs.PseudoVal | 0.019 | 5.474 | 1.755 | 7.93e-02 | 0.009 | 2.675 | 1.418 | 1.56e-01 |
MegaPRS.MultiPRS | SBLUP.Inf | 0.037 | 10.755 | 3.420 | 6.27e-04 | 0.025 | 7.479 | 3.369 | 7.55e-04 |
MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.027 | 7.978 | 2.546 | 1.09e-02 | 0.025 | 7.734 | 2.825 | 4.73e-03 |
MegaPRS.MultiPRS | LDpred1.10FCVal | 0.032 | 9.400 | 2.995 | 2.74e-03 | 0.026 | 7.827 | 3.617 | 2.98e-04 |
MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.026 | 7.695 | 2.450 | 1.43e-02 | 0.019 | 5.944 | 3.091 | 2.00e-03 |
MegaPRS.MultiPRS | LDpred1.Inf | 0.030 | 8.669 | 2.765 | 5.70e-03 | 0.023 | 6.988 | 3.411 | 6.47e-04 |
MegaPRS.MultiPRS | LDpred2.10FCVal | 0.011 | 3.155 | 1.012 | 3.12e-01 | 0.003 | 0.842 | 0.491 | 6.24e-01 |
MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.010 | 2.913 | 1.394 | 1.63e-01 | 0.008 | 2.584 | 1.418 | 1.56e-01 |
MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.033 | 9.694 | 3.085 | 2.03e-03 | 0.025 | 7.601 | 3.607 | 3.10e-04 |
MegaPRS.MultiPRS | LDpred2.Inf | 0.033 | 9.605 | 3.056 | 2.24e-03 | 0.025 | 7.748 | 3.702 | 2.14e-04 |
MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.020 | 5.723 | 1.833 | 6.69e-02 | 0.015 | 4.591 | 2.271 | 2.31e-02 |
MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.004 | 1.304 | 0.420 | 6.75e-01 | -0.003 | -0.844 | -0.965 | 3.34e-01 |
MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.012 | 3.630 | 1.165 | 2.44e-01 | 0.008 | 2.526 | 1.887 | 5.92e-02 |
MegaPRS.MultiPRS | All.MultiPRS | -0.002 | -0.503 | -0.195 | 8.45e-01 | 0.001 | 0.181 | 0.146 | 8.84e-01 |
MegaPRS.PseudoVal | pT+clump.10FCVal | 0.038 | 11.475 | 7.852 | 4.10e-15 | 0.041 | 12.792 | 4.272 | 1.93e-05 |
MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.031 | 9.306 | 2.823 | 4.76e-03 | 0.026 | 8.220 | 2.936 | 3.33e-03 |
MegaPRS.PseudoVal | lassosum.10FCVal | 0.001 | 0.186 | 0.180 | 8.57e-01 | -0.005 | -1.561 | -0.731 | 4.65e-01 |
MegaPRS.PseudoVal | lassosum.MultiPRS | -0.004 | -1.072 | -0.329 | 7.42e-01 | -0.008 | -2.474 | -1.217 | 2.23e-01 |
MegaPRS.PseudoVal | lassosum.PseudoVal | 0.068 | 20.687 | 10.873 | 1.55e-27 | 0.075 | 23.469 | 5.967 | 2.42e-09 |
MegaPRS.PseudoVal | PRScs.10FCVal | 0.002 | 0.629 | 0.614 | 5.39e-01 | -0.007 | -2.316 | -1.106 | 2.69e-01 |
MegaPRS.PseudoVal | PRScs.MultiPRS | 0.000 | -0.065 | -0.020 | 9.84e-01 | -0.008 | -2.471 | -1.233 | 2.18e-01 |
MegaPRS.PseudoVal | PRScs.PseudoVal | 0.006 | 1.914 | 1.807 | 7.08e-02 | 0.000 | 0.153 | 0.070 | 9.44e-01 |
MegaPRS.PseudoVal | SBLUP.Inf | 0.024 | 7.394 | 5.898 | 3.68e-09 | 0.016 | 5.081 | 1.957 | 5.03e-02 |
MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.015 | 4.513 | 3.259 | 1.12e-03 | 0.017 | 5.343 | 1.866 | 6.20e-02 |
MegaPRS.PseudoVal | LDpred1.10FCVal | 0.020 | 5.987 | 4.847 | 1.26e-06 | 0.017 | 5.438 | 2.124 | 3.37e-02 |
MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.014 | 4.218 | 1.289 | 1.97e-01 | 0.011 | 3.507 | 1.484 | 1.38e-01 |
MegaPRS.PseudoVal | LDpred1.Inf | 0.017 | 5.229 | 4.481 | 7.42e-06 | 0.015 | 4.577 | 1.894 | 5.82e-02 |
MegaPRS.PseudoVal | LDpred2.10FCVal | -0.002 | -0.493 | -0.487 | 6.26e-01 | -0.006 | -1.728 | -0.827 | 4.08e-01 |
MegaPRS.PseudoVal | LDpred2.MultiPRS | -0.002 | -0.744 | -0.228 | 8.20e-01 | 0.000 | 0.060 | 0.029 | 9.77e-01 |
MegaPRS.PseudoVal | LDpred2.PseudoVal | 0.021 | 6.293 | 5.277 | 1.32e-07 | 0.017 | 5.206 | 2.113 | 3.46e-02 |
MegaPRS.PseudoVal | LDpred2.Inf | 0.020 | 6.200 | 5.210 | 1.89e-07 | 0.017 | 5.357 | 2.179 | 2.93e-02 |
MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.007 | 2.172 | 1.873 | 6.11e-02 | 0.007 | 2.118 | 0.895 | 3.71e-01 |
MegaPRS.PseudoVal | MegaPRS.10FCVal | -0.008 | -2.414 | -3.468 | 5.24e-04 | -0.011 | -3.457 | -2.398 | 1.65e-02 |
MegaPRS.PseudoVal | MegaPRS.MultiPRS | -0.012 | -3.766 | -1.165 | 2.44e-01 | -0.008 | -2.591 | -1.887 | 5.92e-02 |
MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.PseudoVal | All.MultiPRS | -0.014 | -4.288 | -1.326 | 1.85e-01 | -0.008 | -2.406 | -1.331 | 1.83e-01 |
All.MultiPRS | pT+clump.10FCVal | 0.052 | 15.115 | 4.796 | 1.61e-06 | 0.049 | 14.841 | 4.916 | 8.82e-07 |
All.MultiPRS | pT+clump.MultiPRS | 0.045 | 13.035 | 4.186 | 2.84e-05 | 0.034 | 10.376 | 3.833 | 1.27e-04 |
All.MultiPRS | lassosum.10FCVal | 0.015 | 4.290 | 1.383 | 1.67e-01 | 0.003 | 0.825 | 0.428 | 6.69e-01 |
All.MultiPRS | lassosum.MultiPRS | 0.011 | 3.084 | 0.997 | 3.19e-01 | 0.000 | -0.066 | -0.040 | 9.68e-01 |
All.MultiPRS | lassosum.PseudoVal | 0.082 | 23.948 | 7.581 | 3.42e-14 | 0.083 | 25.267 | 7.001 | 2.54e-12 |
All.MultiPRS | PRScs.10FCVal | 0.016 | 4.715 | 1.517 | 1.29e-01 | 0.000 | 0.088 | 0.045 | 9.64e-01 |
All.MultiPRS | PRScs.MultiPRS | 0.014 | 4.049 | 1.872 | 6.12e-02 | 0.000 | -0.064 | -0.035 | 9.72e-01 |
All.MultiPRS | PRScs.PseudoVal | 0.020 | 5.947 | 1.914 | 5.56e-02 | 0.008 | 2.499 | 1.244 | 2.13e-01 |
All.MultiPRS | SBLUP.Inf | 0.038 | 11.202 | 3.573 | 3.53e-04 | 0.024 | 7.311 | 2.945 | 3.22e-03 |
All.MultiPRS | SBayesR.PseudoVal | 0.029 | 8.439 | 2.714 | 6.65e-03 | 0.025 | 7.567 | 2.857 | 4.28e-03 |
All.MultiPRS | LDpred1.10FCVal | 0.034 | 9.853 | 3.147 | 1.65e-03 | 0.025 | 7.660 | 3.178 | 1.48e-03 |
All.MultiPRS | LDpred1.MultiPRS | 0.028 | 8.156 | 3.125 | 1.78e-03 | 0.019 | 5.774 | 2.653 | 7.98e-03 |
All.MultiPRS | LDpred1.Inf | 0.031 | 9.126 | 2.920 | 3.50e-03 | 0.022 | 6.819 | 2.922 | 3.47e-03 |
All.MultiPRS | LDpred2.10FCVal | 0.012 | 3.639 | 1.172 | 2.41e-01 | 0.002 | 0.663 | 0.361 | 7.18e-01 |
All.MultiPRS | LDpred2.MultiPRS | 0.012 | 3.399 | 1.313 | 1.89e-01 | 0.008 | 2.408 | 1.353 | 1.76e-01 |
All.MultiPRS | LDpred2.PseudoVal | 0.035 | 10.146 | 3.239 | 1.20e-03 | 0.024 | 7.434 | 3.183 | 1.46e-03 |
All.MultiPRS | LDpred2.Inf | 0.034 | 10.057 | 3.211 | 1.32e-03 | 0.025 | 7.581 | 3.255 | 1.13e-03 |
All.MultiPRS | DBSLMM.PseudoVal | 0.021 | 6.195 | 1.992 | 4.64e-02 | 0.014 | 4.418 | 2.103 | 3.54e-02 |
All.MultiPRS | MegaPRS.10FCVal | 0.006 | 1.797 | 0.581 | 5.61e-01 | -0.003 | -1.026 | -0.688 | 4.92e-01 |
All.MultiPRS | MegaPRS.MultiPRS | 0.002 | 0.500 | 0.195 | 8.45e-01 | -0.001 | -0.181 | -0.146 | 8.84e-01 |
All.MultiPRS | MegaPRS.PseudoVal | 0.014 | 4.112 | 1.326 | 1.85e-01 | 0.008 | 2.350 | 1.331 | 1.83e-01 |
All.MultiPRS | All.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
Show table: TEDS (UKBB ref)
Reference | Test | IndepVal Diff | IndepVal Diff (%) | IndepVal Diff Z | IndepVal Diff P | NA | NA | NA | NA |
---|---|---|---|---|---|---|---|---|---|
pT+clump.10FCVal | pT+clump.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.10FCVal | pT+clump.MultiPRS | -0.008 | -2.666 | -0.710 | 4.78e-01 | -0.016 | -5.743 | -3.548 | 3.88e-04 |
pT+clump.10FCVal | lassosum.10FCVal | -0.038 | -13.102 | -8.644 | 5.41e-18 | -0.055 | -20.007 | -6.195 | 5.81e-10 |
pT+clump.10FCVal | lassosum.MultiPRS | -0.042 | -14.280 | -3.869 | 1.09e-04 | -0.058 | -21.268 | -6.214 | 5.15e-10 |
pT+clump.10FCVal | lassosum.PseudoVal | 0.006 | 2.093 | 0.930 | 3.52e-01 | 0.010 | 3.612 | 0.744 | 4.57e-01 |
pT+clump.10FCVal | SBLUP.Inf | -0.021 | -7.308 | -4.336 | 1.45e-05 | -0.035 | -12.645 | -3.484 | 4.94e-04 |
pT+clump.10FCVal | SBayesR.PseudoVal | -0.043 | -14.660 | -8.970 | 2.97e-19 | -0.062 | -22.463 | -6.435 | 1.23e-10 |
pT+clump.10FCVal | LDpred1.10FCVal | -0.013 | -4.489 | -2.502 | 1.23e-02 | -0.031 | -11.204 | -2.906 | 3.67e-03 |
pT+clump.10FCVal | LDpred1.MultiPRS | -0.024 | -8.213 | -2.196 | 2.81e-02 | -0.039 | -14.294 | -3.884 | 1.03e-04 |
pT+clump.10FCVal | LDpred1.Inf | -0.020 | -6.826 | -4.004 | 6.23e-05 | -0.034 | -12.583 | -3.422 | 6.23e-04 |
pT+clump.10FCVal | LDpred2.10FCVal | -0.049 | -16.839 | -10.291 | 7.78e-25 | -0.059 | -21.652 | -6.229 | 4.70e-10 |
pT+clump.10FCVal | LDpred2.MultiPRS | -0.048 | -16.618 | -4.506 | 6.59e-06 | -0.063 | -22.811 | -6.589 | 4.43e-11 |
pT+clump.10FCVal | LDpred2.PseudoVal | -0.045 | -15.379 | -9.205 | 3.41e-20 | -0.061 | -22.391 | -6.294 | 3.09e-10 |
pT+clump.10FCVal | LDpred2.Inf | -0.024 | -8.356 | -4.851 | 1.23e-06 | -0.038 | -14.036 | -3.798 | 1.46e-04 |
pT+clump.10FCVal | DBSLMM.PseudoVal | -0.030 | -10.380 | -5.998 | 2.00e-09 | -0.043 | -15.757 | -4.281 | 1.86e-05 |
pT+clump.10FCVal | MegaPRS.10FCVal | -0.052 | -17.653 | -10.446 | 1.52e-25 | -0.067 | -24.494 | -6.767 | 1.31e-11 |
pT+clump.10FCVal | MegaPRS.MultiPRS | -0.054 | -18.433 | -4.989 | 6.07e-07 | -0.065 | -23.764 | -6.776 | 1.23e-11 |
pT+clump.10FCVal | MegaPRS.PseudoVal | -0.043 | -14.676 | -8.903 | 5.41e-19 | -0.063 | -23.078 | -6.591 | 4.35e-11 |
pT+clump.10FCVal | All.MultiPRS | -0.057 | -19.679 | -5.341 | 9.24e-08 | -0.066 | -23.952 | -6.693 | 2.18e-11 |
pT+clump.MultiPRS | pT+clump.10FCVal | 0.008 | 2.597 | 0.710 | 4.78e-01 | 0.016 | 5.431 | 3.548 | 3.88e-04 |
pT+clump.MultiPRS | pT+clump.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
pT+clump.MultiPRS | lassosum.10FCVal | -0.030 | -10.165 | -2.815 | 4.88e-03 | -0.039 | -13.488 | -4.844 | 1.27e-06 |
pT+clump.MultiPRS | lassosum.MultiPRS | -0.034 | -11.312 | -3.135 | 1.72e-03 | -0.043 | -14.681 | -5.276 | 1.32e-07 |
pT+clump.MultiPRS | lassosum.PseudoVal | 0.014 | 4.636 | 1.269 | 2.05e-01 | 0.026 | 8.847 | 2.247 | 2.47e-02 |
pT+clump.MultiPRS | SBLUP.Inf | -0.014 | -4.521 | -1.245 | 2.13e-01 | -0.019 | -6.527 | -2.092 | 3.65e-02 |
pT+clump.MultiPRS | SBayesR.PseudoVal | -0.035 | -11.683 | -3.241 | 1.19e-03 | -0.046 | -15.811 | -5.683 | 1.32e-08 |
pT+clump.MultiPRS | LDpred1.10FCVal | -0.005 | -1.775 | -0.488 | 6.26e-01 | -0.015 | -5.164 | -1.540 | 1.24e-01 |
pT+clump.MultiPRS | LDpred1.MultiPRS | -0.016 | -5.403 | -1.491 | 1.36e-01 | -0.023 | -8.086 | -2.576 | 1.00e-02 |
pT+clump.MultiPRS | LDpred1.Inf | -0.012 | -4.052 | -1.116 | 2.65e-01 | -0.019 | -6.468 | -2.042 | 4.11e-02 |
pT+clump.MultiPRS | LDpred2.10FCVal | -0.041 | -13.805 | -3.835 | 1.26e-04 | -0.044 | -15.044 | -5.280 | 1.29e-07 |
pT+clump.MultiPRS | LDpred2.MultiPRS | -0.041 | -13.590 | -3.796 | 1.47e-04 | -0.047 | -16.140 | -5.681 | 1.34e-08 |
pT+clump.MultiPRS | LDpred2.PseudoVal | -0.037 | -12.383 | -3.437 | 5.88e-04 | -0.046 | -15.743 | -5.312 | 1.08e-07 |
pT+clump.MultiPRS | LDpred2.Inf | -0.017 | -5.542 | -1.528 | 1.26e-01 | -0.023 | -7.843 | -2.446 | 1.44e-02 |
pT+clump.MultiPRS | DBSLMM.PseudoVal | -0.023 | -7.513 | -2.075 | 3.80e-02 | -0.027 | -9.470 | -3.315 | 9.16e-04 |
pT+clump.MultiPRS | MegaPRS.10FCVal | -0.044 | -14.598 | -4.059 | 4.94e-05 | -0.051 | -17.732 | -5.937 | 2.90e-09 |
pT+clump.MultiPRS | MegaPRS.MultiPRS | -0.046 | -15.358 | -4.297 | 1.73e-05 | -0.049 | -17.042 | -5.865 | 4.50e-09 |
pT+clump.MultiPRS | MegaPRS.PseudoVal | -0.035 | -11.698 | -3.243 | 1.18e-03 | -0.048 | -16.394 | -5.463 | 4.68e-08 |
pT+clump.MultiPRS | All.MultiPRS | -0.050 | -16.571 | -4.649 | 3.34e-06 | -0.050 | -17.219 | -5.736 | 9.68e-09 |
lassosum.10FCVal | pT+clump.10FCVal | 0.038 | 11.585 | 8.644 | 5.41e-18 | 0.055 | 16.671 | 6.195 | 5.81e-10 |
lassosum.10FCVal | pT+clump.MultiPRS | 0.030 | 9.227 | 2.815 | 4.88e-03 | 0.039 | 11.885 | 4.844 | 1.27e-06 |
lassosum.10FCVal | lassosum.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.10FCVal | lassosum.MultiPRS | -0.003 | -1.041 | -0.322 | 7.48e-01 | -0.003 | -1.051 | -1.171 | 2.42e-01 |
lassosum.10FCVal | lassosum.PseudoVal | 0.044 | 13.435 | 8.675 | 4.15e-18 | 0.065 | 19.681 | 6.200 | 5.65e-10 |
lassosum.10FCVal | SBLUP.Inf | 0.017 | 5.123 | 4.902 | 9.51e-07 | 0.020 | 6.134 | 2.918 | 3.52e-03 |
lassosum.10FCVal | SBayesR.PseudoVal | -0.005 | -1.377 | -1.641 | 1.01e-01 | -0.007 | -2.047 | -1.199 | 2.31e-01 |
lassosum.10FCVal | LDpred1.10FCVal | 0.025 | 7.616 | 6.616 | 3.68e-11 | 0.024 | 7.335 | 3.149 | 1.64e-03 |
lassosum.10FCVal | LDpred1.MultiPRS | 0.014 | 4.323 | 1.326 | 1.85e-01 | 0.016 | 4.761 | 2.275 | 2.29e-02 |
lassosum.10FCVal | LDpred1.Inf | 0.018 | 5.549 | 5.136 | 2.81e-07 | 0.020 | 6.186 | 2.840 | 4.50e-03 |
lassosum.10FCVal | LDpred2.10FCVal | -0.011 | -3.304 | -4.461 | 8.15e-06 | -0.005 | -1.371 | -0.906 | 3.65e-01 |
lassosum.10FCVal | LDpred2.MultiPRS | -0.010 | -3.108 | -0.966 | 3.34e-01 | -0.008 | -2.337 | -1.525 | 1.27e-01 |
lassosum.10FCVal | LDpred2.PseudoVal | -0.007 | -2.013 | -2.482 | 1.31e-02 | -0.007 | -1.987 | -1.208 | 2.27e-01 |
lassosum.10FCVal | LDpred2.Inf | 0.014 | 4.197 | 3.989 | 6.63e-05 | 0.016 | 4.975 | 2.336 | 1.95e-02 |
lassosum.10FCVal | DBSLMM.PseudoVal | 0.008 | 2.407 | 2.289 | 2.21e-02 | 0.012 | 3.541 | 1.675 | 9.39e-02 |
lassosum.10FCVal | MegaPRS.10FCVal | -0.013 | -4.023 | -4.424 | 9.67e-06 | -0.012 | -3.739 | -2.046 | 4.08e-02 |
lassosum.10FCVal | MegaPRS.MultiPRS | -0.016 | -4.713 | -1.464 | 1.43e-01 | -0.010 | -3.131 | -1.819 | 6.90e-02 |
lassosum.10FCVal | MegaPRS.PseudoVal | -0.005 | -1.392 | -1.598 | 1.10e-01 | -0.008 | -2.560 | -1.477 | 1.40e-01 |
lassosum.10FCVal | All.MultiPRS | -0.019 | -5.815 | -1.814 | 6.97e-02 | -0.011 | -3.287 | -1.837 | 6.61e-02 |
lassosum.MultiPRS | pT+clump.10FCVal | 0.042 | 12.495 | 3.869 | 1.09e-04 | 0.058 | 17.538 | 6.214 | 5.15e-10 |
lassosum.MultiPRS | pT+clump.MultiPRS | 0.034 | 10.162 | 3.135 | 1.72e-03 | 0.043 | 12.802 | 5.276 | 1.32e-07 |
lassosum.MultiPRS | lassosum.10FCVal | 0.003 | 1.030 | 0.322 | 7.48e-01 | 0.003 | 1.040 | 1.171 | 2.42e-01 |
lassosum.MultiPRS | lassosum.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.MultiPRS | lassosum.PseudoVal | 0.048 | 14.327 | 4.422 | 9.77e-06 | 0.068 | 20.516 | 7.216 | 5.37e-13 |
lassosum.MultiPRS | SBLUP.Inf | 0.020 | 6.101 | 1.897 | 5.78e-02 | 0.024 | 7.110 | 3.408 | 6.55e-04 |
lassosum.MultiPRS | SBayesR.PseudoVal | -0.001 | -0.333 | -0.104 | 9.17e-01 | -0.003 | -0.986 | -0.642 | 5.21e-01 |
lassosum.MultiPRS | LDpred1.10FCVal | 0.029 | 8.567 | 2.654 | 7.94e-03 | 0.028 | 8.299 | 3.655 | 2.57e-04 |
lassosum.MultiPRS | LDpred1.MultiPRS | 0.018 | 5.308 | 1.656 | 9.77e-02 | 0.019 | 5.751 | 2.843 | 4.47e-03 |
lassosum.MultiPRS | LDpred1.Inf | 0.022 | 6.522 | 2.027 | 4.27e-02 | 0.024 | 7.162 | 3.345 | 8.24e-04 |
lassosum.MultiPRS | LDpred2.10FCVal | -0.007 | -2.240 | -0.703 | 4.82e-01 | -0.001 | -0.317 | -0.221 | 8.25e-01 |
lassosum.MultiPRS | LDpred2.MultiPRS | -0.007 | -2.046 | -0.938 | 3.48e-01 | -0.004 | -1.272 | -0.881 | 3.78e-01 |
lassosum.MultiPRS | LDpred2.PseudoVal | -0.003 | -0.962 | -0.301 | 7.63e-01 | -0.003 | -0.926 | -0.572 | 5.67e-01 |
lassosum.MultiPRS | LDpred2.Inf | 0.017 | 5.184 | 1.613 | 1.07e-01 | 0.020 | 5.963 | 2.836 | 4.57e-03 |
lassosum.MultiPRS | DBSLMM.PseudoVal | 0.011 | 3.413 | 1.068 | 2.86e-01 | 0.015 | 4.544 | 2.405 | 1.62e-02 |
lassosum.MultiPRS | MegaPRS.10FCVal | -0.010 | -2.952 | -0.927 | 3.54e-01 | -0.009 | -2.661 | -1.588 | 1.12e-01 |
lassosum.MultiPRS | MegaPRS.MultiPRS | -0.012 | -3.635 | -1.145 | 2.52e-01 | -0.007 | -2.059 | -1.282 | 2.00e-01 |
lassosum.MultiPRS | MegaPRS.PseudoVal | -0.001 | -0.347 | -0.109 | 9.13e-01 | -0.005 | -1.493 | -0.889 | 3.74e-01 |
lassosum.MultiPRS | All.MultiPRS | -0.016 | -4.725 | -1.782 | 7.47e-02 | -0.007 | -2.213 | -1.488 | 1.37e-01 |
lassosum.PseudoVal | pT+clump.10FCVal | -0.006 | -2.138 | -0.930 | 3.52e-01 | -0.010 | -3.747 | -0.744 | 4.57e-01 |
lassosum.PseudoVal | pT+clump.MultiPRS | -0.014 | -4.861 | -1.269 | 2.05e-01 | -0.026 | -9.706 | -2.247 | 2.47e-02 |
lassosum.PseudoVal | lassosum.10FCVal | -0.044 | -15.520 | -8.675 | 4.15e-18 | -0.065 | -24.504 | -6.200 | 5.65e-10 |
lassosum.PseudoVal | lassosum.MultiPRS | -0.048 | -16.723 | -4.422 | 9.77e-06 | -0.068 | -25.812 | -7.216 | 5.37e-13 |
lassosum.PseudoVal | lassosum.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
lassosum.PseudoVal | SBLUP.Inf | -0.027 | -9.602 | -4.140 | 3.47e-05 | -0.045 | -16.866 | -3.331 | 8.66e-04 |
lassosum.PseudoVal | SBayesR.PseudoVal | -0.049 | -17.112 | -9.653 | 4.76e-22 | -0.071 | -27.052 | -6.978 | 2.99e-12 |
lassosum.PseudoVal | LDpred1.10FCVal | -0.019 | -6.723 | -2.873 | 4.06e-03 | -0.041 | -15.372 | -3.006 | 2.65e-03 |
lassosum.PseudoVal | LDpred1.MultiPRS | -0.030 | -10.527 | -2.767 | 5.65e-03 | -0.049 | -18.577 | -3.845 | 1.21e-04 |
lassosum.PseudoVal | LDpred1.Inf | -0.026 | -9.110 | -3.949 | 7.85e-05 | -0.044 | -16.802 | -3.330 | 8.70e-04 |
lassosum.PseudoVal | LDpred2.10FCVal | -0.055 | -19.337 | -10.658 | 1.60e-26 | -0.069 | -26.211 | -6.639 | 3.15e-11 |
lassosum.PseudoVal | LDpred2.MultiPRS | -0.055 | -19.111 | -5.091 | 3.56e-07 | -0.072 | -27.413 | -6.930 | 4.21e-12 |
lassosum.PseudoVal | LDpred2.PseudoVal | -0.051 | -17.845 | -8.768 | 1.82e-18 | -0.071 | -26.978 | -6.086 | 1.15e-09 |
lassosum.PseudoVal | LDpred2.Inf | -0.030 | -10.672 | -4.611 | 4.02e-06 | -0.048 | -18.310 | -3.606 | 3.11e-04 |
lassosum.PseudoVal | DBSLMM.PseudoVal | -0.036 | -12.739 | -6.885 | 5.78e-12 | -0.053 | -20.095 | -4.966 | 6.82e-07 |
lassosum.PseudoVal | MegaPRS.10FCVal | -0.058 | -20.168 | -10.868 | 1.64e-27 | -0.077 | -29.159 | -7.248 | 4.24e-13 |
lassosum.PseudoVal | MegaPRS.MultiPRS | -0.060 | -20.965 | -5.577 | 2.44e-08 | -0.075 | -28.402 | -7.183 | 6.81e-13 |
lassosum.PseudoVal | MegaPRS.PseudoVal | -0.049 | -17.128 | -9.041 | 1.55e-19 | -0.073 | -27.691 | -6.776 | 1.23e-11 |
lassosum.PseudoVal | All.MultiPRS | -0.064 | -22.238 | -5.937 | 2.91e-09 | -0.076 | -28.597 | -7.389 | 1.48e-13 |
SBLUP.Inf | pT+clump.10FCVal | 0.021 | 6.810 | 4.336 | 1.45e-05 | 0.035 | 11.226 | 3.484 | 4.94e-04 |
SBLUP.Inf | pT+clump.MultiPRS | 0.014 | 4.326 | 1.245 | 2.13e-01 | 0.019 | 6.127 | 2.092 | 3.65e-02 |
SBLUP.Inf | lassosum.10FCVal | -0.017 | -5.400 | -4.902 | 9.51e-07 | -0.020 | -6.535 | -2.918 | 3.52e-03 |
SBLUP.Inf | lassosum.MultiPRS | -0.020 | -6.497 | -1.897 | 5.78e-02 | -0.024 | -7.655 | -3.408 | 6.55e-04 |
SBLUP.Inf | lassosum.PseudoVal | 0.027 | 8.761 | 4.140 | 3.47e-05 | 0.045 | 14.432 | 3.331 | 8.66e-04 |
SBLUP.Inf | SBLUP.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBLUP.Inf | SBayesR.PseudoVal | -0.021 | -6.852 | -7.504 | 6.21e-14 | -0.027 | -8.716 | -4.695 | 2.66e-06 |
SBLUP.Inf | LDpred1.10FCVal | 0.008 | 2.627 | 4.100 | 4.14e-05 | 0.004 | 1.279 | 0.953 | 3.41e-01 |
SBLUP.Inf | LDpred1.MultiPRS | -0.003 | -0.844 | -0.244 | 8.08e-01 | -0.005 | -1.463 | -1.227 | 2.20e-01 |
SBLUP.Inf | LDpred1.Inf | 0.001 | 0.449 | 0.988 | 3.23e-01 | 0.000 | 0.055 | 0.058 | 9.54e-01 |
SBLUP.Inf | LDpred2.10FCVal | -0.028 | -8.882 | -9.487 | 2.37e-21 | -0.025 | -7.996 | -4.184 | 2.86e-05 |
SBLUP.Inf | LDpred2.MultiPRS | -0.027 | -8.676 | -2.537 | 1.12e-02 | -0.028 | -9.024 | -5.003 | 5.65e-07 |
SBLUP.Inf | LDpred2.PseudoVal | -0.024 | -7.521 | -10.698 | 1.03e-26 | -0.027 | -8.652 | -6.058 | 1.37e-09 |
SBLUP.Inf | LDpred2.Inf | -0.003 | -0.976 | -2.797 | 5.17e-03 | -0.004 | -1.235 | -1.728 | 8.40e-02 |
SBLUP.Inf | DBSLMM.PseudoVal | -0.009 | -2.862 | -2.729 | 6.35e-03 | -0.009 | -2.763 | -1.278 | 2.01e-01 |
SBLUP.Inf | MegaPRS.10FCVal | -0.030 | -9.640 | -9.432 | 4.01e-21 | -0.032 | -10.519 | -5.086 | 3.65e-07 |
SBLUP.Inf | MegaPRS.MultiPRS | -0.032 | -10.368 | -3.022 | 2.51e-03 | -0.030 | -9.871 | -4.628 | 3.70e-06 |
SBLUP.Inf | MegaPRS.PseudoVal | -0.021 | -6.867 | -6.131 | 8.72e-10 | -0.029 | -9.262 | -4.086 | 4.40e-05 |
SBLUP.Inf | All.MultiPRS | -0.036 | -11.529 | -3.381 | 7.22e-04 | -0.031 | -10.037 | -4.298 | 1.72e-05 |
SBayesR.PseudoVal | pT+clump.10FCVal | 0.043 | 12.786 | 8.970 | 2.97e-19 | 0.062 | 18.343 | 6.435 | 1.23e-10 |
SBayesR.PseudoVal | pT+clump.MultiPRS | 0.035 | 10.461 | 3.241 | 1.19e-03 | 0.046 | 13.653 | 5.683 | 1.32e-08 |
SBayesR.PseudoVal | lassosum.10FCVal | 0.005 | 1.359 | 1.641 | 1.01e-01 | 0.007 | 2.006 | 1.199 | 2.31e-01 |
SBayesR.PseudoVal | lassosum.MultiPRS | 0.001 | 0.332 | 0.104 | 9.17e-01 | 0.003 | 0.976 | 0.642 | 5.21e-01 |
SBayesR.PseudoVal | lassosum.PseudoVal | 0.049 | 14.611 | 9.653 | 4.76e-22 | 0.071 | 21.292 | 6.978 | 2.99e-12 |
SBayesR.PseudoVal | SBLUP.Inf | 0.021 | 6.412 | 7.504 | 6.21e-14 | 0.027 | 8.017 | 4.695 | 2.66e-06 |
SBayesR.PseudoVal | SBayesR.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
SBayesR.PseudoVal | LDpred1.10FCVal | 0.030 | 8.871 | 9.484 | 2.45e-21 | 0.031 | 9.194 | 4.888 | 1.02e-06 |
SBayesR.PseudoVal | LDpred1.MultiPRS | 0.019 | 5.623 | 1.752 | 7.98e-02 | 0.022 | 6.671 | 4.195 | 2.73e-05 |
SBayesR.PseudoVal | LDpred1.Inf | 0.023 | 6.833 | 8.076 | 6.71e-16 | 0.027 | 8.068 | 4.726 | 2.29e-06 |
SBayesR.PseudoVal | LDpred2.10FCVal | -0.006 | -1.900 | -3.549 | 3.87e-04 | 0.002 | 0.662 | 0.618 | 5.36e-01 |
SBayesR.PseudoVal | LDpred2.MultiPRS | -0.006 | -1.707 | -0.539 | 5.90e-01 | -0.001 | -0.284 | -0.273 | 7.85e-01 |
SBayesR.PseudoVal | LDpred2.PseudoVal | -0.002 | -0.627 | -1.096 | 2.73e-01 | 0.000 | 0.059 | 0.052 | 9.59e-01 |
SBayesR.PseudoVal | LDpred2.Inf | 0.018 | 5.499 | 6.534 | 6.42e-11 | 0.023 | 6.881 | 4.064 | 4.82e-05 |
SBayesR.PseudoVal | DBSLMM.PseudoVal | 0.012 | 3.733 | 4.487 | 7.23e-06 | 0.018 | 5.476 | 3.267 | 1.09e-03 |
SBayesR.PseudoVal | MegaPRS.10FCVal | -0.009 | -2.610 | -3.675 | 2.38e-04 | -0.006 | -1.659 | -1.173 | 2.41e-01 |
SBayesR.PseudoVal | MegaPRS.MultiPRS | -0.011 | -3.291 | -1.036 | 3.00e-01 | -0.004 | -1.063 | -0.728 | 4.67e-01 |
SBayesR.PseudoVal | MegaPRS.PseudoVal | 0.000 | -0.014 | -0.018 | 9.86e-01 | -0.002 | -0.503 | -0.317 | 7.51e-01 |
SBayesR.PseudoVal | All.MultiPRS | -0.015 | -4.377 | -1.386 | 1.66e-01 | -0.004 | -1.216 | -0.778 | 4.37e-01 |
LDpred1.10FCVal | pT+clump.10FCVal | 0.013 | 4.296 | 2.502 | 1.23e-02 | 0.031 | 10.075 | 2.906 | 3.67e-03 |
LDpred1.10FCVal | pT+clump.MultiPRS | 0.005 | 1.744 | 0.488 | 6.26e-01 | 0.015 | 4.911 | 1.540 | 1.24e-01 |
LDpred1.10FCVal | lassosum.10FCVal | -0.025 | -8.244 | -6.616 | 3.68e-11 | -0.024 | -7.916 | -3.149 | 1.64e-03 |
LDpred1.10FCVal | lassosum.MultiPRS | -0.029 | -9.370 | -2.654 | 7.94e-03 | -0.028 | -9.050 | -3.655 | 2.57e-04 |
LDpred1.10FCVal | lassosum.PseudoVal | 0.019 | 6.299 | 2.873 | 4.06e-03 | 0.041 | 13.324 | 3.006 | 2.65e-03 |
LDpred1.10FCVal | SBLUP.Inf | -0.008 | -2.698 | -4.100 | 4.14e-05 | -0.004 | -1.296 | -0.953 | 3.41e-01 |
LDpred1.10FCVal | SBayesR.PseudoVal | -0.030 | -9.734 | -9.484 | 2.45e-21 | -0.031 | -10.124 | -4.888 | 1.02e-06 |
LDpred1.10FCVal | LDpred1.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.10FCVal | LDpred1.MultiPRS | -0.011 | -3.564 | -1.000 | 3.17e-01 | -0.008 | -2.778 | -2.153 | 3.13e-02 |
LDpred1.10FCVal | LDpred1.Inf | -0.007 | -2.237 | -3.373 | 7.43e-04 | -0.004 | -1.240 | -0.914 | 3.61e-01 |
LDpred1.10FCVal | LDpred2.10FCVal | -0.036 | -11.820 | -11.011 | 3.38e-28 | -0.029 | -9.395 | -4.340 | 1.42e-05 |
LDpred1.10FCVal | LDpred2.MultiPRS | -0.035 | -11.608 | -3.297 | 9.76e-04 | -0.032 | -10.437 | -5.075 | 3.88e-07 |
LDpred1.10FCVal | LDpred2.PseudoVal | -0.032 | -10.422 | -11.647 | 2.36e-31 | -0.031 | -10.060 | -5.608 | 2.05e-08 |
LDpred1.10FCVal | LDpred2.Inf | -0.011 | -3.701 | -5.495 | 3.92e-08 | -0.008 | -2.547 | -1.859 | 6.31e-02 |
LDpred1.10FCVal | DBSLMM.PseudoVal | -0.017 | -5.638 | -4.702 | 2.57e-06 | -0.012 | -4.094 | -1.669 | 9.51e-02 |
LDpred1.10FCVal | MegaPRS.10FCVal | -0.038 | -12.598 | -10.924 | 8.81e-28 | -0.036 | -11.951 | -5.196 | 2.04e-07 |
LDpred1.10FCVal | MegaPRS.MultiPRS | -0.041 | -13.346 | -3.779 | 1.57e-04 | -0.034 | -11.294 | -4.770 | 1.84e-06 |
LDpred1.10FCVal | MegaPRS.PseudoVal | -0.030 | -9.750 | -7.785 | 6.99e-15 | -0.033 | -10.678 | -4.284 | 1.84e-05 |
LDpred1.10FCVal | All.MultiPRS | -0.044 | -14.538 | -4.141 | 3.46e-05 | -0.035 | -11.463 | -4.486 | 7.27e-06 |
LDpred1.MultiPRS | pT+clump.10FCVal | 0.024 | 7.590 | 2.196 | 2.81e-02 | 0.039 | 12.506 | 3.884 | 1.03e-04 |
LDpred1.MultiPRS | pT+clump.MultiPRS | 0.016 | 5.126 | 1.491 | 1.36e-01 | 0.023 | 7.481 | 2.576 | 1.00e-02 |
LDpred1.MultiPRS | lassosum.10FCVal | -0.014 | -4.518 | -1.326 | 1.85e-01 | -0.016 | -4.999 | -2.275 | 2.29e-02 |
LDpred1.MultiPRS | lassosum.MultiPRS | -0.018 | -5.606 | -1.656 | 9.77e-02 | -0.019 | -6.102 | -2.843 | 4.47e-03 |
LDpred1.MultiPRS | lassosum.PseudoVal | 0.030 | 9.524 | 2.767 | 5.65e-03 | 0.049 | 15.666 | 3.845 | 1.21e-04 |
LDpred1.MultiPRS | SBLUP.Inf | 0.003 | 0.837 | 0.244 | 8.08e-01 | 0.005 | 1.442 | 1.227 | 2.20e-01 |
LDpred1.MultiPRS | SBayesR.PseudoVal | -0.019 | -5.958 | -1.752 | 7.98e-02 | -0.022 | -7.148 | -4.195 | 2.73e-05 |
LDpred1.MultiPRS | LDpred1.10FCVal | 0.011 | 3.442 | 1.000 | 3.17e-01 | 0.008 | 2.703 | 2.153 | 3.13e-02 |
LDpred1.MultiPRS | LDpred1.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.MultiPRS | LDpred1.Inf | 0.004 | 1.282 | 0.373 | 7.09e-01 | 0.005 | 1.497 | 1.491 | 1.36e-01 |
LDpred1.MultiPRS | LDpred2.10FCVal | -0.025 | -7.971 | -2.349 | 1.88e-02 | -0.020 | -6.438 | -3.573 | 3.53e-04 |
LDpred1.MultiPRS | LDpred2.MultiPRS | -0.025 | -7.767 | -2.765 | 5.69e-03 | -0.023 | -7.452 | -4.366 | 1.26e-05 |
LDpred1.MultiPRS | LDpred2.PseudoVal | -0.021 | -6.622 | -1.947 | 5.15e-02 | -0.022 | -7.085 | -4.814 | 1.48e-06 |
LDpred1.MultiPRS | LDpred2.Inf | 0.000 | -0.131 | -0.038 | 9.69e-01 | 0.001 | 0.225 | 0.194 | 8.46e-01 |
LDpred1.MultiPRS | DBSLMM.PseudoVal | -0.006 | -2.002 | -0.585 | 5.58e-01 | -0.004 | -1.280 | -0.595 | 5.52e-01 |
LDpred1.MultiPRS | MegaPRS.10FCVal | -0.028 | -8.723 | -2.569 | 1.02e-02 | -0.028 | -8.925 | -4.511 | 6.44e-06 |
LDpred1.MultiPRS | MegaPRS.MultiPRS | -0.030 | -9.445 | -3.340 | 8.38e-04 | -0.026 | -8.286 | -4.042 | 5.30e-05 |
LDpred1.MultiPRS | MegaPRS.PseudoVal | -0.019 | -5.973 | -1.753 | 7.97e-02 | -0.024 | -7.686 | -3.525 | 4.24e-04 |
LDpred1.MultiPRS | All.MultiPRS | -0.033 | -10.596 | -4.321 | 1.55e-05 | -0.026 | -8.450 | -3.922 | 8.78e-05 |
LDpred1.Inf | pT+clump.10FCVal | 0.020 | 6.390 | 4.004 | 6.23e-05 | 0.034 | 11.177 | 3.422 | 6.23e-04 |
LDpred1.Inf | pT+clump.MultiPRS | 0.012 | 3.894 | 1.116 | 2.65e-01 | 0.019 | 6.075 | 2.042 | 4.11e-02 |
LDpred1.Inf | lassosum.10FCVal | -0.018 | -5.875 | -5.136 | 2.81e-07 | -0.020 | -6.594 | -2.840 | 4.50e-03 |
LDpred1.Inf | lassosum.MultiPRS | -0.022 | -6.977 | -2.027 | 4.27e-02 | -0.024 | -7.714 | -3.345 | 8.24e-04 |
LDpred1.Inf | lassosum.PseudoVal | 0.026 | 8.349 | 3.949 | 7.85e-05 | 0.044 | 14.385 | 3.330 | 8.70e-04 |
LDpred1.Inf | SBLUP.Inf | -0.001 | -0.451 | -0.988 | 3.23e-01 | 0.000 | -0.055 | -0.058 | 9.54e-01 |
LDpred1.Inf | SBayesR.PseudoVal | -0.023 | -7.334 | -8.076 | 6.71e-16 | -0.027 | -8.776 | -4.726 | 2.29e-06 |
LDpred1.Inf | LDpred1.10FCVal | 0.007 | 2.188 | 3.373 | 7.43e-04 | 0.004 | 1.225 | 0.914 | 3.61e-01 |
LDpred1.Inf | LDpred1.MultiPRS | -0.004 | -1.299 | -0.373 | 7.09e-01 | -0.005 | -1.519 | -1.491 | 1.36e-01 |
LDpred1.Inf | LDpred1.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred1.Inf | LDpred2.10FCVal | -0.029 | -9.373 | -9.716 | 2.58e-22 | -0.025 | -8.055 | -4.048 | 5.16e-05 |
LDpred1.Inf | LDpred2.MultiPRS | -0.029 | -9.166 | -2.667 | 7.65e-03 | -0.028 | -9.085 | -4.812 | 1.50e-06 |
LDpred1.Inf | LDpred2.PseudoVal | -0.025 | -8.006 | -10.591 | 3.30e-26 | -0.027 | -8.712 | -5.591 | 2.26e-08 |
LDpred1.Inf | LDpred2.Inf | -0.004 | -1.432 | -3.330 | 8.70e-04 | -0.004 | -1.291 | -1.441 | 1.50e-01 |
LDpred1.Inf | DBSLMM.PseudoVal | -0.010 | -3.326 | -3.104 | 1.91e-03 | -0.009 | -2.819 | -1.270 | 2.04e-01 |
LDpred1.Inf | MegaPRS.10FCVal | -0.032 | -10.135 | -9.643 | 5.26e-22 | -0.033 | -10.580 | -4.939 | 7.86e-07 |
LDpred1.Inf | MegaPRS.MultiPRS | -0.034 | -10.866 | -3.150 | 1.63e-03 | -0.031 | -9.932 | -4.502 | 6.72e-06 |
LDpred1.Inf | MegaPRS.PseudoVal | -0.023 | -7.349 | -6.412 | 1.44e-10 | -0.029 | -9.323 | -4.009 | 6.10e-05 |
LDpred1.Inf | All.MultiPRS | -0.037 | -12.032 | -3.509 | 4.49e-04 | -0.031 | -10.098 | -4.219 | 2.45e-05 |
LDpred2.10FCVal | pT+clump.10FCVal | 0.049 | 14.412 | 10.291 | 7.78e-25 | 0.059 | 17.798 | 6.229 | 4.70e-10 |
LDpred2.10FCVal | pT+clump.MultiPRS | 0.041 | 12.130 | 3.835 | 1.26e-04 | 0.044 | 13.077 | 5.280 | 1.29e-07 |
LDpred2.10FCVal | lassosum.10FCVal | 0.011 | 3.198 | 4.461 | 8.15e-06 | 0.005 | 1.352 | 0.906 | 3.65e-01 |
LDpred2.10FCVal | lassosum.MultiPRS | 0.007 | 2.191 | 0.703 | 4.82e-01 | 0.001 | 0.316 | 0.221 | 8.25e-01 |
LDpred2.10FCVal | lassosum.PseudoVal | 0.055 | 16.204 | 10.658 | 1.60e-26 | 0.069 | 20.767 | 6.639 | 3.15e-11 |
LDpred2.10FCVal | SBLUP.Inf | 0.028 | 8.158 | 9.487 | 2.37e-21 | 0.025 | 7.404 | 4.184 | 2.86e-05 |
LDpred2.10FCVal | SBayesR.PseudoVal | 0.006 | 1.865 | 3.549 | 3.87e-04 | -0.002 | -0.667 | -0.618 | 5.36e-01 |
LDpred2.10FCVal | LDpred1.10FCVal | 0.036 | 10.570 | 11.011 | 3.38e-28 | 0.029 | 8.588 | 4.340 | 1.42e-05 |
LDpred2.10FCVal | LDpred1.MultiPRS | 0.025 | 7.383 | 2.349 | 1.88e-02 | 0.020 | 6.049 | 3.573 | 3.53e-04 |
LDpred2.10FCVal | LDpred1.Inf | 0.029 | 8.570 | 9.716 | 2.58e-22 | 0.025 | 7.455 | 4.048 | 5.16e-05 |
LDpred2.10FCVal | LDpred2.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.10FCVal | LDpred2.MultiPRS | 0.001 | 0.189 | 0.061 | 9.51e-01 | -0.003 | -0.953 | -2.138 | 3.25e-02 |
LDpred2.10FCVal | LDpred2.PseudoVal | 0.004 | 1.250 | 3.302 | 9.59e-04 | -0.002 | -0.608 | -0.772 | 4.40e-01 |
LDpred2.10FCVal | LDpred2.Inf | 0.025 | 7.261 | 8.982 | 2.66e-19 | 0.021 | 6.260 | 3.712 | 2.06e-04 |
LDpred2.10FCVal | DBSLMM.PseudoVal | 0.019 | 5.529 | 6.164 | 7.07e-10 | 0.016 | 4.846 | 2.598 | 9.38e-03 |
LDpred2.10FCVal | MegaPRS.10FCVal | -0.002 | -0.696 | -0.994 | 3.20e-01 | -0.008 | -2.336 | -1.622 | 1.05e-01 |
LDpred2.10FCVal | MegaPRS.MultiPRS | -0.005 | -1.364 | -0.439 | 6.61e-01 | -0.006 | -1.736 | -1.240 | 2.15e-01 |
LDpred2.10FCVal | MegaPRS.PseudoVal | 0.006 | 1.851 | 2.538 | 1.11e-02 | -0.004 | -1.173 | -0.790 | 4.30e-01 |
LDpred2.10FCVal | All.MultiPRS | -0.008 | -2.430 | -0.786 | 4.32e-01 | -0.006 | -1.891 | -1.333 | 1.83e-01 |
LDpred2.MultiPRS | pT+clump.10FCVal | 0.048 | 14.250 | 4.506 | 6.59e-06 | 0.063 | 18.574 | 6.589 | 4.43e-11 |
LDpred2.MultiPRS | pT+clump.MultiPRS | 0.041 | 11.964 | 3.796 | 1.47e-04 | 0.047 | 13.897 | 5.681 | 1.34e-08 |
LDpred2.MultiPRS | lassosum.10FCVal | 0.010 | 3.015 | 0.966 | 3.34e-01 | 0.008 | 2.283 | 1.525 | 1.27e-01 |
LDpred2.MultiPRS | lassosum.MultiPRS | 0.007 | 2.005 | 0.938 | 3.48e-01 | 0.004 | 1.256 | 0.881 | 3.78e-01 |
LDpred2.MultiPRS | lassosum.PseudoVal | 0.055 | 16.045 | 5.091 | 3.56e-07 | 0.072 | 21.515 | 6.930 | 4.21e-12 |
LDpred2.MultiPRS | SBLUP.Inf | 0.027 | 7.983 | 2.537 | 1.12e-02 | 0.028 | 8.277 | 5.003 | 5.65e-07 |
LDpred2.MultiPRS | SBayesR.PseudoVal | 0.006 | 1.679 | 0.539 | 5.90e-01 | 0.001 | 0.283 | 0.273 | 7.85e-01 |
LDpred2.MultiPRS | LDpred1.10FCVal | 0.035 | 10.401 | 3.297 | 9.76e-04 | 0.032 | 9.451 | 5.075 | 3.88e-07 |
LDpred2.MultiPRS | LDpred1.MultiPRS | 0.025 | 7.207 | 2.765 | 5.69e-03 | 0.023 | 6.935 | 4.366 | 1.26e-05 |
LDpred2.MultiPRS | LDpred1.Inf | 0.029 | 8.397 | 2.667 | 7.65e-03 | 0.028 | 8.328 | 4.812 | 1.50e-06 |
LDpred2.MultiPRS | LDpred2.10FCVal | -0.001 | -0.190 | -0.061 | 9.51e-01 | 0.003 | 0.944 | 2.138 | 3.25e-02 |
LDpred2.MultiPRS | LDpred2.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.MultiPRS | LDpred2.PseudoVal | 0.004 | 1.063 | 0.341 | 7.33e-01 | 0.001 | 0.342 | 0.480 | 6.31e-01 |
LDpred2.MultiPRS | LDpred2.Inf | 0.024 | 7.085 | 2.253 | 2.42e-02 | 0.024 | 7.145 | 4.591 | 4.41e-06 |
LDpred2.MultiPRS | DBSLMM.PseudoVal | 0.018 | 5.350 | 1.714 | 8.66e-02 | 0.019 | 5.744 | 3.268 | 1.08e-03 |
LDpred2.MultiPRS | MegaPRS.10FCVal | -0.003 | -0.887 | -0.285 | 7.75e-01 | -0.005 | -1.371 | -0.992 | 3.21e-01 |
LDpred2.MultiPRS | MegaPRS.MultiPRS | -0.005 | -1.557 | -0.611 | 5.41e-01 | -0.003 | -0.776 | -0.580 | 5.62e-01 |
LDpred2.MultiPRS | MegaPRS.PseudoVal | 0.006 | 1.665 | 0.534 | 5.94e-01 | -0.001 | -0.218 | -0.151 | 8.80e-01 |
LDpred2.MultiPRS | All.MultiPRS | -0.009 | -2.625 | -1.355 | 1.75e-01 | -0.003 | -0.929 | -0.707 | 4.80e-01 |
LDpred2.PseudoVal | pT+clump.10FCVal | 0.045 | 13.329 | 9.205 | 3.41e-20 | 0.061 | 18.295 | 6.294 | 3.09e-10 |
LDpred2.PseudoVal | pT+clump.MultiPRS | 0.037 | 11.018 | 3.437 | 5.88e-04 | 0.046 | 13.602 | 5.312 | 1.08e-07 |
LDpred2.PseudoVal | lassosum.10FCVal | 0.007 | 1.973 | 2.482 | 1.31e-02 | 0.007 | 1.948 | 1.208 | 2.27e-01 |
LDpred2.PseudoVal | lassosum.MultiPRS | 0.003 | 0.953 | 0.301 | 7.63e-01 | 0.003 | 0.918 | 0.572 | 5.67e-01 |
LDpred2.PseudoVal | lassosum.PseudoVal | 0.051 | 15.143 | 8.768 | 1.82e-18 | 0.071 | 21.246 | 6.086 | 1.15e-09 |
LDpred2.PseudoVal | SBLUP.Inf | 0.024 | 6.995 | 10.698 | 1.03e-26 | 0.027 | 7.963 | 6.058 | 1.37e-09 |
LDpred2.PseudoVal | SBayesR.PseudoVal | 0.002 | 0.623 | 1.096 | 2.73e-01 | 0.000 | -0.059 | -0.052 | 9.59e-01 |
LDpred2.PseudoVal | LDpred1.10FCVal | 0.032 | 9.438 | 11.647 | 2.36e-31 | 0.031 | 9.140 | 5.608 | 2.05e-08 |
LDpred2.PseudoVal | LDpred1.MultiPRS | 0.021 | 6.210 | 1.947 | 5.15e-02 | 0.022 | 6.616 | 4.814 | 1.48e-06 |
LDpred2.PseudoVal | LDpred1.Inf | 0.025 | 7.413 | 10.591 | 3.30e-26 | 0.027 | 8.014 | 5.591 | 2.26e-08 |
LDpred2.PseudoVal | LDpred2.10FCVal | -0.004 | -1.266 | -3.302 | 9.59e-04 | 0.002 | 0.604 | 0.772 | 4.40e-01 |
LDpred2.PseudoVal | LDpred2.MultiPRS | -0.004 | -1.074 | -0.341 | 7.33e-01 | -0.001 | -0.343 | -0.480 | 6.31e-01 |
LDpred2.PseudoVal | LDpred2.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.PseudoVal | LDpred2.Inf | 0.020 | 6.087 | 10.372 | 3.32e-25 | 0.023 | 6.826 | 5.722 | 1.05e-08 |
LDpred2.PseudoVal | DBSLMM.PseudoVal | 0.015 | 4.333 | 4.919 | 8.69e-07 | 0.018 | 5.420 | 3.014 | 2.58e-03 |
LDpred2.PseudoVal | MegaPRS.10FCVal | -0.007 | -1.971 | -2.769 | 5.62e-03 | -0.006 | -1.718 | -1.209 | 2.27e-01 |
LDpred2.PseudoVal | MegaPRS.MultiPRS | -0.009 | -2.648 | -0.839 | 4.02e-01 | -0.004 | -1.122 | -0.769 | 4.42e-01 |
LDpred2.PseudoVal | MegaPRS.PseudoVal | 0.002 | 0.609 | 0.763 | 4.45e-01 | -0.002 | -0.562 | -0.352 | 7.25e-01 |
LDpred2.PseudoVal | All.MultiPRS | -0.013 | -3.727 | -1.188 | 2.35e-01 | -0.004 | -1.275 | -0.834 | 4.04e-01 |
LDpred2.Inf | pT+clump.10FCVal | 0.024 | 7.711 | 4.851 | 1.23e-06 | 0.038 | 12.309 | 3.798 | 1.46e-04 |
LDpred2.Inf | pT+clump.MultiPRS | 0.017 | 5.251 | 1.528 | 1.26e-01 | 0.023 | 7.272 | 2.446 | 1.44e-02 |
LDpred2.Inf | lassosum.10FCVal | -0.014 | -4.381 | -3.989 | 6.63e-05 | -0.016 | -5.235 | -2.336 | 1.95e-02 |
LDpred2.Inf | lassosum.MultiPRS | -0.017 | -5.467 | -1.613 | 1.07e-01 | -0.020 | -6.341 | -2.836 | 4.57e-03 |
LDpred2.Inf | lassosum.PseudoVal | 0.030 | 9.643 | 4.611 | 4.02e-06 | 0.048 | 15.476 | 3.606 | 3.11e-04 |
LDpred2.Inf | SBLUP.Inf | 0.003 | 0.967 | 2.797 | 5.17e-03 | 0.004 | 1.220 | 1.728 | 8.40e-02 |
LDpred2.Inf | SBayesR.PseudoVal | -0.018 | -5.819 | -6.534 | 6.42e-11 | -0.023 | -7.389 | -4.064 | 4.82e-05 |
LDpred2.Inf | LDpred1.10FCVal | 0.011 | 3.569 | 5.495 | 3.92e-08 | 0.008 | 2.484 | 1.859 | 6.31e-02 |
LDpred2.Inf | LDpred1.MultiPRS | 0.000 | 0.131 | 0.038 | 9.69e-01 | -0.001 | -0.226 | -0.194 | 8.46e-01 |
LDpred2.Inf | LDpred1.Inf | 0.004 | 1.412 | 3.330 | 8.70e-04 | 0.004 | 1.275 | 1.441 | 1.50e-01 |
LDpred2.Inf | LDpred2.10FCVal | -0.025 | -7.830 | -8.982 | 2.66e-19 | -0.021 | -6.678 | -3.712 | 2.06e-04 |
LDpred2.Inf | LDpred2.MultiPRS | -0.024 | -7.625 | -2.253 | 2.42e-02 | -0.024 | -7.694 | -4.591 | 4.41e-06 |
LDpred2.Inf | LDpred2.PseudoVal | -0.020 | -6.482 | -10.372 | 3.32e-25 | -0.023 | -7.326 | -5.722 | 1.05e-08 |
LDpred2.Inf | LDpred2.Inf | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
LDpred2.Inf | DBSLMM.PseudoVal | -0.006 | -1.868 | -1.799 | 7.21e-02 | -0.005 | -1.509 | -0.701 | 4.83e-01 |
LDpred2.Inf | MegaPRS.10FCVal | -0.027 | -8.580 | -8.703 | 3.23e-18 | -0.029 | -9.171 | -4.576 | 4.74e-06 |
LDpred2.Inf | MegaPRS.MultiPRS | -0.029 | -9.301 | -2.740 | 6.15e-03 | -0.027 | -8.530 | -4.149 | 3.33e-05 |
LDpred2.Inf | MegaPRS.PseudoVal | -0.018 | -5.833 | -5.372 | 7.77e-08 | -0.025 | -7.929 | -3.592 | 3.28e-04 |
LDpred2.Inf | All.MultiPRS | -0.033 | -10.450 | -3.098 | 1.95e-03 | -0.027 | -8.695 | -3.867 | 1.10e-04 |
DBSLMM.PseudoVal | pT+clump.10FCVal | 0.030 | 9.404 | 5.998 | 2.00e-09 | 0.043 | 13.612 | 4.281 | 1.86e-05 |
DBSLMM.PseudoVal | pT+clump.MultiPRS | 0.023 | 6.988 | 2.075 | 3.80e-02 | 0.027 | 8.650 | 3.315 | 9.16e-04 |
DBSLMM.PseudoVal | lassosum.10FCVal | -0.008 | -2.467 | -2.289 | 2.21e-02 | -0.012 | -3.671 | -1.675 | 9.39e-02 |
DBSLMM.PseudoVal | lassosum.MultiPRS | -0.011 | -3.533 | -1.068 | 2.86e-01 | -0.015 | -4.761 | -2.405 | 1.62e-02 |
DBSLMM.PseudoVal | lassosum.PseudoVal | 0.036 | 11.300 | 6.885 | 5.78e-12 | 0.053 | 16.733 | 4.966 | 6.82e-07 |
DBSLMM.PseudoVal | SBLUP.Inf | 0.009 | 2.783 | 2.729 | 6.35e-03 | 0.009 | 2.688 | 1.278 | 2.01e-01 |
DBSLMM.PseudoVal | SBayesR.PseudoVal | -0.012 | -3.878 | -4.487 | 7.23e-06 | -0.018 | -5.793 | -3.267 | 1.09e-03 |
DBSLMM.PseudoVal | LDpred1.10FCVal | 0.017 | 5.337 | 4.702 | 2.57e-06 | 0.012 | 3.933 | 1.669 | 9.51e-02 |
DBSLMM.PseudoVal | LDpred1.MultiPRS | 0.006 | 1.963 | 0.585 | 5.58e-01 | 0.004 | 1.264 | 0.595 | 5.52e-01 |
DBSLMM.PseudoVal | LDpred1.Inf | 0.010 | 3.219 | 3.104 | 1.91e-03 | 0.009 | 2.742 | 1.270 | 2.04e-01 |
DBSLMM.PseudoVal | LDpred2.10FCVal | -0.019 | -5.852 | -6.164 | 7.07e-10 | -0.016 | -5.092 | -2.598 | 9.38e-03 |
DBSLMM.PseudoVal | LDpred2.MultiPRS | -0.018 | -5.652 | -1.714 | 8.66e-02 | -0.019 | -6.094 | -3.268 | 1.08e-03 |
DBSLMM.PseudoVal | LDpred2.PseudoVal | -0.015 | -4.529 | -4.919 | 8.69e-07 | -0.018 | -5.731 | -3.014 | 2.58e-03 |
DBSLMM.PseudoVal | LDpred2.Inf | 0.006 | 1.834 | 1.799 | 7.21e-02 | 0.005 | 1.486 | 0.701 | 4.83e-01 |
DBSLMM.PseudoVal | DBSLMM.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
DBSLMM.PseudoVal | MegaPRS.10FCVal | -0.021 | -6.589 | -6.536 | 6.30e-11 | -0.024 | -7.548 | -3.651 | 2.62e-04 |
DBSLMM.PseudoVal | MegaPRS.MultiPRS | -0.023 | -7.297 | -2.200 | 2.78e-02 | -0.022 | -6.917 | -3.321 | 8.96e-04 |
DBSLMM.PseudoVal | MegaPRS.PseudoVal | -0.013 | -3.893 | -3.570 | 3.57e-04 | -0.020 | -6.325 | -2.851 | 4.36e-03 |
DBSLMM.PseudoVal | All.MultiPRS | -0.027 | -8.425 | -2.556 | 1.06e-02 | -0.022 | -7.079 | -3.337 | 8.47e-04 |
MegaPRS.10FCVal | pT+clump.10FCVal | 0.052 | 15.004 | 10.446 | 1.52e-25 | 0.067 | 19.675 | 6.767 | 1.31e-11 |
MegaPRS.10FCVal | pT+clump.MultiPRS | 0.044 | 12.738 | 4.059 | 4.94e-05 | 0.051 | 15.062 | 5.937 | 2.90e-09 |
MegaPRS.10FCVal | lassosum.10FCVal | 0.013 | 3.868 | 4.424 | 9.67e-06 | 0.012 | 3.605 | 2.046 | 4.08e-02 |
MegaPRS.10FCVal | lassosum.MultiPRS | 0.010 | 2.867 | 0.927 | 3.54e-01 | 0.009 | 2.592 | 1.588 | 1.12e-01 |
MegaPRS.10FCVal | lassosum.PseudoVal | 0.058 | 16.783 | 10.868 | 1.64e-27 | 0.077 | 22.576 | 7.248 | 4.24e-13 |
MegaPRS.10FCVal | SBLUP.Inf | 0.030 | 8.793 | 9.432 | 4.01e-21 | 0.032 | 9.518 | 5.086 | 3.65e-07 |
MegaPRS.10FCVal | SBayesR.PseudoVal | 0.009 | 2.544 | 3.675 | 2.38e-04 | 0.006 | 1.632 | 1.173 | 2.41e-01 |
MegaPRS.10FCVal | LDpred1.10FCVal | 0.038 | 11.189 | 10.924 | 8.81e-28 | 0.036 | 10.675 | 5.196 | 2.04e-07 |
MegaPRS.10FCVal | LDpred1.MultiPRS | 0.028 | 8.023 | 2.569 | 1.02e-02 | 0.028 | 8.194 | 4.511 | 6.44e-06 |
MegaPRS.10FCVal | LDpred1.Inf | 0.032 | 9.202 | 9.643 | 5.26e-22 | 0.033 | 9.568 | 4.939 | 7.86e-07 |
MegaPRS.10FCVal | LDpred2.10FCVal | 0.002 | 0.691 | 0.994 | 3.20e-01 | 0.008 | 2.283 | 1.622 | 1.05e-01 |
MegaPRS.10FCVal | LDpred2.MultiPRS | 0.003 | 0.880 | 0.285 | 7.75e-01 | 0.005 | 1.352 | 0.992 | 3.21e-01 |
MegaPRS.10FCVal | LDpred2.PseudoVal | 0.007 | 1.933 | 2.769 | 5.62e-03 | 0.006 | 1.689 | 1.209 | 2.27e-01 |
MegaPRS.10FCVal | LDpred2.Inf | 0.027 | 7.902 | 8.703 | 3.23e-18 | 0.029 | 8.400 | 4.576 | 4.74e-06 |
MegaPRS.10FCVal | DBSLMM.PseudoVal | 0.021 | 6.182 | 6.536 | 6.30e-11 | 0.024 | 7.018 | 3.651 | 2.62e-04 |
MegaPRS.10FCVal | MegaPRS.10FCVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.10FCVal | MegaPRS.MultiPRS | -0.002 | -0.663 | -0.215 | 8.30e-01 | 0.002 | 0.586 | 0.880 | 3.79e-01 |
MegaPRS.10FCVal | MegaPRS.PseudoVal | 0.009 | 2.530 | 5.385 | 7.24e-08 | 0.004 | 1.137 | 1.205 | 2.28e-01 |
MegaPRS.10FCVal | All.MultiPRS | -0.006 | -1.722 | -0.561 | 5.75e-01 | 0.001 | 0.436 | 0.363 | 7.16e-01 |
MegaPRS.MultiPRS | pT+clump.10FCVal | 0.054 | 15.564 | 4.989 | 6.07e-07 | 0.065 | 19.201 | 6.776 | 1.23e-11 |
MegaPRS.MultiPRS | pT+clump.MultiPRS | 0.046 | 13.313 | 4.297 | 1.73e-05 | 0.049 | 14.561 | 5.865 | 4.50e-09 |
MegaPRS.MultiPRS | lassosum.10FCVal | 0.016 | 4.501 | 1.464 | 1.43e-01 | 0.010 | 3.036 | 1.819 | 6.90e-02 |
MegaPRS.MultiPRS | lassosum.MultiPRS | 0.012 | 3.507 | 1.145 | 2.52e-01 | 0.007 | 2.017 | 1.282 | 2.00e-01 |
MegaPRS.MultiPRS | lassosum.PseudoVal | 0.060 | 17.332 | 5.577 | 2.44e-08 | 0.075 | 22.120 | 7.183 | 6.81e-13 |
MegaPRS.MultiPRS | SBLUP.Inf | 0.032 | 9.394 | 3.022 | 2.51e-03 | 0.030 | 8.984 | 4.628 | 3.70e-06 |
MegaPRS.MultiPRS | SBayesR.PseudoVal | 0.011 | 3.186 | 1.036 | 3.00e-01 | 0.004 | 1.051 | 0.728 | 4.67e-01 |
MegaPRS.MultiPRS | LDpred1.10FCVal | 0.041 | 11.774 | 3.779 | 1.57e-04 | 0.034 | 10.148 | 4.770 | 1.84e-06 |
MegaPRS.MultiPRS | LDpred1.MultiPRS | 0.030 | 8.630 | 3.340 | 8.38e-04 | 0.026 | 7.652 | 4.042 | 5.30e-05 |
MegaPRS.MultiPRS | LDpred1.Inf | 0.034 | 9.801 | 3.150 | 1.63e-03 | 0.031 | 9.034 | 4.502 | 6.72e-06 |
MegaPRS.MultiPRS | LDpred2.10FCVal | 0.005 | 1.346 | 0.439 | 6.61e-01 | 0.006 | 1.707 | 1.240 | 2.15e-01 |
MegaPRS.MultiPRS | LDpred2.MultiPRS | 0.005 | 1.533 | 0.611 | 5.41e-01 | 0.003 | 0.770 | 0.580 | 5.62e-01 |
MegaPRS.MultiPRS | LDpred2.PseudoVal | 0.009 | 2.579 | 0.839 | 4.02e-01 | 0.004 | 1.109 | 0.769 | 4.42e-01 |
MegaPRS.MultiPRS | LDpred2.Inf | 0.029 | 8.509 | 2.740 | 6.15e-03 | 0.027 | 7.860 | 4.149 | 3.33e-05 |
MegaPRS.MultiPRS | DBSLMM.PseudoVal | 0.023 | 6.800 | 2.200 | 2.78e-02 | 0.022 | 6.470 | 3.321 | 8.96e-04 |
MegaPRS.MultiPRS | MegaPRS.10FCVal | 0.002 | 0.659 | 0.215 | 8.30e-01 | -0.002 | -0.590 | -0.880 | 3.79e-01 |
MegaPRS.MultiPRS | MegaPRS.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.MultiPRS | MegaPRS.PseudoVal | 0.011 | 3.172 | 1.032 | 3.02e-01 | 0.002 | 0.554 | 0.508 | 6.11e-01 |
MegaPRS.MultiPRS | All.MultiPRS | -0.004 | -1.052 | -0.426 | 6.70e-01 | -0.001 | -0.152 | -0.142 | 8.87e-01 |
MegaPRS.PseudoVal | pT+clump.10FCVal | 0.043 | 12.798 | 8.903 | 5.41e-19 | 0.063 | 18.751 | 6.591 | 4.35e-11 |
MegaPRS.PseudoVal | pT+clump.MultiPRS | 0.035 | 10.473 | 3.243 | 1.18e-03 | 0.048 | 14.085 | 5.463 | 4.68e-08 |
MegaPRS.PseudoVal | lassosum.10FCVal | 0.005 | 1.372 | 1.598 | 1.10e-01 | 0.008 | 2.496 | 1.477 | 1.40e-01 |
MegaPRS.PseudoVal | lassosum.MultiPRS | 0.001 | 0.346 | 0.109 | 9.13e-01 | 0.005 | 1.471 | 0.889 | 3.74e-01 |
MegaPRS.PseudoVal | lassosum.PseudoVal | 0.049 | 14.623 | 9.041 | 1.55e-19 | 0.073 | 21.686 | 6.776 | 1.23e-11 |
MegaPRS.PseudoVal | SBLUP.Inf | 0.021 | 6.425 | 6.131 | 8.72e-10 | 0.029 | 8.477 | 4.086 | 4.40e-05 |
MegaPRS.PseudoVal | SBayesR.PseudoVal | 0.000 | 0.014 | 0.018 | 9.86e-01 | 0.002 | 0.500 | 0.317 | 7.51e-01 |
MegaPRS.PseudoVal | LDpred1.10FCVal | 0.030 | 8.884 | 7.785 | 6.99e-15 | 0.033 | 9.648 | 4.284 | 1.84e-05 |
MegaPRS.PseudoVal | LDpred1.MultiPRS | 0.019 | 5.636 | 1.753 | 7.97e-02 | 0.024 | 7.138 | 3.525 | 4.24e-04 |
MegaPRS.PseudoVal | LDpred1.Inf | 0.023 | 6.846 | 6.412 | 1.44e-10 | 0.029 | 8.528 | 4.009 | 6.10e-05 |
MegaPRS.PseudoVal | LDpred2.10FCVal | -0.006 | -1.886 | -2.538 | 1.11e-02 | 0.004 | 1.159 | 0.790 | 4.30e-01 |
MegaPRS.PseudoVal | LDpred2.MultiPRS | -0.006 | -1.693 | -0.534 | 5.94e-01 | 0.001 | 0.218 | 0.151 | 8.80e-01 |
MegaPRS.PseudoVal | LDpred2.PseudoVal | -0.002 | -0.612 | -0.763 | 4.45e-01 | 0.002 | 0.558 | 0.352 | 7.25e-01 |
MegaPRS.PseudoVal | LDpred2.Inf | 0.018 | 5.512 | 5.372 | 7.77e-08 | 0.025 | 7.347 | 3.592 | 3.28e-04 |
MegaPRS.PseudoVal | DBSLMM.PseudoVal | 0.013 | 3.747 | 3.570 | 3.57e-04 | 0.020 | 5.949 | 2.851 | 4.36e-03 |
MegaPRS.PseudoVal | MegaPRS.10FCVal | -0.009 | -2.596 | -5.385 | 7.24e-08 | -0.004 | -1.150 | -1.205 | 2.28e-01 |
MegaPRS.PseudoVal | MegaPRS.MultiPRS | -0.011 | -3.276 | -1.032 | 3.02e-01 | -0.002 | -0.557 | -0.508 | 6.11e-01 |
MegaPRS.PseudoVal | MegaPRS.PseudoVal | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
MegaPRS.PseudoVal | All.MultiPRS | -0.015 | -4.362 | -1.380 | 1.68e-01 | -0.002 | -0.709 | -0.508 | 6.12e-01 |
All.MultiPRS | pT+clump.10FCVal | 0.057 | 16.443 | 5.341 | 9.24e-08 | 0.066 | 19.323 | 6.693 | 2.18e-11 |
All.MultiPRS | pT+clump.MultiPRS | 0.050 | 14.215 | 4.649 | 3.34e-06 | 0.050 | 14.690 | 5.736 | 9.68e-09 |
All.MultiPRS | lassosum.10FCVal | 0.019 | 5.495 | 1.814 | 6.97e-02 | 0.011 | 3.183 | 1.837 | 6.61e-02 |
All.MultiPRS | lassosum.MultiPRS | 0.016 | 4.512 | 1.782 | 7.47e-02 | 0.007 | 2.165 | 1.488 | 1.37e-01 |
All.MultiPRS | lassosum.PseudoVal | 0.064 | 18.192 | 5.937 | 2.91e-09 | 0.076 | 22.238 | 7.389 | 1.48e-13 |
All.MultiPRS | SBLUP.Inf | 0.036 | 10.337 | 3.381 | 7.22e-04 | 0.031 | 9.122 | 4.298 | 1.72e-05 |
All.MultiPRS | SBayesR.PseudoVal | 0.015 | 4.194 | 1.386 | 1.66e-01 | 0.004 | 1.201 | 0.778 | 4.37e-01 |
All.MultiPRS | LDpred1.10FCVal | 0.044 | 12.692 | 4.141 | 3.46e-05 | 0.035 | 10.284 | 4.486 | 7.27e-06 |
All.MultiPRS | LDpred1.MultiPRS | 0.033 | 9.580 | 4.321 | 1.55e-05 | 0.026 | 7.792 | 3.922 | 8.78e-05 |
All.MultiPRS | LDpred1.Inf | 0.037 | 10.740 | 3.509 | 4.49e-04 | 0.031 | 9.172 | 4.219 | 2.45e-05 |
All.MultiPRS | LDpred2.10FCVal | 0.008 | 2.373 | 0.786 | 4.32e-01 | 0.006 | 1.856 | 1.333 | 1.83e-01 |
All.MultiPRS | LDpred2.MultiPRS | 0.009 | 2.558 | 1.355 | 1.75e-01 | 0.003 | 0.921 | 0.707 | 4.80e-01 |
All.MultiPRS | LDpred2.PseudoVal | 0.013 | 3.593 | 1.188 | 2.35e-01 | 0.004 | 1.259 | 0.834 | 4.04e-01 |
All.MultiPRS | LDpred2.Inf | 0.033 | 9.462 | 3.098 | 1.95e-03 | 0.027 | 7.999 | 3.867 | 1.10e-04 |
All.MultiPRS | DBSLMM.PseudoVal | 0.027 | 7.770 | 2.556 | 1.06e-02 | 0.022 | 6.611 | 3.337 | 8.47e-04 |
All.MultiPRS | MegaPRS.10FCVal | 0.006 | 1.693 | 0.561 | 5.75e-01 | -0.001 | -0.438 | -0.363 | 7.16e-01 |
All.MultiPRS | MegaPRS.MultiPRS | 0.004 | 1.041 | 0.426 | 6.70e-01 | 0.001 | 0.151 | 0.142 | 8.87e-01 |
All.MultiPRS | MegaPRS.PseudoVal | 0.015 | 4.180 | 1.380 | 1.68e-01 | 0.002 | 0.704 | 0.508 | 6.12e-01 |
All.MultiPRS | All.MultiPRS | 0.000 | 0.000 | 0.000 | 1.00e+00 | 0.000 | 0.000 | 0.000 | 1.00e+00 |
Show benchmark results
LDAK’s MegaPRS performs very well and is fast to run. When using 10-fold cross validation (10FCVal) to identify the optimal MegaPRS parameters, MegaPRS achieves the highest average correlation with the phenotype in both UKB and TEDS when using either the 1KG Phase 3 EUR LD reference or UKB-based EUR LD reference. However, this improvement over the next best performing method (LDpred2) was small and not statistically significant.
Using MegaPRS’s pseudosummary approach to define the optimal MegaPRS parameters, equivalent to other pseudovalidation approaches, also performed very well, performing best compared to other pseudovalidation methods in UKB, though the improvement over the next best method PRScs was small and not statistically significant.
Re-evaluation of LDpred2’s runtime using the new compact SFMB format reduced compution time by ~65%, making it now faster than PRScs, but still slower than other polygenic scoring methods.