gpt4 book ai didi

python - 通过超几何分析对 p 值进行 Bonferroni 校正

转载 作者:太空宇宙 更新时间:2023-11-04 08:00:14 29 4
gpt4 key购买 nike

我进行了超几何分析(使用 Python 脚本)来研究 GO-terms 在基因子集中的富集。我的输出示例如下:

GO00001 1500    300 200 150 5.39198144708e-77
GO00002 1500 500 400 350 1.18917839281e-160
GO00003 1500 400 350 320 9.48402847878e-209
GO00004 1500 100 100 75 3.82935778527e-82
GO00005 1500 100 80 80 2.67977253966e-114

在哪里

Column1 = GO ID
Column2 = Total sum of all terms in the original dataset
Column3 = Total sum of [Column 1] IDs in the original dataset
Column4 = Sum of all terms in the subset
Column5 = Sum of [Column 1] IDs in subset
Column6 = pvalue derived from hypergeometric test

我知道我必须将实验次数乘以 pvalue,但我不确定如何使用我拥有的数据执行此操作。我是从子集计算还是从原始数据集和子集的组合计算?例如,它会是:

Column2 * Column5 * pvalue
Column3 * Column5 * pvalue
Column4 * Column5 * pvalue

如果这看起来像是一个愚蠢的问题,我深表歉意,但我似乎无法理解它。非常感谢!

最佳答案

from statsmodels.sandbox.stats.multicomp import multipletests
p_adjusted = multipletests(Column6, method='bonferroni')

还是我遗漏了什么?..

关于python - 通过超几何分析对 p 值进行 Bonferroni 校正,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41517159/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com