-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
177 lines (169 loc) · 10 KB
/
index.html
File metadata and controls
177 lines (169 loc) · 10 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link rel="stylesheet" href="index.css">
<title>MUMmer</title>
<script>
function createMenu(){
var navItems = [];
function returnJson(text){
var jsonResponse = JSON.parse(text);
for(var i=0;i<jsonResponse.length;i++){
navItems.push({href: jsonResponse[i].html_url, text: jsonResponse[i].tag_name, zip: jsonResponse[i].zipball_url, tar: jsonResponse[i].assets[0].browser_download_url});
}
releaseID = document.getElementById("releases");
for (var i = 0; i < navItems.length; i++) {
var navUL = document.createElement("ul");
navUL.classList.add('right');
var navLI = document.createElement("li");
navLI.classList.add('dropdown_sub');
var navDIV = document.createElement("div");
navDIV.classList.add('dropdown-content_sub');
navDIV.id="releases_sub";
var entryA = document.createElement("a");
//var subAzip = document.createElement("a");
var subAtar = document.createElement("a");
entryA.href=navItems[i].href;
entryA.innerHTML = navItems[i].text;
//subAzip.href=navItems[i].zip;
//subAzip.innerHTML="ZIP";
subAtar.href=navItems[i].tar;
subAtar.innerHTML="TAR";
navDIV.appendChild(subAtar);
//navDIV.appendChild(subAzip);
navLI.appendChild(entryA);
navLI.appendChild(navDIV);
navUL.appendChild(navLI);
releaseID.appendChild(navUL);
}
}
function httpGetTar(theUrl, callback)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
xmlHttp.open("GET", theUrl, true); // true for asynchronous
xmlHttp.send(null);
}
window.onload = function () {
httpGetTar('https://api.github.com/repos/mummer4/mummer/releases',returnJson);
}
};
createMenu()
</script>
</head>
<body id="head">
<header class="navbar">
<div class="Row">
<form class="login">
<h1>MUMmer</h1>
<script type="text/javascript">
function returnJsonTar(text){
var jsonResponse = JSON.parse(text);
var link = document.createElement('a');
link.href = jsonResponse.tarball_url;
document.body.appendChild(link);
link.click();
}
function httpGetTar(theUrl, callback)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
xmlHttp.open("GET", theUrl, true); // true for asynchronous
xmlHttp.send(null);
}
</script>
<!-- <script type="text/javascript">
function returnJsonZip(text){
var jsonResponse = JSON.parse(text);
var link = document.createElement('a');
link.href = jsonResponse.zipball_url;
document.body.appendChild(link);
link.click();
}
function httpGetZip(theUrl, callback)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
xmlHttp.open("GET", theUrl, true); // true for asynchronous
xmlHttp.send(null);
}
</script> -->
<!-- <a onclick="httpGetTar('https://api.github.com/repos/mummer4/mummer/releases/latest',returnJsonTar)"><img src="./icons/tar.png" id="tarBtn" onmouseover="this.src='./icons/tarHover.png'" onmouseout="this.src='./icons/tar.png'"></img></a>
<a onclick="httpGetTar('https://api.github.com/repos/mummer4/mummer/releases/latest',returnJsonZip)"><img src="./icons/zip.png" id="zipBtn" onmouseover="this.src='./icons/zipHover.png'" onmouseout="this.src='./icons/zip.png'"></img></a> -->
</form>
</div>
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="manual/manual.html">Manual</a></li>
<li><a href="install/install.html">Installation</a></li>
<li><a href="tutorial/tutorial.html">Tutorials</a></li>
<li class="dropdown">
<a href="https://github.com/mummer4/mummer/releases">Downloads</a>
<div class="dropdown-content" id="releases">
</div>
</li>
</ul>
</nav>
</header>
<div class="contents">
<div class="sub">
<h1>Description</h1>
<p>MUMmer is a system for rapidly aligning large DNA sequences to one another. It can align:
<ul>
<li>whole genomes to other genomes</li>
<li>large genome assemblies to one another</li>
<li>partial (draft) genomes sequences to one another</li>
<li>or (with release 4) a set of reads to a genome.</li>
</ul>
MUMmer is very fast and easy to run. The current version, release 4.x, can find all 20-bp maximal exact matches between two bacterial genomes in just a few seconds on a typical desktop or laptop computer. MUMmer handles the 100s or 1000s of contigs from a draft genome with ease, and will align them to another set of contigs using the nucmer utility included with the system. The promer utility takes this a step further by generating alignments based upon the six-frame translations of both input sequences. Most of the improvements in release 4.x are to nucmer and MUMmer. Promer is unchanged from release 3.0. See the nucmer and promer readme files in the "docs/" subdirectory for more details. <br/>
MUMmer is free and open source, so all we ask is that you cite our most recent paper in any publications that use it. Here are the relevant publications:
<h4>Version 4.0+</h4>
<p>MUMmer4 and nucmer4 are described in "<a href="http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1005944">MUMmer4: A fast and versatile genome alignment system</a>" G. Marçais , A.L. Delcher, A.M. Phillippy, R. Coston, S.L. Salzberg, A. Zimin, <em>PLoS computational biology</em> (2018), 14(1): e1005944.</p>
<h4>Version 3.0</h4>
<p>Open source MUMmer 3.0 is described in "<a href="publications/MUMmer3.pdf">Versatile and open software for comparing large genomes</a>." S. Kurtz, A. Phillippy, A.L. Delcher, M. Smoot, M. Shumway, C. Antonescu, and S.L. Salzberg, <em>Genome Biology</em> (2004), 5:R12.</p>
<h4>Version 2.1</h4>
<p>MUMmer 2.1, NUCmer, and PROmer are described in "<a href="publications/MUMmer2.pdf">Fast Algorithms for Large-scale Genome Alignment and Comparision</a>." A.L. Delcher, A. Phillippy, J. Carlton, and S.L. Salzberg, <em>Nucleic Acids Research</em> (2002), Vol. 30, No. 11 2478-2483.</p>
<h4>Version 1.0</h4>
<p>MUMmer 1.0 is described in "<a href="publications/MUMmer.pdf">Alignment of Whole Genomes</a>." A.L. Delcher, S. Kasif, R.D. Fleischmann, J. Peterson, O. White, and S.L. Salzberg, <em>Nucleic Acids Research</em>, 27:11 (1999), 2369-2376.</p>
</div>
</div>
<a href="#head"><img src="icons/up.png" id="upBtn" onmouseover="this.src='icons/upHover.png'"
onmouseout="this.src='icons/up.png'"></a>
<footer class="foot">
<div class="container Row">
<section class="Column">
<h2>About Us</h2>
<p>MUMmer4 and nucmer4 were developed by Guillaume Marcais (CMU/UMD) and Aleksey Zimin (UMD/JHU), building on MUMmer3 and nucmer3. The development and support team also includes Adam Phillippy (NIH), Daniela Puiu (JHU), and Steven Salzberg (JHU).</p>
</ul>
</section>
<section class="Column">
<h2>Useful Links</h2>
<ul>
<li>
<a class="footSub" href="https://github.com/mummer4/mummer">MUMmer4 at Github</a>
</li>
<li>
<a class="footSub" href="http://mummer.sourceforge.net/">MUMmer3 at SourceForge</a>
</li>
</ul>
</section>
<section class="Column">
<h2>Acknowledgements</h2>
<p>The development of early versions of MUMmer, particularly MUMmer3, was supported in part by NSF under grants IIS-9902923 (S. Salzberg) and IIS-9820497 (A. Delcher), and by NIH under grants R01-LM06845 to Steven Salzberg. MUMmer 1.0 and 2.0 were developed by Art Delcher, Steven Salzberg and colleagues (see the papers for other authors). MUMmer3.0 was a joint development effort by Stefan Kurtz of the University of Hamburg, Adam Phillippy, Art Delcher and Steven Salzberg, who were all at TIGR until 2005. <br>
MUMmer4 is currently supported in part by NIH under grant R01-GM083873 to Steven Salzberg.</p>
</section>
</div>
</footer>
</body>
</html>