+ - 0:00:00
Notes for current slide

Presenter notes contain extra information which might be useful if you intend to use these slides for teaching.

Press P again to switch presenter notes off

Press C to create a new window where the same presentation will be displayed. This window is linked to the main window. Changing slides on one will cause the slide to change on the other.

Useful when presenting.

Notes for next slide



Unicycler Assembly



last_modification Updated:   purlPURL: gxy.io/GTN:S00035

text-document Plain-text slides |

Tip: press P to view the presenter notes | arrow-keys Use arrow keys to move between slides
1 / 83

Presenter notes contain extra information which might be useful if you intend to use these slides for teaching.

Press P again to switch presenter notes off

Press C to create a new window where the same presentation will be displayed. This window is linked to the main window. Changing slides on one will cause the slide to change on the other.

Useful when presenting.

Requirements

Before diving into this slide deck, we recommend you to have a look at:

2 / 83

question Questions

  • I have short reads and long reads. How do I assemble a genome?
3 / 83

objectives Objectives

  • Perform Quality Control on your reads

  • Perform a Small genome Assembly with Unicycler

  • Evaluate the Quality of the Assembly with Quast

  • Annotate the assembly with Prokka

4 / 83

Small Genome Assembly With Unicycler

5 / 83

Introduction to Genome Assembly

To start on Genome assembly you can read the previous assembly tutorials:

6 / 83

Assembly basics : Challenges of genome (and transcriptome) assembly

Graphic shown three different assemblies, all tangled knots of sequences that will be very difficult to resolve.

Genome assembly is a difficult task. In trying to explain it we will be relying on two highly regarded sources:

7 / 83

Genomes and reads: Strings and k-mers

k-mer composition

Genomes are strings of text. When we sequence genomes we use sequencing machines that generate reads. For now let's assume that all reads have the same length k and every k-mer is sequenced only once. We will relax these assumptions later in this lecture. Thus sequencing a genome generates a large list of k-mers.

Suppose we are dealing with a very short genome TATGGGGTGC. Its k-mer composition (note the subscript) Composition_k(Text) is the collection of all k-mer substrings (including repeated ones). When k = 3 we get (basically we split sequence into windows of length 3 sliding window by 1 base every time):

Composition_3(TATGGGGTGC)= ATG,GGG,GGG,GGT,GTG,TAT,TGC,TGG

8 / 83

Composition_3(TATGGGGTGC)= ATG,GGG,GGG,GGT,GTG,TAT,TGC,TGG

Note that we have listed k-mers in lexicographic order (i.e., how they would appear in a dictionary) rather than in the order of their appearance in TATGGGGTGC. We have done this because the correct ordering of the reads is unknown when they are generated (i.e., a sequencing machine does not generate reads in any particular order).

9 / 83

Assembly by overlap

In the example above we know what the "genome" sequence is. In real life we don't know that and our goal is to determine genome sequence given a scrambled collection of k-mers. Let's consider the following collection of 3-mers representing a hypothetical genome:

AAT ATG GTT TAA TGT

Let's "tile" k-mers if they overlap in k-1 nucleotides:

TAA
AAT
ATG
TGT
GTT
-------
TAATGTT
10 / 83

Now let's apply it to slightly longer "genome" with the following 3-mer composition sorted in a lexicographic order:

AAT ATG ATG ATG CAT CCA GAT GCC GGA GGG GTT TAA TGC TGG TGT

TAA looks like a great beginning and we are continuing:

1 TAA
2 AAT
3 ATG
4 TGT
5 GTT
-------
TAATGTT

There is nothing in the original 3-mer composition, which starts with TT.

11 / 83

Let's track back and instead of TGT in step 4 insert TGC:

1 TAA
2 AAT
3 ATG
4 TGC
5 GCC
6 CCA
7 CAT
8 ATG
9 TGG
10 GGA
11 GAT
12 ATG
13 TGT
14 GTT
----------------
TAATGCCATGGATGTT

We only used 14 3-mers from the total of 15, so our genome is shorter (we have extra parts!). This difficulty is related to the fact that there are three repeated ATG motifs in this genome and as a result each ATG can be extended by either TGG, TGC, or TGT.

12 / 83

The concept of coverage

Coverage is the number of reads covering a particular position in the genome. For example, in the following case:

TAA
AAT
ATG <- "reads" (15 bases total)
TGT
GTT
-------
TAATGTT <- "genome" (7 bases)
-------
0123456

The Coverage at positions 1 and 6 is 1, at positions 1 and 5 is 2, and at position 2, 3, and 4 is 3.
The Average Coverage will be 15/7 ~ 2x

13 / 83

Below is another, slightly more realistic example where average coverage is 177/35 ~ 7x:

CTAGGCCCTCAATTTTT
CTCTAGGCCCTCAATTTTT
GGCTCTAGGCCCTCATTTTTT
CTCGGCTCTAGCCCCTCATTTT
TATCTCGACTCTAGGCCCTCA <- 177 bases
TATCTCGACTCTAGGCC
TCTATATCTCGGCTCTAGG
GGCGTCTATATCTCG
GGCGTCGATATCT
GGCGTCTATATCT
-----------------------------------
GGCGTCTATATCTCGGCTCTAGGCCCTCATTTTTT <- 35 bases
-----------------------------------
| | | | |
0 10 20 30 34
14 / 83

The First and the Second laws of assembly

The goal of assembly process is to reconstruct an unknown genome sequence given a collection of scrambled sequencing reads:

CTAGGCCCTCAATTTTT
CTCTAGGCCCTCAATTTTT
GGCTCTAGGCCCTCATTTTTT
CTCGGCTCTAGCCCCTCATTTT
TATCTCGACTCTAGGCCCTCA <- Reads (Given)
TATCTCGACTCTAGGCC
TCTATATCTCGGCTCTAGG
GGCGTCTATATCTCG
GGCGTCGATATCT
GGCGTCTATATCT
-----------------------------------
??????????????????????????????????? <- Genome (Unknown)

The goal of assembly process. Given sequencing reads reconstruct underlying genome sequence.

We've seen that this can (in principle) be accomplished by finding overlaps. We also discussed the concept of the coverage. We can now formulate the two first assembly laws.

15 / 83

The First Assembly Law: Overlaps imply co-location

Let's define terms Prefix and Suffix using string TAA as an example:

  • Prefix(TAA) = TA
  • Suffix(TAA) = AA
16 / 83

The First law states that if a suffix of one read is similar to a prefix of another read...

TCTATATCTCGGCTCTAGG <- read 1
||||||| |||||||
TATCTCGACTCTAGGCC <- read 2

...then they may overlap (may be derived from the same location) within the genome.

TCTATATCTCGGCTCTAGG <- read 1
-------------------------------------
AGCGTTCTATATCTCGGCTCTAGGCCGTGCAGGACGT <- genome
-------------------------------------
TATCTCGACTCTAGGCC <- read 2
17 / 83

Note that in the above example suffix of the first read is not exactly identical to the prefix of the second read: they differ by a G-to-A substitution. Such differences are quite common in real life and may be caused by:

  • sequencing errors - experimental or computational artifacts of DNA sequencing procedures.
  • allelic differences - organisms such as human are diploid (and others, such as wheat are hexaploid) which maternal and paternal genomes being different at a number of genomic sites.
  • polymorphic sites - DNA that is being sequenced is usually isolated from a large number of cells (e.g., white blood cells) or individuals (bacterial and viral cultures). Natural variation present in these cell (or viral particle) populations will manifest itself as these differences.
18 / 83

The Second Assembly Law: The higher the coverage, the better

The Second law states that higher coverage leads to more frequent and longer overlaps:

CTAGGCCCTCAATTTTT
TATCTCGACTCTAGGCCCTCA <- Low coverage
GGCGTCTATATCT
-----------------------------------
GGCGTCTATATCTCGGCTCTAGGCCCTCATTTTTT <- Genome
-----------------------------------
CTAGGCCCTCAATTTTT
CTCTAGGCCCTCAATTTTT
GGCTCTAGGCCCTCATTTTTT
CTCGGCTCTAGCCCCTCATTTT
TATCTCGACTCTAGGCCCTCA <- Higher coverage
TATCTCGACTCTAGGCC
TCTATATCTCGGCTCTAGG
GGCGTCTATATCTCG
GGCGTCGATATCT
GGCGTCTATATCT
19 / 83

Solving assembly problem with graphs

We can solve assembly challenge using overlaps between sequencing reads. However, to solve this problem effectively we need to first represent all overlaps in a way that would facilitate further analysis. Directed graphs help achieving this.

20 / 83

Directed graphs

Finding overlaps is identical to building a directed graph where directed edges connect nodes representing overlapping reads: Cartoons of two sequences aligned with nearly perfect matches. On the right are a list of nodes representing sequences. The two from the alignment are linked with an arrow and the text reads Suffix of source is similar to prefix of sink.

Directed graph representing overlapping reads. (Image from Ben Langmead).

21 / 83

For example, the string reconstruction we have seen earlier (with the difference of inserting GGG in line 10):

1 TAA
2 AAT
3 ATG
4 TGC
5 GCC
6 CCA
7 CAT
8 ATG
9 TGG
10 GGG
11 GGA
12 GAT
13 ATG
14 TGT
15 GTT
-----------------
TAATGCCATGGGATGTT

can be represented as a following directed graph (or genome path):

Graph where each of the above 3-mers is a single node in a graph and they are linked together from left to right most 3-mer.

Genome path. Trimers composing the TAATGCCATGGGATGTT sequence represented as the "genome" path. (Fig. 4.6 from CP). In this path a suffix of a 3-mer is equal to prefix of the next 3-mer.

22 / 83

However, we do not know the actual genome! All we have in real life is a collection of reads. Let's first build an overlap graph by connecting two 3-mers if suffix of one is equal to the prefix of the other:

Th above graph is expanded to include a lot more connections between any nodes that share 2 base overlap.

Overlap graph. All possible overlap connections for our 3-mer collection. (Fig. 4.7 from CP)

So to determine the sequence of the underlying genome we are looking a path in this graph that visits every node (3-mer) once. Such path is called Hamiltonian path and it may not be unique.

23 / 83

For example for our 3-mer collection there are two possible Hamiltonian paths:

The above graph is re-used but a single path is highlighted The same graph with a different path highlighted.

Two Hamiltonian paths for the 15 3-mers. Edges spelling "genomes" TAATGCCATGGGATGTT and TAATGGGATGCCATGTT are highlighted in black. (Fig. 4.9. from CP).

24 / 83

The reason for this "duality" is the fact that we have a repeat: 3-mer ATG is present three times in our data (green, red, and blue). As we will see later repeats cause a lot of trouble in genome assembly.

25 / 83

Finding overlaps

In the example above we had a collection of 3-mers and were always looking for overlaps of length two. In real life things may not be so "regular". Suppose we have two reads:

Read X CTCTAGGCC
Read Y TAGGCCCTC

What is the overlap between these two reads? For now we will define overlap of length - l suffix of Read X matches length - l prefix of Read Y, where l is given. To find these overlap we look in Read Y for instances length - l suffix of Read X.

26 / 83

We will start with some minimal match of length $k$. Once a match is found it will be extended to the left to verify that the entire prefix of Read Y matches:

Two sequences are shown X and Y. The X sequence ends with the string GCC. In Y they start looking from the end until they find a GCC. In this case we confirm a length-6 prefix of Y matches a suffix of X.

Finding overlaps between Read X and Read Y (Image from Ben Langmead).

27 / 83

As a result we represent two reads are connected nodes: >

Node labelled with one sequence points to another. The sequences are the ones from above with the number 6 on the arrow between them.

Number above the edge shows the length of the overlap.

While with just two reads the problem may seen quite straightforward. Let now consider a set of reads representing a very short genome GTACGTACGAT:

GTACGT
TACGTA
CGTACG
ACGTAC
GTACGA
TACGAT
28 / 83

Building an overlap graph with overlap of length >= 4 will give us the following:

The overlap graph now has longer sequences and numbers annotating the length of the overlap

You can see that there is a path through this graph that would spell out the original genome sequence GTACGTACGAT :

The optimal, highest scoring path is represented through this graph

Here we are lucky enough to have all nodes having a single outgoing edge with the highest number (the length of overlap).

29 / 83

The Shortest Common Superstring Problem

The problem of reconstructing genome using the overlap graph that we have just illustrated can be initially formulated as the Shortest Common Superstring (SCS) problem. It states: given a collection of strings S, find SCS(S), which is the shortest string that contains all strings from the set S as substrings.

For simplicity let's suppose that we have the following set of strings S:

BAA AAB BBA ABA ABB BBB AAA BAB

One way of getting a string that would contain all of these as substrings will simply be concatenating them:

Concat(S): BAAAABBBAABAABBBBBAAABAB (length = 24)

This, however, is not the shortest superstring that contains all strings from $S$. Instead the SCS is (just trust us here):

SCS(S):: AAABBBABAA (length = 10)

30 / 83

It looks like finding SCS for a set of sequencing reads may just be what we need to produce a genome assembly. But how can this work in practice? One potential idea is to order the strings in some way and "reduce" them into a superstring (following examples are from Ben Langmead):

A sequence of As and Bs in groups of 3s is labelled order 1. Below the sequence is written AAA, the current superstring.

Let's look at the first two strings. They can be "reduced" to AAAB:

Now AAAB is written below the sequence because of the overlap in the first two groups.

The next two add an A:

Now AAABA is written, due to overlap in the second and third groups

Third and fourth add BB:

The extension process continues with another overlapping component extending it further.

31 / 83

Continuing this we will eventually get AAABABBAABABBABB:

Order 1 produces a longish superstring

But AAABABBAABABBABB is the shortest only for this particular ordering. So let's reorder and try again:

Order 2, a new ordering of the same sequences, produces a shorter superstring.

Now we did better, but maybe we can do even better.

Ultimately we need to try all possible ordering and pick the shortest among all. Using this approach is we have S strings we will need to do S! tries. This can quickly get impossible. For our set of eight strings 8! = 40320. If we get, say, a 1,000,000 reads from an Illumina machine then the factorial of a million is not going to be an attractive analysis option.

32 / 83

Shortest common superstring: Greedy approach

As we've seen it will be impossible to assemble the genome using SCS logic. There is a simplification called Greedy approach to SCS problem. Let's take the following set of "reads":

AAA AAB ABB BBA BBB

and first build an overlap graph:

Graph showing 5 nodes with various scores between them.

An overlap graph for set S: AAA AAB ABB BBA BBB.

33 / 83

Next, we start collapsing the nodes to maximize the overlap (and hence to decrease the length of the SCS we are trying to construct):

In the graph below there are multiple ties: nodes with outgoing edges of identical weights (e.g., edges pointing from ABB to both BBA and BBB have weight of two. Remember, that the weight is the length of overlap between two nodes' labels). In this situation we will break ties by randomly picking an edge to traverse. Let's pick AAAAAB:

The above graph however the node AAA -> 2 -> AAB is highlighted in red.

34 / 83

We then merge AAA and AAB into an SCS containing both, which will be AAAB:

The above graph however with 4 nodes, as AAA and AAB are merged

35 / 83

We then merge AAA and AAB into an SCS containing both, which will be AAAB:

The above graph however with 4 nodes, as AAA and AAB are merged

Now let's pick edge ABBBBB:

Another edge scoring 2 is highlighted, ABB to BBB (2)

36 / 83

Collapse the nodes:

They're collapsed, now with 3 nodes in the graph

37 / 83

Collapse the nodes:

They're collapsed, now with 3 nodes in the graph

Pick ABBBBBA:

Same as before, another highlighted

38 / 83

Collapse the nodes:

Same as before, down to 2 nodes with arrows going both directions between them. One scores 2, one scores 1.

39 / 83

Collapse the nodes:

Same as before, down to 2 nodes with arrows going both directions between them. One scores 2, one scores 1.

Pick AAABABBBA:

The AAAB to ABBBA is highlighted, scoring 2.

40 / 83

Collapse again and now we are left with a superstring of length 7:

A single node is left producing AAABBBA

The above procedure can be computed very quickly. But there is a catch: it does not guarantee that it will give us truly the shortest superstring. It really depends on how we choose edges.

41 / 83

Below is another example of using the same dataset in which we traverse graph in a slightly different way:

42 / 83

Below is another example of using the same dataset in which we traverse graph in a slightly different way:

We start the same way as before by choosing AAAAAB:

THe graph resets to 5 nodes

43 / 83

Below is another example of using the same dataset in which we traverse graph in a slightly different way:

We start the same way as before by choosing AAAAAB:

THe graph resets to 5 nodes

Merge AAA and AAB:

The same initial step

44 / 83

But now we pick a different edge ABBBBA:

Now a different edge scoring 2 is picked, ABB to BBA

45 / 83

But now we pick a different edge ABBBBA:

Now a different edge scoring 2 is picked, ABB to BBA

Collapsing these nodes dramatically changes the graph:

these are collapsed producing a three node graph. AAAB and ABBA have a score of 2, BBB is only connected to AAAB with a score of 1.

46 / 83

Now we pick AAABABBA as this is the edge with the highest weight:

The highest scoring edge is picked

47 / 83

Now we pick AAABABBA as this is the edge with the highest weight:

The highest scoring edge is picked

Collapsing it produces two nodes that are not connected to each other:

AAABBA and BBB are left, unconnected.

48 / 83

And the SCS of these two will be a concatenation AAABBABBB of length 9. Thus a greedy approach may produce different answers. However, it is a sufficient approximation as the superstring yielded this way will not be more than ~2.5 times longer than the true SCS (Gusfield 16.17.1).

49 / 83

The Third Law of Assembly: Repeats are Evil!

Let's again apply Greedy SCS to a different "genome". Suppose we want to reconstruct the phrase:

a_long_long_long_time

from all 6-mers that overlap by at least 3 characters. The list of 6-mers is:

ng_lon _long_ a_long long_l ong_ti ong_lo long_t
g_long g_time ng_tim
50 / 83

An overlap graph will look like this:

A large, messy graph with various portions fo the above sentence.

An overlap graph for with overlap length >= 3.

51 / 83

If we proceed with Greedy SCS we will follow the following trajectory through the graph:

A greedy path is highlighted, all scoring 5.

52 / 83

To make things even clearer let's isolate the path:

Irrelevant edges are removed.

53 / 83

The total overlap here (the sum of edge weights) is 4+5+5+5+5+5+5+5+5=44 but it gives us a_long_long_time as the shortest superstring:

a_long
long_l
ong_lo
ng_lon
g_long
_long_
long_t
ong_ti
ng_tim
g_time
----------------
a_long_long_time
54 / 83

We are missing one instance of 'long' in this string. The following graph shows the path that would return the correct string:

A less optimal path is shown that recovers the duplicated long

55 / 83

A path yielding the correct string with three repeats. The total overlap here is 5+3+3+5+4+4+5+5+5=39, which is worse than the previous path if our goal is to find the shortest superstring:

a_long
_long_
ng_lon
long_l
ong_lo
g_long
long_t
ong_ti
ng_tim
g_time
---------------------
a_long_long_long_time
56 / 83

Are we really looking for the shortest superstring?

As we've seen above the shortest common superstring (SCS) is:

  1. Difficult to obtain as Greedy SCS algorithm does not guarantee finding it. So the answer we get may be longer than the real genome we are trying to assemble.

  2. May be shorter than we want because if the genome contains repeats that are longer than the reads we are using, Greedy SCS will collapse them and make assembly shorter that the genome we are trying to get.

Let's talk about an alternative way to represent the relationship between k-mers that may give us a more efficient algorithm.

57 / 83

de Bruijn graphs

Nicolaas de Bruijn had a purely theoretical interest of constructing k-universal strings for an arbitrary value of k. A k-universal string contains every possible k-mer only once:

Screenshot of a box from a textbook with illegible text and a similar graph to the ABBA ones shown above.

de Bruijn graph. From Compeau:2011

58 / 83

This problem is equivalent to a string reconstruction problem we have been talking about above: finding a k-universal string is equivalent to finding a Hamiltonian path in an overlap graph constructed from all k-mers. Yet finding a Hamiltonian path in a really large graph (representing a real genome) is not a tractable problem as we have seen. Instead de Bruijn decided to represent k-mer composition in a graph using a slightly different logic. Again, suppose we have a "genome" TAATGCCATGGGATGTT split in a collection of 3-mers:

TAA AAT ATG TGC GCC CCA CAT ATG TGG GGG GGA GAT ATG TGT GTT

59 / 83

We will assign 3-mers to edges instead of nodes:

A long string of 2-mer nodes linked together with 3-mers on edges.

k-mers as edges. Edges represented by 3-mers connect nodes representing the overlaps. (Fig. 4.12 from CP)

This graph can be simplified by gluing identical nodes together:

The same graph

Re-organised to collapse identical nodes, first the AT node is collapsed from three into one.

60 / 83

Here the complexity of the graph is reduced by first gluing redundant AT nodes

Now the 3 TG nodes are highlighted

and collapsed into a single one, sharing the original's connections.

61 / 83

Next, TG nodes are merged

2 GG nodes are highlighted

and merged, including a self-link.

62 / 83

And, finally the two GG nodes are resolved. (Fig. 4.13 from CP)

Because we now represent k-mers as edges (rather than nodes), our problem has morphed into finding a path that visits every edge once, or an Eulerian Path:

The final graph, same as previous image but now edges are numbered as well.

Eulerian paths for the 15 3-mers. Numbering of edges provides a way to reconstruct the original "genome". (Fig. 4.15 from CP)

63 / 83

Euler's Theorem

Some definitions:

  • Balanced node - a node where the number of incoming edges is equal to the number of outgoing edges
  • Balanced graph - a graph where all nodes are balanced
  • Strongly connected graph - any node can be reached from any other node

Euler's Theorem:

Every balanced, strongly connected directed graph is Eulerian.

64 / 83

Let's apply Euler's Theorem to a classical problem: The bridges of Königsberg problem. Here the question is: Can you walk through all of Königsberg traversing every bridge exactly one time? In other words: Is there a Eulerian path through the city of Königsberg?

Old map of Königsberg with dots on land portions and links between them. This is reduced into the same coloured nodes and bridges representing edges.

Königsberg and Euler's Theorem. (a) A map of old Königsberg, in which each area of the city is labeled with a different color point. (b) The Königsberg Bridge graph, formed by representing each of four land areas as a node and each of the city's seven bridges as an edge. (From Campeau:2011)

By looking at this graph we can see that it is unbalanced. If one arrives to, say, the orange node from the blue node there are two ways to get out. Thus there is no way to see all of the city and traverse every bridge once!

65 / 83

Repeats are still a challenge

Let's look at the de Bruijn graph from above again. But this time let's drop edge numbering and pretend that the genome is now really known to us (as is usually the case in real life):

Similar graph as above but now edges are only labelled by sequences, no more numbers.

Eulerian paths for the 15 3-mers.

66 / 83

In the original sequence TAATGCCATGGGATGTT k-mer AT is present 3 times and k-mer TG is found twice. Thus multiple Eulerian walks are now possible like this:

Following a direct path from the one node without incoming connections, to TG node, choosing one of the three outgoing connections we go 'up'

Possible path #1. Here after we reach TG node we turn up.

67 / 83

The above path spells out:

TAA
AAT
ATG
TGC
GCC
CCA
CAT
ATG
TGG
GGG
GGA
GAT
ATG
TGT
GTT
-----------------
TAATGCCATGGGATGTT
68 / 83

Yet there is an alternative:

The same as above but this time going down to follow a different path

Possible path #2. Here after we reach TG node we turn dow.

69 / 83

Which spells:

TAA
AAT
ATG
TGG
GGA
GAT
ATG
TGC
GCC
CCA
CAT
ATG
TGT
GTT
----------------
TAATGGATGCCATGTT

Note how different these are:

TAATGCCATGGGATGTT
TAATGGATGCCATGTTT

and only one of them is correct. Repeats are evil!

70 / 83

k-mer size affects repeat resolution

In the above example we have used k-mer size of 3. But what if we try 4 or 5? Below are De Bruijn graphs for different values of k:

k = 3

The same graph as above, now in a different orientation. There are many connections

71 / 83

This is our original graph

k = 4

There are now significantly fewer connections.

Here complexity is decreasing, but we still have the problem with having ATG twice.

72 / 83

k = 5

In this case there is only one path. This because our k is larger that the repeat size, so we can resolve it accurately.

This is why technologies producing long sequencing reads stimulate so much enthusiasm - they will allow to resolve and produce accurate assembly of large genomes.

Graph with only a single route through the sequence.

73 / 83

Assembly in real life

In this topic we've learned about two ways of representing the relationship between reads derived from a genome we are trying to assemble:

  1. Overlap graphs - nodes are reads, edges are overlaps between reads.
  2. De Bruijn graphs - nodes are overlaps, edges are reads.

Overlap: graph from before, nodes are 3-mers, unlabelled connections.

74 / 83

A.

De Bruijn: The 2-mer graph with 3-mer connections again.

75 / 83

B. An overlap (A) and De Bruijn (B) graphs for the same string.

Whatever the representation will be it will be messy:

A hypothetical real life graph with a huge number of nodes snaking all over the screen, and many many isolaed single and pairs of nodes unconnected to anything.

A fragment of a very large De Bruijn graph (Image from BL).

76 / 83

There are multiple reasons for such messiness:

Sequence errors

Sequencing machines do not give perfect data. This results in spurious deviations on the graph. Some sequencing technologies such as Oxford Nanopore have very high error rate of ~15%.

An inset from the above. A red box highlights pairs of 2 and 3 node groups.

Graph components resulting from sequencing errors (Image from BL).

77 / 83

Ploidy

As we discussed earlier humans are diploid and there are multiple differences between maternal and paternal genomes. This creates "bubbles" on assembly graphs:

A bubble in the graph. there are a series of nodes which have 5-8 connections pointing from one to the next. Halfway through there is a single base deviation and the 5-mer nodes highlight this single base change. The change results in a split into two strands which shortly reconnect. One strand is labelled Maternal, the other Paternal.

Bubbles due to a heterozygous site (Image from BL).

78 / 83

Repeats

As we've seen the third law of assembly is unbeatable. As a result some regions of the genome simply cannot be resolved and are reported in segments called contigs:

A sentence is represented "to everything turn", "turn" (a repeat) and "turn there is a season". The repeat makes the graph hard to solve into a single path.

The following "genomic" segment will be reported in three pieces corresponding to regions flanking the repeat and repeat itself (Image from BL).

79 / 83

How to perform Assembly with Galaxy?

80 / 83

See the tutorial accompanied by these slides!

81 / 83

keypoints Key points

  • We learned about the strategies used by assemblers for hybrid assemblies

  • We performed an hybrid assembly of a bacterial genome and its annotation

  • Unicycler is a pipeline bases on Spades and Pilon dedicated to hybrid assembly of Small genomes

  • Combination of short and long reads helped us produce an almost perfect assembly

82 / 83

Thank You!

This material is the result of a collaborative work. Thanks to the Galaxy Training Network and all the contributors!

Galaxy Training Network

Tutorial Content is licensed under Creative Commons Attribution 4.0 International License.

83 / 83

Requirements

Before diving into this slide deck, we recommend you to have a look at:

2 / 83
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow