UNPKG

ideogram

Version:

Chromosome visualization for the web

144 lines (121 loc) 3.96 kB
/** * @fileoverview Functions for collinear chromosomes. * Collinear chromosomes form a line together, unlike the default parallel * geometry. */ import {d3} from './lib'; function labelGenomes(ideo) { ideo.config.taxids.forEach((taxid, i) => { var org = ideo.organisms[taxid]; // var commonName = slug(org.commonName); var scientificName = org.scientificName; d3.select(ideo.selector) .append('text') .attr('class', 'genomeLabel italic') .attr('x', 55 + 200 * i) .attr('y', 10) .text(scientificName) .attr('text-anchor', 'middle'); }); } /** * Rearrange chromosomes from parallel vertical to collinear vertical * * Parallel vertical (as in https://eweitz.github.io/ideogram/human) * | | | * * Collinear vertical (as in https://eweitz.github.io/ideogram/orthologs?loci=2:150000000,5:20000000;3:100000000,10:80000000&org=homo-sapiens&org2=mus-musculus) * | * | * | */ function rearrangeChromosomes(chrSets, yOffsets, x, ideo) { var i, chrSet, y, chrLabelX, adjustedX, chr, taxid, orgIndex, config = ideo.config, chrLabelSize = config.chrLabelSize; for (i = 0; i < chrSets.length; i++) { chrSet = chrSets[i]; y = yOffsets[i] + 23 - chrLabelSize; chr = ideo.chromosomesArray[i]; taxid = chr.id.split('-')[1]; orgIndex = ideo.config.taxids.indexOf(taxid); adjustedX = x - orgIndex * 200 - 30 - 5; if (orgIndex === 0) { chrLabelX = -34; adjustedX += ideo.config.chrWidth * 2 - 16; } else { chrLabelX = ideo.config.chrWidth * 2 - 24; } if (config.showChromosomeLabels) { const labelSpan = chrSet.querySelector('.chrLabel > tspan'); labelSpan.setAttribute('x', chrLabelX); labelSpan.setAttribute('dy', chrLabelSize - 8); chrSet.querySelector('.chrLabel').setAttribute('text-anchor', 'start'); } chrSet.setAttribute( 'transform', 'rotate(90) translate(' + y + ',' + adjustedX + ')' ); chrSet.querySelector('.chromosome').setAttribute( 'transform', 'translate(-13, 10)' ); } labelGenomes(ideo); } /** * Get pixel coordinates to use for rearrangement */ function getYOffsets(chrSets, ideo) { var yOffsets, i, index, chr, prevChr, y, prevWidth, prevY, yBump, taxid, seenTaxids = {}; yOffsets = []; for (i = 0; i < chrSets.length; i++) { chr = ideo.chromosomesArray[i]; taxid = chr.id.split('-')[1]; index = (i === 0) ? i : i - 1; prevChr = ideo.chromosomesArray[index]; if (i === 0 || taxid in seenTaxids === false) { y = 20; seenTaxids[taxid] = 1; } else { prevWidth = prevChr.width; prevY = yOffsets[index]; yBump = (ideo.config.showChromosomeLabels ? 0 : 2); y = prevY + prevWidth + yBump + ideo.config.chrMargin; } yOffsets.push(y); } return yOffsets; } function collinearizeVerticalChromosomes(ideo) { var chrSets, yOffsets, x, height, width, config = ideo.config; ideo.config.annotLabelHeight = 12; // var annotLabelHeight = ideo.config.annotLabelHeight; if ('demarcateCollinearChromosomes' in ideo.config === false) { ideo.config.demarcateCollinearChromosomes = true; } chrSets = document.querySelectorAll('.chromosome-set'); x = -40; yOffsets = getYOffsets(chrSets, ideo); rearrangeChromosomes(chrSets, yOffsets, x, ideo); width = Math.round(yOffsets.slice(-1)[0] + 70); if (config.multiorganism) { height *= 8; var maxHeight = 0; yOffsets.forEach(d => { if (d > maxHeight) maxHeight = d; }); height = maxHeight + 30; } else { height = xOffsets.slice(-1)[0] + 30; } d3.select(ideo.selector) .attr('height', height) .attr('width', width); d3.select('#_ideogramTrackLabelContainer').remove(); d3.select('#_ideogramInnerWrap') .insert('div', ':first-child') .attr('id', '_ideogramTrackLabelContainer') .style('position', 'absolute'); } export default collinearizeVerticalChromosomes;