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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
# lodheatmap: reuseable panel with heat map of LOD curves
lodheatmap = () ->
width = 1200
height = 600
margin = {left:100, top:40, right:40, bottom: 40}
axispos = {xtitle:25, ytitle:30, xlabel:5, ylabel:5}
chrGap = 8
titlepos = 20
rectcolor = d3.rgb(230, 230, 230)
colors = ["slateblue", "white", "crimson"]
title = ""
xlab = "Chromosome"
ylab = ""
rotate_ylab = null
zlim = null
zthresh = null
xscale = d3.scale.linear()
yscale = d3.scale.linear()
zscale = d3.scale.linear()
cellSelect = null
## the main function
chart = (selection) ->
selection.each (data) ->
data = reorgLodData(data)
data = chrscales(data, width, chrGap, margin.left, true)
xscale = data.xscale
nlod = data.lodnames.length
yscale.domain([-0.5, nlod-0.5]).range([margin.top+height, margin.top])
rectHeight = yscale(0)-yscale(1)
xLR = {}
for chr in data.chrnames
xLR[chr] = getLeftRight(data.posByChr[chr])
# z-axis (color) limits; if not provided, make symmetric about 0
zmin = 0
zmax = 0
for lodcol in data.lodnames
extent = d3.extent(data[lodcol])
zmin = extent[0] if extent[0] < zmin
zmax = extent[1] if extent[1] > zmax
zmax = -zmin if -zmin > zmax
zlim = zlim ? [-zmax, 0, zmax]
if zlim.length != colors.length
console.log("zlim.length (#{zlim.length}) != colors.length (#{colors.length})")
zscale.domain(zlim).range(colors)
zthresh = zthresh ? zmin - 1
data.cells = []
for chr in data.chrnames
for pos, i in data.posByChr[chr]
for lod,j in data.lodByChr[chr][i]
if lod >= zthresh or lod <= -zthresh
data.cells.push({z: lod, left: (xscale[chr](pos) + xscale[chr](xLR[chr][pos].left) )/2,
right: (xscale[chr](pos) + xscale[chr](xLR[chr][pos].right) )/2, lodindex:j, chr:chr, pos:pos})
# Select the svg element, if it exists.
svg = d3.select(this).selectAll("svg").data([data])
# Otherwise, create the skeletal chart.
gEnter = svg.enter().append("svg").append("g")
# Update the outer dimensions.
svg.attr("width", width+margin.left+margin.right)
.attr("height", height+margin.top+margin.bottom)
g = svg.select("g")
# boxes
g.append("g").attr("id", "boxes").selectAll("empty")
.data(data.chrnames)
.enter()
.append("rect")
.attr("id", (d) -> "box#{d}")
.attr("x", (d,i) -> data.chrStart[i])
.attr("y", (d) -> margin.top)
.attr("height", height)
.attr("width", (d,i) -> data.chrEnd[i] - data.chrStart[i])
.attr("fill", rectcolor)
.attr("stroke", "none")
# title
titlegrp = g.append("g").attr("class", "title")
.append("text")
.attr("x", margin.left + width/2)
.attr("y", margin.top - titlepos)
.text(title)
# x-axis
xaxis = g.append("g").attr("class", "x axis")
xaxis.selectAll("empty")
.data(data.chrnames)
.enter()
.append("text")
.attr("x", (d,i) -> (data.chrStart[i] + data.chrEnd[i])/2)
.attr("y", margin.top+height+axispos.xlabel)
.text((d) -> d)
xaxis.append("text").attr("class", "title")
.attr("x", margin.left+width/2)
.attr("y", margin.top+height+axispos.xtitle)
.text(xlab)
# y-axis
rotate_ylab = rotate_ylab ? (ylab.length > 1)
yaxis = g.append("g").attr("class", "y axis")
yaxis.append("text").attr("class", "title")
.attr("y", margin.top+height/2)
.attr("x", margin.left-axispos.ytitle)
.text(ylab)
.attr("transform", if rotate_ylab then "rotate(270,#{margin.left-axispos.ytitle},#{margin.top+height/2})" else "")
yaxis.selectAll("empty")
.data(data.lodnames)
.enter()
.append("text")
.attr("id", (d,i) -> "yaxis#{i}")
.attr("y", (d,i) -> yscale(i))
.attr("x", margin.left-axispos.ylabel)
.text((d) -> d)
.attr("opacity", 0)
celltip = d3.tip()
.attr('class', 'd3-tip')
.html((d) ->
z = d3.format(".2f")(Math.abs(d.z))
p = d3.format(".1f")(d.pos)
"#{d.chr}@#{p} → #{z}")
.direction('e')
.offset([0,10])
svg.call(celltip)
cells = g.append("g").attr("id", "cells")
cellSelect =
cells.selectAll("empty")
.data(data.cells)
.enter()
.append("rect")
.attr("x", (d) -> d.left)
.attr("y", (d) -> yscale(d.lodindex)-rectHeight/2)
.attr("width", (d) -> d.right - d.left)
.attr("height", rectHeight)
.attr("class", (d,i) -> "cell#{i}")
.attr("fill", (d) -> zscale(d.z))
.attr("stroke", "none")
.attr("stroke-width", "1")
.on("mouseover.paneltip", (d) ->
yaxis.select("text#yaxis#{d.lodindex}").attr("opacity", 1)
d3.select(this).attr("stroke", "black")
celltip.show(d))
.on("mouseout.paneltip", (d) ->
yaxis.select("text#yaxis#{d.lodindex}").attr("opacity", 0)
d3.select(this).attr("stroke", "none")
celltip.hide())
# boxes
g.append("g").attr("id", "boxes").selectAll("empty")
.data(data.chrnames)
.enter()
.append("rect")
.attr("id", (d) -> "box#{d}")
.attr("x", (d,i) -> data.chrStart[i])
.attr("y", (d) -> margin.top)
.attr("height", height)
.attr("width", (d,i) -> data.chrEnd[i] - data.chrStart[i])
.attr("fill", "none")
.attr("stroke", "black")
.attr("stroke-width", "none")
## configuration parameters
chart.width = (value) ->
return width if !arguments.length
width = value
chart
chart.height = (value) ->
return height if !arguments.length
height = value
chart
chart.margin = (value) ->
return margin if !arguments.length
margin = value
chart
chart.axispos = (value) ->
return axispos if !arguments.length
axispos = value
chart
chart.titlepos = (value) ->
return titlepos if !arguments.length
titlepos
chart
chart.rectcolor = (value) ->
return rectcolor if !arguments.length
rectcolor = value
chart
chart.colors = (value) ->
return colors if !arguments.length
colors = value
chart
chart.title = (value) ->
return title if !arguments.length
title = value
chart
chart.xlab = (value) ->
return xlab if !arguments.length
xlab = value
chart
chart.ylab = (value) ->
return ylab if !arguments.length
ylab = value
chart
chart.rotate_ylab = (value) ->
return rotate_ylab if !arguments.length
rotate_ylab = value
chart
chart.zthresh = (value) ->
return zthresh if !arguments.length
zthresh = value
chart
chart.zlim = (value) ->
return zlim if !arguments.length
zlim = value
chart
chart.chrGap = (value) ->
return chrGap if !arguments.length
chrGap = value
chart
chart.xscale = () ->
return xscale
chart.yscale = () ->
return yscale
chart.zscale = () ->
return zscale
chart.cellSelect = () ->
return cellSelect
# return the chart function
chart
|