-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample-data.ttl
4333 lines (3465 loc) · 207 KB
/
sample-data.ttl
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
@prefix ns1: <http://vivoweb.org/ontology/core#> .
@prefix ns2: <http://purl.org/ontology/bibo/> .
@prefix ns3: <http://www.w3.org/2006/vcard/ns#> .
@prefix ns4: <http://purl.obolibrary.org/obo/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://vivo.mydomain.edu/individual/authorship1067974> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub4878158>,
<http://vivo.mydomain.edu/individual/work7984554> .
<http://vivo.mydomain.edu/individual/authorship1143309> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work9631662> .
<http://vivo.mydomain.edu/individual/authorship1167252> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8703060>,
<http://vivo.mydomain.edu/individual/work5996528> .
<http://vivo.mydomain.edu/individual/authorship1169666> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work8196023> .
<http://vivo.mydomain.edu/individual/authorship1229490> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work9971865> .
<http://vivo.mydomain.edu/individual/authorship1265451> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work7505167> .
<http://vivo.mydomain.edu/individual/authorship1281137> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work7405404> .
<http://vivo.mydomain.edu/individual/authorship1304491> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work4021285> .
<http://vivo.mydomain.edu/individual/authorship1312634> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub3531265>,
<http://vivo.mydomain.edu/individual/work3373518> .
<http://vivo.mydomain.edu/individual/authorship1315976> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work9216021> .
<http://vivo.mydomain.edu/individual/authorship1327948> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work4021285> .
<http://vivo.mydomain.edu/individual/authorship1355490> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work4326785> .
<http://vivo.mydomain.edu/individual/authorship1358572> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub3744650>,
<http://vivo.mydomain.edu/individual/work3636219> .
<http://vivo.mydomain.edu/individual/authorship1359404> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8815494>,
<http://vivo.mydomain.edu/individual/work7401686> .
<http://vivo.mydomain.edu/individual/authorship1360535> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work7984554> .
<http://vivo.mydomain.edu/individual/authorship1377851> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7593398>,
<http://vivo.mydomain.edu/individual/work4719860> .
<http://vivo.mydomain.edu/individual/authorship1387870> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work1130484> .
<http://vivo.mydomain.edu/individual/authorship1389671> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work4326785> .
<http://vivo.mydomain.edu/individual/authorship1396675> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work4537121> .
<http://vivo.mydomain.edu/individual/authorship1399140> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub4705800>,
<http://vivo.mydomain.edu/individual/work9631662> .
<http://vivo.mydomain.edu/individual/authorship1424653> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work7390419> .
<http://vivo.mydomain.edu/individual/authorship1472596> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub6463903>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship1476278> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work6556548> .
<http://vivo.mydomain.edu/individual/authorship1513055> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work7401686> .
<http://vivo.mydomain.edu/individual/authorship1559664> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7416333>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship1566405> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work3758264> .
<http://vivo.mydomain.edu/individual/authorship1568131> a ns1:Authorship ;
ns1:rank 7 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work3758264> .
<http://vivo.mydomain.edu/individual/authorship1595555> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship1610555> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work5161369> .
<http://vivo.mydomain.edu/individual/authorship1663814> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship1670090> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work6730814> .
<http://vivo.mydomain.edu/individual/authorship1673977> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub6605147>,
<http://vivo.mydomain.edu/individual/work8310832> .
<http://vivo.mydomain.edu/individual/authorship1684046> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work3167861> .
<http://vivo.mydomain.edu/individual/authorship1750018> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub5942375>,
<http://vivo.mydomain.edu/individual/work9971865> .
<http://vivo.mydomain.edu/individual/authorship1866719> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work9312952> .
<http://vivo.mydomain.edu/individual/authorship1870568> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work7525418> .
<http://vivo.mydomain.edu/individual/authorship1877421> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work4537121> .
<http://vivo.mydomain.edu/individual/authorship1934936> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work6730814> .
<http://vivo.mydomain.edu/individual/authorship2061233> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work4608395> .
<http://vivo.mydomain.edu/individual/authorship2109624> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7790505>,
<http://vivo.mydomain.edu/individual/work4780467> .
<http://vivo.mydomain.edu/individual/authorship2118483> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work8209067> .
<http://vivo.mydomain.edu/individual/authorship2142400> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work1050709> .
<http://vivo.mydomain.edu/individual/authorship2142603> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work9698941> .
<http://vivo.mydomain.edu/individual/authorship2269299> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work9658838> .
<http://vivo.mydomain.edu/individual/authorship2330200> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work2451683> .
<http://vivo.mydomain.edu/individual/authorship2334191> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work3758264> .
<http://vivo.mydomain.edu/individual/authorship2411035> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work1207900> .
<http://vivo.mydomain.edu/individual/authorship2458226> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1626903> .
<http://vivo.mydomain.edu/individual/authorship2508269> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work8822408> .
<http://vivo.mydomain.edu/individual/authorship2558431> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship2559114> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work8017764> .
<http://vivo.mydomain.edu/individual/authorship2565218> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work7401686> .
<http://vivo.mydomain.edu/individual/authorship2589475> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work2864792> .
<http://vivo.mydomain.edu/individual/authorship2613445> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work4719860> .
<http://vivo.mydomain.edu/individual/authorship2643531> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work7505167> .
<http://vivo.mydomain.edu/individual/authorship2671322> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work4780467> .
<http://vivo.mydomain.edu/individual/authorship2685382> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work7505167> .
<http://vivo.mydomain.edu/individual/authorship2690197> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work8017764> .
<http://vivo.mydomain.edu/individual/authorship2708246> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7929020>,
<http://vivo.mydomain.edu/individual/work1050709> .
<http://vivo.mydomain.edu/individual/authorship2816687> a ns1:Authorship ;
ns1:rank 7 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work7405404> .
<http://vivo.mydomain.edu/individual/authorship2843556> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work4537121> .
<http://vivo.mydomain.edu/individual/authorship2874639> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work1497465> .
<http://vivo.mydomain.edu/individual/authorship2959683> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work5161369> .
<http://vivo.mydomain.edu/individual/authorship2998507> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work7405404> .
<http://vivo.mydomain.edu/individual/authorship3098774> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8507051>,
<http://vivo.mydomain.edu/individual/work2729250> .
<http://vivo.mydomain.edu/individual/authorship3119621> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work8196023> .
<http://vivo.mydomain.edu/individual/authorship3133226> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work1130484> .
<http://vivo.mydomain.edu/individual/authorship3146808> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work7390419> .
<http://vivo.mydomain.edu/individual/authorship3279934> a ns1:Authorship ;
ns1:rank 8 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship3291509> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub2810842>,
<http://vivo.mydomain.edu/individual/work9312952> .
<http://vivo.mydomain.edu/individual/authorship3296894> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work4630090> .
<http://vivo.mydomain.edu/individual/authorship3314935> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work3636219> .
<http://vivo.mydomain.edu/individual/authorship3342664> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work9216021> .
<http://vivo.mydomain.edu/individual/authorship3442461> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work8822408> .
<http://vivo.mydomain.edu/individual/authorship3509031> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work5194932> .
<http://vivo.mydomain.edu/individual/authorship3542858> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work9216021> .
<http://vivo.mydomain.edu/individual/authorship3544930> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work5821198> .
<http://vivo.mydomain.edu/individual/authorship3552053> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work8017764> .
<http://vivo.mydomain.edu/individual/authorship3556753> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work9312952> .
<http://vivo.mydomain.edu/individual/authorship3673085> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work4326785> .
<http://vivo.mydomain.edu/individual/authorship3678616> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship3781395> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work7984554> .
<http://vivo.mydomain.edu/individual/authorship3807187> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work1340858> .
<http://vivo.mydomain.edu/individual/authorship3844741> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9708487>,
<http://vivo.mydomain.edu/individual/work9658838> .
<http://vivo.mydomain.edu/individual/authorship3960194> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1497465> .
<http://vivo.mydomain.edu/individual/authorship3963521> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work9287221> .
<http://vivo.mydomain.edu/individual/authorship3992826> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship4042059> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work9698941> .
<http://vivo.mydomain.edu/individual/authorship4055082> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work2729250> .
<http://vivo.mydomain.edu/individual/authorship4080489> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work8196023> .
<http://vivo.mydomain.edu/individual/authorship4091043> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship4116421> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work2261063> .
<http://vivo.mydomain.edu/individual/authorship4138203> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work1497465> .
<http://vivo.mydomain.edu/individual/authorship4196380> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work3167861> .
<http://vivo.mydomain.edu/individual/authorship4216790> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work6332727> .
<http://vivo.mydomain.edu/individual/authorship4259352> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub5937977>,
<http://vivo.mydomain.edu/individual/work2451683> .
<http://vivo.mydomain.edu/individual/authorship4294992> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship4296330> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7387522>,
<http://vivo.mydomain.edu/individual/work8209067> .
<http://vivo.mydomain.edu/individual/authorship4319389> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work3167861> .
<http://vivo.mydomain.edu/individual/authorship4326539> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work7390419> .
<http://vivo.mydomain.edu/individual/authorship4331377> a ns1:Authorship ;
ns1:rank 7 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship4375423> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8485807>,
<http://vivo.mydomain.edu/individual/work6959373> .
<http://vivo.mydomain.edu/individual/authorship4400606> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9050679>,
<http://vivo.mydomain.edu/individual/work4326785> .
<http://vivo.mydomain.edu/individual/authorship4429368> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9208899>,
<http://vivo.mydomain.edu/individual/work4630090> .
<http://vivo.mydomain.edu/individual/authorship4495440> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work9631662> .
<http://vivo.mydomain.edu/individual/authorship4497257> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8062793>,
<http://vivo.mydomain.edu/individual/work5161369> .
<http://vivo.mydomain.edu/individual/authorship4511786> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9823320>,
<http://vivo.mydomain.edu/individual/work8822408> .
<http://vivo.mydomain.edu/individual/authorship4531056> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work2261063> .
<http://vivo.mydomain.edu/individual/authorship4539667> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work8196023> .
<http://vivo.mydomain.edu/individual/authorship4551409> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work4123712> .
<http://vivo.mydomain.edu/individual/authorship4633051> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1207900> .
<http://vivo.mydomain.edu/individual/authorship4673162> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work9216021> .
<http://vivo.mydomain.edu/individual/authorship4734676> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work1626903> .
<http://vivo.mydomain.edu/individual/authorship4746079> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub6035675>,
<http://vivo.mydomain.edu/individual/work6556548> .
<http://vivo.mydomain.edu/individual/authorship4790463> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub5581153>,
<http://vivo.mydomain.edu/individual/work4021285> .
<http://vivo.mydomain.edu/individual/authorship4868542> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work2629644> .
<http://vivo.mydomain.edu/individual/authorship4901294> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9845661>,
<http://vivo.mydomain.edu/individual/work1207900> .
<http://vivo.mydomain.edu/individual/authorship4906163> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work6959373> .
<http://vivo.mydomain.edu/individual/authorship4932402> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work8310832> .
<http://vivo.mydomain.edu/individual/authorship4993348> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work8310832> .
<http://vivo.mydomain.edu/individual/authorship5059322> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship5101340> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work2451683> .
<http://vivo.mydomain.edu/individual/authorship5113518> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work4123712> .
<http://vivo.mydomain.edu/individual/authorship5142844> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work3167861> .
<http://vivo.mydomain.edu/individual/authorship5157055> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub6365034>,
<http://vivo.mydomain.edu/individual/work4537121> .
<http://vivo.mydomain.edu/individual/authorship5187185> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship5318912> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work4537121> .
<http://vivo.mydomain.edu/individual/authorship5352277> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work1340858> .
<http://vivo.mydomain.edu/individual/authorship5369224> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub2740331>,
<http://vivo.mydomain.edu/individual/work6332727> .
<http://vivo.mydomain.edu/individual/authorship5433073> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work4326785> .
<http://vivo.mydomain.edu/individual/authorship5447071> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub4053148>,
<http://vivo.mydomain.edu/individual/work1130484> .
<http://vivo.mydomain.edu/individual/authorship5448694> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work1050709> .
<http://vivo.mydomain.edu/individual/authorship5469785> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work1207900> .
<http://vivo.mydomain.edu/individual/authorship5471408> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work4021285> .
<http://vivo.mydomain.edu/individual/authorship5475689> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1050709> .
<http://vivo.mydomain.edu/individual/authorship5510500> a ns1:Authorship ;
ns1:rank 7 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub7428991>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship5546921> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub6159233>,
<http://vivo.mydomain.edu/individual/work1340858> .
<http://vivo.mydomain.edu/individual/authorship5556489> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work1340858> .
<http://vivo.mydomain.edu/individual/authorship5673117> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work9971865> .
<http://vivo.mydomain.edu/individual/authorship5701881> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work7401686> .
<http://vivo.mydomain.edu/individual/authorship5730979> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work9287221> .
<http://vivo.mydomain.edu/individual/authorship5738840> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub5094064>,
<http://vivo.mydomain.edu/individual/work4608395> .
<http://vivo.mydomain.edu/individual/authorship5801065> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work1998422> .
<http://vivo.mydomain.edu/individual/authorship6039096> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work2261063> .
<http://vivo.mydomain.edu/individual/authorship6042861> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work7405404> .
<http://vivo.mydomain.edu/individual/authorship6109699> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work5161369> .
<http://vivo.mydomain.edu/individual/authorship6281063> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work2261063> .
<http://vivo.mydomain.edu/individual/authorship6307739> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work5996528> .
<http://vivo.mydomain.edu/individual/authorship6337424> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub4672617>,
<http://vivo.mydomain.edu/individual/work5194932> .
<http://vivo.mydomain.edu/individual/authorship6340610> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work5194932> .
<http://vivo.mydomain.edu/individual/authorship6344205> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1130484> .
<http://vivo.mydomain.edu/individual/authorship6443704> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work7984554> .
<http://vivo.mydomain.edu/individual/authorship6448107> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub2804763>,
<http://vivo.mydomain.edu/individual/work9287221> .
<http://vivo.mydomain.edu/individual/authorship6501522> a ns1:Authorship ;
ns1:rank 8 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship6536021> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work8017764> .
<http://vivo.mydomain.edu/individual/authorship6563423> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9787289>,
<http://vivo.mydomain.edu/individual/work9216021> .
<http://vivo.mydomain.edu/individual/authorship6583774> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work2729250> .
<http://vivo.mydomain.edu/individual/authorship6592326> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship6776561> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub8592150>,
<http://vivo.mydomain.edu/individual/work9698941> .
<http://vivo.mydomain.edu/individual/authorship6845281> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work9312952> .
<http://vivo.mydomain.edu/individual/authorship6854508> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work7401686> .
<http://vivo.mydomain.edu/individual/authorship6875125> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship6892995> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub1618541>,
<http://vivo.mydomain.edu/individual/work7525418> .
<http://vivo.mydomain.edu/individual/authorship6916303> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work4162104> .
<http://vivo.mydomain.edu/individual/authorship6942690> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship7026292> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work7998457> .
<http://vivo.mydomain.edu/individual/authorship7041783> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work6249231> .
<http://vivo.mydomain.edu/individual/authorship7046932> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work3373518> .
<http://vivo.mydomain.edu/individual/authorship7089698> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work5821198> .
<http://vivo.mydomain.edu/individual/authorship7102488> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work3758264> .
<http://vivo.mydomain.edu/individual/authorship7103174> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person4145576>,
<http://vivo.mydomain.edu/individual/work4162104> .
<http://vivo.mydomain.edu/individual/authorship7201503> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6871953>,
<http://vivo.mydomain.edu/individual/work6730814> .
<http://vivo.mydomain.edu/individual/authorship7203496> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work2629644> .
<http://vivo.mydomain.edu/individual/authorship7210895> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work4608395> .
<http://vivo.mydomain.edu/individual/authorship7257925> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work1130484> .
<http://vivo.mydomain.edu/individual/authorship7379233> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work8196023> .
<http://vivo.mydomain.edu/individual/authorship7394690> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work4123712> .
<http://vivo.mydomain.edu/individual/authorship7442622> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub9734051>,
<http://vivo.mydomain.edu/individual/work3167861> .
<http://vivo.mydomain.edu/individual/authorship7477647> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work1998422> .
<http://vivo.mydomain.edu/individual/authorship7479879> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work3373518> .
<http://vivo.mydomain.edu/individual/authorship7501688> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship7508021> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2421618>,
<http://vivo.mydomain.edu/individual/work1998422> .
<http://vivo.mydomain.edu/individual/authorship7565351> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person6593879>,
<http://vivo.mydomain.edu/individual/work2126988> .
<http://vivo.mydomain.edu/individual/authorship7668179> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub4522073>,
<http://vivo.mydomain.edu/individual/work7390419> .
<http://vivo.mydomain.edu/individual/authorship7741593> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work2864792> .
<http://vivo.mydomain.edu/individual/authorship7756167> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work5996528> .
<http://vivo.mydomain.edu/individual/authorship7758043> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work7405404> .
<http://vivo.mydomain.edu/individual/authorship7796135> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5317456>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship7824239> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work4162104> .
<http://vivo.mydomain.edu/individual/authorship7832275> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work6249231> .
<http://vivo.mydomain.edu/individual/authorship7863618> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2581676>,
<http://vivo.mydomain.edu/individual/work3373518> .
<http://vivo.mydomain.edu/individual/authorship7971071> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2863129>,
<http://vivo.mydomain.edu/individual/work6455494> .
<http://vivo.mydomain.edu/individual/authorship7971407> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://vivo.mydomain.edu/individual/person2648189>,
<http://vivo.mydomain.edu/individual/work7505167> .
<http://vivo.mydomain.edu/individual/authorship7988481> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work9631662> .
<http://vivo.mydomain.edu/individual/authorship8016457> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person5939736>,
<http://vivo.mydomain.edu/individual/work9658838> .
<http://vivo.mydomain.edu/individual/authorship8036920> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://vivo.mydomain.edu/individual/person9712706>,
<http://vivo.mydomain.edu/individual/work3636219> .
<http://vivo.mydomain.edu/individual/authorship8079495> a ns1:Authorship ;
ns1:rank 9 ;
ns1:relates <http://vivo.mydomain.edu/individual/stub1846931>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship8081586> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://vivo.mydomain.edu/individual/person1095004>,
<http://vivo.mydomain.edu/individual/work1517345> .
<http://vivo.mydomain.edu/individual/authorship8130345> a ns1:Authorship ;