



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025甘肃平凉市崆峒区零工市场招聘公益性岗位考前自测高频考点模拟试题及一套答案详解
- 2025年国网河南省电力公司子公司18家单位招聘高校毕业生180人(第三批)考前自测高频考点模拟试题及一套参考答案详解
- 2025年淮南寿县安徽寿州控股集团有限公司人才引进10人考前自测高频考点模拟试题附答案详解(黄金题型)
- 2025年湖南长沙市望城区公开招聘事业单位工作人员31人模拟试卷及参考答案详解
- 安全培训教室配备标准课件
- 安全培训教室规划课件
- 2025昆明市第三人民医院重症医学科见习护理人员招聘(7人)考前自测高频考点模拟试题完整参考答案详解
- 广播电视导论课件
- 安全培训教学内容重点课件
- 广播操七彩阳光课件
- 2024土建工程承包合同范
- 2019译林版高中英语全七册单词总表
- 中国近代史课件
- 2022年军队文职考试《数学1》真题-1
- 小学道德与法治-主动拒绝烟酒与毒品(第一课时)教学设计学情分析教材分析课后反思
- 五上3-2《用水计量时间》课件
- 常用截面惯性矩与截面系数的计算
- 供应商黑名单管理办法
- 单人心肺复苏技术操作考核评分标准
- 初一英语英语语法总结课件
- 酸碱平衡紊乱模型的复制和解救课件
评论
0/150
提交评论