ideogram
Version:
Chromosome visualization with D3.js
28 lines (23 loc) • 732 B
HTML
<html>
<head>
<title>Annotations, overlays | Ideogram</title>
<link type="text/css" rel="stylesheet" href="../src/css/ideogram.css"/>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.1.1/d3.min.js"></script>
<script type="text/javascript" src="../src/js/ideogram.js"></script>
</head>
<body>
<h1>Annotations, overlays | Ideogram</h1>
<a href=".">Back to overview</a>
<script type="text/javascript">
var config = {
organism: "human",
chrMargin: 5,
annotationsPath: "/ideogram/data/annotations/1000_virtual_snvs.json",
annotationsLayout: "overlay",
orientation: "horizontal"
};
var ideogram = new Ideogram(config);
</script>
</body>
</html>