Affine Gap Alignment (y’know, the one with σ and ε)

Slides:



Advertisements
Similar presentations
Normal Distribution 2 To be able to transform a normal distribution into Z and use tables To be able to use normal tables to find and To use the normal.
Advertisements

Grammar types There are 4 types of grammars according to the types of rules: – General grammars – Context Sensitive grammars – Context Free grammars –
Create the cover page by inserting clip art, WordArt, and text. Triple-click and enter your name here. Do not press the delete key! Triple-click and enter.
 Replace the text in all the text boxes and enter your own information.  To do this, triple- click on the existing text and simply start typing.  Do.
Global Alignment: Dynamic Progamming Table s 1 : acagagtaac s 2 : acaagtgatc -acaagtgatc - a c a g a g t a a c j s2s2 i s1s1 Scores: match=1, mismatch=-1,
Dynamic Programming. Pairwise Alignment Needleman - Wunsch Global Alignment Smith - Waterman Local Alignment.
1 times table 2 times table 3 times table 4 times table 5 times table
Sequence Alignment.
Space-Efficient Sequence Alignment Space-Efficient Sequence Alignment Bioinformatics 202 University of California, San Diego Lecture Notes No. 7 Dr. Pavel.
Chapter 12 B+ Trees CS 157B Spring 2003 By: Miriam Sy.
If a = b, then a + c = b + c or Given a = b and c = c
Lecture 15 Algorithm Analysis
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
A: A: double “4” A: “34” 4.
Tables Learning Support
Exponent Guy. An antique coin appreciates in value the older it gets. The following data shows that the value of a certain coin for every year since it.
第 8 章 PowerPoint 2003 的使用 1 PowerPoint 2003 窗口简介 2 PowerPoint 2003 演示文稿的创建与放映 3 幻灯片的基本操作.
Rabin & Karp Algorithm. Rabin-Karp – the idea Compare a string's hash values, rather than the strings themselves. For efficiency, the hash value of the.
Title with Picture Layout
Piecewise linear gap alignment.
Translations Section 9-2.
AP Java Unit 3 Strings & Arrays.
Data Searching and Sorting algorithms
While Japan supports this idea basically,
Biconditional - 2 CS-708.
Experiment 2 Finding density of an object
Table Amortized cost: $3 Insert 5 Actual cost: $1.
Design a Relational Database Identify Database Purpose
Nondeterministic Finite Automata
Times Tables.
Insert Title here- Keep the Title Concise
Array List Pepper.
CS223 Advanced Data Structures and Algorithms
Affine Gap Alignment Marcus Bamberger.
Chapter Six Normal Distributions.
String matching.
Dynamic Programming Computation of Edit Distance
Algebra Forming Expressions.
Terms used in Multiplication
Kinetic vs Potential Energy
Insert picture of item #1 here.
Lecture 14 Algorithm Analysis
Affine Gap Alignment - An improved global alignment
Insert Title Here Keep it Concise
Affine gaps for sequence alignment
[Hospital/Facility Name/Logo]
SELF REFLECTION & SELF EXPLORATION
Title with Pictures Layout
CS223 Advanced Data Structures and Algorithms
Title With Pictures layout
CS148 Introduction to Programming II
A T C.
Monday, March 7, 2016 Your objective:
Determining the Function Obtained from a Series of Transformations.
1.1 Summation.
Updating Databases With Open SQL
Fifth Grade Electronic Portfolio
6.2 Use Normal Distributions
PPR 3 MOTION Name here.
MS PowerPoint.
3 times tables.
6 times tables.
Is it proportional? We will look at some equations, graphs and tables and you will decide if the relationship is proportional. Tell why or why not. If.
Insert a picture of yourself and your name blinkie
Objective: Learn to use a table to find equivalent ratios and rates.
1. Why Marketing Research?
Sequence Analysis Alan Christoffels
Squares and Square Roots
Updating Databases With Open SQL
Scenario Analysis Table
Presentation transcript:

Affine Gap Alignment (y’know, the one with σ and ε)

Why? Realism Control Readability Consider: String 1: ACCCCCCCCCA String 2: ATCCTA Why?

What changes could transform string 1 into string 2? Scenario 1: Insert Ts Delete Cs String 1: ACCCCCCCCCA String 2: ATCCTA

What changes could transform string 1 into string 2? Scenario 2: Transform Cs to Ts Delete Cs String 1: ACCCCCCCCCA String 2: ATCCTA

What changes could transform string 1 into string 2? String 1: ACCCCCCCCCA String 2: ATCCTA Scenario 3: All Cs are deleted TCCT is inserted

All gaps created equal <—

-σ = - 1 -ε = - 1 Which scenario does this reflect?

Some gaps more equal than others <—

-σ = - 2 -ε = - 1 Which Scenario does this reflect?

How though? Six tables Initial middle Triple loop Backtrack as [source table, direction] How though?

HAGS