-
Notifications
You must be signed in to change notification settings - Fork 118
/
highlight.js
57 lines (53 loc) · 1.3 KB
/
highlight.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
var width = document.getElementsByClassName('mdl-card__supporting-text')[0].offsetWidth
var circosHighlight = new Circos({
container: '#highlightChart',
width: width,
height: width
})
var gieStainColor = {
gpos100: 'rgb(0,0,0)',
gpos: 'rgb(0,0,0)',
gpos75: 'rgb(130,130,130)',
gpos66: 'rgb(160,160,160)',
gpos50: 'rgb(200,200,200)',
gpos33: 'rgb(210,210,210)',
gpos25: 'rgb(200,200,200)',
gvar: 'rgb(220,220,220)',
gneg: 'rgb(255,255,255)',
acen: 'rgb(217,47,39)',
stalk: 'rgb(100,127,164)',
select: 'rgb(135,177,255)'
}
var drawCircos = function (error, GRCh37, cytobands) {
data = cytobands.map(function (d) {
return {
block_id: d.chrom,
start: parseInt(d.chromStart),
end: parseInt(d.chromEnd),
gieStain: d.gieStain
}
})
circosHighlight
.layout(
GRCh37,
{
innerRadius: width / 2 - 100,
outerRadius: width / 2 - 50,
labels: {display: false},
ticks: {display: false}
}
)
.highlight('cytobands', data, {
innerRadius: width / 2 - 100,
outerRadius: width / 2 - 50,
opacity: 0.5,
color: function (d) {
return gieStainColor[d.gieStain]
}
})
.render()
}
d3.queue()
.defer(d3.json, './data/GRCh37.json')
.defer(d3.csv, './data/cytobands.csv')
.await(drawCircos)