-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeaching.html
More file actions
356 lines (306 loc) · 9.35 KB
/
Teaching.html
File metadata and controls
356 lines (306 loc) · 9.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teaching — Maria Valdez Cabrera</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--navy: #1a2e3b;
--teal: #2d6a7f;
--teal-light: #4a9bb5;
--sky: #b7cfdc;
--sky-light: #deeaf1;
--white: #f9fbfc;
--text: #1e3240;
--text-muted: #527384;
--accent: #c97b3a;
--border: #c2d8e3;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'DM Sans', sans-serif;
font-weight: 300;
background-color: var(--white);
color: var(--text);
font-size: 17px;
line-height: 1.7;
}
nav {
background-color: var(--navy);
display: flex;
align-items: center;
padding: 0 48px;
height: 56px;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
nav .site-name {
color: #fff;
font-family: 'Lora', serif;
font-size: 15px;
letter-spacing: 0.04em;
margin-right: auto;
opacity: 0.85;
text-decoration: none;
}
nav a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 14px;
font-weight: 400;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 0 20px;
height: 56px;
display: flex;
align-items: center;
border-bottom: 3px solid transparent;
transition: color 0.2s, border-color 0.2s;
}
nav a:hover { color: #fff; border-bottom-color: var(--teal-light); }
nav a.active { color: #fff; border-bottom-color: var(--accent); }
.page-header {
background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
padding: 48px 48px 40px;
}
.page-header h1 {
font-family: 'Lora', serif;
font-size: 2rem;
color: #fff;
font-weight: 600;
}
.page-header .subtitle {
color: rgba(255,255,255,0.65);
font-size: 0.95rem;
margin-top: 6px;
}
.content {
max-width: 860px;
margin: 0 auto;
padding: 56px 48px;
}
/* Institution block */
.institution {
margin-bottom: 48px;
}
.institution-header {
display: flex;
align-items: baseline;
gap: 16px;
margin-bottom: 18px;
padding-bottom: 10px;
border-bottom: 2px solid var(--border);
}
.institution-header h2 {
font-family: 'Lora', serif;
font-size: 1.2rem;
font-weight: 600;
color: var(--navy);
border: none;
padding: 0;
margin: 0;
}
.institution-header .inst-location {
font-size: 13px;
color: var(--text-muted);
font-style: italic;
}
/* Course rows */
.course {
border-bottom: 1px solid var(--border);
padding: 14px 0;
}
.course:last-child { border-bottom: none; }
.course-top {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 12px;
flex-wrap: wrap;
}
.course-name {
font-size: 15px;
color: var(--text);
}
.course-name strong {
font-weight: 500;
color: var(--navy);
}
.course-name a {
color: var(--teal);
text-decoration: none;
}
.course-name a:hover { text-decoration: underline; }
.course-date {
font-size: 13px;
color: var(--text-muted);
white-space: nowrap;
font-style: italic;
}
.course-details {
margin-top: 8px;
padding-left: 16px;
font-size: 14px;
color: var(--text-muted);
}
.course-details li {
list-style: disc;
margin-left: 18px;
padding: 2px 0;
}
.course-details a {
color: var(--teal);
text-decoration: none;
}
.course-details a:hover { text-decoration: underline; }
footer {
background: var(--navy);
color: rgba(255,255,255,0.4);
text-align: center;
padding: 20px;
font-size: 13px;
}
@media (max-width: 700px) {
nav { padding: 0 20px; }
.page-header { padding: 36px 24px; }
.content { padding: 36px 24px; }
.page-header h1 { font-size: 1.6rem; }
.course-top { flex-direction: column; gap: 2px; }
}
</style>
</head>
<body>
<nav>
<a class="site-name" href="index.html">Maria Valdez Cabrera</a>
<a href="index.html">About</a>
<a href="Research.html">Research</a>
<a class="active" href="Teaching.html">Teaching</a>
</nav>
<div class="page-header">
<h1>Teaching</h1>
<div class="subtitle">Postdoctoral Fellow · Department of Biostatistics, University of Washington</div>
</div>
<div class="content">
<!-- European Institute for Marine Sciences -->
<div class="institution">
<div class="institution-header">
<h2>European Institute for Marine Sciences</h2>
<span class="inst-location">Brest University · Teaching Assistant</span>
</div>
<div class="course">
<div class="course-top">
<div class="course-name">
<a href="https://maignienlab.gitlab.io/ebame/#about"><strong>EBAME:</strong> Emerging Bioinformatics Approaches for Microbial Ecogenomics</a>
</div>
<span class="course-date">October 2025</span>
</div>
<ul class="course-details">
<li>Statistics foundations for metagenomics: Data from the POV of a Statistician</li>
<li>Functional enrichment — <a href="https://statdivlab.github.io/blog/articles/ebame10_pt2.html">lab</a></li>
<li>Models for differential abundance — <a href="https://statdivlab.github.io/blog/articles/ebame10_pt3.html">lab</a></li>
</ul>
</div>
</div>
<!-- Marine Biological Laboratory -->
<div class="institution">
<div class="institution-header">
<h2>Marine Biological Laboratory</h2>
<span class="inst-location">University of Chicago · Teaching Assistant</span>
</div>
<div class="course">
<div class="course-top">
<div class="course-name">
<a href="https://www.mbl.edu/education/advanced-research-training-courses/course-offerings/strategies-and-techniques-analyzing-microbial-population-structures"><strong>STAMPS:</strong> Strategies and Techniques for Analyzing Microbial Population Structures</a>
</div>
<span class="course-date">
<a href="https://github.com/mblstamps/stamps2025/wiki">July 2025</a> & <a href="https://github.com/mblstamps/stamps2024/wiki">July 2024</a>
</span>
</div>
<ul class="course-details">
<li>Statistics foundations: Data from the POV of a Statistician</li>
<li>R workshop: Introduction to R tools</li>
<li>Modeling microbial abundances: Overview of models for differential abundance</li>
<li>Phylogenomics: Introduction to Tree Estimation</li>
</ul>
</div>
</div>
<!-- University of Washington -->
<div class="institution">
<div class="institution-header">
<h2>University of Washington</h2>
<span class="inst-location">Teaching Assistant</span>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 571:</strong> Advanced Regression Methods for Dependent Data</div>
<span class="course-date">Jan – Mar 2023</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 537:</strong> Survival Data Analysis in Epidemiology</div>
<span class="course-date">Jan – Mar 2022</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 513:</strong> Medical Biometry III</div>
<span class="course-date">Mar – Jun 2021</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 512:</strong> Medical Biometry II</div>
<span class="course-date">Jan – Mar 2021</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 536:</strong> Categorical Data Analysis in Epidemiology</div>
<span class="course-date">Sep – Dec 2020</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 523:</strong> Statistical Inference for Biometry II</div>
<span class="course-date">Jan – Mar 2020</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 512:</strong> Medical Biometry II</div>
<span class="course-date">Jan – Mar 2019</span>
</div>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>BIOST 511:</strong> Medical Biometry I</div>
<span class="course-date">Sep – Dec 2018</span>
</div>
</div>
</div>
<!-- Universidad de Guanajuato -->
<div class="institution">
<div class="institution-header">
<h2>Universidad de Guanajuato</h2>
<span class="inst-location">Teaching Assistant</span>
</div>
<div class="course">
<div class="course-top">
<div class="course-name"><strong>M24101:</strong> Statistical Methods</div>
<span class="course-date">Jan – Jun 2016</span>
</div>
</div>
</div>
</div>
<footer>
Maria Valdez Cabrera · Department of Biostatistics, University of Washington
</footer>
</body>
</html>