-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathafpo.obo
11977 lines (11501 loc) · 685 KB
/
afpo.obo
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
format-version: 1.2
data-version: releases/2024-03-21
remark: Aymen Ben Chaalia and Hamza Dallali are also contributors. However they don't have ORCIDs yet. H3Africa Phenotype Harmonisation working group members are also contributors.
ontology: afpo
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0001-5868-4204
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0001-8351-264X
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0001-8801-5781
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0001-8862-1706
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0001-9988-3250
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-0957-5877
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-3387-6493
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-4848-3334
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-5468-8678
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-6221-2661
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-6523-4866
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0002-7073-9172
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0003-1058-2668
property_value: http://purl.org/dc/terms/contributor https://orcid.org/0000-0003-4905-0941
property_value: http://purl.org/dc/terms/description "AfPO is an ontology that enables annotating African individuals and combines knowledge accumulated about existing populations with their genetic fingerprints in a standardized format. The AfPO can be employed to classify African study participants comprehensively in prospective research studies. It can also be used to classify past study participants by mapping them using a language or ethnicity identifier or synonyms." xsd:string
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/
property_value: http://purl.org/dc/terms/title "African Population Ontology" xsd:string
property_value: owl:versionInfo "2024-03-21" xsd:string
[Term]
id: AfPO:0000056
name: Maasai
def: "A Nilotic Eastern population with a population size of 0.9 millions" [https://en.wikipedia.org/wiki/Maasai_language]
def: "A Nilotic Eastern population with a population size of 0.9 millions" [https://en.wikipedia.org/wiki/Maasai_people]
is_a: AfPO:0000371 ! Nilotic Eastern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Kenya ! hasCountryOfOrigin Kenya
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Tanzania ! hasCountryOfOrigin Tanzania
property_value: AfPO:0000089 "Masai\n3°09'S, 36°27'E\n-3.14, 36.46" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27654912/
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=mas
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/masa1300.bigmap.html
property_value: AfPO:0000226 https://doi.org/10.1186/s13059-018-1616-9
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/masa1300
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q='Maasai+people'+OR+'Maasai+tribe'+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000235 Maasai:language
property_value: AfPO:0000235 Maasai:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14819
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14907
property_value: AfPO:0000452 "masa1300" xsd:string
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "A\nB\nE1b1a\nE1b1b\nM1a\nL2" xsd:string
property_value: AfPO:0000458 "Maasai" xsd:string
property_value: AfPO:0000459 "0.9 millions" xsd:string
property_value: AfPO:0000567 "mas" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/masai.html
[Term]
id: AfPO:0000057
name: Samburu
def: "A Nilotic Eastern population with a population size of 0.1 millions" [https://en.wikipedia.org/wiki/Samburu_people]
is_a: AfPO:0000371 ! Nilotic Eastern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Kenya ! hasCountryOfOrigin Kenya
property_value: AfPO:0000089 "Samburu\n1°36'N, 37°03'E\n1.61, 37.05" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/26614524
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=saq
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/samb1315.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/samb1315
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Samburu+people'+OR+'Samburu+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Samburu:language
property_value: AfPO:0000235 Samburu:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=24980
property_value: AfPO:0000452 "samb1315" xsd:string
property_value: AfPO:0000458 "Samburu" xsd:string
property_value: AfPO:0000459 "0.1 millions" xsd:string
property_value: AfPO:0000565 "Core" xsd:string
property_value: AfPO:0000565 "Eastern" xsd:string
property_value: AfPO:0000565 "Eastern Sudanic" xsd:string
property_value: AfPO:0000565 "Lotuxo-Maa" xsd:string
property_value: AfPO:0000565 "Lotuxo-Teso" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000565 "Nilotic" xsd:string
property_value: AfPO:0000565 "Ongamo-Maa" xsd:string
property_value: AfPO:0000565 "Satellite-Core" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000567 "saq" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/samburu.html
[Term]
id: AfPO:0000058
name: Tiv
def: "A Bantu Western population with a population size of 3.8 millions" [https://en.wikipedia.org/wiki/Tiv_people]
is_a: AfPO:0000412 ! Bantu Western
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Cameroon ! hasCountryOfOrigin Cameroon
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Nigeria ! hasCountryOfOrigin Nigeria
property_value: AfPO:0000089 "6°53'N, 9°16'E\n6.88, 9.26" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=tiv
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/tivv1240
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Tiv+tribe'+OR+'Tiv+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Tiv:language
property_value: AfPO:0000235 Tiv:people
property_value: AfPO:0000452 "tivv1240" xsd:string
property_value: AfPO:0000458 "Tiv" xsd:string
property_value: AfPO:0000459 "3.8 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Tivoid" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "tiv" xsd:string
[Term]
id: AfPO:0000060
name: Nama
def: "A Khoisan South population with a population size of 0.13 millions" [https://en.wikipedia.org/wiki/Nama_people]
is_a: AfPO:0000333 ! Khoisan South
property_value: AfPO:0000089 "Nama\n25°04'S, 17°59'E\n-25.07, 17.98" xsd:string
property_value: AfPO:0000223 https://glottolog.org/resource/languoid/id/nama1265.bigmap.html
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/nama1265
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Nama+tribe'+OR+'Nama+people'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Khoekhoe:language
property_value: AfPO:0000235 Nama:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15245
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15501
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15519
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=47814
property_value: AfPO:0000450 "Namaqua" xsd:string
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "A\nE1b1a\nE1b1b" xsd:string
property_value: AfPO:0000458 "Khoekhoe" xsd:string
property_value: AfPO:0000459 "0.13 millions" xsd:string
property_value: AfPO:0000566 "nama1265" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/nama.html
[Term]
id: AfPO:0000064
name: Susu
def: "A Mande Western population with a population size of 2.2 millions" [https://en.wikipedia.org/wiki/Susu_people]
is_a: AfPO:0000425 ! Mande Western
relationship: HANCESTRO:0308 Sierra:Leone ! hasCountryOfOrigin Sierra Leone
property_value: AfPO:0000089 "Susu\n10°24'N, 13°22'W\n10.40, -13.36" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=sus
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/susu1250.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/susu1250
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Susu+tribe'+OR+'Susu+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Susu:language
property_value: AfPO:0000235 Susu:people
property_value: AfPO:0000450 "Soosoo" xsd:string
property_value: AfPO:0000450 "Soso" xsd:string
property_value: AfPO:0000450 "Sosoe" xsd:string
property_value: AfPO:0000450 "Sosso" xsd:string
property_value: AfPO:0000450 "Sossé" xsd:string
property_value: AfPO:0000450 "Sousou" xsd:string
property_value: AfPO:0000450 "Soussou" xsd:string
property_value: AfPO:0000450 "Susa" xsd:string
property_value: AfPO:0000450 "Susoo" xsd:string
property_value: AfPO:0000450 "Susso" xsd:string
property_value: AfPO:0000450 "Sussu" xsd:string
property_value: AfPO:0000450 "Suzée" xsd:string
property_value: AfPO:0000458 "Susu" xsd:string
property_value: AfPO:0000459 "2.2 millions" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "Central-Southwestern" xsd:string
property_value: AfPO:0000565 "Mande" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Susu-Yalunka" xsd:string
property_value: AfPO:0000565 "Western" xsd:string
property_value: AfPO:0000566 "susu1250" xsd:string
property_value: AfPO:0000567 "sus" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/susu.html
[Term]
id: AfPO:0000066
name: Taveta
def: "A Bantu Eastern population with a population size of 0.026 millions" [https://en.wikipedia.org/wiki/Taveta_people]
is_a: AfPO:0000369 ! Bantu Eastern
property_value: AfPO:0000089 "Taveta\n3°25'S, 37°42'E\n-3.42, 37.71" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=tvs
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/tave1240.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/tave1240
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Taveta+people'+OR+'Taveta+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Taveta:language
property_value: AfPO:0000235 Taveta:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14864
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15051
property_value: AfPO:0000452 "tave1240" xsd:string
property_value: AfPO:0000453 "Kitaveta" xsd:string
property_value: AfPO:0000458 "Taveta" xsd:string
property_value: AfPO:0000459 "0.026 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "E" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "tvs" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/taveta.html
[Term]
id: AfPO:0000067
name: Bassa
def: "A Bantu Western population with a population size of 0.8 million" [https://en.wikipedia.org/wiki/Bassa_people_(Liberia)]
def: "A Bantu Western population with a population size of 0.8 million" [https://en.wikipedia.org/wiki/Bassa_people_(Cameroon)]
is_a: AfPO:0000412 ! Bantu Western
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Cameroon ! hasCountryOfOrigin Cameroon
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Liberia ! hasCountryOfOrigin Liberia
relationship: HANCESTRO:0308 Ivory:Coast ! hasCountryOfOrigin Côte d'Ivoire
relationship: HANCESTRO:0308 Sierra:Leone ! hasCountryOfOrigin Sierra Leone
property_value: AfPO:0000089 "Basa (Cameroon)\n3°48'N, 10°25'E\n3.81, 10.42" xsd:string
property_value: AfPO:0000089 "Bassa (Liberia)\n7°17'N, 11°33'W\n7.28, -11.54" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=bas
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=bsq
property_value: AfPO:0000226 "10.1016/j.celrep.2018.05.018" xsd:string
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/basa1284
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/nucl1418
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Basaa+tribe'+OR+'Basaa+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Bassa+tribe'+OR+'Bassa+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 "https://en.wikipedia.org/wiki/Basaa_language (Cameroon)" xsd:string
property_value: AfPO:0000234 "https://en.wikipedia.org/wiki/Bassa_language (Liberia)" xsd:string
property_value: AfPO:0000235 https://en.wikipedia.org/wiki/Bassa_people_(Cameroon)
property_value: AfPO:0000235 https://en.wikipedia.org/wiki/Bassa_people_(Liberia)
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=12525
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=13481
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14272
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=33345
property_value: AfPO:0000450 "Basa" xsd:string
property_value: AfPO:0000450 "Bassa" xsd:string
property_value: AfPO:0000450 "Bassa-Bakongo" xsd:string
property_value: AfPO:0000452 "basa1284" xsd:string
property_value: AfPO:0000452 "nucl1418" xsd:string
property_value: AfPO:0000453 "Basa, Basaa, Mbene (Cameroon)" xsd:string
property_value: AfPO:0000458 "Bassa" xsd:string
property_value: AfPO:0000458 "Kru" xsd:string
property_value: AfPO:0000459 "0.8 million" xsd:string
property_value: AfPO:0000565 "A" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Kru" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Niger–Congo" xsd:string
property_value: AfPO:0000565 "Northwest" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "bsq\nbas" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/bassa.html
[Term]
id: AfPO:0000069
name: Zulu
def: "A Nguni population with a population size of 12 millions" [https://en.wikipedia.org/wiki/Zulu_people]
is_a: AfPO:0000340 ! Nguni
property_value: AfPO:0000089 "Zulu\n28°54'S, 30°12'E\n-28.90, 30.20" xsd:string
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/zulu1248.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/zulu1248
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Zulu+people'+OR+'Zulu+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Zulu:language
property_value: AfPO:0000235 Zulu:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15268
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15285
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15429
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15551
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15561
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15689
property_value: AfPO:0000450 "Amazulu" xsd:string
property_value: AfPO:0000452 "zulu1248" xsd:string
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "A\nB\nE1b1a\nE2" xsd:string
property_value: AfPO:0000458 "Zulu" xsd:string
property_value: AfPO:0000459 "12 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "S" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 http://www-01.sil.org/iso639-3/documentation.asp?id=zul
property_value: AfPO:0000567 "zul" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/zulu.html
[Term]
id: AfPO:0000071
name: Dinka
def: "A Nilotic Eastern population with a population size of 5 millions" [https://en.wikipedia.org/wiki/Dinka]
is_a: AfPO:0000371 ! Nilotic Eastern
relationship: HANCESTRO:0308 South:Sudan ! hasCountryOfOrigin South Sudan
property_value: AfPO:0000089 "Northeastern Dinka\n9°17'N, 31°50'E\n9.28, 31.84" xsd:string
property_value: AfPO:0000089 "Northwestern Dinka\n9°49'N, 29°18'E\n9.81, 29.30" xsd:string
property_value: AfPO:0000089 "South Central Dinka\n6°44'N, 30°18'E\n6.73, 30.30" xsd:string
property_value: AfPO:0000089 "Southeastern Dinka\n7°01'N, 31°17'E\n7.02, 31.29" xsd:string
property_value: AfPO:0000089 "Southwestern Dinka\n8°49'N, 28°04'E\n8.81, 28.06" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27654912/
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/28837655
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=din
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/dink1262.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/dink1262
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Dinka+people'+OR+'Dinka+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Dinka:language
property_value: AfPO:0000235 https://en.wikipedia.org/wiki/Dinka
property_value: AfPO:0000450 "Jieng" xsd:string
property_value: AfPO:0000450 "Nuony-Jang" xsd:string
property_value: AfPO:0000454 https://doi.org/10.1002/ajpa.20876
property_value: AfPO:0000456 "A\nB\nE1b1b" xsd:string
property_value: AfPO:0000458 "Dinka" xsd:string
property_value: AfPO:0000459 "5 millions" xsd:string
property_value: AfPO:0000565 "Eastern Sudanic" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000566 "dink1262" xsd:string
property_value: AfPO:0000567 "din" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/dinka.html
[Term]
id: AfPO:0000074
name: Bambara
def: "A Mande Western population with a population size of 14 millions" [https://en.wikipedia.org/wiki/Bambara_people]
is_a: AfPO:0000425 ! Mande Western
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Mali ! hasCountryOfOrigin Mali
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Senegal ! hasCountryOfOrigin Senegal
relationship: HANCESTRO:0308 The:Gambia ! hasCountryOfOrigin The Gambia
property_value: AfPO:0000089 "Bambara\n12°54'N, 7°39'W\n12.90, -7.65" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=bam
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/bamb1269.bigmap.html
property_value: AfPO:0000226 https://doi.org/10.1186/s13073-014-0099-x
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/bamb1269
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Bambara+tribe'+OR+'Bambara+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Bambara:language
property_value: AfPO:0000235 Bambara:people
property_value: AfPO:0000450 "Bamana" xsd:string
property_value: AfPO:0000450 "Banmana" xsd:string
property_value: AfPO:0000458 "Bambara" xsd:string
property_value: AfPO:0000459 "14 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "Central-Southwestern" xsd:string
property_value: AfPO:0000565 "Jarawan" xsd:string
property_value: AfPO:0000565 "Mande" xsd:string
property_value: AfPO:0000565 "Manding" xsd:string
property_value: AfPO:0000565 "Manding-East" xsd:string
property_value: AfPO:0000565 "Manding-Jogo" xsd:string
property_value: AfPO:0000565 "Manding-Mokole" xsd:string
property_value: AfPO:0000565 "Manding-Vai" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Nigerian" xsd:string
property_value: AfPO:0000565 "Northeastern Manding" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000565 "Vute" xsd:string
property_value: AfPO:0000565 "Western" xsd:string
property_value: AfPO:0000566 "bamb1269" xsd:string
property_value: AfPO:0000567 "bam" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/bambara.html
[Term]
id: AfPO:0000075
name: Sebei
def: "A Kalenjin population with a population size of 0.3 million" [https://en.wikipedia.org/wiki/Sebei_people]
is_a: AfPO:0000199 ! Kalenjin
property_value: AfPO:0000089 "Kupsabiny\n1°20'N, 34°36'E\n1.33, 34.60" xsd:string
property_value: AfPO:0000089 "Sabaot\n1°01'N, 34°40'E\n1.01, 34.67" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=spy
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/elgo1240.bigmap.html
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/kups1238.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/elgo1240
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/kups1238
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Sebei+people'+OR+'Sebei+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Elgon:languages
property_value: AfPO:0000235 Sebei:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=42840
property_value: AfPO:0000452 "elgo1240" xsd:string
property_value: AfPO:0000452 "kups1238" xsd:string
property_value: AfPO:0000453 "Sabiny or Sebei" xsd:string
property_value: AfPO:0000458 "Elong" xsd:string
property_value: AfPO:0000458 "Kupsabiny" xsd:string
property_value: AfPO:0000459 "0.3 million" xsd:string
property_value: AfPO:0000565 "Core" xsd:string
property_value: AfPO:0000565 "Eastern" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000565 "Nilotic" xsd:string
property_value: AfPO:0000565 "Satellite-Core" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Sudanic Southern" xsd:string
property_value: AfPO:0000567 "spy" xsd:string
[Term]
id: AfPO:0000080
name: Masalit
is_a: AfPO:0000188 ! Eastern African
is_a: AfPO:0000265 ! Nilotic Central
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
property_value: AfPO:0000089 "Massalat\n13°31'N, 19°44'E\n13.52, 19.73" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=mls
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/mass1262.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/mass1262
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Masalit+people'+OR+'Masalit+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Masalit:language
property_value: AfPO:0000235 Masalit:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=11404
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=12099
property_value: AfPO:0000452 "mass1262" xsd:string
property_value: AfPO:0000454 https://doi.org/10.1002/ajpa.20876
property_value: AfPO:0000456 "A\nB\nE1b1b\nJ" xsd:string
property_value: AfPO:0000458 "Masalit" xsd:string
property_value: AfPO:0000565 "Maban" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000565 "Satellite-Core" xsd:string
property_value: AfPO:0000565 "Satellites" xsd:string
property_value: AfPO:0000567 "mls" xsd:string
[Term]
id: AfPO:0000084
name: Bulu
is_a: AfPO:0000290 ! Beti-Pahuin
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=bjl
property_value: AfPO:0000223 https://glottolog.org/resource/languoid/id/bulu1253.bigmap.html
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/bulu1253
property_value: AfPO:0000235 Boulou:(peuple)
property_value: AfPO:0000267 topmenu
property_value: AfPO:0000267 topmenu
property_value: AfPO:0000458 "Fang" xsd:string
property_value: AfPO:0000567 "bjl" xsd:string
[Term]
id: AfPO:0000085
name: Taita
def: "A Bantu Eastern population with a population size of 0.34 millions" [https://en.wikipedia.org/wiki/Taita_people]
is_a: AfPO:0000369 ! Bantu Eastern
property_value: AfPO:0000089 "Sagalla\n3°36'S, 38°30'E\n-3.60, 38.50" xsd:string
property_value: AfPO:0000089 "Taita\n3°48'S, 38°34'E\n-3.79, 38.57" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=dav
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/tait1249.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/tait1249
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Taita+people'+OR+'Taita+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Taita:language
property_value: AfPO:0000235 Taita:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14864
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15051
property_value: AfPO:0000450 "Wadawida" xsd:string
property_value: AfPO:0000450 "Wataita" xsd:string
property_value: AfPO:0000452 "tait1249" xsd:string
property_value: AfPO:0000453 "Kidawida" xsd:string
property_value: AfPO:0000458 "Taita" xsd:string
property_value: AfPO:0000459 "0.34 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "E" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "dav" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/taita.html
[Term]
id: AfPO:0000087
name: Igbo
def: "A Western African population with a population size of >34 millions" [https://en.wikipedia.org/wiki/Igbo_people]
is_a: AfPO:0000277 ! Western African
relationship: HANCESTRO:0308 Equatorial:Guinea ! hasCountryOfOrigin Equatorial Guinea
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Nigeria ! hasCountryOfOrigin Nigeria
property_value: AfPO:0000089 "Igbo\n4°38'N, 7°14'E\n4.63, 7.23" xsd:string
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=ibo
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/nucl1417.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/nucl1417
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Igbo+tribe'+OR+'Igbo+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Igbo:language
property_value: AfPO:0000235 Igbo:people
property_value: AfPO:0000450 "Ala Igbo" xsd:string
property_value: AfPO:0000450 "Ani Igbo" xsd:string
property_value: AfPO:0000450 "Ibo" xsd:string
property_value: AfPO:0000450 "Ndi Igbo" xsd:string
property_value: AfPO:0000452 "nucl1417" xsd:string
property_value: AfPO:0000454 https://bmcevolbiol.biomedcentral.com/articles/10.1186/1471-2148-10-92
property_value: AfPO:0000456 "E1b1a" xsd:string
property_value: AfPO:0000458 "Igbo" xsd:string
property_value: AfPO:0000459 ">34 millions" xsd:string
property_value: AfPO:0000567 "ibo" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/igbo.html
[Term]
id: AfPO:0000088
name: Kikuyu
def: "A Bantu Eastern population with a population size of 5.3 millions" [https://en.wikipedia.org/wiki/Kikuyu_people]
is_a: AfPO:0000369 ! Bantu Eastern
property_value: AfPO:0000089 "Kikuyu\n0°17'S, 36°43'E\n-0.29, 36.72" xsd:string
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=kik
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/kiku1240.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/kiku1240
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Kikuyu+people'+OR+'Kikuyu+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Gikuyu:language
property_value: AfPO:0000235 Kikuyu:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14805
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14959
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15094
property_value: AfPO:0000452 "kiku1240" xsd:string
property_value: AfPO:0000453 "Gikuyu" xsd:string
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "A\nB\nE1b1a\nE1b1b" xsd:string
property_value: AfPO:0000458 "Kikuyu" xsd:string
property_value: AfPO:0000459 "5.3 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "E" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "kik" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/kikuyu.html
[Term]
id: AfPO:0000091
name: Terik
is_a: AfPO:0000199 ! Kalenjin
property_value: AfPO:0000089 "Terik\n0°36'N, 35°E\n0.60, 35.00" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=tec
property_value: AfPO:0000223 https://glottolog.org/resource/languoid/id/teri1244.bigmap.html
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/teri1244
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q='Terik+people'+OR+'Terik+tribe'+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000235 Terik:people
property_value: AfPO:0000458 "Kalenjin" xsd:string
property_value: AfPO:0000566 "teri1244" xsd:string
property_value: AfPO:0000567 "tec" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/terik.html
[Term]
id: AfPO:0000095
name: Anuak
is_a: AfPO:0000198 ! Luo
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Ethiopia ! hasCountryOfOrigin Ethiopia
relationship: HANCESTRO:0308 South:Sudan ! hasCountryOfOrigin South Sudan
property_value: AfPO:0000089 "Anuak\n7°35'N, 34°02'E\n7.58, 34.03" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/22726845
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=anu
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/anua1242.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/anua1242
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Anuak+people'+OR+'Anuak+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Anuak:language
property_value: AfPO:0000235 Anuak:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=11964
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=46701
property_value: AfPO:0000450 "Anyuak" xsd:string
property_value: AfPO:0000450 "Anywaa" xsd:string
property_value: AfPO:0000452 "anua1242" xsd:string
property_value: AfPO:0000458 "Anuak" xsd:string
property_value: AfPO:0000565 "Core" xsd:string
property_value: AfPO:0000565 "Eastern Sudanic" xsd:string
property_value: AfPO:0000565 "Luo" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000565 "Nilotic" xsd:string
property_value: AfPO:0000565 "Northern" xsd:string
property_value: AfPO:0000565 "Satellite-Core" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Western" xsd:string
property_value: AfPO:0000567 "anu" xsd:string
[Term]
id: AfPO:0000098
name: Nandi
def: "A Kalenjin population with a population size of 937,884" [https://en.wikipedia.org/wiki/Nandi_people]
is_a: AfPO:0000199 ! Kalenjin
property_value: AfPO:0000089 "Nandi\n0°48'N, 35°25'E\n0.79, 35.41" xsd:string
property_value: AfPO:0000230 "https://glottolog.org/resource/languoid/id/nand1266" xsd:string
property_value: AfPO:0000230 "https://glottolog.org/resource/languoid/id/nand1266.bigmap.html" xsd:string
property_value: AfPO:0000235 "https://en.wikipedia.org/wiki/Nandi_people" xsd:string
property_value: AfPO:0000452 "nand1266" xsd:string
property_value: AfPO:0000458 "Kalenji" xsd:string
property_value: AfPO:0000458 "Nandi" xsd:string
property_value: AfPO:0000459 "937,884" xsd:string
property_value: AfPO:0000567 "niq" xsd:string
property_value: seeAlso http://www-01.sil.org/iso639-3/documentation.asp?id=niq
[Term]
id: AfPO:0000102
name: Lunda
is_a: AfPO:0000273 ! Bantu Central
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Republic_of_the_Congo ! hasCountryOfOrigin Republic of the Congo
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=lun
property_value: AfPO:0000221 https://glottolog.org/resource/languoid/id/lund1266
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/lund1266.bigmap.html
property_value: AfPO:0000234 Lunda:language
property_value: AfPO:0000235 "https://en.wikipedia.org/wiki/Lunda_people" xsd:string
property_value: AfPO:0000458 "Lunda" xsd:string
property_value: AfPO:0000567 "lun" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/lunda.html
[Term]
id: AfPO:0000103
name: Tsonga
def: "A Bantu Southern population with a population size of 6 millions" [https://en.wikipedia.org/wiki/Tsonga_people]
is_a: AfPO:0000326 ! Bantu Southern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Eswatini ! hasCountryOfOrigin Eswatini
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Mozambique ! hasCountryOfOrigin Mozambique
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Zimbabwe ! hasCountryOfOrigin Zimbabwe
property_value: AfPO:0000089 "Tsonga\n23°35'S, 31°49'E\n-23.58, 31.81" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=tso
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/tson1249.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/tson1249
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Tsonga+people'+OR+'Tsonga+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Tsonga:language
property_value: AfPO:0000235 Tsonga:people
property_value: AfPO:0000450 "Changana" xsd:string
property_value: AfPO:0000450 "Shangana" xsd:string
property_value: AfPO:0000453 "Xitsonga" xsd:string
property_value: AfPO:0000458 "Tsonga" xsd:string
property_value: AfPO:0000459 "6 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "S" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000566 "tson1249" xsd:string
property_value: AfPO:0000567 "tso" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/tsonga.html
[Term]
id: AfPO:0000104
name: Fulani
def: "A Northern African, Central African, Western African, Eastern African population with a population size of 25 millions" [https://en.wikipedia.org/wiki/Fula_people]
is_a: AfPO:0000188 ! Eastern African
is_a: AfPO:0000274 ! Central African
is_a: AfPO:0000275 ! Northern African
is_a: AfPO:0000277 ! Western African
relationship: HANCESTRO:0308 Burkina:Faso ! hasCountryOfOrigin Burkina Faso
relationship: HANCESTRO:0308 Guinea:Bissau ! hasCountryOfOrigin Guinea-Bissau
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Benin ! hasCountryOfOrigin Benin
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Cameroon ! hasCountryOfOrigin Cameroon
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Central_African_Republic ! hasCountryOfOrigin Central African Republic
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Chad ! hasCountryOfOrigin Chad
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Ghana ! hasCountryOfOrigin Ghana
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Guinea ! hasCountryOfOrigin Guinea
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Mali ! hasCountryOfOrigin Mali
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Mauretania ! hasCountryOfOrigin Mauritania
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Niger ! hasCountryOfOrigin Niger
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Nigeria ! hasCountryOfOrigin Nigeria
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Senegal ! hasCountryOfOrigin Senegal
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Togo ! hasCountryOfOrigin Togo
relationship: HANCESTRO:0308 Ivory:Coast ! hasCountryOfOrigin Côte d'Ivoire
relationship: HANCESTRO:0308 Sierra:Leone ! hasCountryOfOrigin Sierra Leone
relationship: HANCESTRO:0308 The:Gambia ! hasCountryOfOrigin The Gambia
property_value: AfPO:0000089 "12°11'N, 12°44'W\n12.18, -12.73" xsd:string
property_value: AfPO:0000089 "Adamawa Fulfulde\n8°08'N, 13°05'E\n8.14, 13.08" xsd:string
property_value: AfPO:0000089 "Bagirmi Fulfulde\n8°49'N, 18°21'E\n8.82, 18.35" xsd:string
property_value: AfPO:0000089 "Borgu Fulfulde\n9°48'N, 3°59'E\n9.80, 3.99" xsd:string
property_value: AfPO:0000089 "Central-Eastern Niger Fulfulde\n15°05'N, 8°26'E\n15.09, 8.43" xsd:string
property_value: AfPO:0000089 "Hausa States Fulfulde\n11°N, 11°07'E\n11.00, 11.12" xsd:string
property_value: AfPO:0000089 "Maasina Fulfulde\n11°08'N, 3°39'W\n11.13, -3.65" xsd:string
property_value: AfPO:0000089 "Pulaar\n13°52'N, 13°27'W\n13.87, -13.45" xsd:string
property_value: AfPO:0000089 "Western Niger Fulfulde\n14°15'N, 0°31'W\n14.25, -0.52" xsd:string
property_value: AfPO:0000152 "https://www.internationalgenome.org/gambian-genome-variation-project/#:~:text=Gambian%20Genome%20Variation%20Project%20aims,variants%20that%20influence%20human%20disease" xsd:anyURI
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/26614524
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=ful
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/fula1264.bigmap.html
property_value: AfPO:0000226 https://doi.org/10.1186/s13073-014-0099-x
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/fula1264
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Fulani+tribe'+OR+'Fulani+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Fula:language
property_value: AfPO:0000235 Fula:people
property_value: AfPO:0000267 topmenu
property_value: AfPO:0000450 "Fula" xsd:string
property_value: AfPO:0000450 "Fulaw" xsd:string
property_value: AfPO:0000450 "Fulɓe" xsd:string
property_value: AfPO:0000450 "Hilani" xsd:string
property_value: AfPO:0000450 "Peul" xsd:string
property_value: AfPO:0000450 "Peulh" xsd:string
property_value: AfPO:0000450 "Pël" xsd:string
property_value: AfPO:0000458 "Fula" xsd:string
property_value: AfPO:0000459 "25 millions" xsd:string
property_value: AfPO:0000565 "Niger–Congo" xsd:string
property_value: AfPO:0000565 "Senegambian" xsd:string
property_value: AfPO:0000566 "fula1264" xsd:string
property_value: AfPO:0000567 "ful – inclusive code – Fulah\nIndividual codes:\nfuc – Pulaar (Senegambia, Mauritania)\nfuf – Pular (Guinea, Sierra Leone)\nffm – Maasina Fulfulde (Mali, Ghana)\nfue – Borgu Fulfulde (Benin, Togo)\nfuh – Western Niger (Burkina, Niger)\nfuq – Central–Eastern Niger (Niger)\nfuv – Nigerian Fulfulde (Nigeria)\nfub – Adamawa Fulfulde (Cameroon, Chad, Sudan)\nfui – Bagirmi Fulfulde (CAR)" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/fulani.html
[Term]
id: AfPO:0000105
name: Yoruba
def: "A Western African population with a population size of 45 millions" [https://en.wikipedia.org/wiki/Yoruba_people]
is_a: AfPO:0000277 ! Western African
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Benin ! hasCountryOfOrigin Benin
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Ghana ! hasCountryOfOrigin Ghana
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Nigeria ! hasCountryOfOrigin Nigeria
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Togo ! hasCountryOfOrigin Togo
relationship: HANCESTRO:0308 Ivory:Coast ! hasCountryOfOrigin Côte d'Ivoire
relationship: HANCESTRO:0308 Sierra:Leone ! hasCountryOfOrigin Sierra Leone
property_value: AfPO:0000089 "Yoruba\n7°09'N, 3°40'E\n7.15, 3.67" xsd:string
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed//
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/15803201/
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/26614524
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/26703842/
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27654912/
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27889059
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=yor
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/yoru1245.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/yoru1245
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Yoruba+tribe'+OR+'Yoruba+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Yoruba:language
property_value: AfPO:0000235 Yoruba:people
property_value: AfPO:0000267 topmenu
property_value: AfPO:0000452 "yoru1245" xsd:string
property_value: AfPO:0000454 https://doi.org/10.1093/molbev/msm155
property_value: AfPO:0000454 https://doi.org/10.1093/molbev/msr291
property_value: AfPO:0000455 https://doi.org/10.1093/molbev/msr291
property_value: AfPO:0000456 "B_M181" xsd:string
property_value: AfPO:0000456 "E1b1a\nB" xsd:string
property_value: AfPO:0000456 "E_M2*" xsd:string
property_value: AfPO:0000456 "E_U174" xsd:string
property_value: AfPO:0000456 "E_U175" xsd:string
property_value: AfPO:0000457 "L1b" xsd:string
property_value: AfPO:0000457 "L1c" xsd:string
property_value: AfPO:0000457 "L2a" xsd:string
property_value: AfPO:0000457 "L3d" xsd:string
property_value: AfPO:0000457 "L3e" xsd:string
property_value: AfPO:0000457 "L3f" xsd:string
property_value: AfPO:0000458 "Yoruba" xsd:string
property_value: AfPO:0000459 "45 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Defoid" xsd:string
property_value: AfPO:0000565 "Edekiri" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000565 "Yoruboid" xsd:string
property_value: AfPO:0000567 "yor" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/yoruba.html
[Term]
id: AfPO:0000107
name: Zaghawa
def: "A Nilotic Central, Nilotic Eastern, Northern African population with a population size of 0.4 million" [https://en.wikipedia.org/wiki/Zaghawa_people]
is_a: AfPO:0000265 ! Nilotic Central
is_a: AfPO:0000275 ! Northern African
is_a: AfPO:0000371 ! Nilotic Eastern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Libya ! hasCountryOfOrigin Libya
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
property_value: AfPO:0000089 "Beria\n17°29'N, 23°28'E\n17.48, 23.46" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/28837655
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=zag
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/zagh1240.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/zagh1240
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Zaghawa+people'+OR+'Zaghawa+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Zaghawa:language
property_value: AfPO:0000235 Zaghawa:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=11470
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=11851
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=42863
property_value: AfPO:0000452 "zagh1240" xsd:string
property_value: AfPO:0000453 "Beria" xsd:string
property_value: AfPO:0000458 "Zaghawa" xsd:string
property_value: AfPO:0000459 "0.4 million" xsd:string
property_value: AfPO:0000565 "Eastern" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000565 "Saharan" xsd:string
property_value: AfPO:0000567 "zag" xsd:string
[Term]
id: AfPO:0000109
name: Tugen
def: "A Kalenjin population with a population size of 197556" [https://en.wikipedia.org/wiki/Tugen_people]
is_a: AfPO:0000199 ! Kalenjin
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=tuy
property_value: AfPO:0000223 https://glottolog.org/resource/languoid/id/tuge1241.bigmap.html
property_value: AfPO:0000223 "Tugen\n0°40'N, 35°51'E\n0.67, 35.85" xsd:string
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/tuge1241
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q='Tugen+people'+OR+'Tugen+tribe'+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000235 Tugen:people
property_value: AfPO:0000458 "Kalenjin" xsd:string
property_value: AfPO:0000459 "197556" xsd:integer
property_value: AfPO:0000566 "tuge1241" xsd:string
property_value: AfPO:0000567 "tuy" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/tugen.html
[Term]
id: AfPO:0000112
name: Meru
def: "A Bantu Eastern population with a population size of 2.7 Millions" [https://en.wikipedia.org/wiki/Meru_people]
is_a: AfPO:0000369 ! Bantu Eastern
property_value: AfPO:0000089 "Meru\n0°16'N, 37°44'E\n0.26, 37.74" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=mer
property_value: AfPO:0000223 https://glottolog.org/resource/languoid/id/meru1245.bigmap.html
property_value: AfPO:0000230 https://glottolog.org/resource/languoid/id/meru1245
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Meru+people'+OR+'Meru+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Meru:language
property_value: AfPO:0000235 Meru:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14827
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=14993
property_value: AfPO:0000450 "Ameru" xsd:string
property_value: AfPO:0000450 "Amîîrú" xsd:string
property_value: AfPO:0000450 "Ngaa" xsd:string
property_value: AfPO:0000452 "meru1245" xsd:string
property_value: AfPO:0000453 "Kimîîru or Kimeru" xsd:string
property_value: AfPO:0000458 "Meru" xsd:string
property_value: AfPO:0000459 "2.7 Millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "E" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000567 "mer" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/meru.html
[Term]
id: AfPO:0000113
name: Oromo
def: "A Cushitic Eastern population with a population size of 40 millions" [https://en.wikipedia.org/wiki/Oromo_people]
is_a: AfPO:0000269 ! Cushitic Eastern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Ethiopia ! hasCountryOfOrigin Ethiopia
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Kenya ! hasCountryOfOrigin Kenya
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
property_value: AfPO:0000089 "Borana-Arsi-Guji Oromo\n1°03'N, 37°53'E\n1.06, 37.88" xsd:string
property_value: AfPO:0000089 "Eastern Oromo\n8°40'N, 41°26'E\n8.67, 41.44" xsd:string
property_value: AfPO:0000089 "Orma\n1°48'S, 39°36'E\n-1.79, 39.61" xsd:string
property_value: AfPO:0000089 "Waata\n0°33'N, 37°51'E\n0.56, 37.86" xsd:string
property_value: AfPO:0000089 "West Central Oromo\n8°49'N, 36°44'E\n8.81, 36.74" xsd:string
property_value: AfPO:0000152 https://www.nature.com/articles/5201408
property_value: AfPO:0000152 https://www.nature.com/articles/nature13997
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4457944/
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/22726845
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/26614524
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27889059
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=orm
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/nucl1736.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/nucl1736
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Oromo+people'+OR+'Oromo+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Oromo:language
property_value: AfPO:0000235 Oromo:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/ClusterDetails.aspx?rop2=C0164
property_value: AfPO:0000452 "nucl1736" xsd:string
property_value: AfPO:0000454 https://doi.org/10.1002/ajpa.20876
property_value: AfPO:0000455 https://doi.org/10.1016/j.ajhg.2015.04.019
property_value: AfPO:0000456 "A\nB\nE1b1b\nE2\nJ\nT" xsd:string
property_value: AfPO:0000457 "L0\nL2\nL3\nL5\nL6\nM\nN\nHV\nT\nU" xsd:string
property_value: AfPO:0000458 "Oromo" xsd:string
property_value: AfPO:0000459 "40 millions" xsd:string
property_value: AfPO:0000565 "Afro-Asiatic" xsd:string
property_value: AfPO:0000565 "Cushitic" xsd:string
property_value: AfPO:0000565 "East" xsd:string
property_value: AfPO:0000565 "Oromo" xsd:string
property_value: AfPO:0000567 "orm" xsd:string
property_value: AfPO:0000567 "Oromo language is divided into five languages in the ISO 639-3 listing:\n[gax] – Borana–Arsi–Guji–Walagaa Oromo\n[hae] – Eastern Oromo\n[orc] – Orma\n[gaz] – West Central Oromo\n[ssn] – Waata" xsd:string
[Term]
id: AfPO:0000115
name: Fur
def: "A Nilotic Eastern population with a population size of 1 million" [https://en.wikipedia.org/wiki/Fur_people]
is_a: AfPO:0000371 ! Nilotic Eastern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
property_value: AfPO:0000089 "Fur\n12°03'N, 23°38'E\n12.05, 23.64" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=fvr
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/furr1244.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/furr1244
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Fur+people'+OR+'Fur+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Fur:language
property_value: AfPO:0000235 Fur:people
property_value: AfPO:0000454 https://doi.org/10.1002/ajpa.20876
property_value: AfPO:0000456 "A\nB\nE1b1b\nJ" xsd:string
property_value: AfPO:0000458 "Fur" xsd:string
property_value: AfPO:0000459 "1 million" xsd:string
property_value: AfPO:0000565 "Eastern Sudanic" xsd:string
property_value: AfPO:0000565 "Nilo-Saharan" xsd:string
property_value: AfPO:0000566 "furr1244" xsd:string
property_value: AfPO:0000567 "fvr" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/fur.html
[Term]
id: AfPO:0000116
name: Xhosa
def: "A Nguni population with a population size of 7.9 millions" [https://en.wikipedia.org/wiki/Xhosa_people]
is_a: AfPO:0000340 ! Nguni
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Zimbabwe ! hasCountryOfOrigin Zimbabwe
property_value: AfPO:0000089 "Xhosa\n31°02'S, 28°05'E\n-31.04, 28.08" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=xho
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/xhos1239.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/xhos1239
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Xhosa+people'+OR+'Xhosa+tribe'+%29+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Xhosa:language
property_value: AfPO:0000235 Xhosa:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15266
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15284
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15549
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15685
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "A\nB\nE1b1a\nE1b1b\nE2" xsd:string
property_value: AfPO:0000458 "Xhosa" xsd:string
property_value: AfPO:0000459 "7.9 millions" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Bantoid" xsd:string
property_value: AfPO:0000565 "Benue-Congo" xsd:string
property_value: AfPO:0000565 "Central" xsd:string
property_value: AfPO:0000565 "Narrow Bantu" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "S" xsd:string
property_value: AfPO:0000565 "Southern" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000566 "xhos1239" xsd:string
property_value: AfPO:0000567 "xho" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/xhosa.html
[Term]
id: AfPO:0000121
name: Minianka
def: "A Senufo population with a population size of 0.74 million" [https://fr.wikipedia.org/wiki/Minianka_(peuple)]
is_a: AfPO:0000201 ! Senufo
property_value: AfPO:0000089 "Mamara Senoufo\n12°29'N, 5°17'W\n12.49, -5.28" xsd:string
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=myk
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/mama1271.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/mama1271
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q='Minianka+people'+OR+'Minianka+tribe'+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Minyanka:language
property_value: AfPO:0000235 Minianka:(peuple)
property_value: AfPO:0000452 "mama1271" xsd:string
property_value: AfPO:0000453 "Minyanka, Mamara, Miniyanka, Minya, Mianka, or Tupiire" xsd:string
property_value: AfPO:0000458 "Minianka" xsd:string
property_value: AfPO:0000459 "0.74 million" xsd:string
property_value: AfPO:0000565 "Atlantic-Congo" xsd:string
property_value: AfPO:0000565 "Dagaari" xsd:string
property_value: AfPO:0000565 "Dagaari-Birifor" xsd:string
property_value: AfPO:0000565 "Gur" xsd:string
property_value: AfPO:0000565 "Kirma-Tyurama" xsd:string
property_value: AfPO:0000565 "Niger-Congo" xsd:string
property_value: AfPO:0000565 "North" xsd:string
property_value: AfPO:0000565 "Senufo" xsd:string
property_value: AfPO:0000565 "Southeast" xsd:string
property_value: AfPO:0000565 "Suppire-Mamara" xsd:string
property_value: AfPO:0000565 "Volta-Congo" xsd:string
property_value: AfPO:0000565 "Western" xsd:string
property_value: AfPO:0000567 "myk" xsd:string
[Term]
id: AfPO:0000123
name: Herero
is_a: AfPO:0000326 ! Bantu Southern
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Angola ! hasCountryOfOrigin Angola
property_value: AfPO:0000089 "Herero\n21°01'S, 20°34'E\n-21.02, 20.57" xsd:string
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/27654912/
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=her
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/here1253.bigmap.html
property_value: AfPO:0000226 https://doi.org/10.1186/s13059-018-1616-9
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/here1253
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q='Herero+tribe'+OR+'Herero+people'+AND+'Africa'" xsd:anyURI
property_value: AfPO:0000234 Herero:language
property_value: AfPO:0000235 Herero:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15160
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15224
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/GroupDetails.aspx?peid=15444
property_value: AfPO:0000450 "Ovaherero / Dama / Damara" xsd:string
property_value: AfPO:0000452 "here1253" xsd:string
property_value: AfPO:0000454 https://www.nature.com/articles/5201408
property_value: AfPO:0000456 "E1a\nE1b1a\nR1b" xsd:string
property_value: AfPO:0000458 "Herero" xsd:string
property_value: AfPO:0000565 "Bantu" xsd:string
property_value: AfPO:0000565 "Niger–Congo" xsd:string
property_value: AfPO:0000567 "her" xsd:string
property_value: AfPO:0000568 https://www.101lasttribes.com/tribes/herero.html
[Term]
id: AfPO:0000125
name: Hausa
def: "A Western African, Eastern African population with a population size of 90 millions" [https://en.wikipedia.org/wiki/Hausa_people]
is_a: AfPO:0000188 ! Eastern African
is_a: AfPO:0000277 ! Western African
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Benin ! hasCountryOfOrigin Benin
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Cameroon ! hasCountryOfOrigin Cameroon
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Chad ! hasCountryOfOrigin Chad
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Ghana ! hasCountryOfOrigin Ghana
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Niger ! hasCountryOfOrigin Niger
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Nigeria ! hasCountryOfOrigin Nigeria
relationship: HANCESTRO:0308 http://dbpedia.org/resource/Sudan ! hasCountryOfOrigin Sudan
property_value: AfPO:0000089 "Hausa\n11°09'N, 8°47'E\n11.15, 8.78" xsd:string
property_value: AfPO:0000152 https://doi.org/10.1098/rspb.2012.0318
property_value: AfPO:0000152 https://www.ncbi.nlm.nih.gov/pubmed/28837655
property_value: AfPO:0000221 http://www-01.sil.org/iso639-3/documentation.asp?id=hau
property_value: AfPO:0000223 http://glottolog.org/resource/languoid/id/haus1257.bigmap.html
property_value: AfPO:0000230 http://glottolog.org/resource/languoid/id/haus1257
property_value: AfPO:0000233 "https://www.google.com/search?tbm=bks&hl=fr&q=%28+'Hausa+tribe'+OR+'Hausa+people'%29+AND+%28+'Africa'%29" xsd:anyURI
property_value: AfPO:0000234 Hausa:language
property_value: AfPO:0000235 Hausa:people
property_value: AfPO:0000267 https://www.peoplegroups.org/explore/ClusterDetails.aspx?rop2=C0090
property_value: AfPO:0000450 "Ausa" xsd:string