1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<!DOCTYPE html>
<html>
<head>
<link rel=stylesheet href=style.css />
<link rel=icon href=CZI-new-logo.png />
</head>
<body>
<main>
<div class="goto-index"><a href="index.html">Table of contents</a></div>
<h1>Shasta long read assembler</h1>
<p>
This is the documentation for the
<a href="https://github.com/paoloshasta/shasta">
Shasta long read assembler</a>.
If you are seeing this documentation on <code>github.io</code>,
it applies to the latest version of Shasta
on GitHub (not necessarily the same as the latest release).
Documentation for any version of Shasta is available
in the source code in the <code>shasta/docs</code> directory
and in any build under the <code>shasta-build/shasta-install/docs</code>
directory.
</p>
<h3>Abstract</h3>
<p>
The goal of Shasta is to rapidly
produce accurate assembled sequence using as input DNA reads
generated by <a href="https://nanoporetech.com">Oxford Nanopore</a> flow cells.
</p>
<p>
Computational methods used by the Shasta assembler include:
<ul>
<li>
Using a
<a href='https://en.wikipedia.org/wiki/Run-length_encoding'>run-length</a>
representation of the read sequence.
This makes the assembly process more resilient to errors in
homopolymer repeat counts, which are the most common type
of errors in Oxford Nanopore reads.
<li>
Using in some phases of the computation a representation
of the read sequence based on <i>markers</i>, a fixed
subset of short k-mers (k ≈ 10).
</ul>
</p>
<p>
An current implementation of Shasta is complete and functional,
but significant improvements in several areas are possible.
As implemented, it can run an assembly of a human genome at coverage around 60x
in about 5 hours using a single, large machine (AWS instance type
<code>x1.32xlarge</code>, with 128 virtual processors and 1952 GB of memory).
The compute cost of such an assembly is around $20 at AWS spot market or reserved prices.
</p>
<p style="font-style:italic;">
See <a href='https://www.nature.com/articles/s41587-020-0503-6'>Shafin et al, Nature Biotechnology 2020</a>
for an error analysis of the Shasta assembler and more.
</p>
<div class="goto-index"><a href="index.html">Table of contents</a></div>
</main>
</body>
</html>
|