UNPKG

ideogram

Version:

Chromosome visualization with D3.js

43 lines (40 loc) 1.3 kB
<!DOCTYPE html> <html> <head> <title>Human | Ideogram</title> <style>body {font: 12px Arial; line-height: 19.6px;}</style> <script type="text/javascript" src="../../dist/js/ideogram.min.js"></script> <style> html, body { height: 100%; font: 12px Arial; line-height: 19.6px; } </style> </head> <body> <h1>Human | Ideogram</h1> <a href="../">Back to overview</a> | <a href="multiple-primates">Previous</a> | <a href="mouse">Next</a> <p> A human genome is depicted below. The grey and black bands in each chromosome represent <a href="https://en.wikipedia.org/wiki/Heterochromatin">heterochromatin</a>. The pink region is the area around the <a href="https://en.wikipedia.org/wiki/Centromere">centromere</a>, and the blue represents variable regions. </p> <p> This ideogram shows most chromosomes in a <a href="https://en.wikipedia.org/wiki/Ploidy">haploid</a> state for simplicity. For more accurate, diploid representation of human genomes, see <a href="ploidy-basic">Ploidy, basic</a> and <a href="multiple_trio">Multiple, trio</a>. </p> <script type="text/javascript"> var ideogram = new Ideogram({ organism: 'human' }); </script> </body> </html>