ideogram
Version:
Chromosome visualization with D3.js
29 lines (25 loc) • 615 B
HTML
<html>
<head>
<title>Mouse | Ideogram</title>
<style>body {font: 12px Arial; line-height: 19.6px;}</style>
<script type="text/javascript" src="../../dist/js/ideogram.min.js"></script>
</head>
<body>
<h1>Mouse | Ideogram</h1>
<a href=".">Back to overview</a> |
<a href="human">Previous</a> |
<a href="eukaryotes">Next</a>
<p>
A mouse genome, with each chromosome rendered horizontally.
</p>
<script type="text/javascript">
var config = {
organism: 'mouse',
orientation: 'horizontal',
showBandLabels: true
};
var ideogram = new Ideogram(config);
</script>
</body>
</html>