-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·959 lines (866 loc) · 49.7 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
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>In the Everhart Lab…</title>
<script src="site_libs/jquery-1.11.3/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/readable.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<script src="site_libs/jqueryui-1.11.4/jquery-ui.min.js"></script>
<link href="site_libs/tocify-1.9.1/jquery.tocify.css" rel="stylesheet" />
<script src="site_libs/tocify-1.9.1/jquery.tocify.js"></script>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<style type="text/css">
h1 {
font-size: 34px;
}
h1.title {
font-size: 38px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
h6 {
font-size: 12px;
}
.table th:not([align]) {
text-align: left;
}
</style>
<link rel="stylesheet" href="custom.css" type="text/css" />
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
background-color: rgba(0, 0, 0, 0.04);
}
img {
max-width:100%;
height: auto;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
</style>
<style type="text/css">
/* padding for bootstrap navbar */
body {
padding-top: 66px;
padding-bottom: 40px;
}
/* offset scroll position for anchor links (for fixed navbar) */
.section h1 {
padding-top: 71px;
margin-top: -71px;
}
.section h2 {
padding-top: 71px;
margin-top: -71px;
}
.section h3 {
padding-top: 71px;
margin-top: -71px;
}
.section h4 {
padding-top: 71px;
margin-top: -71px;
}
.section h5 {
padding-top: 71px;
margin-top: -71px;
}
.section h6 {
padding-top: 71px;
margin-top: -71px;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script>
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark it active
menuAnchor.parent().addClass('active');
// if it's got a parent navbar menu mark it active as well
menuAnchor.closest('li.dropdown').addClass('active');
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
<style type="text/css">
#TOC {
margin: 25px 0px 20px 0px;
}
@media (max-width: 768px) {
#TOC {
position: relative;
width: 100%;
}
}
.toc-content {
padding-left: 30px;
padding-right: 40px;
}
div.main-container {
max-width: 1200px;
}
div.tocify {
width: 20%;
max-width: 260px;
max-height: 85%;
}
@media (min-width: 768px) and (max-width: 991px) {
div.tocify {
width: 25%;
}
}
@media (max-width: 767px) {
div.tocify {
width: 100%;
max-width: none;
}
}
.tocify ul, .tocify li {
line-height: 20px;
}
.tocify-subheader .tocify-item {
font-size: 0.90em;
}
.tocify .list-group-item {
border-radius: 0px;
}
</style>
</head>
<body>
<div class="container-fluid main-container">
<!-- setup 3col/9col grid for toc_float and main content -->
<div class="row-fluid">
<div class="col-xs-12 col-sm-4 col-md-3">
<div id="TOC" class="tocify">
</div>
</div>
<div class="toc-content col-xs-12 col-sm-8 col-md-9">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">NEWS</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="people.html">People</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Research
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="research.html">Current Projects</a>
</li>
<li>
<a href="publications.html">Publications</a>
</li>
<li>
<a href="funding.html">Funding</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Teaching
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="courses.html">Courses</a>
</li>
<li>
<a href="workshops.html">Workshops</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Lab Resources
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="welcome.html">Welcome Letter</a>
</li>
<li>
<a href="training.html">Safety Training</a>
</li>
<li>
<a href="expectations.html">Expectations for GRAs</a>
</li>
<li>
<a href="stewardship.html">Good Lab Stewardship</a>
</li>
<li>
<a href="time-management.html">Time Management</a>
</li>
</ul>
</li>
<li>
<a href="join.html">Join Our Lab</a>
</li>
<li>
<a href="sydney-everhart.html">About Me</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div class="fluid-row" id="header">
<h1 class="title toc-ignore">In the Everhart Lab…</h1>
</div>
<p>In my lab, we characterize population dynamics and spread of fungal plant pathogens using quantitative spatiotemporal epidemiology, population genetics, and whole-genome approaches. We also study how pathogens evolve under stress and how this is related to emergence of fungicide resistance.</p>
<p><br></p>
<div id="news-from-the-lab" class="section level2">
<h2>News from the Lab</h2>
<p><br></p>
<div id="news-from-2020" class="section level3">
<h3>News from 2020</h3>
<div id="october-2020" class="section level4">
<h4>October 2020</h4>
<ul>
<li>Congratulations to <strong>Nikita</strong> who has successfully passed her dissertation defense! After graduation she will be starting a postdoc position with <strong>Dr. Katie Gold</strong> at Cornell University to further expand her skills to spectral data analysis to detect fungicide resistance within vineyards. Exciting developments on both fronts!</li>
</ul>
</div>
<div id="august-2020" class="section level4">
<h4>August 2020</h4>
<ul>
<li><p>The American Phytopathological Society’s annual meeting “Plant Health 2020” is virtual this month, with several lab members presenting their research. Here is a list of their presentations:</p>
<ul>
<li><p><a href="https://apsnet.confex.com/apsnet/2020/meetingapp.cgi/Paper/16387">Fungicide resistance: Screening and risk-assessment of <em>Rhizoctonia zeae</em> populations in Nebraska</a> <strong>Nikita Gambhir</strong>, Srikanth Kodati, Anthony Oyegoke Adesemoye and Sydney E. Everhart. Live presentation as part of 19th I.E. Melhus Symposium on Data Driven Plant Health: Friday, August 14, 2020, at 9:00am.</p></li>
<li><p><a href="https://apsnet.confex.com/apsnet/2020/meetingapp.cgi/Paper/16928">Rapid detection of QoI fungicide resistance in <em>Cercospora sojina</em> and characterization of populations in Nebraska</a> <strong>Asha Mane</strong>, Tamra A. Jackson-Ziems, Carl A. Bradley, and Sydney E. Everhart. Technical session on Diagnostic Marker Development with live Q&A on: Thursday, August 13, 2020, 11:15am.</p></li>
<li><p><a href="https://apsnet.confex.com/apsnet/2020/meetingapp.cgi/Paper/17377">Fungicide Sensitivity of <em>Sclerotinia sclerotiorum</em> from Dry Bean and Soybean in the U.S</a> <strong>Edgar Humberto Nieto-Lopez</strong>, Thomas J.J. Miorini, Martin Chilvers, Loren J. Giesler, Tamra A. Jackson-Ziems, Mehdi Kabbage, Daren S. Mueller, Damon L. Smith, Juan Manuel Tovar-Pedraza, Jaime F. Willbur and Sydney E. Everhart. Poster presentation.</p></li>
<li><p><a href="https://apsnet.confex.com/apsnet/2020/meetingapp.cgi/Paper/16863">An outbreak of bud blight disease of spruce (<em>Picea</em> spp.) in Alaska: an epidemiological study of <em>Gemmamyces piceae</em></a> <strong>Sergio Manuel Gabriel Peralta</strong>, Gerard C. Adams Jr., Loretta Winton, Karel Cerny and Sydney E. Everhart. Poster presentation.</p></li>
<li><p><a href="https://apsnet.confex.com/apsnet/2020/meetingapp.cgi/Paper/17017">Distribution and population structure of <em>Rhizoctonia zeae</em> in the North Central United States.</a> <strong>Nikita Gambhir</strong>, Srikanth Kodati, Anthony Oyegoke Adesemoye, Olutoyosi O. Ajayi, Kaitlyn Bissonnette, Carl A. Bradley, Martin Chilvers, Ahmad M. Fakhoury, Tamra A. Jackson-Ziems, Leonor F. S. Leandro, Christopher R. Little1, Dean K. Malvick1, Febina M. Mathew1, Berlin D. Nelson Jr., Gretchen Sassenrath, Damon L. Smith, Darcy E. P. Telenko, Kiersten A. Wise and Sydney E. Everhart. Poster presentation.</p></li>
</ul></li>
</ul>
</div>
<div id="july-2020" class="section level4">
<h4>July 2020</h4>
<ul>
<li><p>Congratulations to <strong>Asha</strong> for the successful funding of the proposal she co-authored to the Nebraska Soybean Board entitled “Survey and rapid diagnostics for fungicide resistant Frogeye Leaf Spot in Nebraska.”</p></li>
<li><p>Our new project proposal to the USDA National Sclerotinia Initiative was also awarded funding, which supports the project that <strong>Becky</strong> is working on to coordinate our multi-state bean line screening research and <strong>Edgar’s</strong> research on <em>Sclerotinia sclerotiorum</em> fungicide resistance and population structure.</p></li>
<li><p>At the end of this month, we also bid farewell and good luck to <strong>Cristian</strong> as he leaves to begin his Ph.D. in California.</p></li>
</ul>
</div>
<div id="may-2020" class="section level4">
<h4>May 2020</h4>
<ul>
<li>There were two graduations to celebrate this month, <strong>Cristian</strong> has graduated with his B.S. in biochemistry and <strong>Karen</strong> has received her doctorate in Agronomy & Horticulture. Congratulations to both of you! You both showed incredible resilliency to change by finishing your programs on time despite the uncertainty of the pandemic. While Karen has already left for her new position, we are fortunate to keep <strong>Cristian</strong> for another couple of months before he too departs for California, where he will be joining the Department of Molecular Medicine at the Scripps Research Institute.</li>
</ul>
</div>
<div id="april-2020" class="section level4">
<h4>April 2020</h4>
<ul>
<li><p><strong>Dr. Karen Ferreira DaSilva</strong> has successfully defended her dissertation this month! This is a major milestone and although the pandemic has limited our ability to celebrate in person, we are all super excited for her achievement and looking forward to celebrating this in person sometime in the future. Congratulations, <strong>Karen</strong>!</p></li>
<li><p><strong>Cristian</strong> has completed his UCARE research project and although we could not see him present the poster in person at the UNL Spring Research Fair, he was able to upload the poter onto UNL Digital Commons. His poster is titled, <a href="https://digitalcommons.unl.edu/ucareresearch/243/"> “Fungicides sensitivity of <em>Sclerotinia sclerotiorum</em> isolates from five states with different fungicide treatments.”</a></p></li>
</ul>
</div>
<div id="march-2020" class="section level4">
<h4>March 2020</h4>
<ul>
<li>Great news! <strong>Karen</strong> has just accepted a job offer to work as a Plant Pathology Field Scientist for Corteva Agrisciences in Davis, CA. Now the dissertation just has to be finished and defended – no pressure!</li>
</ul>
</div>
<div id="february-2020" class="section level4">
<h4>February 2020</h4>
<ul>
<li>Incredibly, more than 150 people registered to attend each day of our 2-day <em>Intro to R Workshop</em> that is being broadcast via APS as a webinar this month. This is the very first time that a computational workshop is going to be offered as an APS webinar. Hopefully this will encourage others to take a leap and offer their computing workshop as a webinar too.</li>
</ul>
</div>
<div id="january-2020" class="section level4">
<h4>January 2020</h4>
<ul>
<li><strong>Dr. Srikanth Kodati</strong>, former Ph.D. student in the lab accepted a new position as a postdoc researcher in the lab of <strong>Dr. James LaMondia</strong> in the Valley Laboratory in Windsor, CT. The ressearch that he will be conducting is on horticultural and specialty crops important on the east coast and build upon <strong>Sri’s</strong> M.S. research experience in Tennessee working on dogwood varieties with resistance to powdery mildews. Congratulations, <strong>Dr. Kodati</strong>!</li>
</ul>
</div>
</div>
<div id="news-from-2019" class="section level3">
<h3>News from 2019</h3>
<div id="december-2019" class="section level4">
<h4>December 2019</h4>
<ul>
<li>Congratulations to <strong>Dr. Srikanth Kodati</strong>, who successfully defended his Ph.D. dissertation this fall, entitled <a href="https://digitalcommons.unl.edu/dissertations/AAI27667794/"> “Diversity and pathogenicity of <em>Rhizoctonia</em> spp. from different plant hosts in Nebraska”</a>. It has been such a wonderful year working with you on these projects.</li>
</ul>
</div>
<div id="july-2019" class="section level4">
<h4>July 2019</h4>
<ul>
<li>Congratulations to <strong>Ms. Gulcin Ercan</strong> on successfully defending her M.S. thesis co-advised with <strong>Dr. Julie Peterson</strong> in the Department of Entomology. Wishing you all the best, <strong>Gulcin</strong>, on the next phase of your career.</li>
</ul>
</div>
<div id="august-2019" class="section level4">
<h4>August 2019</h4>
<ul>
<li><p>After 5 years at the University of Nebraska, I will be starting this fall semester as an associate professor in the Department of Plant Pathology. Special thanks is due to all of the people who I have worked with over the years, this is a huge milestone and I appreciate all of the people who I have collaborated with and interacted along the way.</p></li>
<li><p>Several of the Everhart Lab members traveled to the APS Meeting in Cleveland, OH to present our research. <strong>Karen</strong> was selected to present two talks, including one in the I.E. Melhus Symposium. <strong>Margarita</strong> presented two posters. <strong>Nikita</strong> presented two posters and co-taught our Intro R workshop. <strong>Srikanth</strong> presented a poster of his research. <strong>Thomas</strong> presented a poster of previous work in my lab and even <strong>Edgar</strong> had a poster at the meeting. In general, we made our visit to Ohio very productive, forming new relationships, extending our networks, and identifying future potential collaborations.</p></li>
<li>Congratulations to <strong>Karen</strong>! She received the third place oral presentation from the North Central Division of APS and was the only student from our department selected for the NC-APS travel award. Way to go!</li>
<li><p>A big welcome to new Everhart Lab member, <strong>Sergio Gabriel-Peralta</strong>! <strong>Sergio</strong> received his bachelor’s in Mexico and his master’s at UNL studying plant viruses. He joins the lab after having been awarded a prestigious CONNACYT fellowship from the Mexican government. Welcome, <strong>Sergio</strong>!</p></li>
</ul>
</div>
<div id="july-2019-1" class="section level4">
<h4>July 2019</h4>
<ul>
<li><p>Congratulations, <strong>Julianne</strong>, for successfully defending your dissertation! I heard lots of great comments about the quality of your presentation.</p></li>
<li><p><strong>Julianne</strong> was awarded the Corteva Award to attend the Society of Nematology (SON) Meeting in Raleigh, NC this month. She gave an oral presentation of her research on nematodes in the Great Smoky Mountains National Park and presented a poster of her work on deciphering ecological features within cryptic species, <em>Mesocriconema xenoplax</em>.</p></li>
<li><p>The beginning of this month was the conclusion of a summer course that I taught on professional development called <em>Success in the Sciences</em>. This has become a highly rated course and so I will be teaching it again this fall.</p></li>
<li><p>In other news, <strong>Asha Mane</strong> is joiing the Everhart Lab this month. <strong>Asha</strong> received her bachelor’s and master’s in India and is interested in cutting-edge research in plant pathology. She also comes to us after having several years of lab experience. We will be working together this fall to develop her project plans. Welcome, <strong>Asha</strong>!</p></li>
</ul>
</div>
<div id="june-2019" class="section level4">
<h4>June 2019</h4>
<ul>
<li>I traveled with Complex Biosystems students, <strong>Kimberly Stanke</strong> and <strong>Ashley Stengel</strong>, to Idaho to present a poster and for them to give talks at the North American Colleges and Teachers of Agriculture meeting in Twin Falls, ID. Congratulations on two very excellent presentations on pedagogy!</li>
</ul>
</div>
<div id="april-2019" class="section level4">
<h4>April 2019</h4>
<ul>
<li>We have two new people joining the Everhart Lab this month, <strong>Srikanth Kodati</strong> and <strong>Gulcin Ercan</strong>. Both students previously worked with <strong>Dr. Tony Adesemoye</strong> who left UNL for an industry position this month. <strong>Srikanth</strong> will move to Lincoln later this spring and <strong>Gulcin</strong> will finish her master’s in North Platte, under direct supervision of her co-advisor, <strong>Dr. Julie Peterson</strong>. Welcome, <strong>Sri</strong> and <strong>Gulcin</strong>!</li>
</ul>
</div>
<div id="march-2019" class="section level4">
<h4>March 2019</h4>
<ul>
<li>The Everhart Lab hosted <a href= "https://luckymehra.com"><strong>Dr. Lucky Mehra</strong></a>, epidemiologist and instructor from Kansas State University to give a seminar and co-teach the Intro to R workshop during the spring break to more than 60 students, staff, and faculty.<br />
</li>
<li><p><strong>Nikita</strong> and I traveled to Knoxville, TN to the University of Tennessee for a joint collaborative visit with <strong>Drs. Denita Hadziabdic</strong> and <strong>Meg Staton</strong>. We kicked off a week-long visit by teaching our Intro R workshop and then later, <strong>Nikita</strong> worked with the Staton lab to learn de novo genome assembly and I worked one-on-one in a data analysis project with <strong>Denita</strong>.</p></li>
<li><p>Good news! I returned from Tennessee to find out that my application for tenure and promotion were officially approved at all of the levels from the department to the Vice Chancellor. When my appointment starts in the fall, it will be as Associate Professor.</p></li>
</ul>
</div>
<div id="february-2019" class="section level4">
<h4>February 2019</h4>
<ul>
<li>The UNL Teaching and Learning Symposium was held this month at the Nebraska Innovation Campus. As part of the event, I co-taught a workshop on active learning techniques that were used in my professional development course. The great thing was that I got to co-teach this with two graduate students who co-developed the course, <strong>Kimberly Stanke</strong> and <strong>Ashley Stengel</strong>. I think we did a great job and had fun!</li>
</ul>
<p><img src="images/CristianWolkupGil-2019.jpg" title="Cristian Wolkup-Gil" class="custom_imagesm shadow grow" /></p>
</div>
<div id="january-2019" class="section level4">
<h4>January 2019</h4>
<ul>
<li><p>Biochemistry undergraduate, <strong>Cristian Wolkup-Gil</strong>, has joined our lab to gain research experience. He’s writing proposals for a UCARE project and an IANR Undergraduate Research Award to conduct a project on fungicide sensitivity of <em>Sclerotinia sclerotiorum</em> from dry bean fields in the U.S. = The project that I started as part of my USDA-NIFA Postdoctoral fellowship on <em>Phytophthora ramorum</em> was published in <em>mBio</em> this month.</p></li>
<li><p>As part of my application for tenure, I delivered a seminar in the Department of Plant Pathology this month that highlighted my research and its impact.</p></li>
</ul>
</div>
</div>
<div id="news-from-2018" class="section level3">
<h3>News from 2018</h3>
<div id="december-2018" class="section level4">
<h4>December 2018</h4>
<ul>
<li><p>Starting in the spring, <strong>Julianne Matcynszyn</strong> will join the Everhart Lab to complete her Ph.D., which is on the ecological differnatiation within <em>Mesocriconema xenoplax</em> cryptic species. She comes to our lab after four years in <strong>Dr. Tom Powers’</strong> lab. <strong>Julianne</strong> is targeting August for completion of her dissertation. Welcome, Julianne!</p></li>
<li><p>This month, I finalized and submitted my application for early tenure consideraton in the Department of Plant Pathology. Since there is no third year review in our department and no penalty for going up a year early for tenure consideration, I considered this a “no brainer”. In the worst case scenario, this will allow me to gain feedback on what I need to do this year to make a winning application next year.</p></li>
</ul>
</div>
<div id="november-2018" class="section level4">
<h4>November 2018</h4>
<ul>
<li>Invited by <strong>Dr. David Cook</strong> of the Department of Plant Pathology, I visited Kansas State University to give a seminar. This was a wonderful trip to a department with several new, vibrant faculty engaged in high-end research. It was a very special moment for me to be invited to give a seminar in the place where my dad, <strong>Dr. Eldon Everhart</strong>, earned his B.S. and M.S. in Horticulture working with <strong>Dr. Charlie Hall</strong> in the 1960’s.</li>
</ul>
</div>
<div id="october-2018" class="section level4">
<h4>October 2018</h4>
<p><img src="images/OliviaRenelt.jpg" title="Olivia Renelt" class="custom_imagesm shadow grow" /></p>
<ul>
<li><p>A new undergraduate student in biochemistry, <strong>Olivia Renelt</strong>, has joined the Everhart Lab to help out with our fungicide sensitivity assays and molecular genetics projects. Welcome, <strong>Olivia</strong>!</p></li>
<li><p>Invited by the graduate student association in the Department of Plant Pathology and Environmental Microbiology, I traveled to Penn State University to give a departmental seminar, Intro to R Workshop, and chat with the students about time management. It was a whirlwind trip that was amazing!</p></li>
</ul>
</div>
<div id="august-2018" class="section level4">
<h4>August 2018</h4>
<ul>
<li><p>Several of us took a trip to Boston for the combined meeting of the International Congress of Plant Pathology (ICPP) and the American Phytopathological Society, where one workshop, one talk, and several posters will be presented by members of our group.</p></li>
<li><p>Workshop: Intro to R for Plant Pathologists was co-taught with <strong>Nikita</strong> to >60 attendees</p></li>
<li><p>Talk: <strong>Nikita</strong> gave a presentation in a special session on fungicide resistance to a large audience</p></li>
</ul>
</div>
<div id="july-2018" class="section level4">
<h4>July 2018</h4>
<ul>
<li>The 8-week summer semester teaching <em>Success in the Sciences</em> has finally come to an end and, after a week of recovery, <strong>Ashley</strong>, <strong>Kimberly</strong>, and I have decided that our work to develop this coures will be documented as a Benchmark Portfolio to be published on UNL Digital Commons, shared in Canvas to enable others to import the course, and we will analyze artifacts of our course in order to summarize the work for publication in a journal like <em>North American College Teachers in Agriculture</em>.</li>
</ul>
</div>
<div id="june-2018" class="section level4">
<h4>June 2018</h4>
<ul>
<li>The Everhart Lab is headed to Fargo, ND this June to attend the APS North Central Division Meeting. Among abstracts submitted, <strong>Edgar</strong>’s was selected for one of only a very limited number of oral presentation slots. He will be presenting a talk entitled, “Fungicide sensitivity of 42 <em>Sclerotinia sclerotiorum</em> isolates in the North Central U.S. and determination of discriminatory concentrations.”</li>
</ul>
<p><br> <img src="images/Karen%20Ferreira%20Da%20Silva.jpg" title="Karen Ferreira Da Silva joins Everhart Lab" class="custom_image shadow grow" /></p>
<ul>
<li>Joining the Everhart Lab is <strong>Karen Ferreira Da Silva</strong>. <strong>Karen</strong> comes to us with research experience working in the labs of <strong>Drs. Gary Yuen</strong> and <strong>Josh Herr</strong>, and having received her M.S. in Entomology working with <strong>Dr. Blair Sigfreid</strong>. Projects that <strong>Karen</strong> will complete in my lab include a meta-analysis of gene expression data, a greenhouse study to evaluate interactions in the fall armyworm x Goss’s wild pathogen on disease development, and a survey of leadership training provided to and needed for students in Plant Pathology and the broader agricultural STEM careers. Welcome <strong>Karen</strong>!</li>
</ul>
</div>
<div id="may-2018" class="section level4">
<h4>May 2018</h4>
<ul>
<li><p>We are welcoming two new people to our lab this summer! <strong>Callie Braley</strong> and <strong>Rachel Persson</strong>.</p></li>
<li><p><strong>Callie</strong> is a student in the Doctor of Plant Health program and will be spending time learning about how research on fungicide sensitivity is conducted in the lab. She will also begin a small survey of Nebraska to see if she finds any QoI-resistant isolates of the frogeye leaf spot pathogen <em>Cercospora sojina</em>. <img src="images/RachelPersson.jpeg" title="Rachel Persson joins Everhart Lab" class="custom_imagesm shadow grow" /></p></li>
<li><p><strong>Rachel</strong> is an undergraduate student in biochemistry and received funding from the UNL UCARE program to conduct a small study where she will be comparing genotyping results from <strong>Dr. Jim Steadman’s</strong> lab <em>Sclerotinia sclerotiorum</em> database to genotyping results in our lab in order to determine if genotyping results of the two can be compared and combined.</p></li>
<li><p>This summer I’ll be teaching a new course in professional development, entitled <em>Success in the Sciences</em>. The fun part is that this is a coures that I am co-developing wtih two graduate students in the Complex Biosystems program, <strong>Kimberley Stanke</strong> and <strong>Ashley Stengel</strong>, with additional guidance on curriculum development and active learning techniques from <strong>Dr. Sydney Brown</strong>.</p></li>
</ul>
</div>
<div id="april-2018" class="section level4">
<h4>April 2018</h4>
<ul>
<li><p>Both sad and exciting news that both <strong>Zhian</strong> and <strong>Thomas</strong> will be moving on to new postdoctoral positions this month</p></li>
<li><p><strong>Zhian</strong> will be taking a new postdoctoral researh position in London with <strong>Dr. Theobart Jombart</strong>, the author of the adegenet R package. Although I am sad to see <strong>Zhian</strong> go, I am excited for him to gain this new experience!</p></li>
<li><p><strong>Thomas</strong> is moving north to Carrington, ND to gain tons of field experience working with Michael Wunsch. They will be working together to evaluate fungicide applications for the control of <em>Sclerotinia sclerotiorum</em> diseases in multiple row crops.</p></li>
</ul>
</div>
<div id="march-2018" class="section level4">
<h4>March 2018</h4>
<ul>
<li><p>Wow! What a month! We submitted three manuscripts in two weeks to <em>Tropical Plant Pathology</em> for the special issue on <em>Sclerotinia</em> research. All of our submitted manuscripts are open and available for comment at <em>PeerJ Preprints</em>:</p>
<ul>
<li><p>Pannullo, AP, ZN Kamvar, TJJ Miorini, JR Steadman, and SE Everhart. 2018. <a href="https://peerj.com/manuscripts/26294/">Genetic variation and structure of <em>Sclerotinia sclerotiorum</em> populations from soybean in Brazil.</a> <em>PeerJ Preprints</em></p></li>
<li><p>Miorini, TJJ, ZN Kamvar, R Higgins, CG Raetano, JR Steadman, and SE Everhart. 2018. <a href="https://peerj.com/manuscripts/26382/">Variation in pathogen aggression and cultivar performance against <em>Sclerotinia sclerotiorum</em> in soybean and dry bean from Brazil and the U.S.</a> <em>PeerJ Preprints</em></p></li>
<li><p>Kamvar, ZN, and SE Everhart. 2018. <a href="https://peerj.com/manuscripts/26556/">Something in the agar does not compute: On the discriminatory power of mycelial compatibility in <em>Sclerotinia sclerotiorum</em>.</a> <em>PeerJ Preprints</em></p></li>
</ul></li>
</ul>
<p><br> <img src="images/NSI-poster2018.jpg" title="Rebecca Higgins & Zhian Kamvar" class="custom_image shadow grow" /></p>
</div>
<div id="january-2018" class="section level4">
<h4>January 2018</h4>
<ul>
<li><p><strong>Becky Higgins</strong> of <strong>Jim Steadman’s</strong> lab and <strong>Zhian</strong> (pictured right) have their poster ready for the National Sclerotinia Initiative meeting this Wednesday, January 17th in Minneapolis, MN.</p></li>
<li>The Everhart Lab has created a new <em>Computing Cafe</em> in our department that is open daily on Tuesday to Friday from 3:30 to 5:00pm in the Department of Plant Pathology Conference room located in 406B Plant Sciences Hall. Examples of computing tools that will be used in the cafe include:
<ul>
<li>Canvas <img src="images/ComputingCafeNowOpen.jpg" title="Computing Cafe" class="custom_imagesm shadow grow" /></li>
<li>Drupal 7 and 8 (UNL web framework) <img src="images/ComputingCafe-Members1.jpg" title="Cafe Visitors" class="custom_imagesm shadow grow" /></li>
<li>GitHub</li>
<li>R, RStudio, and various R packages</li>
<li>HCC-related command-line work</li>
<li><strong>anything that exists on a computer</strong></li>
</ul></li>
<li><p>Collaborative paper with <strong>Dr. Amauri Bogo</strong> of Santa Catarina State University in Brazil on two species of <em>Neofabraea</em> causing apple bull’s-eye rot is is now in press and available as a pre-print online! <a href="https://doi.org/10.1080/07060661.2017.1421588" class="uri">https://doi.org/10.1080/07060661.2017.1421588</a></p></li>
</ul>
<p><br></p>
</div>
</div>
<div id="news-from-2017" class="section level3">
<h3>News from 2017</h3>
<div id="december-2017" class="section level4">
<h4>December 2017</h4>
<p><img src="images/ThomasMiorini_InoculatingFlowers.JPG" title="Thomas Miorini" class="custom_image shadow grow" /></p>
<ul>
<li><p>Paper in <em>PeerJ</em> now published! Check it out. <a href="https://peerj.com/articles/4152/" class="uri">https://peerj.com/articles/4152/</a></p></li>
<li><p>We submitted a total of five abstracts for the APS-ICPP 2018 meeting, including recent work by <strong>Thomas</strong> to compare ability of different fungicides to protect flowers from infection by <em>Sclerotinia sclerotiorum</em> ascospores (pictured right).</p></li>
<li><p>I was nominated by <strong>Dr. Loren Giesler</strong> for the UNL Dinsdale Family Faculty Award for pre-tenure faculty with excellence in research, teaching, and/or extension. It was a great opportunity to get my photo taken with both <strong>Loren</strong> and our IANR Vice Chancellor and plant pathologist, <strong>Dr. Mike Boehm</strong>.</p></li>
</ul>
</div>
<div id="november-2017" class="section level4">
<h4>November 2017</h4>
<ul>
<li><p>Our population study of <em>Sclerotinia sclerotiorum</em> populations is now accepted for publication in <em>PeerJ</em>! Congratulations to <strong>Zhian</strong> and co-authors on this publication!</p></li>
<li><p>New undergraduate students, <strong>Audrey Vega</strong> and <strong>Isabel Chavez</strong>, are selected to join the Everhart Lab as new lab helpers. Welcome, <strong>Audrey</strong> and <strong>Isabel</strong>!</p></li>
<li><p>The USDA Women and Minorities in Agricultural STEM program will be funding a project that I co-developed with collaborators <strong>Jenny Keshwani</strong>, <strong>Leah Sandall</strong>, <strong>Julie Bray-Obermyer</strong>, and <strong>Deepak Keshwani</strong>, to create a mentoring program for youth to connect with career professionals who look like them. Our program is called <em>Cultivate ACCESS</em> and will be launched in the spring of 2018!</p></li>
</ul>
<p>We hosted two visiting speakers this month:</p>
<p><img src="images/JerryWeiland_ForestPathogens_2017Seminar.JPG" title="Dr. Jerry Weiland" class="custom_image shadow grow" /></p>
<ul>
<li><strong>Dr. Jerry Weiland</strong> of the USDA-ARS Horticultural Crops Research Unit visited our department and gave a comprehensive talk on characterization of soilborne pathogens that affect tree production in the Pacific Northwest. This talk was highly praised by many in our department!</li>
</ul>
<p><img src="images/StacyKrueger-Hadfield_2017Seminar.JPG" title="Dr. Stacy Krueger-Hadfield" class="custom_imagesm shadow grow" /></p>
<ul>
<li><strong>Dr. Stacy Krueger-Hadfield</strong> from the University of Alabama at Birmingham visited and give us an exciting talk on the mysterious lives of marine algae. Belive it or not, plant pathogens and algae have a lot in common when it comes to population genetics! Complex mating systems == complex data. Great talk!</li>
</ul>
</div>
<div id="october-2017" class="section level4">
<h4>October 2017</h4>
<p><img src="images/IntroR-at-OSU-flight.png" title="On my way to OSU!" class="custom_imagesm shadow grow" /></p>
<ul>
<li><p>Invited by <strong>Dr. Anne Dorrance</strong>, I taught our Intro to R for Plant Pathologists workshop to ~20 grad students and postdocs located in Wooster and video-linked to Columbus. The following day, I gave a seminar for the department and had a great time meeting students, faculty, and staff.</p></li>
<li><p>Our manuscript on the largest population genetic study of <em>Sclerotinia sclerotiorum</em> that were collected over a 10-year period is now out as a <em>PeerJ Preprints</em> and under review at <em>PeerJ</em>.</p></li>
<li><p><strong>Jimin Kamvar</strong> has joined the Department of Plant Pathology to serve as a <em>Digital Communications Liaison</em> under my supervision. Her work will serve to keep the department website updated. Welcome, Jimin!</p></li>
</ul>
</div>
<div id="september-2017" class="section level4">
<h4>September 2017</h4>
<ul>
<li><p>I was invited by <strong>Dr. Mark Gleason</strong> to give a seminar at the Department of Plant Pathology and Microbiology at Iowa State University.</p></li>
<li><p><strong>Nikita</strong> was selected to receive the 2017-2018 Widaman Distinguished Graduate Assistantship. Congratulations, <strong>Nikita</strong>!</p></li>
</ul>
</div>
<div id="august-2017" class="section level4">
<h4>August 2017</h4>
<p><img src="images/Everhart_CoffeeRust.JPG" title="Sydney in Brazil" class="custom_image shadow grow" /></p>
<ul>
<li><p>Invited by <strong>Drs. Eduardo Mizubuti</strong> and <strong>David Jaccoud Filho</strong>, I gave two presentations at the 16th International Sclerotinia Workshop in Uberlandia, Brazil. This also included a post-meeting field trip to see agricultural production in the region and my first visit to a coffee plantation (with rust!!).</p></li>
<li><p><strong>Edgar</strong>, <strong>Zhian</strong>, <strong>Thomas</strong>, <strong>Nikita</strong>, and I are headed to the national APS meeting in San Antonio, TX. Check out our posters if you’re there.</p></li>
<li><p><strong>Nikita</strong> received the Donald E. Munnecke Student Travel Award from APS to attend the national meeting. Well done!</p></li>
</ul>
<p><img src="images/NikitaGambhir_2017.jpg" title="Nikita at 2017 APS Meeting" class="custom_image shadow grow" /></p>
</div>
<div id="july-2017" class="section level4">
<h4>July 2017</h4>
<ul>
<li><p>Farewell to <strong>Anthony</strong> as he departs the Everhart Lab to begin graduate studies in microbiology at the University of Iowa. Good luck, <strong>Anthony</strong>!</p></li>
<li><p>Welcome to <strong>Alex Johnson</strong>! Starting in July, <strong>Alex</strong> will be working in our lab half time as a research assistant.</p></li>
</ul>
</div>
<div id="june-2017" class="section level4">
<h4>June 2017</h4>
<p><img src="images/IntroRWorkshop2017.png" title="Teaching R at North Central APS" class="custom_wide shadow grow" /></p>
<ul>
<li><p><strong>Edgar</strong>, <strong>Anthony</strong>, and, <strong>Nikita</strong> each received a travel award to attend the North Central APS meeting in Champaigne, IL. Congratulations on your excellent poster presentations!</p></li>
<li><p>Our Intro to R Workshop, co-taught with <strong>Dr. Alex Lipka</strong> of Univ. of Illinois at Urbana-Champaigne, was a big success at the 2017 North Central APS Meeting. We had more than 20 people coding in R.</p></li>
<li><p>Welcome to <strong>Dr. Margarita Marroquin-Guzman</strong>! Starting June 6th, <strong>Margarita</strong> will be working in our lab as a postdoctoral scholar on a project to characterize the soybean / covercrop microbiomes with different covercrop rotations. Welcome!</p></li>
</ul>
<p><img src="images/RWorkshopUNL-May2017.jpg" title="Teaching R at UNL" class="custom_wide shadow grow" /></p>
</div>
<div id="may-2017" class="section level4">
<h4>May 2017</h4>
<ul>
<li>Intro to R Workshop co-developed and taught by myself and <strong>Zhian</strong> was delivered to a packed house of more than 50 people from UNL. Photo at right shows <strong>Zhian</strong> teaching a classroom of captivated graduate students, postdocs, and faculty in the Goodding Learning Center.</li>
</ul>
</div>
<div id="april-2017" class="section level4">
<h4>April 2017</h4>
<p><img src="images/large_EdgarNietoApril2017UNLSpringResFair.jpeg" title="Edgar at UNL Spring Research Fair" class="custom_image shadow grow" /></p>
<ul>
<li><p><strong>Nikita</strong> wins award for her poster presented at the UNL Spring Research Fair – congratulations, Nikita!</p></li>
<li><p><strong>Edgar</strong>, <strong>Nikita</strong>, and, <strong>Anthony</strong> presented posters at the UNL Spring 2017 Research Fair (<strong>Edgar</strong>, right)</p></li>
</ul>
</div>
<div id="march-2017" class="section level4">
<h4>March 2017</h4>
<ul>
<li>We submitted three abstracts for the 2017 national APS meeting in San Antonio, TX</li>
</ul>
</div>
<div id="february-2017" class="section level4">
<h4>February 2017</h4>
<ul>
<li>Collaborative paper by <strong>Madeline Dowling</strong> of <strong>Dr. Guido Schnabel’s</strong> lab was published in <em>Pest Management Science</em> on development of markers for <em>Monilinia fructicola</em> isolate tracking within lesions. Congratulations, <strong>Madeline</strong>!</li>
</ul>
</div>
<div id="january-2017" class="section level4">
<h4>January 2017</h4>
<ul>
<li>Dr. <strong>Zhian Kamvar</strong> joins the Everhart Lab as postdoc to work with genomes and genetic data. Welcome!</li>
</ul>
<p><img src="images/NSI-meeting2017Everhart.jpg" title="Sydney at NSI Meeting" class="custom_image shadow grow" /></p>
<ul>
<li><p><strong>Thomas</strong>’ manuscript on the effect of irrigation level for optimal chemigation control of <em>Sclerotinia sclerotiorum</em> is now available online and will appear in April 2017 issue of <em>Crop Protection</em>.</p></li>
<li><p>I gave a presentation of our research at the National Sclerotinia Initiative meeting in Minneapolis (right).</p></li>
</ul>
<p><br></p>
</div>
</div>
<div id="news-from-2016" class="section level3">
<h3>News from 2016</h3>
<div id="december-2016" class="section level4">
<h4>December 2016</h4>
<ul>
<li><p>Our paper now published and shows sublethal fungicides alter mutation rates and potentially alters genomes: <a href="http://dx.doi.org/10.1371/journal.pone.0168079" class="uri">http://dx.doi.org/10.1371/journal.pone.0168079</a></p></li>
<li><p>Best of luck to undergraduate students <strong>Morgan</strong> and <strong>Josh</strong> as they pursue opportunities more closely related to their future careers.</p></li>
</ul>
</div>
<div id="november-2016" class="section level4">
<h4>November 2016</h4>
<ul>
<li><p><strong>Sajeewa</strong>’s manuscript accepted to <em>PLoS ONE</em>. Congratulations, <strong>Sajeewa</strong>!</p></li>
<li><p>First departmental seminar by <strong>Nikita Gambhir</strong> entitled “Fungicide Sensitivity: Comparisons of Methods in a Model Plant Pathogen”</p></li>
</ul>
<p><img src="images/EverhartLab_Fall2016.jpg" title="Everhart Lab Fall 2016" class="custom_wide shadow grow" /></p>
</div>
<div id="september-2016" class="section level4">
<h4>September 2016</h4>
<ul>
<li><p>Submitted Thomas Miroini’s manuscript on chemigation and white mold control to Crop Protection – cross your fingers!</p></li>
<li><p>Group photo taken (L to R): Everhart Lab in the Fall 2016: <strong>Anthony Pannullo, Thomas Miorini, Nikita Gambhir, Josh Hanson, Morgan Thompsen, Edgar Nieto, and Sydney Everhart</strong></p></li>
</ul>
</div>
<div id="august-2016" class="section level4">
<h4>August 2016</h4>
<ul>
<li><strong>Edgar Nieto-Lopez</strong> receives a fellowship from CONACyT Mexico to support his research on <em>Sclerotinia sclerotiorum</em> from the U.S. and Mexico. He arrived at UNL this fall to begin doctoral studies. Welcome, Edgar!</li>
</ul>
<p><img src="images/APS_2016_LuckyBrijeshSydney.jpg" title="Lucky Mehra, Brijesh Karakkat, Sydney Everhart at APS 2016" class="grow custom_image shadow" /></p>
<ul>
<li>Thank you, APS, for recognition for research in epidemiology with the Schroth Faces of the Future Award! Just five early career scientists were selected. The award provided funds to support travel to the national meeting to give a in the Schroth Symposium at the APS national meeting. This is also where I got to meet up with former graduate colleagues, <strong>Lucky Mehra</strong> (K-State) and <strong>Brijesh Karakkat</strong> (UW-Madison).</li>
</ul>
</div>
<div id="june-2016" class="section level4">
<h4>June 2016</h4>
<p><img src="images/NCAPSAwardees_2016.jpg" title="Nikita Gambhir (second from left)" class="custom_wide shadow grow" /></p>
<ul>
<li><strong>Nikita Gambhir</strong> wins third place for her poster presented at the North Central Division APS meeting in Minneapolis and awarded a travel award to go there. Double-win!</li>
</ul>
</div>
<div id="may-2016" class="section level4">
<h4>May 2016</h4>
<ul>
<li><strong>Anthony Pannullo</strong> received the IANR ARD Undergraduate Student Research Award for his proposal entitled “Population genetic diversity of <em>Sclerotinia sclerotiorum</em>, causal agent of white mold disease of dry bean, and implications for fungicide resistance / disease management.” Way to go, Anthony!</li>
</ul>
</div>
<div id="january-2016" class="section level4">
<h4>January 2016</h4>
<ul>
<li><p>We submitted two new proposals to the NSB to study soil microbial communities and a collaborative proposal with the Giesler lab to study <em>Sclerotinia sclerotiorum</em>.</p></li>
<li><p>Also submitted was a proposal with the Jackson-Ziems lab to gain new knowledge of fungal foliar pathogens of corn.</p></li>
</ul>
<p><br></p>
</div>
</div>
<div id="news-from-2015" class="section level3">
<h3>News from 2015</h3>
<div id="november-2015" class="section level4">
<h4>November 2015</h4>
<ul>
<li>I traveled to St. Louis to meet and give a presentation for the North Central Soybean Research Program (NCSRP) seedling disease project.</li>
</ul>
</div>
<div id="october-2015" class="section level4">
<h4>October 2015</h4>
<ul>
<li>Funding was awarded for one of our proposals submitted to the NSB and both of our proposals submitted to the NCSRP!</li>
</ul>
</div>
<div id="may-2015" class="section level4">
<h4>May 2015</h4>
<ul>
<li>Two multi-state and multi-PI proposals were submitted to the North Central Soybean Research Program for funding to support our work studying the emergence and evolution of fungicide resistance in <em>Sclerotinia sclerotiorum</em> and to study <em>Rhizoctonia solani</em> as an important seedling pathogen in Nebraska. Cross your fingers!</li>
</ul>
</div>
<div id="january-2015" class="section level4">
<h4>January 2015</h4>
<ul>
<li>Submitted two proposals to the Nebraska Soybean Board requesting funding to support graduate student research on <em>Rhizoctonia solani</em> and <em>Sclerotinia sclerotiorum</em></li>
</ul>
<p><br></p>
</div>
</div>
<div id="news-from-2014" class="section level3">
<h3>News from 2014</h3>
<div id="october-2014" class="section level4">
<h4>October 2014</h4>
<p><img src="images/DSCN1491.JPG" title="Sarah Campbell, Undergraduate 2015" class="custom_image shadow grow" /></p>
<ul>
<li>I gave a presentation on work in my lab as part of an NSF-funded meeting to discuss development of the Center for Emergence, Evolution, and Management of Pesticide Resistance (CEEMPR), which would establish a university-industry partnership and is an effort being led by Dr. <strong>Blair Sigfried</strong> in the Department of Entomology at UNL.</li>
</ul>
</div>
<div id="september-2014" class="section level4">
<h4>September 2014</h4>
<ul>
<li>Welcome to <strong>Sarah Campbell</strong> (pictured right) and <strong>Josh Hanson</strong>, joining the lab as undergraduate lab assistants to work on the sub-lethal fungicide sensitivity project</li>
</ul>
<p><img src="images/BSajeewaAmaradasa_2014.JPG" title="B. Sajeewa Amaradasa" class="custom_image shadow grow" /></p>
</div>
<div id="august-2014" class="section level4">
<h4>August 2014</h4>
<ul>
<li>Dr. <strong>B. Sajeewa Amaradasa</strong> joins my lab as the first postdoc hired, having most recently completed a postdoctoral appointment with Dr. <strong>Keenan Amundsen</strong> in the Department of Agronomy & Horticulture at UNL. Welcome, Sajeewa!</li>
</ul>
<p><br> <br> <br></p>
<hr />
</div>
</div>
</div>
<div id="lab-inception" class="section level2">
<h2>Lab inception</h2>
<ul>
<li>Door to 435 Plant Sciences Hall opens as the Everhart lab on August 18, 2014!</li>
</ul>
<div align="center">
<p><img src="images/Door-to-Lab.jpg" class="custom_center shadow" /> <br></p>
<p><em>Let the fun begin!</em></p>
</div>
</div>
<footer role="contentinfo" id="site-footer" align="center">
<!-- /.bottom-menu -->
<br>
<br>
<br>
This site was created and is maintained by Sydney Everhart <class="Copyright">© 2017-2021
<br>
Powered by <a href="http://www.r-project.org">R</a> + <a href="http://rmarkdown.rstudio.com"> RMarkdown</a> + <a href="http://github.com">Github</a>.
</footer>
</div>
</div>
</div>
<script>
// add bootstrap table styles to pandoc tables
function bootstrapStylePandocTables() {
$('tr.header').parent('thead').parent('table').addClass('table table-condensed');
}
$(document).ready(function () {
bootstrapStylePandocTables();
});
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("TOC");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open')
});
});
</script>
<!-- code folding -->
<script>
$(document).ready(function () {
// move toc-ignore selectors from section div to header
$('div.section.toc-ignore')
.removeClass('toc-ignore')
.children('h1,h2,h3,h4,h5').addClass('toc-ignore');
// establish options
var options = {
selectors: "h1,h2,h3",
theme: "bootstrap3",
context: '.toc-content',
hashGenerator: function (text) {
return text.replace(/[.\\/?&!#<>]/g, '').replace(/\s/g, '_').toLowerCase();
},
ignoreSelector: ".toc-ignore",
scrollTo: 0
};
options.showAndHide = true;
options.smoothScroll = true;
// tocify
var toc = $("#TOC").tocify(options).data("toc-tocify");
});
</script>
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>