-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreading.html
More file actions
2485 lines (2393 loc) · 87.6 KB
/
reading.html
File metadata and controls
2485 lines (2393 loc) · 87.6 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
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
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>What we read</title>
<script src="site_libs/header-attrs-2.29/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/flatly.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>
<style>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;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/textmate.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<link href="site_libs/font-awesome-6.5.2/css/all.min.css" rel="stylesheet" />
<link href="site_libs/font-awesome-6.5.2/css/v4-shims.min.css" rel="stylesheet" />
<link href="site_libs/ionicons-2.0.1/css/ionicons.min.css" rel="stylesheet" />
<!-- Slideshow container -->
<div class="slideshow-container" ></div>
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<img id="myPicture1" src="" style="width:100%; margin:0; padding:0">
<!-- <div class="text">Amarath and maize in the field</div> -->
</div>
<div class="mySlides fade">
<img id="myPicture2" src="" style="width:100%">
<!-- <div class="text">Amaranth seedlings for genotyping</div> -->
</div>
<div class="mySlides fade">
<img id="myPicture3" src="" style="width:100%">
<!-- <div class="text">Amaranth flower closeup</div> -->
</div>
<!-- Next and previous buttons -->
<!-- <a class="prev" onclick="plusSlides(-1)">❮</a> -->
<!-- <a class="next" onclick="plusSlides(1)">❯</a> -->
<!-- </div> -->
<br>
<!-- The dots/circles -->
<!-- <div style="text-align:center"> -->
<!-- <span class="dot" onclick="currentSlide(1)"></span> -->
<!-- <span class="dot" onclick="currentSlide(2)"></span> -->
<!-- <span class="dot" onclick="currentSlide(3)"></span> -->
<!-- </div> -->
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
slides[slideIndex-1].style.display = "block";
setTimeout(showSlides, 4000); // Change image every 2 seconds
}
var myPix = new Array("own_images/amarant_banner.jpg","own_images/labels_banner.jpg","own_images/flower_banner.jpg","own_images/polygenic_banner.jpg");
window.onload = shuffle(myPix);
function shuffle(array) {
var currentIndex = array.length, temporaryValue, randomIndex;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
document.getElementById("myPicture1").src = array[0];
document.getElementById("myPicture2").src = array[1];
document.getElementById("myPicture3").src = array[2];
};
</script>
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#252e39"
},
"button": {
"background": "#14a7d0"
}
}
})});
</script>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<link rel="stylesheet" href="style.css" type="text/css" />
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
</style>
<style type="text/css">
.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: #adb5bd;
}
.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 type="text/javascript">
// 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 the anchor link active (and if it's in a dropdown, also mark that active)
var dropdown = menuAnchor.closest('li.dropdown');
if (window.bootstrap) { // Bootstrap 4+
menuAnchor.addClass('active');
dropdown.find('> .dropdown-toggle').addClass('active');
} else { // Bootstrap 3
menuAnchor.parent().addClass('active');
dropdown.addClass('active');
}
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
var style = document.createElement('style');
var pt = "padding-top: " + navHeight + "px; ";
var mt = "margin-top: -" + navHeight + "px; ";
var css = "";
// offset scroll position for anchor links (for fixed navbar)
for (var i = 1; i <= 6; i++) {
css += ".section h" + i + "{ " + pt + mt + "}\n";
}
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
document.head.appendChild(style);
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "\e259";
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: "\e258";
font-family: 'Glyphicons Halflings';
border: none;
}
.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;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
</head>
<body>
<div class="container-fluid main-container">
<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-bs-toggle="collapse" data-target="#navbar" data-bs-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">Stetter Lab</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="people.html">
<span class="ion ion-android-contacts"></span>
People
</a>
</li>
<li>
<a href="research.html">
<span class="ion ion-erlenmeyer-flask"></span>
Research
</a>
</li>
<li>
<a href="publications.html">
<span class="ion ion-document-text"></span>
Publications
</a>
</li>
<li>
<a href="reading.html">
<span class="ion ion-ios-book"></span>
C.R.O.P.
</a>
</li>
<li>
<a href="contact.html">
<span class="ion ion-android-contact"></span>
Contact
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://twitter.com/mgstetter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div id="header">
<h1 class="title toc-ignore">What we read</h1>
</div>
<p> </p>
<p>C.R.O.P is our weekly journal club for anyone interested in
evolution. We meet on Tuesday at 4.15 pm at <a
href="https://goo.gl/maps/mamsnSV5ZqThF4YY8">Theatercafe Filmdose</a>
for an open discussion about the weekly paper in a relaxed
atmosphere.</p>
<p><strong>Until further notice we will meet in the seminar room on the
3rd floor of the CoMB</strong></p>
<p>Anybody is welcome to join us. The idea is that everyone reads the
paper before and we dive directly in without formal presentation of the
paper. If you would like to suggest a paper please email <a
href="mailto:m.stetter@uni-koeln.de">Markus</a>.</p>
<div id="june" class="section level3">
<h3>June</h3>
<div id="tuesday-june-2nd" class="section level4">
<h4>Tuesday June 2nd</h4>
<p><a href="https://www.nature.com/articles/s41559-026-03080-8">Parret,
2026</a> Genetic rescue increases long-term fitness despite elevating
putative genetic load in a male-dimorphic mite ### May</p>
</div>
<div id="tuesday-may-26" class="section level4">
<h4>Tuesday May 26</h4>
<p><a
href="https://www.nature.com/articles/s41477-026-02283-y">Lev-Mirom,
2026</a> Ancient grains illuminate the mosaic origin of domesticated
wheat</p>
</div>
<div id="tuesday-may-19" class="section level4">
<h4>Tuesday May 19</h4>
<p><a
href="https://academic.oup.com/plcell/article-abstract/37/10/koaf219/8258484?redirectedFrom=fulltext&login=false">Kramer,
2025</a> Identification of a cleaved aberrant RNA associated with the
initiation of transgene silencing</p>
</div>
<div id="tuesday-may-12" class="section level4">
<h4>Tuesday May 12</h4>
<p><a
href="https://www.science.org/doi/10.1126/science.adp4642">Grundler,
2026</a> A geographic history of human genetic ancestry</p>
</div>
<div id="tuesday-may-5" class="section level4">
<h4>Tuesday May 5</h4>
<p><a
href="https://www.cell.com/current-biology/fulltext/S0960-9822(26)00368-4">Chen,
2026</a> Gene flow from the European wild apple and selection shaped the
domesticated apple genome</p>
</div>
</div>
<div id="april" class="section level3">
<h3>April</h3>
<div id="tuesday-april-28" class="section level4">
<h4>Tuesday April 28</h4>
<p><a
href="https://academic.oup.com/mbe/article/43/4/msag074/8542020">Nocchi,
2026</a> Replicated hybrid zones reveal genomic patterns of local
adaptation and introgression in spruce</p>
</div>
<div id="tuesday-april-21" class="section level4">
<h4>Tuesday April 21</h4>
<p>Evolutionary rescue seminar</p>
</div>
<div id="tuesday-april-14" class="section level4">
<h4>Tuesday April 14</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.01.14.633033v1">Rebollo,
preprint</a> Leveraging ancestral recombination graphs for quantitative
genetic analysis of rice yield in indica and japonica subspecies</p>
</div>
<div id="tuesday-april-6" class="section level4">
<h4>Tuesday April 6</h4>
<p><a
href="https://www.science.org/doi/10.1126/science.adu0995">Anstett,
preprint</a> Rapid evolution predicts demographic recovery after extreme
drought</p>
</div>
</div>
<div id="march" class="section level3">
<h3>March</h3>
<div id="tuesday-march-31" class="section level4">
<h4>Tuesday March 31</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.11.04.621928v1">Epstein,
preprint</a> The maize recombination landscape evolved during
domestication</p>
</div>
<div id="tuesday-march-24" class="section level4">
<h4>Tuesday March 24</h4>
<p><a href="https://www.nature.com/articles/s41559-025-02887-1">Song,
2026</a> Adaptive tracking with antagonistic pleiotropy results in
seemingly neutral molecular evolution</p>
</div>
<div id="tuesday-march-17" class="section level4">
<h4>Tuesday March 17</h4>
<p><a
href="https://www.biorxiv.org/content/10.64898/2026.02.01.703099v1">Sielmann,
2026</a> The genetic architecture of local adaptation is historically
contingent</p>
</div>
<div id="tuesday-march-10" class="section level4">
<h4>Tuesday March 10</h4>
<p>No CROP</p>
</div>
<div id="tuesday-march-3" class="section level4">
<h4>Tuesday March 3</h4>
<p><a
href="https://www.biorxiv.org/content/10.64898/2026.01.28.699851v1.full">Sielmann,
2026</a> Predicting agronomic performance of maize land-races in various
and future environments by combining genomic prediction and
ecogenetics</p>
</div>
</div>
<div id="february" class="section level3">
<h3>February</h3>
<div id="tuesday-feburary-17" class="section level4">
<h4>Tuesday Feburary 17</h4>
<p><a
href="https://link.springer.com/article/10.1007/s00425-026-04938-8#Sec10">Sielmann,
2026</a> Combined R2R3–MYB transcription factor mutants reveal the
regulatory structure of the Arabidopsis thaliana flavonoid biosynthesis
pathway</p>
</div>
<div id="tuesday-feburary-10" class="section level4">
<h4>Tuesday Feburary 10</h4>
<p><a
href="https://link.springer.com/content/pdf/10.1186/s12284-026-00884-x_reference.pdf">San,
2026</a> Independent Origin of Phenol Non-responsivePhenotype Caused By
Phr1 Variation DuringDomestication of Asian and African Rice</p>
</div>
</div>
<div id="january" class="section level3">
<h3>January</h3>
<div id="tuesday-january-27" class="section level4">
<h4>Tuesday January 27</h4>
<p><a
href="https://www.sciencedirect.com/science/article/pii/S1369526625001608">Roulin,
2025</a> Blinded by the lights? Re-examining the adaptive role of
transposable elements in plants with population genomics</p>
</div>
<div id="tuesday-january-20" class="section level4">
<h4>Tuesday January 20</h4>
<p><a
href="https://www.science.org/doi/10.1126/science.adx2022">Jørgensen et
al, 2025</a> Postdomestication selection of MKK3 shaped seed dormancy
and end-use traits in barley</p>
</div>
</div>
<div id="section" class="section level2">
<h2>2025</h2>
<div id="december" class="section level3">
<h3>December</h3>
<div id="tuesday-december-16" class="section level4">
<h4>Tuesday December 16</h4>
<p><a href="https://www.nature.com/articles/s41586-025-09703-7">Spence
et al, 2025</a> Specificity, length and luck drive gene rankings in
association studies</p>
</div>
<div id="tuesday-december-2" class="section level4">
<h4>Tuesday December 2</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.12.09.627636v2">Feng
et al, 2025</a> An X-linked sex determination mechanism in cannabis and
hop</p>
</div>
</div>
<div id="november" class="section level3">
<h3>November</h3>
<div id="tuesday-november-25" class="section level4">
<h4>Tuesday November 25</h4>
<p><a href="https://doi.org/10.1002/ajb2.16350">Feng et al, 2025</a> The
link between ancient whole-genome duplications and cold adaptations in
the Caryophyllaceae</p>
</div>
<div id="tuesday-november-18" class="section level4">
<h4>Tuesday November 18</h4>
<p><a
href="https://www.cell.com/cell/fulltext/S0092-8674(25)01085-2">Garsmeur
et al, 2025</a> The genomic footprints of wild Saccharum species trace
domestication, diversification, and modern breeding of sugarcane</p>
</div>
<div id="tuesday-november-11" class="section level4">
<h4>Tuesday November 11</h4>
<p><a href="https://doi.org/10.1038/s41576-025-00850-1">Zhang &
Qian, 2025</a> Functional synonymous mutations and their evolutionary
consequences</p>
</div>
<div id="tuesday-november-4" class="section level4">
<h4>Tuesday November 4</h4>
<p><a href="https://www.pnas.org/doi/10.1073/pnas.2514614122">Alam et
al, 2025</a> Evolutionary histories of functional mutations during the
domestication and spread of japonica rice in Asia</p>
</div>
</div>
<div id="october" class="section level3">
<h3>October</h3>
<div id="tuesday-october-28" class="section level4">
<h4>Tuesday October 28</h4>
<p><a href="https://www.nature.com/articles/s41586-025-09533-7">Guo et
al, 2025</a> A haplotype-based evolutionary history of barley
domestication</p>
</div>
<div id="tuesday-october-21" class="section level4">
<h4>Tuesday October 21</h4>
<p><a
href="https://nph.onlinelibrary.wiley.com/doi/full/10.1111/nph.70238">Fiscus
et al, 2025</a> Mutational load and adaptive variation are shaped by
climate and species range dynamics in Vitis arizonica</p>
</div>
<div id="tuesday-october-14" class="section level4">
<h4>Tuesday October 14</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.10.02.679894v1">Pineau
et al, bioRxiv</a> The genomic response to drought across spatiotemporal
scales in Amaranthus tuberculatus</p>
</div>
</div>
<div id="september" class="section level3">
<h3>September</h3>
<div id="tuesday-september-23" class="section level4">
<h4>Tuesday September 23</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.08.01.667986v1">Morris
et al, bioRxiv</a> Developing future resilience from signatures of
adaptation across the sorghum pangenome</p>
</div>
<div id="tuesday-september-16" class="section level4">
<h4>Tuesday September 16</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.07.07.663194v1">Singh
et al, bioRxiv</a> Highly modular genomic architecture underlies
combinatorial mechanism of speciation and adaptive radiation</p>
</div>
<div id="tuesday-september-9" class="section level4">
<h4>Tuesday September 9</h4>
<p><a
href="https://www.cell.com/cell/fulltext/S0092-8674(25)00736-6?ftag=MSF0951a18">Zhang
et al, 2025</a> Ancient hybridization underlies tuberization and
radiation of the potato lineage</p>
</div>
</div>
<div id="august" class="section level3">
<h3>August</h3>
<p>Summer break</p>
</div>
<div id="july" class="section level3">
<h3>July</h3>
<div id="tuesday-july-29" class="section level4">
<h4>Tuesday July 29</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.05.28.654549v1">Wu et
al, preprint</a> Rapid adaptation and extinction across climates in
synchronized outdoor evolution experiments of Arabidopsis thaliana</p>
</div>
<div id="tuesday-july-22" class="section level4">
<h4>Tuesday July 22</h4>
<p><a href="https://www.nature.com/articles/s41586-025-09243-0">Zebell,
et al, 2025</a> Cryptic variation fuels plant phenotypic change through
hierarchical epistasis</p>
</div>
<div id="tuesday-july-15" class="section level4">
<h4>Tuesday July 15</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.05.15.654381v1.full">Celebioglu
et al, preprint</a> A domestication change at PvMYB26 in common bean
sheds light on the origins of Middle American agriculture</p>
</div>
<div id="tuesday-july-8" class="section level4">
<h4>Tuesday July 8</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2023.10.16.562583v2.full">Ruffley
et al, preprint</a> Selection constraints of plant adaptation can be
relaxed by gene editing</p>
</div>
<div id="tuesday-july-1" class="section level4">
<h4>Tuesday July 1</h4>
<p><a
href="https://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.3003226">Lutz
et al, preprint</a> Species-wide gene editing of a flowering regulator
reveals hidden phenotypic variation</p>
</div>
</div>
<div id="june-1" class="section level3">
<h3>June</h3>
<div id="tuesday-june-24" class="section level4">
<h4>Tuesday June 24</h4>
<p><a href="https://doi.org/10.1101/2025.05.07.652616">Razo-Mejia et al,
preprint</a> Learning the Shape of Evolutionary Landscapes: Geometric
Deep Learning Reveals Hidden Structure in Phenotype-to-Fitness Maps</p>
</div>
<div id="tuesday-june-17" class="section level4">
<h4>Tuesday June 17</h4>
<p><a
href="https://academic.oup.com/evolut/advance-article-abstract/doi/10.1093/evolut/qpaf070/8110000">Chevin
and Chauhan, 2025</a> Evolution of plasticity and character displacement
in a fluctuating environment</p>
</div>
<div id="tuesday-june-10" class="section level4">
<h4>Tuesday June 10</h4>
<p><a href="https://doi.org/10.1101/2025.05.27.656262">Almeida-Silva and
Van de Peer, preprint</a> Gene expression divergence following gene and
genome duplications in spatially resolved plant transcriptomes</p>
</div>
<div id="tuesday-june-03" class="section level4">
<h4>Tuesday June 03</h4>
<p><a href="https://doi.org/10.1126/science.ads2871">Chen et al,
2025</a> A single domestication origin of adzuki bean in Japan and the
evolution of domestication genes</p>
</div>
</div>
<div id="may" class="section level3">
<h3>May</h3>
<div id="tuesday-may-27" class="section level4">
<h4>Tuesday May 27</h4>
<p><a
href="https://academic.oup.com/mbe/article/41/7/msae121/7695851">Gautier
et al, 2024</a> Genomic Reconstruction of the Successful Establishment
of a Feralized Bovine Population on the Subantarctic Island of
Amsterdam</p>
</div>
<div id="tuesday-may-20" class="section level4">
<h4>Tuesday May 20</h4>
<p><a href="https://www.science.org/doi/10.1126/science.adq0018">Kistler
et al, 2025</a> Historic manioc genomes illuminate maintenance of
diversity under long-lived clonal cultivation</p>
</div>
<div id="tuesday-may-13" class="section level4">
<h4>Tuesday May 13</h4>
<p><a href="https://www.nature.com/articles/s41467-025-58021-z">Jiang et
al, 2025</a> Incorporating genetic load contributes to predicting
Arabidopsis thaliana’s response to climate change</p>
</div>
<div id="tuesday-may-6" class="section level4">
<h4>Tuesday May 6</h4>
<p><a
href="https://www.science.org/doi/10.1126/science.adr1010">Anderson et
al, 2025</a> Adaptation and gene flow are insufficient to rescue a
montane plant under climate change</p>
</div>
</div>
<div id="april-1" class="section level3">
<h3>April</h3>
<div id="tuesday-april-29" class="section level4">
<h4>Tuesday April 29</h4>
<p><a
href="https://www.science.org/doi/abs/10.1126/science.adp3745">Gompert
et al, 2025</a> Adaptation repeatedly uses complex structural genomic
variation</p>
</div>
<div id="tuesday-april-22" class="section level4">
<h4>Tuesday April 22</h4>
<p>Easter break</p>
</div>
<div id="tuesday-april-15" class="section level4">
<h4>Tuesday April 15</h4>
<p><a href="https://www.nature.com/articles/s41588-025-02122-4">Liu et
al, 2025</a> Origin and de novo domestication of sweet orange</p>
</div>
<div id="tuesday-april-8" class="section level4">
<h4>Tuesday April 8</h4>
<p><a href="https://www.nature.com/articles/s41477-025-01905-1">Zhang et
al, 2025</a> Transposon proliferation drives genome architecture and
regulatory evolution in wild and domesticated peppers</p>
</div>
<div id="tuesday-april-1" class="section level4">
<h4>Tuesday April 1</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2025.03.03.641344v1">Sedeek
et al, preprint</a> Nutritional quality and genetic differences of five
amaranth cultivars revealed by metabolome profiling and whole-genome
sequencing</p>
</div>
</div>
<div id="march-1" class="section level3">
<h3>March</h3>
<div id="tuesday-march-25" class="section level4">
<h4>Tuesday March 25</h4>
<p><a href="https://www.nature.com/articles/s41559-025-02653-3">Zhang et
al, 2025</a> Genetic basis of camouflage in an alpine plant and its
long-term co-evolution with an insect herbivore</p>
</div>
</div>
<div id="february-1" class="section level3">
<h3>February</h3>
<div id="tuesday-february-25" class="section level4">
<h4>Tuesday February 25</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2022.08.24.505198v4">Castellano
et al, preprint</a> Detection of Domestication Signals through the
Analysis of the Full Distribution of Fitness Effects</p>
</div>
<div id="tuesday-february-18" class="section level4">
<h4>Tuesday February 18</h4>
<p><a href="https://www.nature.com/articles/s41586-024-08458-x">Shaw et
al, 2025</a> Global meta-analysis shows action is needed to halt genetic
diversity loss</p>
</div>
<div id="tuesday-february-11" class="section level4">
<h4>Tuesday February 11</h4>
<p><a
href="https://royalsocietypublishing.org/doi/10.1098/rstb.2023.0322">Chevin
and Bridle, 2025</a> Impacts of limits to adaptation on population and
community persistence in a changing environment</p>
</div>
<div id="tuesday-february-4" class="section level4">
<h4>Tuesday February 4</h4>
<p><a href="https://www.nature.com/articles/s41586-024-08476-9">Cheng et
al, 2025</a> Leveraging a phased pangenome for haplotype design of
hybrid potato</p>
</div>
</div>
<div id="january-1" class="section level3">
<h3>January</h3>
<div id="tuesday-january-28" class="section level4">
<h4>Tuesday January 28</h4>
<p><a href="https://www.science.org/doi/10.1126/science.ado5578">Groh et
al, 2024</a> Ancient structural variants control sex-specific flowering
time morphs in walnuts and hickories</p>
</div>
<div id="tuesday-january-21" class="section level4">
<h4>Tuesday January 21</h4>
<p>TRR 341 Seminar</p>
</div>
<div id="tuesday-january-14" class="section level4">
<h4>Tuesday January 14</h4>
<p><a
href="https://www.cell.com/cell/abstract/S0092-8674(24)01277-7">Ramos-Madrigal
et al, 2024</a> The genomic origin of early maize in eastern North
America</p>
</div>
</div>
</div>
<div id="section-1" class="section level2">
<h2>2024</h2>
<div id="december-1" class="section level3">
<h3>December</h3>
<div id="tuesday-december-3" class="section level4">
<h4>Tuesday December 3</h4>
<p><a
href="https://academic.oup.com/evlett/advance-article/doi/10.1093/evlett/qrae039/7731525?login=false">Burgarella
et al, 2024</a> Mating systems and recombination landscape strongly
shape genetic diversity and selection in wheat relatives</p>
</div>
</div>
<div id="november-1" class="section level3">
<h3>November</h3>
<div id="tuesday-november-26" class="section level4">
<h4>Tuesday November 26</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2023.08.19.553731">Bertolini
et al., 2023</a> Regulatory variation controlling architectural
pleiotropy in maize</p>
</div>
<div id="tuesday-november-19" class="section level4">
<h4>Tuesday November 19</h4>
<p><a
href="https://www.nature.com/articles/s41586-023-06053-0">Guillotin et
al., 2023</a> A pan-grass transcriptome reveals patterns of cellular
divergence in crops</p>
</div>
<div id="tuesday-november-5" class="section level4">
<h4>Tuesday November 5</h4>
<p><a href="https://www.science.org/doi/10.1126/science.ado5331">Ni et
al, 2024</a> Human-driven evolution of color in a stonefly mimic</p>
</div>
</div>
<div id="october-1" class="section level3">
<h3>October</h3>
<div id="tuesday-october-29" class="section level4">
<h4>Tuesday October 29</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.10.03.615829v1.full">Schuh
and Morris, preprint</a> Loss of pleiotropic regulatory functions in
Tannin1, the sorghum ortholog of Arabidopsis master regulator TTG1</p>
</div>
<div id="tuesday-october-22" class="section level4">
<h4>Tuesday October 22</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.09.25.614826v1.full">McKenzie
et al, preprint</a> A massive community-science flower color dataset
reveals convergent evolution of delayed flowering phenology in North
American red-flowering plants</p>
</div>
<div id="tuesday-october-15" class="section level4">
<h4>Tuesday October 15</h4>
<p>TRR 341 seminar</p>
</div>
<div id="tuesday-october-8" class="section level4">
<h4>Tuesday October 8</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.09.17.613564v1.full">Huang
et al, preprint</a> Varying recombination landscapes between individuals
are driven by polymorphic transposable elements</p>
</div>
<div id="tuesday-october-1" class="section level4">
<h4>Tuesday October 1</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.09.19.613351v1">Li,
preprint</a> The utility of environmental data from traditional
varieties for climate-adaptive maize breeding</p>
</div>
</div>
<div id="september-1" class="section level3">
<h3>September</h3>
<div id="tuesday-september-24" class="section level4">
<h4>Tuesday September 24</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.08.26.609732v1.full">Short
and Streisfeld, preprint</a> The genomic outcomes of hybridization vary
over time within a monkeyflower radiation</p>
</div>
<div id="tuesday-september-17" class="section level4">
<h4>Tuesday September 17</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.02.14.580345v1.full">Long,
preprint</a> Muller’s Ratchet in Action: The Erosion of Sexual
Reproduction Genes in Domesticated Cassava (Manihot esculenta)</p>
</div>
<div id="tuesday-september-10" class="section level4">
<h4>Tuesday September 10</h4>
<p><a
href="https://academic.oup.com/evlett/advance-article/doi/10.1093/evlett/qrae033/7735308">Booker,
2024</a> The structure of the environment influences the patterns and
genetics of local adaptation</p>
</div>
<div id="tuesday-september-3" class="section level4">
<h4>Tuesday September 3</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.08.22.609253v1">Fiscus,
et al, preprint</a> Climate, population size, and dispersal influences
mutational load across the landscape in Vitis arizonica</p>
</div>
</div>
<div id="august-1" class="section level3">
<h3>August</h3>
<p>Summer break</p>
</div>
<div id="july-1" class="section level3">
<h3>July</h3>
<div id="tuesday-july-30" class="section level4">
<h4>Tuesday July 30</h4>
<p><a href="https://www.science.org/doi/10.1126/science.adl0038">Landis
et al, 2024</a> Natural selection drives emergent genetic homogeneity in
a century-scale experiment with barley</p>
</div>
<div id="tuesday-july-23" class="section level4">
<h4>Tuesday July 23</h4>
<p><a
href="https://onlinelibrary.wiley.com/doi/full/10.1111/pbi.14022">Arca
et al, 2023</a> Genotyping of DNA pools identifies untapped landraces
and genomic regions to develop next-generation varieties</p>
</div>
<div id="tuesday-july-16" class="section level4">
<h4>Tuesday July 16</h4>
<p><a
href="https://genomebiology.biomedcentral.com/articles/10.1186/s13059-024-03310-x">Cao
et al, 2024</a> DNA methylation variations underlie lettuce
domestication and divergence</p>
</div>
<div id="tuesday-july-9" class="section level4">
<h4>Tuesday July 9</h4>
<p><a href="https://www.nature.com/articles/s41559-024-02443-3">Andrade
et al, 2024</a> Selection against domestication alleles in introduced
rabbit populations</p>
</div>
<div id="tuesday-july-2" class="section level4">
<h4>Tuesday July 2</h4>
<p><a
href="https://academic.oup.com/mbe/article/39/11/msac242/6806091">Ament-Velásquez
et al, 2022</a> The Dynamics of Adaptation to Stress from Standing
Genetic Variation and de novo Mutations</p>
</div>
</div>
<div id="june-2" class="section level3">
<h3>June</h3>
<div id="tuesday-june-25" class="section level4">
<h4>Tuesday June 25</h4>
<p><a href="https://www.science.org/doi/10.1126/science.ade4487">Zhang
et al, 2024</a> Rice’s trajectory from wild to domesticated in East
Asia</p>
</div>
<div id="tuesday-june-18" class="section level4">
<h4>Tuesday June 18</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2023.10.27.564394v3">Smith
and Hahn, preprint</a> Selection leads to false inferences of
introgression using popular methods</p>
</div>
</div>
<div id="may-1" class="section level3">
<h3>May</h3>
<div id="tuesday-may-28" class="section level4">
<h4>Tuesday May 28</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2023.04.19.537550v1.full">Garner
et al, preprint</a> A cis-regulatory point mutation at a R2R3-Myb
transcription factor contributes to speciation by reinforcement in Phlox
drummondii</p>
</div>
<div id="tuesday-may-21" class="section level4">
<h4>Tuesday May 21</h4>
<p><a
href="https://www.biorxiv.org/content/10.1101/2024.02.10.579721v2.full">Schraiber
et al, preprint</a> Unifying approaches from statistical genetics and
phylogenetics for mapping phenotypes in structured populations</p>