GWAS:表型的标准化(the normalization of phenotype)

news/2024/11/22 6:27:52/

GWAS表型的标准化方法一般有Quantile normalization、Inverse rank normalization、Z-score normalization等。

各自区别如下:

一、Quantile normalization

该方法将每个样本中表型值进行排序,然后将其规范化到一个标准分布,通常是正态分布。规范化是通过将每个样本的分布等同于目标分布来完成的,使得同样比例的样本落在目标分布的每个值下方、上方或相等。这种方法确保了所有样本中表型的分布是一致的。
优点:可以消除由于偏斜导致的数据极端值和异常值的影响,而且对小批量数据的处理效果比较好。

使用该方法进行表型标准化的文章有:

1. Genome-wide association studies of brain imaging phenotypes in UK Biobank[J]. Nature, 2018, 562(7726): 210-216.

To ameliorate this, we quantile-normalized each of the image-derived phenotypes (IDPs) before association testing. This transformation also helped to avoid undue influence of outlier values.
https://www.nature.com/articles/s41586-018-0571-7

2. A multiple-phenotype imputation method for genetic studies[J]. Nature genetics, 2016, 48(4): 466-472.

Traits were mean and variance standardized and quantile normalized before analysis.
https://www.nature.com/articles/ng.3513

3. Components of genetic associations across 2,138 phenotypes in the UK Biobank highlight adipocyte biology[J]. Nature communications, 2019, 10(1): 4064.

We applied quantile normalization for phenotype (–pheno-quantile-normalize option), where we fit a linear model with covariates and transform the phenotypes to normal distribution N(0,1).
https://www.nature.com/articles/s41467-019-11953-9

二、Inverse rank normalization

一种将数据转换为正态分布的方法。该方法按照数据的大小对其进行排序,并将它们转换为百分位(即在所有数据中占据的位置百分比),并使用累积分布函数将这些百分位值转换为标准正态分布中的z分数。因此,排名越靠前的数据将被映射到较大的正态分布的值,排名越靠后的数据将被映射到较小的正态分布的值。这种方法适用于数据集中有许多离群值或非正态分布时,它可以将数据的分布形态转化为近似正态分布,方便后续的统计分析。

使用该方法进行表型标准化的文章有:

Association analyses of 249,796 individuals reveal 18 new loci associated with body mass index[J]. Nature genetics, 2010, 42(11): 937-948.

BMI was adjusted for age, age2 and other appropriate covariates (for example, principal components) and inverse normally transformed to a mean of 0 and a standard deviation of 1.
https://www.nature.com/articles/ng.686

三、Z-score normalization

该方法是通过计算每个样本的Z-score来标准化所有样本中观察到的表型值。Z-score 测量了一个特定样本的表型与所有样本的均值表型值相差多少个标准差。这种方法允许比较不同单位或量表的表型。

使用该方法进行表型标准化的文章有:

A genome-wide association study in 19 633 Japanese subjects identified LHX3-QSOX2 and IGF1 as adult height loci[J]. Human molecular genetics, 2010, 19(11): 2303-2312.

The scores were then normalized as Z scores. The effects of the Z scores on height were evaluated using the multivariate linear regression model incorporating height as a dependent variable and the Z scores, gender and age as the independent variables, using R statistical software. Differences in height between the subjects with low Z scores (less than or equal to −2) and high Z scores (≥2) were obtained by comparing the means of the non-adjusted height between subject groups.
https://academic.oup.com/hmg/article-abstract/19/11/2303/579594

总结

Quantile normalization 适用于偏态分布或异常值较多的情况, Inverse rank normalization 在样本量较小时具有更高的准确性,Z-score 适用于具有不同单位或量表的表型,允许比较不同单位或量表的表型。
从我查阅的文献来看,在GWAS中,使用Quantile normalization进行连续型表型标准化的比较多。


致谢橙子牛奶糖(陈文燕),请用参考模版:We thank the blogger (orange_milk_sugar, Wenyan Chen) for XXX

感谢小可爱们多年来的陪伴, 我与你们一起成长~


http://www.ppmy.cn/news/489719.html

相关文章

哈工大计算机网络课程网络层协议之:网络层服务概述

哈工大计算机网络课程网络层协议之:网络层服务概述 文章目录 哈工大计算机网络课程网络层协议之:网络层服务概述网络层概述网络层核心功能—转发与路由网络层核心功能—连接建立网络层服务模型虚电路网络与数据报网络虚电路网络虚电路(VC)的具体实现VC转…

SpringBoot:快速构建高效Web应用程序的利器!

SpringBoot的设计思想和装配原理 SpringBoot是针对Spring框架的一种快速应用程序开发框架,其设计思想和装配原理都值得我们深入学习和理解。 设计思想 SpringBoot框架的设计思想可以概括为以下几点: 约定优于配置:SpringBoot提供了默认的…

信号与系统-傅里叶级数

导引 傅里叶级数是用来求解热传导方程提出来的,热传导方程 f ( x , t ) f(x,t) f(x,t)满足以下偏微分方程 { ∂ f ∂ t K ∂ 2 f ∂ x 2 f ( x , 0 ) f ( x ) \left \{ \begin{array}{c} \frac{\partial f}{\partial t} K \frac{\partial ^2f}{\partial x^2}\\ f…

OCR技术

目录 一、智能文字识别一般包含以下几个过程 二、物理版面版面分析 物理版面版面分析是OCR系统中的一个重要步骤,它可以将文档中的文字、图片等元素分离出来,为后续的字符切割和识别提供依据。物理版面版面分析通常包括以下步骤: 三、逻辑…

5. 第五部分:高级浏览器特性和APIs

5.1 DOM操作和事件处理 DOM操作(Document Object Model)是一种用于访问和操作HTML和XML文档的编程接口。通过DOM操作,您可以使用脚本语言(如JavaScript)动态地改变网页的内容、结构和样式。 以下是一些常见的DOM操作…

电脑外接显示器 串流 副屏 无线外接显示器 spacedesk

电脑外接显示器 串流 副屏 无线外接显示器 spacedesk https://www.spacedesk.net/zh/#download win7及以上 spacedesk 无线远程显示 玩游戏 moonlight和steamlink moonlight需要N卡 x650以上

LCD 硬件原理(TN,STN,TFT之间的差别)

LCD 是 Liquid Crystal Display 的简称,即液晶显示器,依据驱动方式可分为静态驱动、简单矩阵驱动以及主动矩阵驱动 3 种。其中,简单矩阵型又可再细分扭转向列型(TN)和超扭转式向列型(STN)两种&a…

TN屏的工作电压跟偏压的关系

正常情况下LCD液晶屏常规的的工作电压是3V、3.3V和5V,如果您现在想做款TN屏,但是需要电池供电的情况下,众所周知,电池刚开始用的时候是满的,用了一阶段后,电池电量就会减少,您可能第一个反应的是液晶屏的电…