- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
BNFO 602Lecture 2.ppt
BNFO 602Lecture 2 Usman Roshan Sequence Alignment Widely used in bioinformatics Proteins and genes are of different lengths due to error in sequencing and genetic variation across species Involves identifying evolutionary events: insertions, deletions, and substitutions Goal is to “align” sequences such that number of mutations is minimized DNA Sequence Evolution Sequence alignments They tell us about Function or activity of a new gene/protein Structure or shape of a new protein Location or preferred location of a protein Stability of a gene or protein Origin of a gene or protein Origin or phylogeny of an organelle Origin or phylogeny of an organism And more… Pairwise alignment X: ACA, Y: GACAT Match=8, mismatch=2, gap-5 ACA-- -ACA- --ACA ACA---- GACAT GACAT GACAT G--ACAT 8+2+2-5-5 -5+8+8+8-5 -5-5+2+2+2 2-5-5-5-5-5-5 Score = 2 14 -4 -28 Optimal alignment An alignment can be specified by the traceback matrix. How do we determine the traceback for the highest scoring alignment? Needleman-Wunsch algorithm for global alignment First proposed in 1970 Widely used in genomics/bioinformatics Dynamic programming algorithm Needleman-Wunsch Input: X = x1x2…xn, Y=y1y2…ym (X is seq2 and Y is seq1) Define V to be a two dimensional matrix with len(X)+1 rows and len(Y)+1 columns Let V[i][j] be the score of the optimal alignment of X1…i and Y1…j. Let m be the match cost, mm be mismatch, and g be the gap cost. Dynamic programming Initialization: for i = 1 to len(seq2) { V[i][0] = i*g; } For i = 1 to len(seq1) { V[0][i] = i*g; } Recurrence: for i = 1 to len(seq2){ for j = 1 to len(seq1){ V[i-1][j-1] + m(or mm) V[i][j] = max { V[i-1][j] + g V[i][j-1] + g if(maximum is V[i-1][j-1] + m(or mm)) then T[i][j] = ‘D’ else if (maximum is V[i-1][j] + g) then T[i][j] = ‘U’ else then T[i][j] = ‘L’ } } Example Input: seq2: ACA seq1: GACAT m = 5 mm = -4 gap = -20 seq2 is lined along the rows and seq2 is along the columns Affine gap penalties Affine g
您可能关注的文档
- An English Song.ppt
- An English-Speaking World.ppt
- An inference engine for the semantic web.ppt
- An Interactive Food Web Display.ppt
- An Introduction to English Linguistics.ppt
- An Introduction to Logistic Regression.ppt
- An Overview of Lesson Study.ppt
- An Overview of the Meat Industry.ppt
- Anaerobic Culture Techniques.ppt
- Analog-to-Digital Conversion.ppt
- 7.2践行平等课件(共35张PPT)-2025-2026学年统编版道德与法治八年级上册.pptx
- 4.4.2 单个一次函数图象的实际应用 课件(第2课时)(19张PPT) 北师大版数学八年级上册.pptx
- 14.3 角的平分线 第1课时 课件(22张PPT)初中数学 人教版(2024)八年级上册.pptx
- 2.1.2 第2课时 有理数的加减混合运算(共21张PPT) 课件2025-2026学年人教版数学七年级上册.pptx
- 2.2.2 有理数的除法 第1课时课件(共22张PPT)2025-2026学年人教版数学七年级上册.pptx
- 14.2 第3课时 “边边边” 习题课件 2025-2026学年数学人教版(2024)八年级上册.ppt
- 6.1树立法治观念课件(共40张PPT)-2025-2026学年统编版道德与法治八年级上册.pptx
- 14.2 课时1 用“SAS”判定三角形全等 课件(共32张PPT)2025-2026学年数学人教版八年级上册.pptx
- 4.1 维护秩序靠规则 课件(29张幻灯片)+内嵌视频-2025-2026学年统编版道德与法治八年级上册.pptx
- 6.1 树立法治观念 课件(共29张PPT)+内嵌视频-2025-2026学年统编版道德与法治八年级上册.pptx
最近下载
- 给排水管网施工的方案.doc VIP
- 铁路营业线插入道岔施工安全技术要点概述.ppt VIP
- PCS-931GM(M)超高压线路成套保护装置技术和使用说明书-国网标准化版.doc VIP
- 汽车航空质量手册、程序文件、表单全套IATF16949-AS9100D-2016版.docx VIP
- 【北京版】五年级上册数学单元测试-1.小数乘法(含答案).docx VIP
- TSZSA 024.1-2019全光谱技术要求.docx VIP
- 中国铁路总公司《铁路技术管理规程》(高速铁路部分).pdf
- 2025年法官入额考试真题及答案.docx VIP
- 《电子信息系统机房设计规范》gb-50174-正规版.doc VIP
- 情境教学法在小学低年级古诗教学中的应用研究.docx VIP
文档评论(0)