forked from drummondlab/drummondlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·205 lines (186 loc) · 9.87 KB
/
index.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
---
layout: default
title: The Getz Lab
categories:
- home
---
{% include JB/setup %}
{% for page in site.categories.misc %}
{% if page.homepage %}
{% assign homepage = page %}
{% endif %}
{% endfor %}
<div class="hugespacer"></div>
<div class="row">
<div class="col-md-12">
<img width=250 class="pull-left" src="{{ ASSET_PATH }}/images/logo/GETZLAB_OFFICIAL_LOGO-color.svg" style="padding-top: 20px; padding-right: 5px;"></img>
<div align="right">
<div class="bigtitle logobox">
The Getz Lab
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="carousel" class="carousel carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<!-- DAD: this should be dynamically populated. -->
<div class="carousel-inner">
<div class="active item">
<img src="/assets/images/gaddygram.png" width='1200px' alt="">
</div>
<div class="item">
<img src="/assets/images/events/Fall_2022_farm_trip/team_photo_fall_2022.jpg" width='1200px' alt="">
</div>
</div>
<!-- Carousel nav -->
<a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<!-- <span class="sr-only">Previous</span> -->
</a>
<a class="right carousel-control" href="#carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<!-- <span class="sr-only">Next</span> -->
</a>
</div>
</div>
</div>
<div class="hugespacer"></div>
<div class="row">
<div class="col-md-6">
<div class="head">Lab Overview</div>
<div class="bigspacer"></div>
<div class="smallhead">
{{ homepage.content }}
</div>
</div>
<div class="col-md-6">
<div class="smallhead">
<div class="hugespacer"></div>
<div class="bigspacer"></div>
<img src="/assets/images/group_pic_20210630_140731.jpg">
</div>
</div>
</div>
<div class="hugespacer"></div>
<div class="row">
<div class="col-md-4">
<ul style="list-style-type:none; padding-inline-start: 20px">
<li><img src="{{ ASSET_PATH }}/images/logo/MGH_Cancer_Logo.png" type="image/png" style="padding-right: 20px; padding-top: 5px; padding-bottom: 5px; height: 44px; width: auto;"></li>
<div class="spacer"></div>
<li><a href={{ site.dept_mgh_pathology.url }}>{{ site.dept_mgh_pathology.name }}</a></li>
<li><a href={{ site.dept_mgh_cancer_center.url }}>{{ site.dept_mgh_cancer_center.name }}</a></li>
</ul>
</div>
<div class="col-md-4">
<!-- <ul style="list-style-type:none"> -->
<ul style="list-style-type:none; padding-inline-start: 80px;">
<li><img src="{{ ASSET_PATH }}/images/logo/BroadSquare.png" type="image/png"></li>
<div class="spacer"></div>
<li><a href={{ site.dept_broad_cancer_program.url }}>{{ site.dept_broad_cancer_program.name }}</a></li>
<li><a href={{ site.broad_lab.url }}>{{ site.broad_lab.name }}</a></li>
</ul>
</div>
<div class="col-md-4">
<ul style="list-style-type:none; padding-inline-start: 60px;">
<li><img src="{{ ASSET_PATH }}/images/logo/HarvardShield.svg" type="image/svg+xml"></li>
<div class="spacer"></div>
<li><a href={{ site.dept_hms_pathology.url }}>{{ site.dept_hms_pathology.name }}</a></li>
</ul>
</div>
</div>
<div class="hugespacer"></div>
<div class="row">
<div class="col-md-6">
<div class="head">
Recent <a class="off" href="/papers/">Papers
</a>
</div>
{% assign team_citation_names = "" | split: ", " %}
{% for team_member in site.categories.team %}
{% if team_member.citation_names %}
{% assign member_citation_names = team_member.citation_names | split: ", " %}
{% assign team_citation_names = team_citation_names | concat: member_citation_names %}
{% endif %}
{% endfor %}
<div class="bigspacer"></div>
<div class="feedbox pad-left">
{% for paper in site.categories.papers limit:6 %}
{% assign pruned_team_citation_names = "" | split: "," %}
{% for citation_name in team_citation_names %}
{% unless paper.explicit_nonlab_citations contains citation_name %}
{% assign pruned_team_citation_names = pruned_team_citation_names | push: citation_name %}
{% endunless %}
{% endfor %}
{% assign pruned_team_citation_names = pruned_team_citation_names | join: ", " %}
{% assign first_authors = paper.first_authors | split: ", " %}
{% assign revised_first_authors = "" | split: ", " %}
{% for first_author in first_authors %}
{% if pruned_team_citation_names contains first_author %}
{% assign revised_first_author = "<b>" | append: first_author | append: "</b>" %}
{% assign revised_first_authors = revised_first_authors | push: revised_first_author %}
{% else %}
{% assign revised_first_authors = revised_first_authors | push: first_author %}
{% endif %}
{% endfor %}
{% assign revised_first_authors = revised_first_authors | join: ", " %}
{% assign shortref = revised_first_authors | append: " et al. " | append: paper.journal | append: " " | append: paper.year %}
<!-- <div class="note-title"></div> -->
<!-- <div class="media"> -->
<div>
<i class="fa fa-file-text-o fa-fw"></i>
{% if paper.preprint %}
Preprint:
<a class="off" href="{{ paper.url }}">
{{ paper.title }}
</a>
{% else %}
<a class="off" href="{{ paper.url }}">
{{ paper.title }}
</a>
{% endif %}
<br/>
<div class='shortref note'>
{{ shortref }}
</div>
</div>
<div class="smallspacer"></div>
<div class="smallnote">
{% if paper.preprint %}
Posted
{% else %}
Published
{% endif %}
{{ paper.date | date_to_string }}
</div>
<div class="spacer"></div>
<div class="spacer"></div>
{% endfor %}
</div>
<div class="bigspacer"></div>
</div>
<div class="col-md-6">
<div class="head">
Recent <a href="https://twitter.com/getz_lab?ref_src=twsrc%5Etfw" data-show-count="false">Tweets</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="bigspacer"></div>
<!-- <div><a href="https://twitter.com/getz_lab?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @getz_lab</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<a class="twitter-timeline" data-width="500" data-tweet-limit="3" href="https://twitter.com/getz_lab?ref_src=twsrc%5Etfw">Tweets by getz_lab</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
-->
<div>
<div class="smallnote">Gad Getz Laboratory Retweeted</div>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">So excited to share our work with <a href="https://twitter.com/lane_andy?ref_src=twsrc%5Etfw">@lane_andy</a> on Y chromosome loss in cancer! <a href="https://t.co/6iG8xRfav8">https://t.co/6iG8xRfav8</a></p>— rheinbay_lab (@rheinbay_lab) <a href="https://twitter.com/rheinbay_lab/status/1674072938713354241?ref_src=twsrc%5Etfw">June 28, 2023</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<div class="smallnote">Gad Getz Laboratory Retweeted</div>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">💫DON’T MISS <a href="https://twitter.com/NatureCancer?ref_src=twsrc%5Etfw">@NatureCancer</a> “Inferring early genetic progression in cancers with unobtainable premalignant disease” by <a href="https://twitter.com/getz_lab?ref_src=twsrc%5Etfw">@getz_lab</a> <a href="https://twitter.com/hashtag/JamesRocco?src=hash&ref_src=twsrc%5Etfw">#JamesRocco</a> <a href="https://twitter.com/OhioState?ref_src=twsrc%5Etfw">@OhioState</a> & Co.<br><br>Check it our here👇<a href="https://t.co/ufpKNAmtsz">https://t.co/ufpKNAmtsz</a><a href="https://t.co/6WAPIEhuDE">https://t.co/6WAPIEhuDE</a></p>— Nature Cancer (@NatureCancer) <a href="https://twitter.com/NatureCancer/status/1650806885921046530?ref_src=twsrc%5Etfw">April 25, 2023</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">(1/3) Out now <a href="https://twitter.com/NatureCancer?ref_src=twsrc%5Etfw">@NatureCancer</a>! Our collab with Dr. James Rocco <a href="https://twitter.com/OhioState?ref_src=twsrc%5Etfw">@OhioState</a> shows that our PhylogicNDT suite of tools can infer early genetic progression and timing of mutations to identify early drivers in HPV- & HPV+ head and neck cancers (<a href="https://twitter.com/hashtag/HNSCC?src=hash&ref_src=twsrc%5Etfw">#HNSCC</a>) <a href="https://t.co/fSeWlU2f9f">https://t.co/fSeWlU2f9f</a> <a href="https://t.co/JLXkEkpT8R">pic.twitter.com/JLXkEkpT8R</a></p>— Gad Getz Laboratory (@getz_lab) <a href="https://twitter.com/getz_lab/status/1649409964027305986?ref_src=twsrc%5Etfw">April 21, 2023</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="bigspacer"></div>
</div>
</div>
<div class="bigspacer"></div>