higlass
Version:
HiGlass Hi-C / genomic / large data viewer
40 lines (38 loc) • 855 B
JavaScript
export const DEFAULT_TRACKS_FOR_DATATYPE = /** @type {const} */ ({
chromsizes: {
center: '2d-chromosome-grid',
top: 'chromosome-labels',
left: 'chromosome-labels',
bottom: 'chromosome-labels',
right: 'chromosome-labels',
},
matrix: {
center: 'heatmap',
top: 'linear-heatmap',
left: 'linear-heatmap',
right: 'linear-heatmap',
bottom: 'linear-heatmap',
},
vector: {
top: 'bar',
bottom: 'bar',
left: 'bar',
right: 'bar',
},
'geo-json': {
center: 'geo-json',
},
'gene-annotation': {
top: 'gene-annotations',
bottom: 'gene-annotations',
left: 'gene-annotations',
right: 'gene-annotations',
},
bedlike: {
top: 'bedlike',
bottom: 'bedlike',
left: 'vertical-bedlike',
right: 'vertical-bedlike',
},
});
export default DEFAULT_TRACKS_FOR_DATATYPE;