{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# [2.1]() Pairwise sequence alignment [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [What is a sequence alignment?](#1)\n", "0. [A simple procedure for aligning a pair of sequences](#2)\n", " 0. [Step 1: Create a blank matrix where the rows and columns represent the positions in the sequences.](#2.1)\n", " 0. [Step 2: Add values to the cells in the matrix.](#2.2)\n", " 0. [Step 3: Identify the longest diagonals.](#2.3)\n", " 0. [Step 4: Transcribe some of the possible alignments that arise from this process.](#2.4)\n", " 0. [Why this simple procedure is too simplistic](#2.5)\n", "0. [Differential scoring of matches and mismatches](#3)\n", "0. [A better approach for global pairwise alignment using the Needleman-Wunsch algorithm](#4)\n", " 0. [Stepwise Needleman-Wunsch alignment](#4.1)\n", " 0. [Step 1: Create blank matrices.](#4.1.1)\n", " 0. [Step 2: Compute $F$ and $T$.](#4.1.2)\n", " 0. [Step 3: Transcribe the alignment.](#4.1.3)\n", " 0. [Automating Needleman-Wunsch alignment with Python](#4.2)\n", " 0. [A note on computing $F$ and $T$](#4.3)\n", "0. [Global versus local alignment](#5)\n", "0. [Smith-Waterman local sequence alignment](#6)\n", " 0. [Step 1: Create blank matrices.](#6.1)\n", " 0. [Step 2: Compute $F$ and $T$.](#6.2)\n", " 0. [Step 3: Transcribe the alignment.](#6.3)\n", " 0. [Automating Smith-Waterman alignment with Python](#6.4)\n", "0. [Differential scoring of gaps](#7)\n", "0. [How long does pairwise sequence alignment take?](#8)\n", " 0. [Comparing implementations of Smith-Waterman](#8.1)\n", " 0. [Analyzing Smith-Waterman run time as a function of sequence length](#8.2)\n", " 0. [Conclusions on the scalability of pairwise sequence alignment with Smith-Waterman](#8.3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "One of the most fundamental problems in bioinformatics is determining how \"similar\" a pair of biological sequences are. There are many applications for this, including inferring the function or source organism of an unknown gene sequence, developing hypotheses about the relatedness of organisms, or grouping sequences from closely related organisms. On the surface this seems like a pretty straight-forward problem, not one that would have been at the center of decades of research and the subject of [one of the most cited papers](https://www.ncbi.nlm.nih.gov/pubmed/2231712) in modern biology. In this chapter we'll explore why determining sequence similarity is harder than it might initially seem, and learn about *pairwise sequence alignment*, the standard approach for determining sequence similarity." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Imagine you have three sequences - call them ``r1``and ``r2`` (*r* is for *reference*) and ``q1`` (*q* is for *query*) - and you want to know whether ``q1`` is more similar to ``r1`` or ``r2``. On the surface, it seems like you could just count the number of positions where they differ (i.e., compute the [Hamming distance](http://en.wikipedia.org/wiki/Hamming_distance) between them) to figure this out. Here's what this would look like." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%pylab inline\n", "import numpy as np\n", "from IPython.core.display import HTML\n", "from IPython.core import page\n", "page.page = print" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "from scipy.spatial.distance import hamming\n", "from skbio import DNA\n", "\n", "r1 = DNA(\"ACCCAGGTTAACGGTGACCAGGTACCAGAAGGGTACCAGGTAGGACACACGGGGATTAA\")\n", "r2 = DNA(\"ACCGAGGTTAACGGTGACCAGGTACCAGAAGGGTACCAGGTAGGAGACACGGCGATTAA\")\n", "q1 = DNA(\"TTCCAGGTAAACGGTGACCAGGTACCAGTTGCGTTTGTTGTAGGAGACACGGGGACCCA\")\n", "\n", "print(r1)\n", "print(r2)\n", "print(q1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we just stored 3 sequences as variables. Now we're going to compute the hamming distance between them using the function ``hamming()``. Don't forget we can look at what any function does by using ``%psource``. Let's see what the ``hamming()`` function looks like (don't worry if some parts of it aren't entirely clear just yet):" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "%psource hamming" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's find out if our query (\"q1\") is closer to reference 1 or reference 2 based on the hamming distance:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "print(hamming(r1, q1))\n", "print(hamming(r2, q1))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this case, ``q1`` has a smaller distance to ``r1`` than it does to ``r2``, so ``q1`` is more similar to ``r1`` than ``r2``. But it's not always that simple." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here we've assumed that only *substitution events* have occurred, meaning one DNA base was substituted with another. Let's define ``q2``, which is the same as ``q1`` except that a single base has been deleted at the beginning of the sequence, and a single base has been inserted at the end of the sequence." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "q2 = DNA(\"TCCAGGTAAACGGTGACCAGGTACCAGTTGCGTTTGTTGTAGGAGACACGGGGACCCAT\")\n", "\n", "print(q1)\n", "print(q2)\n", "\n", "print(hamming(r1, q2))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This change had a big effect on the distance between the two sequences. In this case, the deletion event at the beginning of ``q2`` has shifted that sequence relative to ``r1``, which resulted in many of the bases \"downstream\" of the deleted base being different. However the sequences do still seem fairly similar, so perhaps this relatively large distance isn't biologically justified." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What we'd really want to do is have a way to indicate that a deletion seems to have occurred in ``q2``. Let's define ``q3``, where we use a ``-`` character to indicate a deletion with respect to ``r1``. This results in what seems like a more reasonable distance between the two sequences:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "q3 = DNA(\"-TCCAGGTAAACGGTGACCAGGTACCAGTTGCGTTTGTTGTAGGAGACACGGGGACCCA\")\n", "\n", "print(q1)\n", "print(q3)\n", "\n", "print(hamming(r1, q3))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "What we've done here is create a pairwise alignment of ``r1`` and ``q3``. In other words, we've **aligned** positions to maximize the similarity of the two sequences, using the ``-`` to fill in spaces where one character is missing with respect to that location in the other sequence. We refer to ``-`` characters in aligned sequences as **gap characters**, or gaps." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The *alignment* of these two sequences is clear if we print them out, one on top of the other:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "print(r1)\n", "print(q3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Scanning through these two sequences, we can see that they are largely identical, with the exception of one ``-`` character, and about 25% *substitutions* of one base for another." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.1](#1) What is a sequence alignment? [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Let's take a minute to think about sequence evolution and what a biological sequence alignment actually is. Over the course of biological evolution, a DNA sequence changes, most frequently due to random errors in replication (or the copying of a DNA sequence). These replication errors are referred to as **mutations**. Some types of mutation events that can occur are:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "* **substitutions**, where one base (or amino acid, in protein sequences) is replaced with another;\n", "* **insertions**, where one or more contiguous bases are inserted into a sequence;\n", "* and **deletions**, where one or more contiguous bases are deleted from a sequence." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "(Other types of mutation events can occur, but we're going to focus on these for now.)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Figure 1 illustrates how one ancestral DNA sequence (Figure 1a), over time, might evolve into two derived sequences (Figure 1b). When two or more sequences are derived from a single ancestral sequence, as is the case in this example, those sequences are said to be **homologs** of one another, or homologous sequences. On a piece of paper, make a hypothesis about which of these types of mutation events occurred where over our hypothetical evolution of these sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " \n", "
Figure 1: Sequence evolution and pairwise sequence alignment. Abbreviation key: *indel*: insertion or deletion event has occurred since the last common ancestor; *sub*: substitution event has occurred since the last common ancestor; *nc*: no change has occurred since the last common ancestor.
\n", "
\n", "

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**The goal of pairwise sequence alignment is, given two sequences, to generate a hypothesis about which sequence positions derived from a common ancestral sequence position.** In practice, we develop this hypothesis by aligning the sequences to one another inserting gaps as necessary, in a way that maximizes their similarity. This is a **maximum parsimony** approach (an application of [Occam's razor](https://en.wikipedia.org/wiki/Occam%27s_razor)), where we assume that the simplest explanation (the one involving the fewest or least extreme mutation events) is the most likely." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In nearly all cases, the only sequences we have to work with are the modern (derived) sequences, as illustrated in Figure 1c. The ancestral sequence is not something we have access to (for example, because the organism whose genome it was present in went extinct 100 million years ago – and even if not extinct, it would no longer be the same)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Figure 1d-f illustrates three possible alignments of these two sequences. Just as the notes you made about which types of mutation events may have happened at which positions represents your *hypothesis* about the evolutionary events that took place, a sequence alignment that you might get from a computer program such as BLAST is also only a hypothesis. Which do you think is the most likely alignment of these sequences (note that there may not be a single best answer)?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can think of an alignment as a table (Figure 1g), where the rows are sequences and the columns are positions in those sequences. When you have two or more aligned sequences, there will, by definition, always be the same number of columns in each row. Each column in your alignment represents a hypothesis about the evolutionary events that occurred at that position since the last ancestor of the aligned sequences (the sequence in Figure 1a in our example). The specific hypotheses represented by each column in the Figure 1d alignment are explicitly annotated in Figure 1g." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One thing that's worth pointing out at this point is that because we don't know what the ancestral sequence was, when we encounter a gap in a pairwise alignment, we generally won't know whether a deletion occurred in one sequence, or an insertion occurred in the other. For that reason, you will often see the term **indel** used to refer to these insertion or deletion events." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In the next section we'll work through our first bioinformatics algorithm, in this case a very simple (and also simplistic) method for aligning a pair of sequences. As you work through this exercise, think about why it might be too simple given what you know about biological sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.2](#2) A simple procedure for aligning a pair of sequences [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [Step 1: Create a blank matrix where the rows and columns represent the positions in the sequences.](#2.1)\n", "0. [Step 2: Add values to the cells in the matrix.](#2.2)\n", "0. [Step 3: Identify the longest diagonals.](#2.3)\n", "0. [Step 4: Transcribe some of the possible alignments that arise from this process.](#2.4)\n", "0. [Why this simple procedure is too simplistic](#2.5)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Let's define two sequences, ``seq1`` and ``seq2``, and develop an approach for aligning them." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "seq1 = DNA(\"ACCGGTGGAACCGGTAACACCCAC\")\n", "seq2 = DNA(\"ACCGGTAACCGGTTAACACCCAC\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "I'm going to use a function in the following cells called ``show_F`` to display a table that we're going to use to develop our alignment. Once a function has been imported, you can view the source code for that function. This will be useful as we begin to explore some of the algorithms that are in use throughout these notebooks. You should spend time reading the source code examples in this book until you're sure that you understand what's happening, especially if your goal is to develop bioinformatics software. Reading other people's code is a good way to improve your own." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's import the function ``show_F`` and then view its source code:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "from iab.algorithms import show_F\n", "\n", "%psource show_F" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's look at how to align these sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.2.1](#2.1) Step 1: Create a blank matrix where the rows and columns represent the positions in the sequences. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "We'll create this matrix and initialize it with all zeros as follows:" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "num_rows = len(seq2)\n", "num_cols = len(seq1)\n", "data = np.zeros(shape=(num_rows, num_cols), dtype=np.int)\n", "\n", "HTML(show_F(seq1, seq2, data))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.2.2](#2.2) Step 2: Add values to the cells in the matrix. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Next we'll add initial values to the cells so that if the characters at the corresponding row and column are the same, the value of the cell is changed from zero to one. We can then review the resulting matrix. For clarity, we'll have ``show_F`` hide the zero values." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "for row_number, row_character in enumerate(seq2):\n", " for col_number, col_character in enumerate(seq1):\n", " if row_character == col_character:\n", " data[row_number, col_number] = 1\n", "\n", "HTML(show_F(seq1, seq2, data, hide_zeros=True))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.2.3](#2.3) Step 3: Identify the longest diagonals. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Next we'll identify the longest stretches of non-zero characters, which we'll refer to here as the *diagonals*. Diagonals indicate segments of the two sequences that are identical and uninterrupted by mismatched characters (substitution events) or indel events." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can identify the longest diagonals as follows:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "# create a copy of our data matrix to work with, so we\n", "# leave the original untouched.\n", "summed_data = data.copy()\n", "# iterate over the cells in our data matrix, starting in\n", "# the second row and second column\n", "for i in range(1, summed_data.shape[0]):\n", " for j in range(1, summed_data.shape[1]):\n", " # if the value in the current cell is greater than zero\n", " # (i.e., the characters at the corresponding pair of\n", " # sequence positions are the same), add the value from the\n", " # cell that is diagonally up and to the left.\n", " if summed_data[i, j] > 0:\n", " summed_data[i, j] += summed_data[i-1][j-1]\n", "\n", "# Identify the longest diagonal\n", "print(\"The longest diagonal is %d characters long.\" % summed_data.max())\n", "HTML(show_F(seq1, seq2, summed_data, hide_zeros=True))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.2.4](#2.4) Step 4: Transcribe some of the possible alignments that arise from this process. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "We're going to gloss over how to do this algorithmically for the moment, as we'll come back to that in a lot of detail later in this chapter. Briefly, what we want to do is start with the longest diagonal and trace it backwards to transcribe the alignment by writing down the characters from each of the two sequences at every row and column corresponding to the diagonal that you're following. When we encounter a break in the diagonal, we find the next longest diagonal that starts in a cell that is up and/or to the left of the cell when the previous diagonal you were following ends. For every cell that you move straight upwards (non-diagonally), you'd insert a gap in the sequence on the horizontal axis of your matrix. For every cell that you move straight leftwards, you'd insert a gap in the sequence on the vertical axis of your matrix." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'd also generally compute a score for an alignment to help us figure out which alignments are better than others. For now, let's add one for every match, and subtract one for every mismatch." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If this step is confusing, don't worry about it for now. We'll be back to this in a lot more detail soon." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here are two possible alignments:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Alignment 1 (score: 19)\n", "```\n", "ACCGGTGGAACCGG-TAACACCCAC\n", "ACCGGT--AACCGGTTAACACCCAC\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Alignment 2 (score: 8)\n", "```\n", "ACCGGTGGAACCGGTAACACCCAC\n", "ACCGGT--------TAACACCCAC\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Why might the first alignment be the more biologically relevant one (meaning the one that is more likely to represent that true evolutionary history of this pair of molecules)? Why might the second be the more biologically relevant one?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**As an exercise**, go back to where we defined `seq1` and `seq2` and re-define one or both of those as other sequences. Execute the code through here and see how the matrices change." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.2.5](#2.5) Why this simple procedure is too simplistic [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "I suggested above that you keep a list of assumptions that are made by this approach. Here are a couple of the very problematic ones." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "1. We're scoring all matches as 1 and all mismatches as 0. This suggests that all matches are equally likely, and all mismatches are equally unlikely. What's a more biologically meaningful way to do this (think about protein sequences here)?\n", "2. Similarly, every gap that is introduced results in the same penalty being incurred. Based on what we know about how insertion/deletion events occur, what do you think is a more biologically meaningful way to do this?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "All scoring schemes have limitations, and you should remember that when you're working with software that generates alignments for you (e.g., systems such as [BLAST](http://blast.ncbi.nlm.nih.gov/Blast.cgi)). Especially as you're getting started in bioinformatics, it's easy to forget that and just accept the result from computer software as \"the right answer\". You'll need to determine if you agree with the result that a computational system gives you, which will involve examining the result in the context of what you know about the biology of the systems your studying. Algorithms such as the one we just explored are there to help you do your work, but they won't do your work for you. Their answers are based on models (for example, how we model matches, mismatches and gaps here) and as you're learning here, the models are not perfect. Be skeptical!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Another important consideration as we think about algorithms for aligning pairs of sequences is how long an algorithm will take to run as a function of the input it's provided (or in technical terminology, the [computational complexity](http://bigocheatsheet.com/) of the algorithm). When searching a sequence against a database (for example, to get an idea of what its function is), you may have billions of bases to search against, which would correspond to billions of columns in one of the matrices we just computed. Computers are fast, but the data sets you're going to be working with are very large and in many cases growing exponentially in size over time. Working in bioinformatics, it's inevitable that you're going to begin to discover the limitations of the algorithms and software you use. Runtime and memory requirements are the usual culprits. Because the data sets are getting bigger more quickly than computers are getting faster (at least as of this writing), just waiting for computers to get faster won't work. We need smart people who understand some computer science and some biology to design clever algorithms, software, and analytic techniques to enable the next generation of advances that technologies like high-throughput DNA sequencing are promising. (And there are a lot of people who want to spend good money to pay people who can do these things, so keep reading!)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Over the next several sections we'll explore ways of addressing the two issues noted above. We'll introduce the problem of the computational complexity of pairwise sequence alignment at the end of this chapter, and explore approaches for addressing that (i.e., making database searching faster) in the next chapter." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.3](#3) Differential scoring of matches and mismatches [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "When aligning nucleotide sequences, using a simple two-value scoring scheme (where all matches are scored with one value and all mismatches with another value) is common, but this approach is overly simplistic for protein sequences. In this section, we're going to switch gears to talking about protein alignment. The most commonly used algorithms are the same for nucleotides and proteins, so most of the ideas that we'll discuss here are general to both. With protein sequences, we're aligning amino acid residues (or *residues*, for short) to one another, instead of nucleotides." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First, let's talk about why two-value scoring schemes are too simplistic for protein alignment. In a protein, each amino acid residue is contributing to the structure and/or function of the protein. A given amino acid residue may contribute a charge to an enzyme that helps it to bind its substrate, it may introduce structural stability or instability in a protein, or provide spacing between different functional domains of the protein. Substitutions between amino acids that have similar chemical or physical properties tend to be better tolerated (i.e., less detrimental to the function of the protein) than substitutions between amino acids with different chemical or physical properties. It therefore makes sense to account for the chemical and physical properties of the amino acids being aligned when scoring matches and mismatches." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's take the sodium-potassium pump as an example. This molecule is described in the Protein Data Bank's (PDB) *Molecule of the Month* series. Spend a couple of minutes reading about it [here](http://pdb101.rcsb.org/motm/118)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

\n", " \n", "
Figure 2: Structure of a sodium-potassium pump, as illustrated in the PDB Molecule of the Month series. To learn more about protein structure, a good place to start is the PDB Educational Portal.
\n", "
\n", "

" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Because the sodium-potassium pump is a membrane-bound protein, it has regions that are composed of long stretches of polar or charged residues, which facilitate being positioned inside or outside of the cell, and regions that are composed of long stretches of non-polar residues, which facilitate being positioned within the cell membrane. If a mutation occurs in a gene encoding a sodium-potassium pump that substitutes a non-polar residue for another non-polar residue, that will likely be less disruptive to the protein's function than if a polar residue is substituted for a non-polar residue. This is because the non-polar residue is likely to be in the membrane-bound region of the protein (since that's where most of the non-polar residues are in this protein), and polar residues destabilize membrane-bound proteins when they are present within the membrane (a highly non-polar environment). Given this knowledge of amino acids and proteins, when aligning a pair of protein sequences, we probably want to score the alignment of a non-polar residue with a polar residue as less likely than with another non-polar residue." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To score matches and mismatches differently based on which pair of amino acid residues are being aligned, our alignment algorithm is redefined to incorporate a **substitution matrix**, which defines the score associated with substitution of one amino acid for another. A widely used substitution matrix is referred to as BLOSUM 50. Let's take a look at this matrix:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "from iab.algorithms import blosum50, show_substitution_matrix\n", "aas = list(blosum50.keys())\n", "aas.sort()\n", "data = []\n", "for aa1 in aas:\n", " row = []\n", " for aa2 in aas:\n", " row.append(blosum50[aa1][aa2])\n", " data.append(row)\n", "\n", "aa_labels = ''.join(aas)\n", "HTML(show_substitution_matrix(aa_labels, data))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Look at the scores in this matrix in the context of details about the biochemistry of the amino acids (see the molecular structures [on Wikipedia](http://en.wikipedia.org/wiki/Amino_acid) or in any general microbiology or biochemistry text). Does a positive score represent a more or less favorable substitution? Confirm that the scores match your intuition for some similar and dissimilar amino acids." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can look up individual substitution scores as follows:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "print(blosum50['A']['G'])\n", "print(blosum50['G']['A'])\n", "\n", "print(blosum50['W']['K'])\n", "\n", "print(blosum50['A']['A'])\n", "print(blosum50['W']['W'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Early work on defining protein substitution matrices was performed by Margaret Dayhoff in the 1970s (Dayhoff, Schwartz, Orcutt (1978) A Model of Evolutionary Change in Proteins. Atlas of Protein Sequence and Structure) and by [Henikoff and Henikoff](http://www.ncbi.nlm.nih.gov/pmc/articles/PMC50453/) in the early 1990s. Briefly, these matrices are often defined empirically, by aligning sequences manually or through automated systems, and counting how frequent certain substitutions are. [This](https://www.ncbi.nlm.nih.gov/pubmed/15286655) is a good article on the source of the widely used substitution matrices by Sean Eddy. We'll work with BLOSUM 50 here for the remainder of this chapter." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## [2.1.4](#4) A better approach for global pairwise alignment using the Needleman-Wunsch algorithm [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [Stepwise Needleman-Wunsch alignment](#4.1)\n", " 0. [Step 1: Create blank matrices.](#4.1.1)\n", " 0. [Step 2: Compute $F$ and $T$.](#4.1.2)\n", " 0. [Step 3: Transcribe the alignment.](#4.1.3)\n", "0. [Automating Needleman-Wunsch alignment with Python](#4.2)\n", "0. [A note on computing $F$ and $T$](#4.3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "We're next going to work through the standard algorithm for aligning a pair of biological sequences. This algorithm was originally published by [Saul B. Needleman and Christian D. Wunsch in 1970](https://www.ncbi.nlm.nih.gov/pubmed/5420325), and is therefore referred to as *Needleman-Wunsch alignment*. This performs what is known as *global alignment*, meaning that both sequences are aligned from their first residue (or base) through their last residue (or base). We'll contrast this later in this chapter with local alignment." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.4.1](#4.1) Stepwise Needleman-Wunsch alignment [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [Step 1: Create blank matrices.](#4.1.1)\n", "0. [Step 2: Compute $F$ and $T$.](#4.1.2)\n", "0. [Step 3: Transcribe the alignment.](#4.1.3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Needleman-Wunsch alignment is similar to the approach that we explored above. We'll work through the steps of the algorithm first, and then automate the process by defining Python functions that perform the steps for us given a pair of sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll define two protein sequences to work with in this section. After working through this section, come back to this cell and change these protein sequences to explore how it changes the process. Make some small changes and some large changes to the protein sequences. The sequences that we're starting with are the same that are used in Chapter 2 of [Biological Sequence Analysis](http://amzn.to/1IYUEz2)." ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "from skbio import Protein\n", "seq1 = Protein(\"HEAGAWGHEE\")\n", "seq2 = Protein(\"PAWHEAE\")\n", "\n", "print(seq1)\n", "print(seq2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### [2.1.4.1.1](#4.1.1) Step 1: Create blank matrices. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "As we discussed earlier in this chapter, a pair of sequences can be aligned in different ways. Needleman-Wunsch provides the best alignment, as defined by its score. Here we'll compute two new matrices that together allow us to determine the highest alignment score given the sequences and the substitution matrix, and to transcribe the aligned sequences. These matrices are\n", " * the *dynamic programming matrix*, or $F$\n", " * and the *traceback matrix*, or $T$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$F$ and $T$ are defined at the same time." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$F$ looks a lot like the matrix we defined in our simplistic example above, but it has one extra row and column, corresponding to the start of each of the sequences (a *state* that is independent of the first residue of the sequences that is important for our algorithm). $F$ keeps track of the best score of the alignment through the corresponding pair of positions, if the alignment were to terminate at that pair of positions." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Because there are multiple possible alignments that a score in $F$ can be derived from, we use our second matrix, $T$, to track which single alignment led to each score in $F$. $T$ has the same shape (i.e., numbers of rows and columns) as $F$, and its values encode information about how the sequences were aligned to result in the score in the corresponding cell in $F$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Prior to initialization, $F$ and $T$ would look like the following." ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "num_rows = len(seq2) + 1\n", "num_cols = len(seq1) + 1\n", "F = np.zeros(shape=(num_rows, num_cols), dtype=np.int)\n", "HTML(show_F(seq1, seq2, F))" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "from iab.algorithms import show_T\n", "\n", "T = np.full(shape=(num_rows, num_cols), fill_value=\" \", dtype=np.str)\n", "HTML(show_T(seq1, seq2, T))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### [2.1.4.1.2](#4.1.2) Step 2: Compute $F$ and $T$. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "The first row and column of $F$ are initialized using the following formulas. $d$ in these formulas is a value referred to as the *gap penalty*. This is a constant value that is subtracted from the score of the alignment every time a gap character has to be introduced to align the sequences. We'll use a constant value of $d=8$ (it's positive because we subtract it) for now, and explore its use more shortly. $i$ is the row number in $F$, and $j$ is the column number in $F$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\begin{align}\n", "& F(0, 0) = 0\\\\\n", "& F(i, 0) = F(i-1, 0) - d\\\\\n", "& F(0, j) = F(0, j-1) - d\\\\\n", "\\end{align}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As an exercise, try computing the values for the cells in the first four rows in column zero and the first four columns in row zero of $F$. What you'll notice is that the score that you compute for most of the cells (all of them except for $F(0, 0)$) depends on the score at another position in $F$. In a second matrix, $T$, draw an arrow from the cell that you're currently defining the score for in $F$ to the cell whose score it depends on. If the score depends on the cell above, you'd draw an up arrow (↑). If the score depends on the cell to the left, you'd draw a left arrow (←). If the score doesn't depend on any other cell (you should have only one of these), indicate that with a bullet (•)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Initializing $F$ would result in the following." ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "d = 8\n", "F[0][0] = 0\n", "for i in range(1, num_rows):\n", " F[i][0] = F[i-1][0] - d\n", "\n", "for j in range(1, num_cols):\n", " F[0][j] = F[0][j-1] - d\n", "\n", "HTML(show_F(seq1, seq2, F))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Initializing $T$ would result in the following." ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "T[0][0] = \"•\"\n", "for i in range(1, num_rows):\n", " T[i][0] = \"↑\"\n", "\n", "for j in range(1, num_cols):\n", " T[0][j] = \"←\"\n", "\n", "HTML(show_T(seq1, seq2, T))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, we'll compute the scores for all of the other cells in $F$, starting at position $(1, 1)$. In Needleman-Wunsch alignment, the score $F$ for cell $(i, j)$ (when $i > 0$ and $j > 0$) is computed as the maximum of three possible values. $s$ refers to the substitution matrix, and $c_i$ and $c_j$ refer to characters in `seq1` and `seq2`." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "F(i, j) = max \\left(\\begin{align}\n", "& F(i-1, j-1) + s(c_i, c_j)\\\\\n", "& F(i-1, j) - d\\\\\n", "& F(i, j-1) - d\n", "\\end{align}\\right)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " Describing the scoring function in English, we score a cell with the maximum of three values: either the value of the cell up and to the left plus the score for the substitution taking place in the current cell (which you find by looking up the substitution in the substitution matrix); the value of the cell above minus the gap penalty; or the value of the cell to the left minus the gap penalty. In this way, you're determining whether the best (highest) score is obtained by inserting a gap in sequence 1 (corresponding to $F(i-1, j) - d$), inserting a gap in sequence 2 (corresponding to $F(i, j-1) - d$), or aligning the characters in sequence 1 and sequence 2 (corresponding to $F(i-1, j-1) + s(c_i, c_j)$)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As an exercise, fill in the values of cells $(1, 1)$, $(1, 2)$, and $(2, 1)$ in $F$ and $T$. Remember to insert arrows in $T$ indicating which cell each score was derived from as you fill in the matrix. If you're deriving the score for a given cell in $F$ from the cell diagonally up and to the left, you should put a diagonal arrow in $T$ (↖)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Notice the situation that you encounter when computing the value for $F(2, 1)$. Which arrow do you draw there? Keep this question in mind, and think about how it might impact your final result." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The function in the next cell generates the dynamic programming and traceback matrices for us. You should review this code to understand exactly how it's working." ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "from iab.algorithms import format_dynamic_programming_matrix, format_traceback_matrix\n", "from skbio.alignment._pairwise import _compute_score_and_traceback_matrices\n", "\n", "%psource _compute_score_and_traceback_matrices" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can now apply this function to `seq1` and `seq2` to compute the dynamic programming and traceback matrices." ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [], "source": [ "from skbio.sequence import Protein\n", "from skbio.alignment import TabularMSA\n", "\n", "seq1 = TabularMSA([seq1])\n", "seq2 = TabularMSA([seq2])\n", "\n", "nw_matrix, traceback_matrix = _compute_score_and_traceback_matrices(\n", " seq1, seq2, 8, 8, blosum50)\n", "\n", "HTML(show_F(seq1[0], seq2[0], nw_matrix))" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "HTML(show_T(seq1[0], seq2[0], traceback_matrix))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### [2.1.4.1.3](#4.1.3) Step 3: Transcribe the alignment. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "We can now use $F$ and $T$ to transcribe and score the alignment of sequences 1 and 2. To do this, we start at the bottom-right of the matrices and follow the arrows to cell $(0, 0)$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "* Every time we encounter a vertical arrow, we consume a character from sequence 2 (the vertical sequence) and add a gap to sequence 1.\n", "* Every time we encounter a horizontal arrow, we consume a character from sequence 1 (the horizontal sequence) and add a gap to sequence 2.\n", "* Every time we encounter a diagonal arrow, we consume a character from sequence 1 and sequence 2.\n", "* When we encounter a bullet, we've reached the end of the alignment so we're done." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As you transcribe the alignment, write sequence 1 on top of sequence 2, and work from right to left (since you are working backwards through the matrix)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The score in the cell that you started in (the bottom-right in this case) is the score for the alignment." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Work through this process on paper, and then review the function in the next cell to see how this looks in Python." ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment._pairwise import _traceback\n", "%psource _traceback" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can then execute this as follows, and print out the resulting alignment. Compare the result that you obtained with the result of calling this function." ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "aln1, aln2, score, _, _ = _traceback(traceback_matrix,nw_matrix,seq1,seq2, nw_matrix.shape[0]-1, nw_matrix.shape[1]-1)\n", "\n", "print(aln1[0])\n", "print(aln2[0])\n", "print(score)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.4.2](#4.2) Automating Needleman-Wunsch alignment with Python [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Calling the steps we just described is labor-intensive, and they don't change regardless of the protein sequences that we want to align. So, as a bioinformatics software developer, you'd want to make this functionality more easily accessible to users. To do that, you'd define a function that takes all of the necessary input and provides the aligned sequences and the score as output, without requiring the user to make several function calls." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Think for a minute about how you'd define this function. What are the required inputs? What would the function provide as output? What would be a good name for the function? (Naming functions is hard: you want the name to be self-documenting, so users know what the function does, but you also want it to be concise because you and your users will be typing it often.) Write your answers to these questions down. What you're doing here is sketching an *Application Programmer Interface*, or *API* for a function. Defining APIs is a bit of an art and a bit of a science, and there are great APIs and horrible APIs. API definition is hard, and it's something that you get better at with practice. Spending time thinking about APIs is important for developers, as it's how your users will interact with your code. There is a lot of good code out there that no one uses because it has a bad API." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here's the scikit-bio implementation of Needleman-Wunsch alignment. How is its API different from the interface you sketched out above?" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment import global_pairwise_align\n", "%psource global_pairwise_align" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [], "source": [ "aln, score, _ = global_pairwise_align(Protein(\"HEAGAWGHEE\"), Protein(\"PAWHEAE\"), 8, 8, blosum50, penalize_terminal_gaps=True)\n", "\n", "print(aln)\n", "print(score)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.4.3](#4.3) A note on computing $F$ and $T$ [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Some applications of global alignment use both the alignment score and the aligned sequences, and some only use one or the other. As a result, some applications optimize this process by only keeping track of the information they need. For example, if you're working on a database search algorithm, you might only care about the score of the alignment. In this case you might not need to keep track of $T$, and could reduce the amount of memory that your software requires by not keeping track of it." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.5](#5) Global versus local alignment [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "The alignment we just constructed is a *global alignment*, meaning we align both sequences from their beginning through their end. This has some important specific applications: for example, if we have two full-length protein sequences, and we have a crystal structure for one of them, we can use global alignment to give us a direct mapping between all positions in both sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is in contrast to local alignment, where we have a pair of sequences that we suspect may partially overlap each other, and we want to know what the best possible alignment of all or part of one sequence is with all or part of the other sequences. Perhaps the most widely used application of this is in sequence database searching (e.g., [the BLAST web server](http://blast.ncbi.nlm.nih.gov/Blast.cgi)), where we have a query sequence and we want to find the closest match (or matches) in a reference database containing many different gene sequences. In this case, the whole reference database could be represented as a single sequence, as we could perform a local alignment against it to find the region that contains the highest scoring match." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Global and local alignment are both used for different applications. We'll next look at an algorithm for computing local alignments. You'll see that this is very similar to Needleman-Wunsch alignment." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.6](#6) Smith-Waterman local sequence alignment [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [Step 1: Create blank matrices.](#6.1)\n", "0. [Step 2: Compute $F$ and $T$.](#6.2)\n", "0. [Step 3: Transcribe the alignment.](#6.3)\n", "0. [Automating Smith-Waterman alignment with Python](#6.4)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "The algorithm that is most commonly used for performing local alignment was originally published by [Temple F. Smith and Michael S. Waterman in 1981](https://www.ncbi.nlm.nih.gov/pubmed/7265238), and is therefore referred to as Smith-Waterman alignment. In terms of the resulting alignment, the difference between Smith-Waterman and Needleman-Wunsch is that the aligned sequences in Smith-Waterman can be a subsequence of one or both of the unaligned (input) sequences. In Needleman-Wunsch alignment, the aligned sequences will be full-length with respect to the unaligned sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Algorithmically, Smith-Waterman is nearly identical to Needleman-Wunsch, with three small important differences. We'll now work through Smith-Waterman alignment following the same steps that we followed for Needleman-Wunsch, and look at the differences as we go. We'll redefine our two sequences to align here. As you did for Needleman-Wunsch, after working through this example with these sequences, come back here and experiment with different sequences." ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [], "source": [ "from skbio import Protein\n", "seq1 = Protein(\"HEAGAWGHEE\")\n", "seq2 = Protein(\"PAWHEAE\")\n", "\n", "print(seq1)\n", "print(seq2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.6.1](#6.1) Step 1: Create blank matrices. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "$F$ and $T$ are created in the same way for Smith-Waterman as for Needleman-Wunsch so prior to initialization, $F$ and $T$ would again look like the following." ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "num_rows = len(seq2) + 1\n", "num_cols = len(seq1) + 1\n", "F = np.zeros(shape=(num_rows, num_cols), dtype=np.int)\n", "HTML(show_F(seq1, seq2, F))" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "from iab.algorithms import show_T\n", "\n", "T = np.full(shape=(num_rows, num_cols), fill_value=\" \", dtype=np.str)\n", "HTML(show_T(seq1, seq2, T))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.6.2](#6.2) Step 2: Compute $F$ and $T$. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Computing $F$ and $T$ is slightly different for Smith-Waterman than for Needleman-Wunsch. First, initialization is easier. The following formulas are used for computing the first row and column of $F$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\begin{align}\n", "& F(0, 0) = 0\\\\\n", "& F(i, 0) = 0\\\\\n", "& F(0, j) = 0\n", "\\end{align}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Initializing $F$ would therefore result in the following." ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "d = 8\n", "F[0][0] = 0\n", "for i in range(1, num_rows):\n", " F[i][0] = 0\n", "\n", "for j in range(1, num_cols):\n", " F[0][j] = 0\n", "\n", "HTML(show_F(seq1, seq2, F))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Because none of the values that were just added to $F$ depend on any other cells in $F$, initializing $T$ would result in the following." ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [], "source": [ "T[0][0] = \"•\"\n", "for i in range(1, num_rows):\n", " T[i][0] = \"•\"\n", "\n", "for j in range(1, num_cols):\n", " T[0][j] = \"•\"\n", "\n", "HTML(show_T(seq1, seq2, T))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'd next want to compute the remaining cells in $F$ and $T$. This proceeds exactly the same as for Needleman-Wunsch, except that there is one additional term in the scoring function:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "F(i, j) = max \\left(\\begin{align}\n", "& 0\\\\\n", "& F(i-1, j-1) + s(c_i, c_j)\\\\\n", "& F(i-1, j) - d\\\\\n", "& F(i, j-1) - d)\n", "\\end{align}\\right)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Go back to the final $F$ matrix that you computed with Needleman-Wunsch earlier in the chapter. How would this new scoring term change that matrix? As you did before, compute the values for the first few cells of $F$ and $T$, this time using the Smith-Waterman scoring function. Remember that when you add a score to $F$ that does not depend on other cells in $F$ (which in this case corresponds to $0$ being the max value from the scoring function), you should add a bullet (•) to the corresponding cell in $T$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll use the same function that we used above to compute the full $F$ and $T$ matrices. To indicate that we now want to compute this using Smith-Waterman, we pass some additional parameters." ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment._pairwise import _init_matrices_sw\n", "seq1 = TabularMSA([seq1])\n", "seq2 = TabularMSA([seq2])\n", "\n", "sw_matrix, traceback_matrix = _compute_score_and_traceback_matrices(\n", " seq1, seq2, 8, 8, blosum50, new_alignment_score=0.0,\n", " init_matrices_f=_init_matrices_sw)\n", "\n", "HTML(show_F(seq1[0], seq2[0], sw_matrix))" ] }, { "cell_type": "code", "execution_count": 33, "metadata": {}, "outputs": [], "source": [ "HTML(show_T(seq1[0], seq2[0], traceback_matrix))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.6.3](#6.3) Step 3: Transcribe the alignment. [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "There is one small difference in the traceback step between Smith-Waterman and Needleman-Wunsch. You should now begin tracing back from the cell with the highest value in $F$, rather than the bottom right cell of the matrix. We find this cell directly in the code below. As before, the alignment terminates when we hit a bullet (•) character, but in contrast to Needleman-Wunsch alignment, this can happen anywhere in the matrix, not only in $F(0, 0)$." ] }, { "cell_type": "code", "execution_count": 34, "metadata": {}, "outputs": [], "source": [ "max_value = 0.0\n", "max_i = 0\n", "max_j = 0\n", "for i in range(sw_matrix.shape[0]):\n", " for j in range(sw_matrix.shape[1]):\n", " if sw_matrix[i, j] > max_value:\n", " max_i, max_j = i, j\n", " max_value = sw_matrix[i, j]\n", "\n", "aln1, aln2, score, start_a1, start_a2 = _traceback(traceback_matrix, sw_matrix, seq1, seq2, max_i, max_j)\n", "print(aln1[0])\n", "print(aln2[0])\n", "print(score)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.6.4](#6.4) Automating Smith-Waterman alignment with Python [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Again, we can define a *convenience function*, which will allow us to provide the required input and just get our aligned sequences back." ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment import local_pairwise_align\n", "\n", "%psource local_pairwise_align" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can take the *convenience function* one step further, and wrap `local_pairwise_align` and `global_pairwise_align` up in a more general `align` function, which takes a boolean parameter (i.e., `True` or `False`) indicating where we want a local or global alignment." ] }, { "cell_type": "code", "execution_count": 36, "metadata": {}, "outputs": [], "source": [ "def align(sequence1, sequence2, gap_penalty, substitution_matrix, local):\n", " if local:\n", " return local_pairwise_align(sequence1, sequence2, gap_penalty, gap_penalty, substitution_matrix)\n", " else:\n", " return global_pairwise_align(sequence1, sequence2, gap_penalty, gap_penalty, substitution_matrix)" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [], "source": [ "aln, score, _ = align(Protein('HEAGAWGHEE'), Protein('PAWHEAE'), 8, blosum50, True)\n", "\n", "print(aln)\n", "print(score)" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [], "source": [ "aln, score, _ = align(Protein('HEAGAWGHEE'), Protein('PAWHEAE'), 8, blosum50, False)\n", "\n", "print(aln)\n", "print(score)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This was a lot of complicated material, so congratulations on making it this far. If you feel comfortable with everything we just went through, you now understand the basics of pairwise alignment, which is easily the most fundamental algorithm in bioinformatics. If you're not feeling totally comfortable with all of this, go back and re-read it. This time spend more time working out the individual steps with a pencil and paper by computing more cells in $F$ and $T$ as you go, and performing the traceback step manually. And don't get discouraged: we can describe the steps that need to be carried out to a computer with just a few lines of code, so it's nothing magical. Computing a pairwise alignment just involves the systematic application of a few well defined steps. You *will* be able to carry out those steps (a metric of your understanding of the algorithm) as long as you put a bit of effort into performing those steps." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.7](#7) Differential scoring of gaps [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "The second limitation of the our simple alignment algorithm (which we discussed [way back at the beginning of this chapter](#2.5)), and one that is also present in the versions of Needleman-Wunsch and Smith-Waterman implemented above, is that all gaps are scored equally whether they represent the opening of a new insertion/deletion, or the extension of an existing insertion/deletion. This isn't ideal based on what we know about how insertion/deletion events occur (see [this discussion of replication slippage](http://www.ncbi.nlm.nih.gov/books/NBK21114/) if you're not familiar with the biological process that is thought to lead to small insertions as deletions). Instead, we might want to incur a large penalty for opening a gap, but a smaller penalty for extending an existing gap. This is referred to as *affine gap scoring*." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To score gap extensions differently from gap creations (or gap opens), we need to modify the terms corresponding to the addition of gaps in our scoring function. When we compute the score corresponding to a gap in our alignment (i.e., where we'd insert either a ↑ or a ← in $T$), we should incur a *gap extension penalty* if the value in $T$ that the new arrow will point to is the same type of arrow. Otherwise, we should incur the *gap open penalty*. If we represent our gap open penalty as $d^0$, and our gap extend penalty as $d^e$, our scoring scheme would look now like the following:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "F(i, j) = max \\left(\\begin{align}\n", "& 0\\\\\n", "& F(i-1, j-1) + s(c_i, c_j)\\\\\n", "& \\left\\{\\begin{array}{l l} F(i-1, j) - d^e \\quad \\text{if $T(i-1, j)$ is ↑}\\\\ F(i-1, j) - d^o \\quad \\text{if $T(i-1, j)$ is not ↑} \\end{array} \\right\\} \\\\\n", "& \\left\\{\\begin{array}{l l} F(i, j-1) - d^e \\quad \\text{if $T(i, j-1)$ is ←}\\\\ F(i, j-1) - d^o \\quad \\text{if $T(i, j-1)$ is not ←} \\end{array} \\right\\}\n", " \\end{align}\\right)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Notice how we only use the gap extend penalty if the previous max score resulted from a gap in the same sequence because it represents the continuation of an existing gap in that sequence. We know which sequence a gap is being introduced in by the characters in the traceback matrix: ↑ always implies a gap in the sequence on the horizontal axis of $F$ and $T$, and ← always implies a gap in the sequence on the vertical axis of $F$ and $T$." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And here's a quick quiz: is this a Smith-Waterman or Needleman-Wunsch scoring function? How do you know?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Take a look at how the scores differ with these additions." ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [], "source": [ "seq1 = TabularMSA([Protein(\"HEAGAWGHEE\")])\n", "seq2 = TabularMSA([Protein(\"PAWHEAE\")])\n", "\n", "sw_matrix, traceback_matrix = _compute_score_and_traceback_matrices(seq1, seq2, 8, 1, blosum50)\n", "\n", "HTML(show_F(seq1[0], seq2[0], sw_matrix))" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [], "source": [ "HTML(show_T(seq1[0], seq2[0], traceback_matrix))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "While we just looked at Smith-Waterman alignment with affine gap scoring, Needleman-Wunsch is adapted in the same way for affine gap scoring." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The convenience functions we worked with above all take ``gap_open_penalty`` and ``gap_extend_penalty``, which we can see by calling ``help`` on the function. So, we can use those functions to explore sequence alignment with affine gap scoring." ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [], "source": [ "help(global_pairwise_align)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here I define `seq1` to be slightly different than what I have above. Notice how we get different alignments when we use affine gap penalties (i.e., ``gap_extend_penalty`` is not equal to ``gap_open_penalty``) versus equal gap open and gap extend penalties." ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [], "source": [ "seq1 = TabularMSA([Protein(\"HEAGAWGFHEE\")])\n", "seq2 = TabularMSA([Protein(\"PAWHEAE\")])" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [], "source": [ "aln, score, _ = global_pairwise_align(seq1, seq2, 8, 8, blosum50)\n", "print(aln)\n", "print(score)" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [], "source": [ "aln, score, _ = global_pairwise_align(seq1, seq2, 8, 1, blosum50)\n", "print(aln)\n", "print(score)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As a final exercise in this section, try to adapt the commands above to compute local alignments with affine gap scoring. You won't need to write any code to do this, but rather you can adapt some of the commands that we've already used above. Don't forget about the ``help`` function - that's essential for learning how to use a function." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## [2.1.8](#8) How long does pairwise sequence alignment take? [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Table of Contents**\n", "0. [Comparing implementations of Smith-Waterman](#8.1)\n", "0. [Analyzing Smith-Waterman run time as a function of sequence length](#8.2)\n", "0. [Conclusions on the scalability of pairwise sequence alignment with Smith-Waterman](#8.3)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "The focus of this book is *applied* bioinformatics, and two of the practical considerations we need to think about when developing algorithms and applications is how long they'll take to run, and how much system memory (or RAM) they'll require. Both of these can be limiting factors for applications that require sequence alignments, so a lot of effort is spent understanding how to optimize sequence alignment." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We just worked through a few algorithms for pairwise sequence alignment, and ran some toy examples based on short sequences. What if we wanted to scale this up to align much longer sequences, or to align relatively short sequences against a large database? In this section we'll explore the runtime of sequence alignment." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.8.1](#8.1) Comparing implementations of Smith-Waterman [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "To explore runtime, let's use the IPython [magic function](http://ipython.org/ipython-doc/dev/interactive/tutorial.html#magic-functions) called ``timeit``. This allows us to conveniently run a given command many times and reports the average time it takes to run. We'll use this to see how long local alignment takes to run. Note that we don't care about getting the actual alignment back for the moment. We just want the runtime in seconds." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "First, let's *benchmark* the runtime of the scikit-bio ``local_pairwise_align_nucleotide`` function. This specifically performs nucleotide alignment, and is implemented in Python." ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment import local_pairwise_align_nucleotide\n", "\n", "seq1 = DNA(\"GGTCTTCGCTAGGCTTTCATCGGGTTCGGCATCTACTCTGAGTTACTACG\")\n", "seq2 = DNA(\"GGTCTTCAGGCTTTCATCGGGAACGGCATCTCTGAGTTACTACC\")\n", "\n", "%timeit local_pairwise_align_nucleotide(seq1, seq2, gap_open_penalty=8, gap_extend_penalty=1)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "From interpreting these results, it looks like this is taking a few seconds to compute the alignment. When executing this, you may see a red warning box pop up. Read that warning message (a good practice, in general!). This is telling us that there is a faster implementation of Smith-Waterman alignment available in scikit-bio, so let's benchmark that one for comparison. We'll use the same two sequences for a direct comparison, of course." ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [], "source": [ "from skbio.alignment import local_pairwise_align_ssw\n", "\n", "%timeit local_pairwise_align_ssw(seq1, seq2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We clearly see here that the ``local_pairwise_align_ssw`` function is much faster for performing alignment than ``local_pairwise_align_nucleotide`` (be sure to compare the units of each run time!). This is because ``local_pairwise_align_ssw`` is a much more efficient implementation of Smith-Waterman alignment, and it additionally applies some cool tricks that allow it to not compute all of the values in $F$ and $T$, but still get the right answer most of the time. This is referred to as a *heuristic* approach to optimizing an algorithm. We'll spend some time defining and comparing heuristics in the Database Searching chapter, but to get you to start thinking about it, what you care about is how much a heuristic reduces the run time of an algorithm, and how often it gives you the same answer as the full algorithm. Take a minute to compare the results of the two functions we just ran:" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [], "source": [ "msa, _, _ = local_pairwise_align_nucleotide(seq1, seq2, gap_open_penalty=8, gap_extend_penalty=1)\n", "msa" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [], "source": [ "msa, _, _ = local_pairwise_align_ssw(seq1, seq2)\n", "msa" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "How do the results look?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you were truly evaluating a new heuristic, you'd want to compare many different inputs with the heuristic and the full algorithm. For now, just take it from me that ``local_pairwise_align_ssw`` is generally producing comparable results to ``local_pairwise_align_nucleotide``, and you can clearly see that it's running much faster. So, we'll use that implementation in this text when we need to perform fast local alignments." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.8.2](#8.2) Analyzing Smith-Waterman run time as a function of sequence length [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "Next, let's apply this to pairs of sequences where we vary the length. We don't really care what the sequences are here, so we'll use [numpy's ``random`` module](http://docs.scipy.org/doc/numpy/reference/routines.random.html) to get random pairs of sequences." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's first define a function to generate a random sequence of a specific length and type of biological sequence. Take a minute to understand that code, as we'll do this a few times throughout the text." ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "\n", "def random_sequence(moltype, length):\n", " result = []\n", " # Our \"alphabet\" here will consist of the standard characters in a\n", " # molecules alphabet.\n", " alphabet = list(moltype.nondegenerate_chars)\n", " for e in range(length):\n", " result.append(np.random.choice(alphabet))\n", " return moltype(''.join(result))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now let's apply that function a few times. Execute this cell a few times to confirm that the sequences we get back are in fact changing each time." ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [], "source": [ "print(random_sequence(DNA, 10))\n", "print(random_sequence(DNA, 10))\n", "print(random_sequence(DNA, 25))\n", "print(random_sequence(DNA, 50))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we'll define a loop where we align random pairs of sequences of increasing length, and compile the time it took to align the sequences. Here we want programmatic access to the runtimes, so we're going to use [Python's ``timeit`` module](https://docs.python.org/3/library/timeit.html) (which the ``%timeit`` magic function is based on). The computer's doing a lot of work here, even though these are relatively small sequences, so this may take over a minute or so." ] }, { "cell_type": "code", "execution_count": 51, "metadata": {}, "outputs": [], "source": [ "import timeit\n", "\n", "times = []\n", "seq_lengths = range(5000,110000,20000)\n", "\n", "def get_time_function(seq_length):\n", " def f():\n", " seq1 = random_sequence(DNA, seq_length)\n", " seq2 = random_sequence(DNA, seq_length)\n", " local_pairwise_align_ssw(seq1, seq2)\n", " return f\n", "\n", "for seq_length in seq_lengths:\n", " times.append(min(timeit.Timer(get_time_function(seq_length)).repeat(repeat=3, number=3)))\n", "\n", "print(\"Done!\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If we look at the run times, we can see that they are increasing with increasing sequence lengths:" ] }, { "cell_type": "code", "execution_count": 52, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "runtimes = pd.DataFrame(data=np.asarray([seq_lengths, times]).T, columns=[\"Sequence length\", \"Runtime (s)\"] )\n", "runtimes" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "That's probably to be expected, but what we care about now is *how* the runtimes are increasing as a function of sequence length. Is the relationship between runtime and sequence length:\n", "* linear: $runtime \\approx constant \\times sequence\\ length$\n", "* quadratic: $runtime \\approx constant \\times {sequence\\ length}^2$\n", "* exponential: $runtime \\approx {constant}^{sequence\\ length}$\n", "* or something else?" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Ultimately, we'd like to get an idea of how useful alignment would be in practice if our sequences were much longer, and specifically if sequence length might ultimately make sequence alignment too slow. Plotting these runtimes can help us to figure this out." ] }, { "cell_type": "code", "execution_count": 53, "metadata": {}, "outputs": [], "source": [ "import seaborn as sns\n", "ax = sns.regplot(x=\"Sequence length\", y=\"Runtime (s)\", data=runtimes, fit_reg=False)\n", "ax.set_xlim(0)\n", "ax.set_ylim(0)\n", "ax" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This looks to be a [quadratic relationship](http://en.wikipedia.org/wiki/Quadratic_time): the increase in runtime is proportional to the square of sequence length. If you think back to the computation of $F$ and $T$, this makes sense. If our sequences are each five bases long, our matrices will have five rows and five columns, so $5 \\times 5 = 25$ cells that need to be filled in by performing some numeric computations. If we double our sequences lengths to ten, our matrices will have ten rows and ten columns, so $10 \\times 10 = 100$ cells that need to be filled in. Because each of the numeric computations take roughly the same amount of time (you can take that on faith, or prove it to yourself using ``timeit``), when we double our sequence length we have four times as many cells to compute." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When runtime scales quadratically, that can be a practical limitation for an algorithm. We'd much prefer to see a linear relationship (i.e., if we double our sequence length, our runtime doubles). But this is an inherent issue with pairwise alignment, so it's one that we need to deal with." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One question you might have is whether developing a version of this algorithm which can run in parallel on multiple processors would be an effective way to make it scale to larger data sets. In the next cell, we look and how the plot would change if we could run the alignment process over four processors." ] }, { "cell_type": "code", "execution_count": 54, "metadata": {}, "outputs": [], "source": [ "# if we could split this process over more processors (four, for example)\n", "# that would effectively reduce the runtime by 1/4\n", "parallel_runtimes = pd.DataFrame(data=np.asarray([seq_lengths, [t/4 for t in times]]).T, columns=[\"Sequence length\", \"Runtime (s)\"] )\n", "parallel_runtimes\n", "\n", "ax = sns.regplot(x=\"Sequence length\", y=\"Runtime (s)\", data=parallel_runtimes, fit_reg=False)\n", "ax.set_xlim(0)\n", "ax.set_ylim(0)\n", "ax" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Notice that the runtimes in the plot are smaller, but shape of the curve is the same. While parallelization can reduce the runtime of an algorithm, it won't change its *computational complexity* (or how its runtime scales as a function of its input size). You can explore the computational complexity of different types of algorithms in the [Big-O Cheat Sheet](http://bigocheatsheet.com/), though it's a fairly advanced introduction to the topic (and one that's usually covered in the second or third year for Computer Science majors)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### [2.1.8.3](#8.3) Conclusions on the scalability of pairwise sequence alignment with Smith-Waterman [edit]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "These are pretty long sequences that we're working with here, and the runtime is still pretty reasonable (only a few seconds for DNA sequences around 100,000 bases), so that suggests this implementation of Smith-Waterman should work ok for aligning pairs of sequences, even if the sequences are fairly long. However, we're often interested in doing more than just pairwise alignment. For example, we may want to align many sequences to each other (which we'll explore in the Multiple Sequence Alignment chapter), or we may want to perform many pairwise alignments (which we'll explore in the Database Searching chapter). In the next chapter we'll begin exploring ways to address this scalability issue by approximating solutions to the problem." ] } ], "metadata": {}, "nbformat": 4, "nbformat_minor": 4 }