-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·95 lines (86 loc) · 3.07 KB
/
about.html
File metadata and controls
executable file
·95 lines (86 loc) · 3.07 KB
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
---
layout: default
team:
- username: clementsj
name: Jody Clements
title: Software Engineer
- username: goinac
name: Cristian Goina
title: Software Engineer
- username: olbrisd
name: Donald J. Olbris
title: Software Engineer
- username: otsunah
name: Hideo Otsuna
title: Data Scientist
- username: rokickik
name: Konrad Rokicki
title: Manager, Software Engineering
- username: schauderd
name: David Schauder
title: Software Engineer
- username: svirskasr
name: Rob Svirskas
title: Project Manager
- username: trautmane
name: Eric T. Trautman
title: Software Engineer
alumni:
- username: bolstadm
name: Mark Bolstad
- username: brunsc
name: Christopher Bruns
- username: fosterl
name: Les Foster
- username: murphys
name: Sean Murphy
- username: saffordt
name: Todd Safford
- username: yuy
name: Yang Yu
---
<!-- Main -->
<section id="main" class="wrapper style1">
<header class="major">
<h2>About</h2>
<p>Janelia Workstation</p>
</header>
<div class="container">
<div class="row">
<div class="1u"> </div>
<div class="10u">
<section>
<h2>Project History</h2>
<p>
The Janelia Workstation Project began as a component of the Fly Integration aspect of the Fly Team Project (which encompassed Light, Olympiad, and Electron Microscopy). Since the initial release of the tools in September of 2011, we have continued to develop data processing pipelines and visualizations for the Drosophila community.
</p>
<p>
The Workstation framework was also leveraged to build out neuron tracing and visualization tools for the MouseLight project. Both communities have greatly benefited from the overlap in developed functionality, demonstrating the power of software reuse.
</p>
</section>
<hr />
<section>
<h2>Contributors</h2>
<p>
{% for user in page.team %}
<div style="float: left">
{% include /person.html user=user hasImage=true %}
</div>
{% endfor %}
</p>
<br style="clear: both"/>
<h2>Alumni</h2>
<p>
{% for user in page.alumni %}
<div class="alumni">
{{ user.name }}
</div>
{% endfor %}
</p>
<br style="clear: both"/>
</section>
</div>
<div class="1u"> </div>
</div>
</div>
</section>