ideogram
Version:
Chromosome visualization for the web
38 lines (35 loc) • 1.22 kB
HTML
<html>
<head>
<title>Highlights, groups | Ideogram</title>
<style>
body {font: 14px Arial; line-height: 19.6px; padding: 0 15px;}
a, a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a, a:hover, a:visited, a:active {color: #0366d6;}
</style>
<script type="text/javascript" src="../../dist/js/ideogram.min.js"></script>
<link rel="icon" type="image/x-icon" href="img/ideogram_favicon.ico">
</head>
<body>
<h1>Highlights, groups | Ideogram</h1>
<a href="../">Overview</a> |
<a href="highlights-basic">Previous</a> |
<a href="color-chromosomes">Next</a> |
<a href="https://github.com/eweitz/ideogram/blob/gh-pages/highlights-groups.html" target="_blank">Source</a>
<p>
Satellite chromosomes have a secondary constriction, in addition to the centromere.
Large satellite chromosomes are highlighted below in orange, small ones in green.
</p>
<script type="text/javascript">
function onIdeogramLoad() {
this.highlight(['13', '14', '15'], 'orange');
this.highlight(['21', '22'], '#00BB00');
}
var ideogram = new Ideogram({
organism: 'human',
onLoad: onIdeogramLoad
});
</script>
</body>
</html>