全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 九年级语文下册中考作文冲刺课|素材运用与立意
- 国家机构认知|职能区分 理解政治运行
- 七年级物理上册速度计算课|公式变形
- 《趣味学客户画像|让课堂告别枯燥 爱上学习》
- 《国家机构专项突破|直击考试高频考点》
- 环境科学与生物多样性综合测试题
- 电子电工基础与电路分析综合测试卷
- 营销员成果转化能力考核试卷含答案
- 车辆通行费收费员保密意识测试考核试卷含答案
- 标本保管员标准化知识考核试卷含答案
- 2026广西北海供电局项目资料员招聘20人备考题库(典优)附答案详解
- 成都十一中学2025初一入学语文分班考试真题含答案
- 2026年新疆昌吉回族自治州阜康市社区工作者招聘考试试卷-含答案解析
- 2026年广元市中考数学试卷
- 2026年全国出版专业职业资格考试(中级)真题题库(含答案)
- 2026年新闻记者职业资格考试真题及答案(北京)
- 麻醉重症监护病房(AICU)质量控制专家共识(2025版)解读
- 驾校安全绩效考核制度
- 产品品质管控体系快速构建指南
- 烟花爆竹经营单位主要负责人安全培训
- 挑战杯乡村旅游
评论
0/150
提交评论