SlideShare une entreprise Scribd logo
1  sur  16
S.Prasanth Kumar, Bioinformatician Genomics Sequence Alignment : Complete Coverage-I S.Prasanth Kumar   Dept. of Bioinformatics  Applied Botany Centre (ABC)  Gujarat University, Ahmedabad, INDIA www.facebook.com/Prasanth Sivakumar FOLLOW ME ON  ACCESS MY RESOURCES IN SLIDESHARE prasanthperceptron CONTACT ME [email_address]
Alignment scoring schemes Alignment of ATCGGATCT and ACGGACT match: +2 mismatch: -1 indel –2 6 * 2 + 1 * -1 + 2 * -2 = 7 6 matches, 1 mismatch, and 2 indels
Optimal alignment of two sequences Brute Force Method Suppose there are two sequences X and Z to be aligned, where |X| = m and |Z| = n If gaps are allowed in the sequences, then the potential length of both the first and second sequences is m+n. 2 m+n  subsequences with spaces for the sequence X 2 m+n  subsequences with spaces for the sequence Z Alignment = 2 m+n  * 2 m+n  = 2 (2(m+n))  = 4 m+n  comparisons
Optimal alignment of two sequences Dynamic Programming DP align two sequences by beginning at the ends of the two sequences and attempting to align all possible pairs of characters (one from each sequence) using a scoring scheme for matches, mismatches, and gaps. The highest set of scores defines the optimal alignment between the two sequences DP algorithms solve optimization problems by dividing the problem into independent subproblems
Optimal alignment of two sequences Dynamic Programming Matrix s(a i b j ) = +5 if a i  = b j  (match score) s(a i b j ) = -3 if a i  ≠ b j  (mismatch score) w = -4 (gap penalty) •  Initialization •  Matrix Fill (scoring) •  Traceback (alignment)
Global Alignment: Needleman-Wunsch Algorithm Initialization Step Each row S i,0  is set to w * i  Each column S 0,j  is set to w * j
Global Alignment: Needleman-Wunsch Algorithm Matrix Fill Step G-G   match score = +5 Si,j = MAX [0 +  5 , -4 +  -4 , -4 +  -4 ]  = MAX [ 5 , -8 , -8 ] =  5 Confusing ? Diagonal + Match/Mismatch Score Left + Gap penalty Right + Gap penalty
Global Alignment: Needleman-Wunsch Algorithm G-A   mismatch score = -3 Si,j = MAX [-4 +  -3 , 5 +  -4 , -8 +  -4 ]  = MAX [ -7 , 1 , -12 ] =  1
Global Alignment: Needleman-Wunsch Algorithm Trace backing Easy ; Find the lowermost right corner and follow arrow
Global Alignment: Needleman-Wunsch Algorithm 5 – 3 + 5 – 4 + 5 + 5 – 4 + 5 – 4 – 4 + 5 =  11
Local Alignment: Smith-Waterman Algorithm Initialization Step Each row S i,0  is set to 0  Each column S 0,j  is set to 0 Same Rule  Initialization different  Trace backing need attention
Local Alignment: Smith-Waterman Algorithm There are two cells having 14.  There are multiple alignments producing the maximal alignment score What to consider ?  Value in last row means aligned fully
Local Alignment: Smith-Waterman Algorithm Two trace back pathway pointers The two local alignments resulting in a score of 14
Local Alignment: Smith-Waterman Algorithm 5 matches, 1 mismatch, and 2 gaps score = 5 *5 – 1 *3  – 2 *4  = 25 – 3 – 8 =  14
What in Next Coverage ? Scoring Matrices: PAM & BLOSUM Assessing the significance of sequence alignments
Thank You For Your Attention !!!

Contenu connexe

Tendances

Secondary protein structure prediction
Secondary protein structure predictionSecondary protein structure prediction
Secondary protein structure predictionSiva Dharshini R
 
Global and local alignment in Bioinformatics
Global and local alignment in BioinformaticsGlobal and local alignment in Bioinformatics
Global and local alignment in BioinformaticsMahmudul Alam
 
Multiple alignment
Multiple alignmentMultiple alignment
Multiple alignmentavrilcoghlan
 
The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment Parinda Rajapaksha
 
Tools for modeling protein 3 d structure
Tools for modeling protein 3 d structureTools for modeling protein 3 d structure
Tools for modeling protein 3 d structurePriyanka Kashyap
 
Multiple Sequence Alignment
Multiple Sequence AlignmentMultiple Sequence Alignment
Multiple Sequence AlignmentMeghaj Mallick
 
Sequence alig Sequence Alignment Pairwise alignment:-
Sequence alig Sequence Alignment Pairwise alignment:-Sequence alig Sequence Alignment Pairwise alignment:-
Sequence alig Sequence Alignment Pairwise alignment:-naveed ul mushtaq
 
Needleman-Wunsch Algorithm
Needleman-Wunsch AlgorithmNeedleman-Wunsch Algorithm
Needleman-Wunsch AlgorithmProshantaShil
 
MULTIPLE SEQUENCE ALIGNMENT
MULTIPLE  SEQUENCE  ALIGNMENTMULTIPLE  SEQUENCE  ALIGNMENT
MULTIPLE SEQUENCE ALIGNMENTMariya Raju
 
Needleman-wunch algorithm harshita
Needleman-wunch algorithm  harshitaNeedleman-wunch algorithm  harshita
Needleman-wunch algorithm harshitaHarshita Bhawsar
 
Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)Pritom Chaki
 
Sequence Alignment
Sequence AlignmentSequence Alignment
Sequence AlignmentPRUTHVIRAJ K
 

Tendances (20)

Secondary protein structure prediction
Secondary protein structure predictionSecondary protein structure prediction
Secondary protein structure prediction
 
Global and local alignment in Bioinformatics
Global and local alignment in BioinformaticsGlobal and local alignment in Bioinformatics
Global and local alignment in Bioinformatics
 
Sequence Alignment
Sequence AlignmentSequence Alignment
Sequence Alignment
 
Multiple alignment
Multiple alignmentMultiple alignment
Multiple alignment
 
Dynamic programming
Dynamic programming Dynamic programming
Dynamic programming
 
PAM matrices evolution
PAM matrices evolutionPAM matrices evolution
PAM matrices evolution
 
The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment The Needleman-Wunsch Algorithm for Sequence Alignment
The Needleman-Wunsch Algorithm for Sequence Alignment
 
Tools for modeling protein 3 d structure
Tools for modeling protein 3 d structureTools for modeling protein 3 d structure
Tools for modeling protein 3 d structure
 
Sequence alignment
Sequence alignmentSequence alignment
Sequence alignment
 
Multiple Sequence Alignment
Multiple Sequence AlignmentMultiple Sequence Alignment
Multiple Sequence Alignment
 
Sequence alig Sequence Alignment Pairwise alignment:-
Sequence alig Sequence Alignment Pairwise alignment:-Sequence alig Sequence Alignment Pairwise alignment:-
Sequence alig Sequence Alignment Pairwise alignment:-
 
Needleman-Wunsch Algorithm
Needleman-Wunsch AlgorithmNeedleman-Wunsch Algorithm
Needleman-Wunsch Algorithm
 
Sequence alignment belgaum
Sequence alignment belgaumSequence alignment belgaum
Sequence alignment belgaum
 
MULTIPLE SEQUENCE ALIGNMENT
MULTIPLE  SEQUENCE  ALIGNMENTMULTIPLE  SEQUENCE  ALIGNMENT
MULTIPLE SEQUENCE ALIGNMENT
 
ChIP-seq
ChIP-seqChIP-seq
ChIP-seq
 
Needleman-wunch algorithm harshita
Needleman-wunch algorithm  harshitaNeedleman-wunch algorithm  harshita
Needleman-wunch algorithm harshita
 
Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)
 
Sequence Alignment
Sequence AlignmentSequence Alignment
Sequence Alignment
 
Dot matrix seminar
Dot matrix seminarDot matrix seminar
Dot matrix seminar
 
Global alignment
Global alignmentGlobal alignment
Global alignment
 

En vedette

Pairwise sequence alignment
Pairwise sequence alignmentPairwise sequence alignment
Pairwise sequence alignmentavrilcoghlan
 
Introduction to sequence alignment
Introduction to sequence alignmentIntroduction to sequence alignment
Introduction to sequence alignmentKubuldinho
 
Sequence Alignment In Bioinformatics
Sequence Alignment In BioinformaticsSequence Alignment In Bioinformatics
Sequence Alignment In BioinformaticsNikesh Narayanan
 
The Smith Waterman algorithm
The Smith Waterman algorithmThe Smith Waterman algorithm
The Smith Waterman algorithmavrilcoghlan
 
B.sc biochem i bobi u 3.1 sequence alignment
B.sc biochem i bobi u 3.1 sequence alignmentB.sc biochem i bobi u 3.1 sequence alignment
B.sc biochem i bobi u 3.1 sequence alignmentRai University
 
sequence alignment
sequence alignmentsequence alignment
sequence alignmentammar kareem
 
The Needleman Wunsch algorithm
The Needleman Wunsch algorithmThe Needleman Wunsch algorithm
The Needleman Wunsch algorithmavrilcoghlan
 
Basics of bioinformatics
Basics of bioinformaticsBasics of bioinformatics
Basics of bioinformaticsAbhishek Vatsa
 
Scoring matrices
Scoring matricesScoring matrices
Scoring matricesAshwini
 
Multiple sequence alignment
Multiple sequence alignmentMultiple sequence alignment
Multiple sequence alignmentgoneshwar
 
Dotplots for Bioinformatics
Dotplots for BioinformaticsDotplots for Bioinformatics
Dotplots for Bioinformaticsavrilcoghlan
 
Bioinformatics
BioinformaticsBioinformatics
BioinformaticsJTADrexel
 

En vedette (18)

Pairwise sequence alignment
Pairwise sequence alignmentPairwise sequence alignment
Pairwise sequence alignment
 
Introduction to sequence alignment
Introduction to sequence alignmentIntroduction to sequence alignment
Introduction to sequence alignment
 
Sequence Alignment In Bioinformatics
Sequence Alignment In BioinformaticsSequence Alignment In Bioinformatics
Sequence Alignment In Bioinformatics
 
The Smith Waterman algorithm
The Smith Waterman algorithmThe Smith Waterman algorithm
The Smith Waterman algorithm
 
B.sc biochem i bobi u 3.1 sequence alignment
B.sc biochem i bobi u 3.1 sequence alignmentB.sc biochem i bobi u 3.1 sequence alignment
B.sc biochem i bobi u 3.1 sequence alignment
 
sequence alignment
sequence alignmentsequence alignment
sequence alignment
 
Multiple sequence alignment
Multiple sequence alignmentMultiple sequence alignment
Multiple sequence alignment
 
The Needleman Wunsch algorithm
The Needleman Wunsch algorithmThe Needleman Wunsch algorithm
The Needleman Wunsch algorithm
 
Alignments
AlignmentsAlignments
Alignments
 
Basics of bioinformatics
Basics of bioinformaticsBasics of bioinformatics
Basics of bioinformatics
 
Dynamic programming
Dynamic programmingDynamic programming
Dynamic programming
 
Sequence alignment
Sequence alignmentSequence alignment
Sequence alignment
 
Phylogenetic tree
Phylogenetic treePhylogenetic tree
Phylogenetic tree
 
Ch06 alignment
Ch06 alignmentCh06 alignment
Ch06 alignment
 
Scoring matrices
Scoring matricesScoring matrices
Scoring matrices
 
Multiple sequence alignment
Multiple sequence alignmentMultiple sequence alignment
Multiple sequence alignment
 
Dotplots for Bioinformatics
Dotplots for BioinformaticsDotplots for Bioinformatics
Dotplots for Bioinformatics
 
Bioinformatics
BioinformaticsBioinformatics
Bioinformatics
 

Similaire à Sequence alignments complete coverage

Derivation and Application of Six-Point Linear Multistep Numerical Method for...
Derivation and Application of Six-Point Linear Multistep Numerical Method for...Derivation and Application of Six-Point Linear Multistep Numerical Method for...
Derivation and Application of Six-Point Linear Multistep Numerical Method for...IOSR Journals
 
PCB_Lect02_Pairwise_allign (1).pdf
PCB_Lect02_Pairwise_allign (1).pdfPCB_Lect02_Pairwise_allign (1).pdf
PCB_Lect02_Pairwise_allign (1).pdfssusera1eccd
 
Unit-2 raster scan graphics,line,circle and polygon algorithms
Unit-2 raster scan graphics,line,circle and polygon algorithmsUnit-2 raster scan graphics,line,circle and polygon algorithms
Unit-2 raster scan graphics,line,circle and polygon algorithmsAmol Gaikwad
 
Sequence alignment unit 3
Sequence alignment unit 3Sequence alignment unit 3
Sequence alignment unit 3gyanikashukla
 
Thursday, september 26, 2013
Thursday, september 26, 2013Thursday, september 26, 2013
Thursday, september 26, 2013khyps13
 
Line Drawing Algorithms - Computer Graphics - Notes
Line Drawing Algorithms - Computer Graphics - NotesLine Drawing Algorithms - Computer Graphics - Notes
Line Drawing Algorithms - Computer Graphics - NotesOmprakash Chauhan
 
cgrchapter2version-1-200729063505 (1).pdf
cgrchapter2version-1-200729063505 (1).pdfcgrchapter2version-1-200729063505 (1).pdf
cgrchapter2version-1-200729063505 (1).pdfmeenasp
 
20 bayes learning
20 bayes learning20 bayes learning
20 bayes learningTianlu Wang
 
conditional statements
conditional statementsconditional statements
conditional statementsJames Brotsos
 
Parallel algorithms for solving linear systems with block-fivediagonal matric...
Parallel algorithms for solving linear systems with block-fivediagonal matric...Parallel algorithms for solving linear systems with block-fivediagonal matric...
Parallel algorithms for solving linear systems with block-fivediagonal matric...Ural-PDC
 
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...Zawarali786
 
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithm
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithmOptimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithm
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithminfopapers
 
Mimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmMimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmCemal Ardil
 
5. Global and Local Alignment Algorithms.pptx
5. Global and Local Alignment Algorithms.pptx5. Global and Local Alignment Algorithms.pptx
5. Global and Local Alignment Algorithms.pptxArupKhakhlari1
 
Jsai final final final
Jsai final final finalJsai final final final
Jsai final final finaldinesh malla
 

Similaire à Sequence alignments complete coverage (20)

Derivation and Application of Six-Point Linear Multistep Numerical Method for...
Derivation and Application of Six-Point Linear Multistep Numerical Method for...Derivation and Application of Six-Point Linear Multistep Numerical Method for...
Derivation and Application of Six-Point Linear Multistep Numerical Method for...
 
PCB_Lect02_Pairwise_allign (1).pdf
PCB_Lect02_Pairwise_allign (1).pdfPCB_Lect02_Pairwise_allign (1).pdf
PCB_Lect02_Pairwise_allign (1).pdf
 
Unit-2 raster scan graphics,line,circle and polygon algorithms
Unit-2 raster scan graphics,line,circle and polygon algorithmsUnit-2 raster scan graphics,line,circle and polygon algorithms
Unit-2 raster scan graphics,line,circle and polygon algorithms
 
Backtracking
BacktrackingBacktracking
Backtracking
 
Sequence alignment unit 3
Sequence alignment unit 3Sequence alignment unit 3
Sequence alignment unit 3
 
Thursday, september 26, 2013
Thursday, september 26, 2013Thursday, september 26, 2013
Thursday, september 26, 2013
 
Line Drawing Algorithms - Computer Graphics - Notes
Line Drawing Algorithms - Computer Graphics - NotesLine Drawing Algorithms - Computer Graphics - Notes
Line Drawing Algorithms - Computer Graphics - Notes
 
cgrchapter2version-1-200729063505 (1).pdf
cgrchapter2version-1-200729063505 (1).pdfcgrchapter2version-1-200729063505 (1).pdf
cgrchapter2version-1-200729063505 (1).pdf
 
20 bayes learning
20 bayes learning20 bayes learning
20 bayes learning
 
smith - waterman algorithm.pptx
smith - waterman algorithm.pptxsmith - waterman algorithm.pptx
smith - waterman algorithm.pptx
 
A2 Jeopardy
A2 JeopardyA2 Jeopardy
A2 Jeopardy
 
conditional statements
conditional statementsconditional statements
conditional statements
 
Parallel algorithms for solving linear systems with block-fivediagonal matric...
Parallel algorithms for solving linear systems with block-fivediagonal matric...Parallel algorithms for solving linear systems with block-fivediagonal matric...
Parallel algorithms for solving linear systems with block-fivediagonal matric...
 
Regression
RegressionRegression
Regression
 
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...
AIOU Solved Assignment Code 1349 Introduction To Business Mathematics Autumn ...
 
Prova global 2 correção
Prova global 2 correçãoProva global 2 correção
Prova global 2 correção
 
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithm
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithmOptimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithm
Optimizing a New Nonlinear Reinforcement Scheme with Breeder genetic algorithm
 
Mimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmMimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithm
 
5. Global and Local Alignment Algorithms.pptx
5. Global and Local Alignment Algorithms.pptx5. Global and Local Alignment Algorithms.pptx
5. Global and Local Alignment Algorithms.pptx
 
Jsai final final final
Jsai final final finalJsai final final final
Jsai final final final
 

Plus de Prasanthperceptron

Plus de Prasanthperceptron (20)

Prasanth Chikungunya Viral nsP4
Prasanth Chikungunya Viral nsP4 Prasanth Chikungunya Viral nsP4
Prasanth Chikungunya Viral nsP4
 
Maize poster
Maize posterMaize poster
Maize poster
 
Structure determination
Structure determinationStructure determination
Structure determination
 
S. prasanth kumar young scientist awarded presentation
S. prasanth kumar young scientist awarded presentationS. prasanth kumar young scientist awarded presentation
S. prasanth kumar young scientist awarded presentation
 
Soft copy of abstracts
Soft copy of abstractsSoft copy of abstracts
Soft copy of abstracts
 
Protein stability manual
Protein stability manualProtein stability manual
Protein stability manual
 
ORVIL Manual
ORVIL ManualORVIL Manual
ORVIL Manual
 
2 d qsar model of dihydrofolate reductase (dhfr) inhibitors with activity in ...
2 d qsar model of dihydrofolate reductase (dhfr) inhibitors with activity in ...2 d qsar model of dihydrofolate reductase (dhfr) inhibitors with activity in ...
2 d qsar model of dihydrofolate reductase (dhfr) inhibitors with activity in ...
 
Epitope prediction and its algorithms
Epitope prediction and its algorithmsEpitope prediction and its algorithms
Epitope prediction and its algorithms
 
Gene order
Gene orderGene order
Gene order
 
Vls
VlsVls
Vls
 
The mechanism of protein folding
The mechanism of protein foldingThe mechanism of protein folding
The mechanism of protein folding
 
Sage technology
Sage technologySage technology
Sage technology
 
Proteome databases
Proteome databasesProteome databases
Proteome databases
 
Protein protein interactions
Protein protein interactionsProtein protein interactions
Protein protein interactions
 
Protein dna interaction practical
Protein dna interaction  practicalProtein dna interaction  practical
Protein dna interaction practical
 
Protein dna interaction
Protein dna interactionProtein dna interaction
Protein dna interaction
 
Primary databases ncbi
Primary databases ncbiPrimary databases ncbi
Primary databases ncbi
 
Pharmacophore identification
Pharmacophore identificationPharmacophore identification
Pharmacophore identification
 
Pharmacogenomics
PharmacogenomicsPharmacogenomics
Pharmacogenomics
 

Sequence alignments complete coverage

  • 1. S.Prasanth Kumar, Bioinformatician Genomics Sequence Alignment : Complete Coverage-I S.Prasanth Kumar Dept. of Bioinformatics Applied Botany Centre (ABC) Gujarat University, Ahmedabad, INDIA www.facebook.com/Prasanth Sivakumar FOLLOW ME ON ACCESS MY RESOURCES IN SLIDESHARE prasanthperceptron CONTACT ME [email_address]
  • 2. Alignment scoring schemes Alignment of ATCGGATCT and ACGGACT match: +2 mismatch: -1 indel –2 6 * 2 + 1 * -1 + 2 * -2 = 7 6 matches, 1 mismatch, and 2 indels
  • 3. Optimal alignment of two sequences Brute Force Method Suppose there are two sequences X and Z to be aligned, where |X| = m and |Z| = n If gaps are allowed in the sequences, then the potential length of both the first and second sequences is m+n. 2 m+n subsequences with spaces for the sequence X 2 m+n subsequences with spaces for the sequence Z Alignment = 2 m+n * 2 m+n = 2 (2(m+n)) = 4 m+n comparisons
  • 4. Optimal alignment of two sequences Dynamic Programming DP align two sequences by beginning at the ends of the two sequences and attempting to align all possible pairs of characters (one from each sequence) using a scoring scheme for matches, mismatches, and gaps. The highest set of scores defines the optimal alignment between the two sequences DP algorithms solve optimization problems by dividing the problem into independent subproblems
  • 5. Optimal alignment of two sequences Dynamic Programming Matrix s(a i b j ) = +5 if a i = b j (match score) s(a i b j ) = -3 if a i ≠ b j (mismatch score) w = -4 (gap penalty) • Initialization • Matrix Fill (scoring) • Traceback (alignment)
  • 6. Global Alignment: Needleman-Wunsch Algorithm Initialization Step Each row S i,0 is set to w * i Each column S 0,j is set to w * j
  • 7. Global Alignment: Needleman-Wunsch Algorithm Matrix Fill Step G-G  match score = +5 Si,j = MAX [0 + 5 , -4 + -4 , -4 + -4 ] = MAX [ 5 , -8 , -8 ] = 5 Confusing ? Diagonal + Match/Mismatch Score Left + Gap penalty Right + Gap penalty
  • 8. Global Alignment: Needleman-Wunsch Algorithm G-A  mismatch score = -3 Si,j = MAX [-4 + -3 , 5 + -4 , -8 + -4 ] = MAX [ -7 , 1 , -12 ] = 1
  • 9. Global Alignment: Needleman-Wunsch Algorithm Trace backing Easy ; Find the lowermost right corner and follow arrow
  • 10. Global Alignment: Needleman-Wunsch Algorithm 5 – 3 + 5 – 4 + 5 + 5 – 4 + 5 – 4 – 4 + 5 = 11
  • 11. Local Alignment: Smith-Waterman Algorithm Initialization Step Each row S i,0 is set to 0 Each column S 0,j is set to 0 Same Rule Initialization different Trace backing need attention
  • 12. Local Alignment: Smith-Waterman Algorithm There are two cells having 14. There are multiple alignments producing the maximal alignment score What to consider ? Value in last row means aligned fully
  • 13. Local Alignment: Smith-Waterman Algorithm Two trace back pathway pointers The two local alignments resulting in a score of 14
  • 14. Local Alignment: Smith-Waterman Algorithm 5 matches, 1 mismatch, and 2 gaps score = 5 *5 – 1 *3 – 2 *4 = 25 – 3 – 8 = 14
  • 15. What in Next Coverage ? Scoring Matrices: PAM & BLOSUM Assessing the significance of sequence alignments
  • 16. Thank You For Your Attention !!!