-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBME.html
398 lines (297 loc) · 11.9 KB
/
BME.html
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<style>
@import url(https://fonts.googleapis.com/css?family=Droid+Serif);
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body {
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: 400;
margin-bottom: 0;
}
.remark-slide-content h1 { font-size: 3em; }
.remark-slide-content h2 { font-size: 2em; }
.remark-slide-content h3 { font-size: 1.6em; }
.footnote {
position: absolute;
bottom: 3em;
}
li p { line-height: 1.25em; }
.red { color: #fa0000; }
.large { font-size: 2em; }
a, a > code {
color: rgb(249, 38, 114);
text-decoration: none;
}
code {
background: #e7e8e2;
border-radius: 5px;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-code-line-highlighted { background-color: #373832; }
.pull-left {
float: left;
width: 47%;
}
.pull-left-bottom {
float: left;
width: 47%;
bottom: 0;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ p {
clear: both;
}
#slideshow .slide .content code {
font-size: 0.8em;
}
#slideshow .slide .content pre code {
font-size: 0.9em;
padding: 15px;
}
.inverse {
background: #272822;
color: #777872;
text-shadow: 0 0 20px #333;
}
.inverse h1, .inverse h2 {
color: #f3f3f3;
line-height: 0.8em;
}
/* Slide-specific styling */
#slide-inverse .footnote {
bottom: 12px;
left: 20px;
}
#slide-how .slides {
font-size: 0.9em;
position: absolute;
top: 151px;
right: 140px;
}
#slide-how .slides h3 {
margin-top: 0.2em;
}
#slide-how .slides .first, #slide-how .slides .second {
padding: 1px 20px;
height: 90px;
width: 120px;
-moz-box-shadow: 0 0 10px #777;
-webkit-box-shadow: 0 0 10px #777;
box-shadow: 0 0 10px #777;
}
#slide-how .slides .first {
background: #fff;
position: absolute;
top: 20%;
left: 20%;
z-index: 1;
}
#slide-how .slides .second {
position: relative;
background: #fff;
z-index: 0;
}
/* Two-column layout */
.left-column {
color: #777;
width: 20%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #000;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
br {
line-height: 50%;
}
</style>
<!-- load remark -->
<script src="http://gnab.github.com/remark/downloads/remark-0.5.1.min.js" type="text/javascript"></script>
<!-- load MathJax -->
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"></script>
<!-- Initialize (has to go in <script> tag **without** SRC attribute) -->
<script type="text/javascript">
// Create slideshow
var slideshow = remark.create({
// This BREAKS MathJax:
// highlightLanguage: 'Python'
// You have to tag every code block with python, like so:
//
// ```python
// def add(a, b):
// return a + b
// ```
});
// Setup MathJax
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
MathJax.Hub.Queue(function() {
$(MathJax.Hub.getAllJax()).map(function(index, elem) {
return(elem.SourceElement());
}).parent().addClass('has-jax');
});
MathJax.Hub.Configured();
</script>
</head>
<body>
<textarea id="source">
class: center, middle, inverse
# NeuroData:
# Enabling Petascale Neuroscience
### Joshua T. Vogelstein
### {[BME](http://bme.jhu.edu),[ICM](http://icm.jhu.edu),[CIS](http://cis.jhu.edu),[Kavli](http://kndi.jhu.edu)}@[jhu.edu](http://jhu.edu)
#### e: [[email protected]](mailto:[email protected]) | w: [neurodata.io](http://neurodata.io)
---
### Please consider the following _Gedankenexperiment_
#### Experiment 1: collect 10 images in a stack → find all ~100 synapses
1. Look: Open in ImageJ on local computer
2. Pre-process: Manually align images & adjust contrast
3. Annotate: Manually label each synapse
4. Analyze: Plot them all in a 3D scatter plot
![](images/Denk04_fig.png "Denk")
---
### Please consider another _Gedankenexperiment_
#### Experiment 2: collect 10K images in a stack → find all 10M synapses
1. Look: Data too large to load into ImageJ on local computer
2. Pre-process: Takes too long to manually pre-process
3. Annotate: Takes even longer find find all synapses
4. Analyze: Can't really see what is going on when plotting 10M synapses
![](images/corrected2.png "Image-Stack")
---
### Oppurtunity: Datasets like this are popping up all over the place
<!-- # Case Study -->
<!-- <object id="flashObj" width="720" height="405" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0"><param name="movie" value="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" /><param name="bgcolor" value="#FFFFFF" /><param name="flashVars" value="videoId=4387457748001&playerID=4298174096001&playerKey=AQ~~,AAAAAFNl7zk~,OmXvgxJOvrFlNNcISwb5HS0SrUe6qS3Q&domain=embed&dynamicStreaming=true" /><param name="base" value="http://admin.brightcove.com" /><param name="seamlesstabbing" value="false" /><param name="allowFullScreen" value="true" /><param name="swLiveConnect" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" bgcolor="#FFFFFF" flashVars="videoId=4387457748001&playerID=4298174096001&playerKey=AQ~~,AAAAAFNl7zk~,OmXvgxJOvrFlNNcISwb5HS0SrUe6qS3Q&domain=embed&dynamicStreaming=true" base="http://admin.brightcove.com" name="flashObj" width="480" height="270" seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object> -->
<iframe width="420" height="315" src="https://www.youtube.com/embed/1aVNRZtxeIU" frameborder="0" allowfullscreen></iframe>
- Real Experiment: Serial Electron Microscopy
- Resolution: 4 x 4 x 40 nm^3
- Volume: 350 x 450 x 50 micron^3
- Size: ~10 TB
Note: the above video is from Kasthuri et al. (Cell, 2015), but the data we are discussing are from Bock et al. (Nature, 2011)
---
.pull-left[
### Challenge: Can't perform any of the 4 steps to discovery
<br></br>
#### 4 Steps to Discovery:
1. Look
1. Pre-Process
1. Annotate
1. Analyze
]
.pull-right[
### Action: Meet needs to achieve each step
<br></br>
#### 3 Needs to Achieve:
<ol type="A">
<li>Algorithms</li>
<li>Software</li>
<li>Computer</li>
</ol>
]
---
# Resolution: NeuroData!
### We make the following open science contributions to the community:
- reference datasets in a variety of modalities
- reference pipelines for operating on such data
- Web-services to enable using our data-intensive computing
- A cloud computing stack to facilitate analysis
- Detailed specs for plugging in different routines
- Data derivatives at all stages of analysis
### It is now easier to:
- Bridge across scales and modalities
- Answer questions the require scale
- Engage complementary expertise
- Reproduce results
---
# What this talk is about
<br></br>
- A case study
- For each step, we explain the needs
- For each need, we explain why the classic approach fails
- We then provide our approach to filling those needs
---
# Case Study
<!-- <object id="flashObj" width="720" height="405" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0"><param name="movie" value="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" /><param name="bgcolor" value="#FFFFFF" /><param name="flashVars" value="videoId=4387457748001&playerID=4298174096001&playerKey=AQ~~,AAAAAFNl7zk~,OmXvgxJOvrFlNNcISwb5HS0SrUe6qS3Q&domain=embed&dynamicStreaming=true" /><param name="base" value="http://admin.brightcove.com" /><param name="seamlesstabbing" value="false" /><param name="allowFullScreen" value="true" /><param name="swLiveConnect" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://c.brightcove.com/services/viewer/federated_f9?isVid=1&isUI=1" bgcolor="#FFFFFF" flashVars="videoId=4387457748001&playerID=4298174096001&playerKey=AQ~~,AAAAAFNl7zk~,OmXvgxJOvrFlNNcISwb5HS0SrUe6qS3Q&domain=embed&dynamicStreaming=true" base="http://admin.brightcove.com" name="flashObj" width="480" height="270" seamlesstabbing="false" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object> -->
<iframe width="420" height="315" src="https://www.youtube.com/embed/1aVNRZtxeIU" frameborder="0" allowfullscreen></iframe>
- Experiment: Serial Electron Microscopy
- Resolution: 4 x 4 x 40 nm^3
- Volume: 350 x 450 x 50 micron^3
- Size: ~10 TB
- Question: Are synapses distributed uniformly in space?
---
# 3 Needs to Achieve
.pull-left[
### 1. Computer
<ol type="i">
<li>Data-Intensive Cluster</li>
<li>High-Performance Cluster</li>
<li>Local Thin Client</li>
</ol>
]
.pull-left[
### 2. Software
<ol type="i">
<li>Spatial database</li>
<li>Annotation database</li>
<li>Data Exchange</li>
<li>Distributed Analytics Stack</li>
</ol>
]
.pull-left[
### 3. Algorithms
<ol type="i">
<li>Volume reconstruct</li>
<li>Histogram normalize</li>
<li>(register to atlas)</li>
<li>Synapse detection</li>
<li>Spatial statistics</li>
</ol>
]
.footnote[
### Note: each step to discovery has different specs with respect to each of these.
]
---
# Need #1: Computers
<br></br>
| | _Sub-Need_ | | _Reason_ | _Example_ |
| --- | :--- | --- | :---- | :--- |
| 1 | Data intensive | | Store TBs | DataScope |
| 2 | High-Performance | | Process TBs | MARCC |
| 3 | Local Thin Client | | Control them | MacBook Air |
<div style="width: 480px; height: 360px; margin: 10px; position: relative;"><iframe allowfullscreen frameborder="0" style="width:480px; height:360px" src="https://www.lucidchart.com/documents/embeddedchart/d8725eac-b41f-403b-8820-f189483d33b0" id="uMmrHtqX_k1u"></iframe></div>
---
# Need #2: Software
<br></br>
| | _Sub-Need_ | | _Reason_ | _Runs On_ |
| --- | :--- | --- | :---- | :--- |
| 1 | Spatial Database | | fast IOPS | Data Intensive |
| 2 | Annotation Database | | fast FLOPS | HPC |
| 2 | Distributed Analytics Stack | | fast FLOPS | HPC |
| 3 | Terminal/Web-Browser | | Control them | Thin Client |
<div style="width: 480px; height: 360px; margin: 10px; position: relative;"><iframe allowfullscreen frameborder="0" style="width:480px; height:360px" src="https://www.lucidchart.com/documents/embeddedchart/d8725eac-b41f-403b-8820-f189483d33b0" id="uMmrHtqX_k1u"></iframe></div>
</textarea>
<script src="https://gnab.github.io/remark/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create();
</script>
</body>
</html>