• 검색 결과가 없습니다.

G lo b a l A lig n m e n t

N/A
N/A
Protected

Academic year: 2021

Share "G lo b a l A lig n m e n t"

Copied!
35
0
0

로드 중.... (전체 텍스트 보기)

전체 글

(1)

P a ir w is e S e q u e n c e A lig n m e n t

(2)

O u tl in e



In tr o d u c ti o n



G lo b a l A lig n m e n t

The Basic Algorithm 

L o c a l A lig n m e n t



S e m ig lo b a l A lig n m e n t

(3)

In tr o d u c ti o n



S e q u e n c e s im ila ri ty i s a n i n d ic a to r o f h o m o lo g y



T h e re a re o th e r u s e s f o r s e q u e n c e



T h e re a re o th e r u s e s f o r s e q u e n c e s im ila ri ty



D a ta b a s e q u e ri e s



C o m p a ra ti v e g e n o m ic s



(4)

In tr o d u c ti o n



E x a m p le :

GACGGATTAG GATCGGAATAG

GA-CGGATTAG GATCGGAATAG GA-CGGA-TTAG9*1 + 3*(-2) = 3

9*1 -2 -1= 6 

S c o ri n g

Match +1 mismatch -1 Gap penalty -2

GA-CGGA-TTAG GATCGGAA-TAG

(5)

In tr o d u c ti o n



T h e s e q u e n c e s m a y h a v e d if fe re n t s iz e s .



W e d e fi n e a n a lig n m e n t a s t h e i n s e rt io n o f s p a c e s in a rb it ra ry l o c a ti o n s a lo n g t h e s p a c e s in a rb it ra ry l o c a ti o n s a lo n g t h e s e q u e n c e s s o t h a t th e y e n d u p w it h t h e s a m e s iz e .



In g e n e ra l , th e re m a y b e m a n y a lig n m e n ts w it h m a x im u m s c o re .

(6)

D if fe re n t a lig n m e n t



G lo b a l A lig n m e n t



L o c a l A lig n m e n t



L o c a l A lig n m e n t



S e m ig lo b a l A lig n m e n t

(7)

G lo b a l A lig n m e n t



U s in g D y n a m ic P ro g ra m m in g

Reuses the results of previous computations 

E x a m p le ( tw o s e q u e n c e x , y ):



E x a m p le ( tw o s e q u e n c e x , y ): x : A G C y : A A A C



S c o ri n g f u n c ti o n :



M a tc h + 1



m is m a tc h - 1



G a p p e n a lt y - 2

(8)

G lo b a l A lig n m e n t - A A A C

yjStep 1 : forming a matrix F(i,j)

- 0 -2 -4 -6 -8 A -2 G -4 C -6

xi

(9)

G lo b a l A lig n m e n t

F(i-1,j-1)F(i-1,j) Move ahead in both

x ialigned to gap F(i,j-1)F(i,j)

match(x i,y j)gap penalty gap penalty y jaligned to gap While building the table, keep track of where optimal score came from, reverse arrows

(10)

G lo b a l A lig n m e n t F (i -1 ,j -1 ) + m a tc h (x

i

,y

j

)



F ( i , j ) = m a x o f F (i -1 ,j ) + g a p p e n a lt y F (i ,j -1 ) + g a p p e n a lt y F (i ,j -1 ) + g a p p e n a lt y

(11)

G lo b a l A lig n m e n t

Seq1:AAAC Seq2:AGC

- A A A C - 0 -2 -4 -6 -8

A

- 0 -2 -4 -6 -8 A -2 G -4 C -6

A - A- -A- A -A A-

A A

(12)

G lo b a l A lig n m e n t

-AAAC

yj F(1,1) : : 0 + 1 = 1 : -2 + (-2) = -4 : -2 + (-2) = -4 -0-2-4-6-8 A-2 G-4 C-6

xi

: -2 + (-2) = -4

1

(13)

G lo b a l A lig n m e n t

-AAAC

yj F(1,2) : : -2 + 1 = -1 : -4 + (-2) = -6 : 1 + (-2) = -1 -0-2-4-6-8 A-21 G-4 C-6

xi

: 1 + (-2) = -1

-1

(14)

G lo b a l A lig n m e n t

-AAAC

yj -0-2-4-6-8 A-21-1-3-5 G-4-10-2-4 C-6-3-2-1-1

xi

(15)

G lo b a l A lig n m e n t

-AAAC

yjStep 2 : trace back Aligned Sequences : X :CGA- -0-2-4-6-8 A-21-1-3-5 G-4-10-2-4 C-6-3-2-1-1

xi

X : Y :C CG AA AA

-

(16)

G lo b a l A lig n m e n t

-AAAC

yjStep 2 : trace back Aligned Sequences : X :C-GA -0-2-4-6-8 A-21-1-3-5 G-4-10-2-4 C-6-3-2-1-1

xi

X : Y :C C

- AG AAA

(17)

G lo b a l A lig n m e n t



A rr o w p re fe re n c e b y



F o r in s ta n c e , w h e n a lig n in g x = A T A T w it h y = T A T A , w e g e t

ATAT

ra th e r th a n

ATAT TATATATA

(18)

G lo b a l A lig n m e n t



S u m m a ry



U s e s r e c u rs io n t o f ill i n i n te rm e d ia te re s u lt s t a b le re s u lt s t a b le



U s e s O (n m ) s p a c e a n d t im e

O(n2 ) algorithm Feasible for moderate sized sequences, but not for aligning whole genomes.

(19)

L o c a l A lig n m e n t



A l o c a l a lig n m e n t b e tw e e n x a n d y i s a n a lig n m e n t b e tw e e n a s u b s tr in g o f x a n d a s u b s tr in g o f y . 00 F (i -1 ,j -1 ) + m a tc h (x

i

,y

j

)



F ( i , j ) = m a x o f F (i -1 ,j ) + g a p p e n a lt y F (i ,j -1 ) + g a p p e n a lt y

(20)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A0 G0G0 A0 C0 G0 T0 C0

(21)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(22)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(23)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(24)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(25)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(26)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000

Local alignment : G A A G T G A C G T G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(27)

L o c a l A lig n m e n t

-CGAAGTTG -000000000 A000110000 G001002001 A000210100 C010010000 G002002001 T000100310 C010000120

(28)

S e m ig lo b a l A lig n m e n t



w e s c o re a lig n m e n ts i g n o ri n g s o m e o f th e e n d g a p s in t h e s e q u e n c e s .

Example:

C A G C A - C T T G G A T T C T C G G C A G C A - C T T G G A T T C T C G G - - - C A G C C T G G - - - - - - - -

Observe that this is not the best alignment. Below we present another alignment with a higher score(-12 against -19).

C A G C A C T T G G A T T C T C G G C A G C – – – – – G – T - – – – G G

(29)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2G-2 A-4 C-6 G-8

(30)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2-11-1-11-1-11G-2-11-1-11-1-11 A-4-3-120-10-2-1 C-6-3-301-1-2-1-3 G-8-5-2-2-12-2-30

(31)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2-11-1-11-1-11G-2-11-1-11-1-11 A-4-3-120-10-2-1 C-6-3-301-1-2-1-3 G-8-5-2-2-12-2-30

(32)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2-11-1-11-1-11G-2-11-1-11-1-11 A-4-3-120-10-2-1 C-6-3-301-1-2-1-3 G-8-5-2-2-12-2-30

(33)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2-11-1-11-1-11G-2-11-1-11-1-11 A-4-3-120-10-2-1 C-6-3-301-1-2-1-3 G-8-5-2-2-12-2-30

(34)

S e m ig lo b a l A lig n m e n t

-CGAAGTTG -000000000 G-2-11-1-11-1-11G-2-11-1-11-1-11 A-4-3-120-10-2-1 C-6-3-301-1-2-1-3 G-8-5-2-2-12-2-30 CGAAGTTG -GACG---

(35)

S u m m a ry



G lo b a l A lig n m e n t



L o c a l A lig n m e n t



L o c a l A lig n m e n t



S e m ig lo b a l A lig n m e n t

참조

관련 문서

temperature (Figure 14), control of bead shape during welding (Figure 6) to enhance interbead tempering or softening and specifying weld metal composition limitations (Figure

Offices for minimum forty people for AIT management, test equipment operators, test engineers, maintenance staff are necessary. In addition, many extra offices for

또한 국제어학원은 여러분이 전공 지식과 외국어 능력을 겸비한 우수한 전문인으로 성장할 수 있도록 여러분들의 능력 개발 을 위한 많은 프로그램들을 준비하고

Alignment process (P: Positive, N: Negative, A/B/C mask grade). Mask

• 불가리아의 소피아 대학교 한국어과는 이미 설립되어 있으나, 벨리코 떠르노보 대학교 한국어 과정이 운영중이고 바르나 자유대학교에도 한국어과가 생길 예정.

• Khan Asparukh가 이끄는 원 불가리아인들은 다뉴브 강을 건너 현 재의 불가리아 땅에 들어 왔으며 지금의 Shumen 가까이에 있는 Pliska에 수도를 정하고 비잔틴과 전쟁 후

-1396년 오스만 터키제국의 술탄 Bayezid I세는 불가리아 북부 다뉴브 강의 도시 Nikopo에서 십자군과의 전쟁인 Battle of Nicopolis에서 승리하여 불가리아를

Development of Bulgaria Граждани за европейско развитие на България.. Rosen Asenov Plevneliev