File: Prerequisites.html

package info (click to toggle)
shasta 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,636 kB
  • sloc: cpp: 82,262; python: 2,348; makefile: 222; sh: 143
file content (130 lines) | stat: -rw-r--r-- 2,529 bytes parent folder | download | duplicates (4)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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>
<h2>Prerequisite packages</h2>

<p>
To download, build and run the <code>shasta</code> software on a
Ubuntu (16.04, 18.04, 20.04) or macOS (10.14, 10.15) machine, the following packages are required:

<table>
<tr>
<th>Package
<th>Ubuntu package name
<th>Needed<br>to build<br>from<br>source?
<th>Needed<br>to run<br>assembly?
<th>Used by<br>http server?
<th>Comments

<tr>
<td>Git
<td>git
<td>
<td>
<td>
<td>Only needed to get the source code from GitHub.

<tr>
<td>The g++ compiler
<td>g++
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td>Runtime libraries only needed at run time.


<tr>
<td>Cmake
<td>cmake
<td style='text-align:center'>&#x2714;
<td>
<td>
<td>

<tr>
<td>The Boost libraries
<td>libboost-dev
<td style='text-align:center'>&#x2714;
<td>
<td>
<td>

<tr>
<td>Graphviz
<td>graphviz
<td>
<td>
<td style='text-align:center'>&#x2714;
<td>Used for graph layout.

<tr>
<td>Blast
<td>ncbi-blast+
<td>
<td>
<td style='text-align:center'>&#x2714;
<td>Used by the http server for interactively computing alignments.

<tr>
<td>Python 3
<td>python3
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td>

<tr>
<td>pip3
<td>pip3
<td>
<td>
<td>
<td>Only needed to install <code>pybind11</code> (see below)

<tr>
<td>Pybind11
<td>pybind11 (pip3 package)
<td style='text-align:center'>&#x2714;
<td>
<td>
<td>Used to provide Python bindings to C++ code.

<tr>
<td>The png library
<td>libpng-dev
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td style='text-align:center'>&#x2714;
<td>Used to display marker alignments in the http server. But it is a dependency of <code>shasta.so</code>, so it must be installed whether it is used or not.

<tr>
<td>SeqAn 2.4.0
<td>
<td style='text-align:center'>&#x2714;
<td>
<td>
<td>See <code>InstallPrerequisites-Ubuntu.sh</code> & <code>InstallPrerequisites-macOS.sh</code> for installation from GitHub.

<tr>
<td>SPOA 3.4.0
<td>
<td style='text-align:center'>&#x2714;
<td>
<td>
<td>See <code>InstallPrerequisites-Ubuntu.sh</code> & <code>InstallPrerequisites-macOS.sh</code> for installation from GitHub.
</table>

<div class="goto-index"><a href="index.html">Table of contents</a></div>
</main>
</body>
</html>