-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg_chart.html
41 lines (41 loc) · 1.29 KB
/
org_chart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<div class="mermaid">
graph TD;
subgraph gpe [GenoPhenoEnvo Project Org Chart]
subgraph osucu [Oregon State University and University of Colorado Anschutz]
p1(Anne Thessen) --- p2(Laurel Cooper);
p1(Anne Thessen) --- p3(Kevin Schaper);
p1(Anne Thessen) --- p4(Pankaj Jaiswal);
p1(Anne Thessen) --- p5(Moni Munoz-Torres);
p1(Anne Thessen) --- p20(Kevin Schaper);
end
subgraph tufts [Tufts University]
p6(Remco Chang) --- p9(Camelia Brumar);
end
subgraph ua [University of Arizona]
p10(P Bryan Heidorn) --- p11(Tyson Swetnam);
p10(P Bryan Heidorn) --- p12(David LeBauer);
p10(P Bryan Heidorn) --- p13(Ryan Bartelme)
p12(David LeBauer) --- p14(Kristina Riemer);
p12(David LeBauer) --- p15(Jessica Guo);
p12(David LeBauer) --- p16(Linh);
end
subgraph msu [Michigan State University]
p17(Arun Ross) --- p18(Ishita Debnath);
p17(Arun Ross) --- p19(Debashmita Pal);
end
end
style tufts fill:#0367fc
style osu fill:#ff6f00
style ua fill:#c40404
style msu fill:#096923
</div>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});</script>
</body>
</html>