cyto-chromosome-vis
Version:
Interactive visual representation/ web visualization tool for chromosome ideograms
28 lines (23 loc) • 474 B
JavaScript
var chromosomeFactory = cyto_chr.chromosome;
var x = chromosomeFactory()
.segment("X")
.target('#chrX')
.resolution(550)
.showAxis(true)
.render();
var Y = chromosomeFactory()
.segment("Y")
.resolution(550)
.target('#chrY')
.showAxis(true)
.selectionMode('multi')
.render();
for (var i = 1; i < 23; i++) {
var t = "#chr" + i;
chromosomeFactory()
.segment(i)
.resolution(550)
.target('#chr' + i)
.showAxis(true)
.render();
}