-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrossref_cache.json
More file actions
3354 lines (3354 loc) · 131 KB
/
Copy pathcrossref_cache.json
File metadata and controls
3354 lines (3354 loc) · 131 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
{
"10.1038/s41467-026-70615-9": {
"title": "Analysis of medieval burials from Ibiza reveals genetic and pathogenic diversity during the Islamic period",
"year": 2026,
"journal": "Nature Communications",
"date": "2026-03-26",
"first_author": "Ricardo Rodríguez-Varela",
"doi_link": "https://doi.org/10.1038/s41467-026-70615-9"
},
"10.1038/s41559-026-03027-z": {
"title": "Population discontinuity in the Paris Basin linked to evidence of the Neolithic decline",
"year": 2026,
"journal": "Nature Ecology & Evolution",
"date": "2026-04-03",
"first_author": "Frederik V. Seersholm",
"doi_link": "https://doi.org/10.1038/s41559-026-03027-z"
},
"10.1038/s41467-026-71457-1": {
"title": "Genetic genealogy of the Piast dynasty and related European royal families",
"year": 2026,
"journal": "Nature Communications",
"date": "2026-04-09",
"first_author": "Michal Zenczak",
"doi_link": "https://doi.org/10.1038/s41467-026-71457-1"
},
"10.1186/s13059-026-03968-5": {
"title": "Genetic affinities between the ancient Greek colony of Amvrakia and its metropolis",
"year": 2026,
"journal": "Genome Biology",
"date": "2026-02-07",
"first_author": "Nikolaos Psonis",
"doi_link": "https://doi.org/10.1186/s13059-026-03968-5"
},
"10.1098/rspb.2025.0813": {
"title": "Genetic relatedness mattered in the co-burial ritual of Neolithic hunter–gatherers",
"year": 2026,
"journal": "Proceedings of the Royal Society B: Biological Sciences",
"date": "2026-02-18",
"first_author": "Tiina Maria Mattila",
"doi_link": "https://doi.org/10.1098/rspb.2025.0813"
},
"10.1186/s13059-026-03969-4": {
"title": "Cosmopolitanism in the depths of Barbaricum evidenced by archaeogenomic data from the Late Iron Age Goth community of the Masłomęcz group",
"year": 2026,
"journal": "Genome Biology",
"date": "2026-01-28",
"first_author": "Michał Golubiński",
"doi_link": "https://doi.org/10.1186/s13059-026-03969-4"
},
"10.1038/s41562-025-02399-9": {
"title": "A large mass grave from the Early Iron Age indicates selective violence towards women and children in the Carpathian Basin",
"year": 2026,
"journal": "Nature Human Behaviour",
"date": "2026-02-23",
"first_author": "Linda Fibiger",
"doi_link": "https://doi.org/10.1038/s41562-025-02399-9"
},
"10.1038/s41467-026-69895-y": {
"title": "Reconstruction of the lifeways of Central European Late Bronze Age communities using ancient DNA, isotope and osteoarchaeological analyses",
"year": 2026,
"journal": "Nature Communications",
"date": "2026-02-24",
"first_author": "Eleftheria Orfanou",
"doi_link": "https://doi.org/10.1038/s41467-026-69895-y"
},
"10.1016/j.cub.2026.02.004": {
"title": "Ancient genomes provide insight into the Paleolithic-to-Neolithic transition in northern East Asia",
"year": 2026,
"journal": "Current Biology",
"date": "2026-03-04",
"first_author": "Ganyu Zhang",
"doi_link": "https://doi.org/10.1016/j.cub.2026.02.004"
},
"10.1038/s41586-026-10233-z": {
"title": "Local agricultural transition, crisis and migration in the Southern Andes",
"year": 2026,
"journal": "Nature",
"date": "2026-03-18",
"first_author": "Ramiro Barberena",
"doi_link": "https://doi.org/10.1038/s41586-026-10233-z"
},
"10.1038/s41586-026-10111-8": {
"title": "Lasting Lower Rhine–Meuse forager ancestry shaped Bell Beaker expansion",
"year": 2026,
"journal": "Nature",
"date": "2026-02-11",
"first_author": "Iñigo Olalde",
"doi_link": "https://doi.org/10.1038/s41586-026-10111-8"
},
"10.1038/s41586-025-09856-5": {
"title": "An ancient DNA perspective on the Russian conquest of Yakutia",
"year": 2026,
"journal": "Nature",
"date": "2026-01-07",
"first_author": "Éric Crubézy",
"doi_link": "https://doi.org/10.1038/s41586-025-09856-5"
},
"10.1101/2025.11.03.686206": {
"title": "Genetic insights into Iron Age Saka culture: Ancient DNA analysis of the Boz-Barmak burial ground, Kyrgyzstan",
"year": 0,
"journal": "No Journal",
"date": "2025-11-04",
"first_author": "Aigerim Rymbekova",
"doi_link": "https://doi.org/10.1101/2025.11.03.686206"
},
"10.1038/s41586-025-09799-x": {
"title": "Ancient DNA from Shimao city records kinship practices in Neolithic China",
"year": 2025,
"journal": "Nature",
"date": "2025-11-26",
"first_author": "Zehui Chen",
"doi_link": "https://doi.org/10.1038/s41586-025-09799-x"
},
"10.1038/s41586-025-09811-4": {
"title": "Homo sapiens-specific evolution unveiled by ancient southern African genomes",
"year": 2026,
"journal": "Nature",
"date": "2025-12-03",
"first_author": "Mattias Jakobsson",
"doi_link": "https://doi.org/10.1038/s41586-025-09811-4"
},
"10.64898/2025.12.07.692553": {
"title": "Ancestry, admixture, and pathogens in contemporaneous Neolithic farmers and foragers on the Island of Gotland",
"year": 0,
"journal": "No Journal",
"date": "2025-12-10",
"first_author": "Magdalena Fraser",
"doi_link": "https://doi.org/10.64898/2025.12.07.692553"
},
"10.1038/s41467-025-67906-y": {
"title": "Tracing social mechanisms and interregional connections in Early Bronze Age Societies in Lower Austria",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-12-31",
"first_author": "Anja Furtwängler",
"doi_link": "https://doi.org/10.1038/s41467-025-67906-y"
},
"10.1038/s42003-025-09194-2": {
"title": "Archaeogenetics reconstructs demography and extreme parental consanguinity in a Bronze Age community from Southern Italy",
"year": 2025,
"journal": "Communications Biology",
"date": "2025-12-15",
"first_author": "Francesco Fontani",
"doi_link": "https://doi.org/10.1038/s42003-025-09194-2"
},
"10.1016/j.jasrep.2025.105559": {
"title": "Genetic and historical perspectives on the early medieval inhumations from the Menga dolmen, Antequera (Spain)",
"year": 2026,
"journal": "Journal of Archaeological Science: Reports",
"date": "2025-12-24",
"first_author": "Marina Silva",
"doi_link": "https://doi.org/10.1016/j.jasrep.2025.105559"
},
"10.1016/j.jasrep.2025.105474": {
"title": "Ancient genomic evidence uncovers a 6th-century cross-border couple between South Asia and East Asia",
"year": 2025,
"journal": "Journal of Archaeological Science: Reports",
"date": "2025-11-05",
"first_author": "Panxin Du",
"doi_link": "https://doi.org/10.1016/j.jasrep.2025.105474"
},
"10.1016/j.cell.2025.09.002": {
"title": "Long shared haplotypes identify the southern Urals as a primary source for the 10th-century Hungarians",
"year": 2025,
"journal": "Cell",
"date": "2025-10-16",
"first_author": "Balázs Gyuris",
"doi_link": "https://doi.org/10.1016/j.cell.2025.09.002"
},
"10.1016/j.cub.2025.09.047": {
"title": "Paratyphoid fever and relapsing fever in 1812 Napoleon's devastated army",
"year": 2025,
"journal": "Current Biology",
"date": "2025-10-24",
"first_author": "Rémi Barbieri",
"doi_link": "https://doi.org/10.1016/j.cub.2025.09.047"
},
"10.1038/s41598-025-21522-4": {
"title": "Genome of an early Okhotsk individual reveals ancient admixture between Jomon and Kamchatka lineages",
"year": 2025,
"journal": "Scientific Reports",
"date": "2025-10-27",
"first_author": "Takehiro Sato",
"doi_link": "https://doi.org/10.1038/s41598-025-21522-4"
},
"10.1016/j.fsigen.2025.103381": {
"title": "Murder in cold blood? Forensic and bioarchaeological identification of the skeletal remains of Béla, Duke of Macsó (c. 1245–1272)",
"year": 2026,
"journal": "Forensic Science International: Genetics",
"date": "2025-10-26",
"first_author": "Tamás Hajdu",
"doi_link": "https://doi.org/10.1016/j.fsigen.2025.103381"
},
"10.1126/sciadv.adu9625": {
"title": "Dynamic human admixture histories over the past ~1300 years at the northern Himalayan frontier",
"year": 2025,
"journal": "Science Advances",
"date": "2025-10-29",
"first_author": "Esha Bandyopadhyay",
"doi_link": "https://doi.org/10.1126/sciadv.adu9625"
},
"10.1038/s41586-025-09731-3": {
"title": "Eight millennia of continuity of a previously unknown lineage in Argentina",
"year": 2026,
"journal": "Nature",
"date": "2025-11-05",
"first_author": "Javier Maravall-López",
"doi_link": "https://doi.org/10.1038/s41586-025-09731-3"
},
"10.1038/s41586-025-09437-6": {
"title": "Ancient DNA connects large-scale migration with the spread of Slavs",
"year": 2025,
"journal": "Nature",
"date": "2025-09-03",
"first_author": "Joscha Gretzinger",
"doi_link": "https://doi.org/10.1038/s41586-025-09437-6"
},
"10.1186/s13059-025-03700-9": {
"title": "Ancient genomes provide evidence of demographic shift to Slavic-associated groups in Moravia",
"year": 2025,
"journal": "Genome Biology",
"date": "2025-09-03",
"first_author": "Ilektra Schulz",
"doi_link": "https://doi.org/10.1186/s13059-025-03700-9"
},
"10.1371/journal.pone.0333440": {
"title": "Multidisciplinary study of human remains from the 3rd century mass grave in the Roman city of Mursa, Croatia",
"year": 2025,
"journal": "PLOS One",
"date": "2025-10-15",
"first_author": "Mario Novak",
"doi_link": "https://doi.org/10.1371/journal.pone.0333440"
},
"10.1126/sciadv.adw8219": {
"title": "Ancient genomes from eastern Kazakhstan reveal dynamic genetic legacy of Inner Eurasian hunter-gatherers",
"year": 2025,
"journal": "Science Advances",
"date": "2025-10-15",
"first_author": "Haechan Gill",
"doi_link": "https://doi.org/10.1126/sciadv.adw8219"
},
"10.1038/s41467-025-63789-1": {
"title": "Slab Grave expansion disrupted long co-existence of distinct Bronze Age herders in central Mongolia",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-09-25",
"first_author": "Juhyeon Lee",
"doi_link": "https://doi.org/10.1038/s41467-025-63789-1"
},
"10.1038/s41467-025-63743-1": {
"title": "Ancient DNA reveals the population interactions and a Neolithic patrilineal community in Northern Yangtze Region",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-09-30",
"first_author": "Tingyu Yang",
"doi_link": "https://doi.org/10.1038/s41467-025-63743-1"
},
"10.1038/s42003-025-08668-7": {
"title": "Genomic insights from a final Bronze Age community buried in a collective tumulus in an Urnfield settlement in Northeastern Iberia",
"year": 2025,
"journal": "Communications Biology",
"date": "2025-08-28",
"first_author": "Marina Bretos Ezcurra",
"doi_link": "https://doi.org/10.1038/s42003-025-08668-7"
},
"10.1016/j.isci.2025.113086": {
"title": "Archaeogenetics reveals fine-scale genetic continuity and patterns of kinship and health in medieval Finland",
"year": 2025,
"journal": "iScience",
"date": "2025-07-15",
"first_author": "Ulla Nordfors",
"doi_link": "https://doi.org/10.1016/j.isci.2025.113086"
},
"10.1016/j.cub.2025.06.054": {
"title": "Bronze and Iron Age genomes reveal the integration of diverse ancestries in the Tarim Basin",
"year": 2025,
"journal": "Current Biology",
"date": "2025-07-17",
"first_author": "Fan Zhang",
"doi_link": "https://doi.org/10.1016/j.cub.2025.06.054"
},
"10.1126/sciadv.ads8179": {
"title": "Genetic history of Scythia",
"year": 2025,
"journal": "Science Advances",
"date": "2025-07-23",
"first_author": "Tatiana V. Andreeva",
"doi_link": "https://doi.org/10.1126/sciadv.ads8179"
},
"10.1093/gbe/evaf149": {
"title": "A New Perspective on the Arrival of the Eastern Mediterranean Genetic Influx in Central Italy Before the Onset of the Roman Empire",
"year": 2025,
"journal": "Genome Biology and Evolution",
"date": "2025-07-26",
"first_author": "Francesco Ravasini",
"doi_link": "https://doi.org/10.1093/gbe/evaf149"
},
"10.1016/j.cell.2025.07.013": {
"title": "The genetic history of the Southern Caucasus from the Bronze Age to the Early Middle Ages: 5,000 years of genetic continuity despite high mobility",
"year": 2025,
"journal": "Cell",
"date": "2025-08-07",
"first_author": "Eirini Skourtanioti",
"doi_link": "https://doi.org/10.1016/j.cell.2025.07.013"
},
"10.1038/s41586-025-09195-5": {
"title": "Whole-genome ancestry of an Old Kingdom Egyptian",
"year": 2025,
"journal": "Nature",
"date": "2025-07-02",
"first_author": "Adeline Morez Jacobs",
"doi_link": "https://doi.org/10.1038/s41586-025-09195-5"
},
"10.1016/j.isci.2025.112871": {
"title": "Genetic transitions in the Neolithic and Bronze Age at Mas d’en Boixos (Catalonia, Spain)",
"year": 2025,
"journal": "iScience",
"date": "2025-06-11",
"first_author": "Xavier Roca-Rada",
"doi_link": "https://doi.org/10.1016/j.isci.2025.112871"
},
"10.1038/s41586-025-09189-3": {
"title": "Ancient DNA reveals the prehistory of the Uralic and Yeniseian peoples",
"year": 2025,
"journal": "Nature",
"date": "2025-07-02",
"first_author": "Tian Chen Zeng",
"doi_link": "https://doi.org/10.1038/s41586-025-09189-3"
},
"10.1038/s41467-025-61601-8": {
"title": "Genomic diversity and structure of prehistoric alpine individuals from the Tyrolean Iceman’s territory",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-07-11",
"first_author": "Myriam Croze",
"doi_link": "https://doi.org/10.1038/s41467-025-61601-8"
},
"10.1126/sciadv.adq9976": {
"title": "Local increases in admixture with hunter-gatherers followed the initial expansion of Neolithic farmers across continental Europe",
"year": 2025,
"journal": "Science Advances",
"date": "2025-08-20",
"first_author": "Alexandros Tsoupas",
"doi_link": "https://doi.org/10.1126/sciadv.adq9976"
},
"10.1186/s13059-025-03707-2": {
"title": "The genetic history of Portugal over the past 5,000 years",
"year": 2025,
"journal": "Genome Biology",
"date": "2025-08-18",
"first_author": "Xavier Roca-Rada",
"doi_link": "https://doi.org/10.1186/s13059-025-03707-2"
},
"10.1016/j.cell.2022.03.007": {
"title": "Ancient genomes reveal origin and rapid trans-Eurasian migration of 7th century Avar elites",
"year": 2022,
"journal": "Cell",
"date": "2022-04-01",
"first_author": "Guido Alberto Gnecchi-Ruscone",
"doi_link": "https://doi.org/10.1016/j.cell.2022.03.007"
},
"10.1038/s41559-022-01952-3": {
"title": "Ancient DNA reveals admixture history and endogamy in the prehistoric Aegean",
"year": 2023,
"journal": "Nature Ecology & Evolution",
"date": "2023-01-16",
"first_author": "Eirini Skourtanioti",
"doi_link": "https://doi.org/10.1038/s41559-022-01952-3"
},
"10.1126/science.adr2915": {
"title": "Female lineages and changing kinship patterns in Neolithic Çatalhöyük",
"year": 2025,
"journal": "Science",
"date": "2025-06-26",
"first_author": "Eren Yüncü",
"doi_link": "https://doi.org/10.1126/science.adr2915"
},
"10.1126/science.adr3326": {
"title": "Out-of-Anatolia: Cultural and genetic interactions during the Neolithic expansion in the Aegean",
"year": 2025,
"journal": "Science",
"date": "2025-06-26",
"first_author": "Dilek Koptekin",
"doi_link": "https://doi.org/10.1126/science.adr3326"
},
"10.1038/s41467-025-60368-2": {
"title": "Ancient DNA reveals diverse community organizations in the 5th millennium BCE Carpathian Basin",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-06-24",
"first_author": "Anna Szécsényi-Nagy",
"doi_link": "https://doi.org/10.1038/s41467-025-60368-2"
},
"10.1038/s41598-025-99743-w": {
"title": "Ancient DNA indicates 3,000 years of genetic continuity in the Northern Iranian Plateau, from the Copper Age to the Sassanid Empire",
"year": 2025,
"journal": "Scientific Reports",
"date": "2025-05-13",
"first_author": "Motahareh Ala Amjadi",
"doi_link": "https://doi.org/10.1038/s41598-025-99743-w"
},
"10.1016/j.cell.2025.05.009": {
"title": "Unveiling the origins and genetic makeup of the “forgotten people”: A study of the Sarmatian-period population in the Carpathian Basin",
"year": 2025,
"journal": "Cell",
"date": "2025-06-10",
"first_author": "Oszkár Schütz",
"doi_link": "https://doi.org/10.1016/j.cell.2025.05.009"
},
"10.1038/s41586-025-09103-x": {
"title": "Ancient DNA reveals a two-clanned matrilineal community in Neolithic China",
"year": 2025,
"journal": "Nature",
"date": "2025-06-04",
"first_author": "Jincheng Wang",
"doi_link": "https://doi.org/10.1038/s41586-025-09103-x"
},
"10.1038/s41559-025-02710-x": {
"title": "The impact of human dispersals and local interactions on the genetic diversity of coastal Papua New Guinea over the past 2,500 years",
"year": 2025,
"journal": "Nature Ecology & Evolution",
"date": "2025-06-04",
"first_author": "Kathrin Nägele",
"doi_link": "https://doi.org/10.1038/s41559-025-02710-x"
},
"10.1186/s13059-025-03580-z": {
"title": "Urbanization and genetic homogenization in the medieval Low Countries revealed through a ten-century paleogenomic study of the city of Sint-Truiden",
"year": 2025,
"journal": "Genome Biology",
"date": "2025-05-19",
"first_author": "Owyn Beneker",
"doi_link": "https://doi.org/10.1186/s13059-025-03580-z"
},
"10.1126/science.adk5081": {
"title": "From North Asia to South America: Tracing the longest human migration through genomic sequencing",
"year": 2025,
"journal": "Science",
"date": "2025-05-29",
"first_author": "Elena S. Gusareva",
"doi_link": "https://doi.org/10.1126/science.adk5081"
},
"10.1126/sciadv.adr0695": {
"title": "North Pontic crossroads: Mobility in Ukraine from the Bronze Age to the early modern period",
"year": 2025,
"journal": "Science Advances",
"date": "2025-01-08",
"first_author": "Lehti Saag",
"doi_link": "https://doi.org/10.1126/sciadv.adr0695"
},
"10.1186/s13059-025-03570-1": {
"title": "Medieval genomes from eastern Iberia illuminate the role of Morisco mass deportations in dismantling a long-standing genetic bridge with North Africa",
"year": 2025,
"journal": "Genome Biology",
"date": "2025-04-28",
"first_author": "Gonzalo Oteo-Garcia",
"doi_link": "https://doi.org/10.1186/s13059-025-03570-1"
},
"10.1038/s41467-025-56555-w": {
"title": "East Asian Gene flow bridged by northern coastal populations over past 6000 years",
"year": 2025,
"journal": "Nature Communications",
"date": "2025-02-03",
"first_author": "Juncen Liu",
"doi_link": "https://doi.org/10.1038/s41467-025-56555-w"
},
"10.1038/s41586-024-08418-5": {
"title": "Ancient DNA reveals reproductive barrier despite shared Avar-period culture",
"year": 2025,
"journal": "Nature",
"date": "2025-01-15",
"first_author": "Ke Wang",
"doi_link": "https://doi.org/10.1038/s41586-024-08418-5"
},
"10.1038/s41586-024-08409-6": {
"title": "Continental influx and pervasive matrilocality in Iron Age Britain",
"year": 2025,
"journal": "Nature",
"date": "2025-01-15",
"first_author": "Lara M. Cassidy",
"doi_link": "https://doi.org/10.1038/s41586-024-08409-6"
},
"10.1038/s41586-024-07651-2": {
"title": "Repeated plague infections across six generations of Neolithic Farmers",
"year": 2024,
"journal": "Nature",
"date": "2024-07-10",
"first_author": "Frederik Valeur Seersholm",
"doi_link": "https://doi.org/10.1038/s41586-024-07651-2"
},
"10.1038/s42003-020-01627-4": {
"title": "Genome-wide study of a Neolithic Wartberg grave community reveals distinct HLA variation and hunter-gatherer ancestry",
"year": 2021,
"journal": "Communications Biology",
"date": "2021-01-25",
"first_author": "Alexander Immel",
"doi_link": "https://doi.org/10.1038/s42003-020-01627-4"
},
"10.1038/s41562-024-02034-z": {
"title": "Social and genetic diversity in first farmers of central Europe",
"year": 2024,
"journal": "Nature Human Behaviour",
"date": "2024-11-29",
"first_author": "Pere Gelabert",
"doi_link": "https://doi.org/10.1038/s41562-024-02034-z"
},
"10.1186/s12915-024-02068-9": {
"title": "Ancient genomes from the Tang Dynasty capital reveal the genetic legacy of trans-Eurasian communication at the eastern end of Silk Road",
"year": 2024,
"journal": "BMC Biology",
"date": "2024-11-20",
"first_author": "Minglei Lv",
"doi_link": "https://doi.org/10.1186/s12915-024-02068-9"
},
"10.1186/s13059-024-03430-4": {
"title": "The genomic portrait of the Picene culture provides new insights into the Italic Iron Age and the legacy of the Roman Empire in Central Italy",
"year": 2024,
"journal": "Genome Biology",
"date": "2024-11-20",
"first_author": "Francesco Ravasini",
"doi_link": "https://doi.org/10.1186/s13059-024-03430-4"
},
"10.1038/s41467-024-51150-x": {
"title": "Life history and ancestry of the late Upper Palaeolithic infant from Grotta delle Mura, Italy",
"year": 2024,
"journal": "Nature Communications",
"date": "2024-09-20",
"first_author": "Owen Alexander Higgins",
"doi_link": "https://doi.org/10.1038/s41467-024-51150-x"
},
"10.1016/j.cub.2024.07.063": {
"title": "Genomic dynamics of the Lower Yellow River Valley since the Early Neolithic",
"year": 2024,
"journal": "Current Biology",
"date": "2024-08-14",
"first_author": "Panxin Du",
"doi_link": "https://doi.org/10.1016/j.cub.2024.07.063"
},
"10.1038/s41586-024-07881-4": {
"title": "Ancient Rapanui genomes reveal resilience and pre-European contact with the Americas",
"year": 2024,
"journal": "Nature",
"date": "2024-09-11",
"first_author": "J. Víctor Moreno-Mayar",
"doi_link": "https://doi.org/10.1038/s41586-024-07881-4"
},
"10.1016/j.xgen.2024.100593": {
"title": "Long genetic and social isolation in Neanderthals before their extinction",
"year": 2024,
"journal": "Cell Genomics",
"date": "2024-09-11",
"first_author": "Ludovic Slimak",
"doi_link": "https://doi.org/10.1016/j.xgen.2024.100593"
},
"10.1126/sciadv.adp8625": {
"title": "Five centuries of consanguinity, isolation, health, and conflict in Las Gobas: A Northern Medieval Iberian necropolis",
"year": 2024,
"journal": "Science Advances",
"date": "2024-08-28",
"first_author": "Ricardo Rodríguez-Varela",
"doi_link": "https://doi.org/10.1126/sciadv.adp8625"
},
"10.1038/s41586-025-08793-7": {
"title": "Ancient DNA from the Green Sahara reveals ancestral North African lineage",
"year": 2025,
"journal": "Nature",
"date": "2025-04-04",
"first_author": "Nada Salem",
"doi_link": "https://doi.org/10.1038/s41586-025-08793-7"
},
"10.1038/s41586-025-08913-3": {
"title": "Punic people were genetically diverse with almost no Levantine ancestors",
"year": 2025,
"journal": "Nature",
"date": "2025-04-23",
"first_author": "Harald Ringbauer",
"doi_link": "https://doi.org/10.1038/s41586-025-08913-3"
},
"10.1038/s41586-024-08531-5": {
"title": "The genetic origin of the Indo-Europeans",
"year": 2025,
"journal": "Nature",
"date": "2025-02-05",
"first_author": "Iosif Lazaridis",
"doi_link": "https://doi.org/10.1038/s41586-024-08531-5"
},
"10.1002/ajpa.23312": {
"title": "Testing support for the northern and southern dispersal routes out of Africa: an analysis of Levantine and southern Arabian populations",
"year": 2017,
"journal": "American Journal of Physical Anthropology",
"date": "2017-09-15",
"first_author": "Deven N. Vyas",
"doi_link": "https://doi.org/10.1002/ajpa.23312"
},
"10.1002/ajpa.24079": {
"title": "The Neolithic Pitted Ware culture foragers were culturally but not genetically influenced by the Battle Axe culture herders",
"year": 2020,
"journal": "American Journal of Physical Anthropology",
"date": "2020-06-04",
"first_author": "Alexandra Coutinho",
"doi_link": "https://doi.org/10.1002/ajpa.24079"
},
"10.1016/j.ajhg.2017.06.013": {
"title": "Continuity and Admixture in the Last Five Millennia of Levantine History from Ancient Canaanite and Present-Day Lebanese Genome Sequences",
"year": 2017,
"journal": "The American Journal of Human Genetics",
"date": "2017-07-27",
"first_author": "Marc Haber",
"doi_link": "https://doi.org/10.1016/j.ajhg.2017.06.013"
},
"10.1016/j.ajhg.2020.05.008": {
"title": "A Genetic History of the Near East from an aDNA Time Course Sampling Eight Points in the Past 4,000 Years",
"year": 2020,
"journal": "The American Journal of Human Genetics",
"date": "2020-05-28",
"first_author": "Marc Haber",
"doi_link": "https://doi.org/10.1016/j.ajhg.2020.05.008"
},
"10.1016/j.cell.2017.08.049": {
"title": "Reconstructing Prehistoric African Population Structure",
"year": 2017,
"journal": "Cell",
"date": "2017-09-21",
"first_author": "Pontus Skoglund",
"doi_link": "https://doi.org/10.1016/j.cell.2017.08.049"
},
"10.1016/j.cell.2020.10.015": {
"title": "A Dynamic 6,000-Year Genetic History of Eurasia’s Eastern Steppe",
"year": 2020,
"journal": "Cell",
"date": "2020-11-05",
"first_author": "Choongwon Jeong",
"doi_link": "https://doi.org/10.1016/j.cell.2020.10.015"
},
"10.1016/j.cell.2021.02.040": {
"title": "Archaeogenomic distinctiveness of the Isthmo-Colombian area",
"year": 2021,
"journal": "Cell",
"date": "2021-03-23",
"first_author": "Marco Rosario Capodiferro",
"doi_link": "https://doi.org/10.1016/j.cell.2021.02.040"
},
"10.1016/j.cell.2021.03.039": {
"title": "The genomic history of the Aegean palatial civilizations",
"year": 2021,
"journal": "Cell",
"date": "2021-04-29",
"first_author": "Florian Clemente",
"doi_link": "https://doi.org/10.1016/j.cell.2021.03.039"
},
"10.1016/j.cell.2021.04.040": {
"title": "The deep population history of northern East Asia from the Late Pleistocene to the Holocene",
"year": 2021,
"journal": "Cell",
"date": "2021-05-27",
"first_author": "Xiaowei Mao",
"doi_link": "https://doi.org/10.1016/j.cell.2021.04.040"
},
"10.1016/j.cub.2014.09.078": {
"title": "Two ancient human genomes reveal Polynesian ancestry among the indigenous Botocudos of Brazil",
"year": 2014,
"journal": "Current Biology",
"date": "2014-10-24",
"first_author": "Anna-Sapfo Malaspinas",
"doi_link": "https://doi.org/10.1016/j.cub.2014.09.078"
},
"10.1016/j.cub.2015.12.019": {
"title": "Genomic Evidence Establishes Anatolia as the Source of the European Neolithic Gene Pool",
"year": 2016,
"journal": "Current Biology",
"date": "2015-12-31",
"first_author": "Ayça Omrak",
"doi_link": "https://doi.org/10.1016/j.cub.2015.12.019"
},
"10.1016/j.cub.2016.07.057": {
"title": "The Demographic Development of the First Farmers in Anatolia",
"year": 2016,
"journal": "Current Biology",
"date": "2016-08-05",
"first_author": "Gülşah Merve Kılınç",
"doi_link": "https://doi.org/10.1016/j.cub.2016.07.057"
},
"10.1016/j.cub.2016.12.060": {
"title": "The Neolithic Transition in the Baltic Was Not Driven by Admixture with Early European Farmers",
"year": 2017,
"journal": "Current Biology",
"date": "2017-02-03",
"first_author": "Eppie R. Jones",
"doi_link": "https://doi.org/10.1016/j.cub.2016.12.060"
},
"10.1016/j.cub.2017.05.023": {
"title": "Paleogenomic Evidence for Multi-generational Mixing between Neolithic Farmers and Mesolithic Hunter-Gatherers in the Lower Danube Basin",
"year": 2017,
"journal": "Current Biology",
"date": "2017-05-25",
"first_author": "Gloria González-Fortes",
"doi_link": "https://doi.org/10.1016/j.cub.2017.05.023"
},
"10.1016/j.cub.2017.06.022": {
"title": "Extensive Farming in Estonia Started through a Sex-Biased Migration from the Steppe",
"year": 2017,
"journal": "Current Biology",
"date": "2017-07-14",
"first_author": "Lehti Saag",
"doi_link": "https://doi.org/10.1016/j.cub.2017.06.022"
},
"10.1016/j.cub.2017.09.030": {
"title": "40,000-Year-Old Individual from Asia Provides Insight into Early Population Structure in Eurasia",
"year": 2017,
"journal": "Current Biology",
"date": "2017-10-13",
"first_author": "Melinda A. Yang",
"doi_link": "https://doi.org/10.1016/j.cub.2017.09.030"
},
"10.1016/j.cub.2017.09.059": {
"title": "Genomic Analyses of Pre-European Conquest Human Remains from the Canary Islands Reveal Close Affinity to Modern North Africans",
"year": 2017,
"journal": "Current Biology",
"date": "2017-10-26",
"first_author": "Ricardo Rodríguez-Varela",
"doi_link": "https://doi.org/10.1016/j.cub.2017.09.059"
},
"10.1016/j.cub.2018.02.051": {
"title": "Population Turnover in Remote Oceania Shortly after Initial Settlement",
"year": 2018,
"journal": "Current Biology",
"date": "2018-02-28",
"first_author": "Mark Lipson",
"doi_link": "https://doi.org/10.1016/j.cub.2018.02.051"
},
"10.1016/j.cub.2018.06.053": {
"title": "Genomic and Strontium Isotope Variation Reveal Immigration Patterns in a Viking Age Town",
"year": 2018,
"journal": "Current Biology",
"date": "2018-08-23",
"first_author": "Maja Krzewińska",
"doi_link": "https://doi.org/10.1016/j.cub.2018.06.053"
},
"10.1016/j.cub.2020.04.002": {
"title": "Origin and Health Status of First-Generation Africans from Early Colonial Mexico",
"year": 2020,
"journal": "Current Biology",
"date": "2020-04-30",
"first_author": "Rodrigo Barquera",
"doi_link": "https://doi.org/10.1016/j.cub.2020.04.002"
},
"10.1016/j.cub.2020.08.033": {
"title": "Low Prevalence of Lactase Persistence in Bronze Age Europe Indicates Ongoing Strong Selection over the Last 3,000 Years",
"year": 2020,
"journal": "Current Biology",
"date": "2020-09-03",
"first_author": "Joachim Burger",
"doi_link": "https://doi.org/10.1016/j.cub.2020.08.033"
},
"10.1016/j.cub.2020.12.015": {
"title": "Heterogeneous Hunter-Gatherer and Steppe-Related Ancestries in Late Neolithic and Bell Beaker Genomes from Present-Day France",
"year": 2021,
"journal": "Current Biology",
"date": "2021-01-13",
"first_author": "Andaine Seguin-Orlando",
"doi_link": "https://doi.org/10.1016/j.cub.2020.12.015"
},
"10.1016/j.cub.2021.03.050": {
"title": "Variable kinship patterns in Neolithic Anatolia revealed by ancient genomes",
"year": 2021,
"journal": "Current Biology",
"date": "2021-04-15",
"first_author": "Reyhan Yaka",
"doi_link": "https://doi.org/10.1016/j.cub.2021.03.050"
},
"10.1016/j.cub.2021.03.078": {
"title": "Early Alpine occupation backdates westward human migration in Late Glacial Europe",
"year": 2021,
"journal": "Current Biology",
"date": "2021-04-21",
"first_author": "Eugenio Bortolini",
"doi_link": "https://doi.org/10.1016/j.cub.2021.03.078"
},
"10.1016/j.cub.2021.04.045": {
"title": "Genome of Peştera Muierii skull shows high diversity and low mutational load in pre-glacial Europe",
"year": 2021,
"journal": "Current Biology",
"date": "2021-05-18",
"first_author": "Emma Svensson",
"doi_link": "https://doi.org/10.1016/j.cub.2021.04.045"
},
"10.1038/jhg.2016.110": {
"title": "A partial nuclear genome of the Jomons who lived 3000 years ago in Fukushima, Japan",
"year": 2017,
"journal": "Journal of Human Genetics",
"date": "2016-09-01",
"first_author": "Hideaki Kanzawa-Kiriyama",
"doi_link": "https://doi.org/10.1038/jhg.2016.110"
},
"10.1038/nature04072": {
"title": "Initial sequence of the chimpanzee genome and comparison with the human genome",
"year": "2005",
"journal": "Nature",
"date": "2005-09-01",
"first_author": "Chimpanzee Sequencing and Analysis Consortium",
"doi_link": "https://doi.org/10.1038/nature04072"
},
"10.1038/nature08835": {
"title": "Ancient human genome sequence of an extinct Palaeo-Eskimo",
"year": 2010,
"journal": "Nature",
"date": "2010-02-09",
"first_author": "Morten Rasmussen",
"doi_link": "https://doi.org/10.1038/nature08835"
},
"10.1038/nature12736": {
"title": "Upper Palaeolithic Siberian genome reveals dual ancestry of Native Americans",
"year": 2014,
"journal": "Nature",
"date": "2013-11-19",
"first_author": "Maanasa Raghavan",
"doi_link": "https://doi.org/10.1038/nature12736"
},
"10.1038/nature12886": {
"title": "The complete genome sequence of a Neanderthal from the Altai Mountains",
"year": 2014,
"journal": "Nature",
"date": "2013-12-18",
"first_author": "Kay Prüfer",
"doi_link": "https://doi.org/10.1038/nature12886"
},
"10.1038/nature12960": {
"title": "Derived immune and ancestral pigmentation alleles in a 7,000-year-old Mesolithic European",
"year": 2014,
"journal": "Nature",
"date": "2014-01-24",
"first_author": "Iñigo Olalde",
"doi_link": "https://doi.org/10.1038/nature12960"
},
"10.1038/nature13025": {
"title": "The genome of a Late Pleistocene human from a Clovis burial site in western Montana",
"year": 2014,
"journal": "Nature",
"date": "2014-02-11",
"first_author": "Morten Rasmussen",
"doi_link": "https://doi.org/10.1038/nature13025"
},
"10.1038/nature13673": {
"title": "Ancient human genomes suggest three ancestral populations for present-day Europeans",
"year": 2014,
"journal": "Nature",
"date": "2014-09-17",
"first_author": "Iosif Lazaridis",
"doi_link": "https://doi.org/10.1038/nature13673"
},
"10.1038/nature13810": {
"title": "Genome sequence of a 45,000-year-old modern human from western Siberia",
"year": 2014,
"journal": "Nature",
"date": "2014-10-21",
"first_author": "Qiaomei Fu",
"doi_link": "https://doi.org/10.1038/nature13810"
},
"10.1038/nature14507": {
"title": "Population genomics of Bronze Age Eurasia",
"year": 2015,
"journal": "Nature",
"date": "2015-06-09",
"first_author": "Morten E. Allentoft",
"doi_link": "https://doi.org/10.1038/nature14507"
},
"10.1038/nature14558": {
"title": "An early modern human from Romania with a recent Neanderthal ancestor",
"year": 2015,
"journal": "Nature",
"date": "2015-06-22",
"first_author": "Qiaomei Fu",
"doi_link": "https://doi.org/10.1038/nature14558"
},
"10.1038/nature14625": {
"title": "The ancestry and affiliations of Kennewick Man",
"year": 2015,
"journal": "Nature",
"date": "2015-06-18",
"first_author": "Morten Rasmussen",
"doi_link": "https://doi.org/10.1038/nature14625"
},
"10.1038/nature15393": {
"title": "A global reference for human genetic variation",
"year": 2015,
"journal": "Nature",
"date": "2015-09-29",
"first_author": " ",
"doi_link": "https://doi.org/10.1038/nature15393"
},
"10.1038/nature16152": {
"title": "Genome-wide patterns of selection in 230 ancient Eurasians",
"year": 2015,
"journal": "Nature",
"date": "2015-11-23",
"first_author": "Iain Mathieson",
"doi_link": "https://doi.org/10.1038/nature16152"
},
"10.1038/nature17993": {
"title": "The genetic history of Ice Age Europe",
"year": 2016,
"journal": "Nature",
"date": "2016-04-29",
"first_author": "Qiaomei Fu",
"doi_link": "https://doi.org/10.1038/nature17993"
},
"10.1038/nature19310": {
"title": "Genomic insights into the origin of farming in the ancient Near East",
"year": 2016,
"journal": "Nature",
"date": "2016-07-26",
"first_author": "Iosif Lazaridis",
"doi_link": "https://doi.org/10.1038/nature19310"
},
"10.1038/nature19844": {
"title": "Genomic insights into the peopling of the Southwest Pacific",
"year": 2016,
"journal": "Nature",
"date": "2016-09-30",
"first_author": "Pontus Skoglund",
"doi_link": "https://doi.org/10.1038/nature19844"
},
"10.1038/nature23310": {
"title": "Genetic origins of the Minoans and Mycenaeans",
"year": 2017,
"journal": "Nature",
"date": "2017-08-01",
"first_author": "Iosif Lazaridis",
"doi_link": "https://doi.org/10.1038/nature23310"
},
"10.1038/nature24476": {
"title": "Parallel palaeogenomic transects reveal complex genetic history of early European farmers",
"year": 2017,
"journal": "Nature",
"date": "2017-11-07",
"first_author": "Mark Lipson",
"doi_link": "https://doi.org/10.1038/nature24476"
},
"10.1038/nature25173": {
"title": "Terminal Pleistocene Alaskan genome reveals first founding population of Native Americans",
"year": 2018,
"journal": "Nature",
"date": "2018-01-02",
"first_author": "J. Víctor Moreno-Mayar",
"doi_link": "https://doi.org/10.1038/nature25173"
},
"10.1038/nature25738": {
"title": "The Beaker phenomenon and the genomic transformation of northwest Europe",
"year": 2018,
"journal": "Nature",
"date": "2018-02-21",
"first_author": "Iñigo Olalde",
"doi_link": "https://doi.org/10.1038/nature25738"
},
"10.1038/nature25778": {
"title": "The genomic history of southeastern Europe",
"year": 2018,
"journal": "Nature",
"date": "2018-02-21",
"first_author": "Iain Mathieson",
"doi_link": "https://doi.org/10.1038/nature25778"
},
"10.1038/nature26151": {
"title": "Reconstructing the genetic history of late Neanderthals",
"year": 2018,
"journal": "Nature",
"date": "2018-03-20",
"first_author": "Mateja Hajdinjak",
"doi_link": "https://doi.org/10.1038/nature26151"
},
"10.1038/ncomms10326": {
"title": "Genomic signals of migration and continuity in Britain before the Anglo-Saxons",
"year": 2016,
"journal": "Nature Communications",
"date": "2016-01-19",
"first_author": "Rui Martiniano",
"doi_link": "https://doi.org/10.1038/ncomms10326"
},
"10.1038/ncomms10408": {
"title": "Iron Age and Anglo-Saxon genomes from East England reveal British migration history",
"year": 2016,
"journal": "Nature Communications",
"date": "2016-01-19",
"first_author": "Stephan Schiffels",
"doi_link": "https://doi.org/10.1038/ncomms10408"
},
"10.1038/ncomms14115": {
"title": "Archaeogenomic evidence reveals prehistoric matrilineal dynasty",
"year": 2017,
"journal": "Nature Communications",
"date": "2017-02-21",
"first_author": "Douglas J. Kennett",
"doi_link": "https://doi.org/10.1038/ncomms14115"
},
"10.1038/ncomms14615": {
"title": "Ancestry and demography and descendants of Iron Age nomads of the Eurasian Steppe",
"year": 2017,
"journal": "Nature Communications",
"date": "2017-03-03",
"first_author": "Martina Unterländer",
"doi_link": "https://doi.org/10.1038/ncomms14615"