全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148/* Copyright (c) 2009 The Broad Institute* Permission is hereby granted, free of charge, to any person* obtaining a copy of this software and associated documentation* files (the Software), to deal in the Software without* restriction, including without limitation the rights to use,* copy, modify, merge, publish, distribute, sublicense, and/or sell* copies of the Software, and to permit persons to whom the* Software is furnished to do so, subject to the following* conditions:* The above copyright notice and this permission notice shall be* included in all copies or substantial portions of the Software.* THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR* OTHER DEALINGS IN THE SOFTWARE.*/package org.broad.tribble.util.popgen;/* The Broad Institute* SOFTWARE COPYRIGHT NOTICE AGREEMENT* This software and its documentation are copyright 2004 by the* Broad Institute/Massachusetts Institute of Technology. All rights are reserved.* This software is supplied without any warranty or guaranteed support whatsoever. Neither* the Broad Institute nor MIT can be responsible for its use, misuse, or functionality.*/* This class calculates a HardyWeinberg p-value given three values representing* the observed frequences of homozygous and heterozygous genotypes in the* test population.* author Bob Handsaker*/public final class HardyWeinbergCalculation /* * This class is not instantiable. */ private HardyWeinbergCalculation() /* * Calculates exact two-sided hardy-weinberg p-value. Parameters * are number of genotypes, number of rare alleles observed and * number of heterozygotes observed. * * (c) 2003 Jan Wigginton, Goncalo Abecasis () */ public static double hwCalculate(int obsAA, int obsAB, int obsBB) int diplotypes = obsAA + obsAB + obsBB; int rare = (obsAA * 2) + obsAB; int hets = obsAB; /make sure rare allele is really the rare allele if (rare diplotypes) rare = (2 * diplotypes) - rare; /make sure numbers arent screwy if (hets rare) return -1; double tailProbs = new doublerare + 1; for (int z = 0; z 1; het -= 2) tailProbshet - 2 = (tailProbshet * het * (het - 1.0) / (4.0 * (hom_r + 1.0) * (hom_c + 1.0); sum += tailProbshet - 2; /2 fewer hets for next iteration - add one rare and one common homozygote hom_r+; hom_c+; het = mid; hom_r = (rare - mid) / 2; hom_c = diplotypes - het - hom_r; for (het = mid; het subtract one rare and one common homozygote hom_r-; hom_c-; for (int z = 0; z tailProbs.length; z+) tailProbsz /= sum; double top = tailPr
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 【正版授权】 IEC 61754-37:2025 FR Fibre optic interconnecting devices and passive components - Fibre optic connector interfaces - Part 37: Type MDC connector family
- 【正版授权】 ISO 31657-2:2025 EN Plain bearings - Hydrodynamic plain journal bearings under steady-state conditions - Part 2: Characteristic values for calculation of multilobed journal
- 四川省德阳市2025-2026学年高二上学期11月期中考试数学试卷
- 2025-2026学年度福建省莆田第十五中学高二上学期期中考试(文科组合班)历史试题(含答案)
- 2025年药店门店管理试卷及答案
- 2025年度XX公司党委理论学习中心组学习总结报告
- 2025年职业选词测试题目及答案
- 重伤抢救应急预案(3篇)
- 商洛公务员考试题及答案
- 反应力挑战测试题及答案
- 智能消防水炮试题题库及答案
- 汽车行业发展概况及趋势
- 室内卧室门定制合同协议
- 工业机器人的行业应用
- 农村个人租地合同样本
- YS/T 3045-2022埋管滴淋堆浸提金技术规范
- 土地整治项目验收手册
- 2024-2025学年教科版(广州)英语六年级上册期末试题2
- 《电梯知识培训演示》课件
- 冲压车间安全培训
- 肝血吸虫病超声
评论
0/150
提交评论