-
Notifications
You must be signed in to change notification settings - Fork 2
/
figshare.rdf
1043 lines (868 loc) · 61.5 KB
/
figshare.rdf
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://www.w3.org/2006/vcard/ns#> .
@prefix ns3: <http://purl.obolibrary.org/obo/> .
@prefix ns4: <http://purl.org/ontology/bibo/> .
@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://openvivo.org/a/doi10.6084/m9.figshare.6411092-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6411092>,
<http://openvivo.org/a/orcid0000-0001-9770-7640> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6429086-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6429086>,
<http://openvivo.org/a/orcid0000-0001-9770-7640> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6463277-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6463277>,
<http://openvivo.org/a/orcid0000-0001-5156-4621> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/orcid0000-0001-5156-4621> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/vcardcannon--lamont--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/orcid0000-0003-2499-7741> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship4> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/orcid0000-0002-7908-1987> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship5> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/vcardJohns--Erica--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship6> a ns1:Authorship ;
ns1:rank 6 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/vcardStott--Don--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-authorship7> a ns1:Authorship ;
ns1:rank 7 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465149>,
<http://openvivo.org/a/vcardMayernik--Matthew--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465161-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465161>,
<http://openvivo.org/a/orcid0000-0001-5156-4621> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465161-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6465161>,
<http://openvivo.org/a/orcid0000-0002-8318-4225> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6477899>,
<http://openvivo.org/a/orcid0000-0002-8229-0392> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6477899>,
<http://openvivo.org/a/orcid0000-0001-8436-5346> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6477899>,
<http://openvivo.org/a/vcardorcid.org/0000-0002-8783-0036----> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6478586-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6478586>,
<http://openvivo.org/a/orcid0000-0003-1762-5202> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480368-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6480368>,
<http://openvivo.org/a/orcid0000-0002-1304-8447> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480380-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6480380>,
<http://openvivo.org/a/orcid0000-0002-1304-8447> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480380-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6480380>,
<http://openvivo.org/a/orcid0000-0002-6151-8423> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6582986-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6582986>,
<http://openvivo.org/a/orcid0000-0002-7908-1987> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6583547-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6583547>,
<http://openvivo.org/a/orcid0000-0002-7908-1987> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6790739-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6790739>,
<http://openvivo.org/a/orcid0000-0003-2786-5234> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819722>,
<http://openvivo.org/a/orcid0000-0003-2499-7741> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819722>,
<http://openvivo.org/a/vcardKasprzik--Anna--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819722>,
<http://openvivo.org/a/vcardWalther--Tatiana--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819971>,
<http://openvivo.org/a/vcardIjaz-Ahmad--Qazi-Asim-> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819971>,
<http://openvivo.org/a/vcardBarber--Martin--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819971>,
<http://openvivo.org/a/orcid0000-0003-2499-7741> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819992-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819992>,
<http://openvivo.org/a/vcardKibbe--Warren--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819992-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6819992>,
<http://openvivo.org/a/vcardhttp://orcid.org/0000-0001-5622-7659----> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820079-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6820079>,
<http://openvivo.org/a/orcid0000-0002-2487-2554> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820187-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6820187>,
<http://openvivo.org/a/orcid0000-0002-0302-2761> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6820217>,
<http://openvivo.org/a/orcid0000-0003-2499-7741> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6820217>,
<http://openvivo.org/a/orcid0000-0001-8530-8917> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6820217>,
<http://openvivo.org/a/vcardWalther--Tatiana--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822437-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6822437>,
<http://openvivo.org/a/vcardMangiafico--Peter--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822446-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6822446>,
<http://openvivo.org/a/vcardErdmann--Chris--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822446-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6822446>,
<http://openvivo.org/a/vcardVision--Todd--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-authorship1> a ns1:Authorship ;
ns1:rank 1 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6843818>,
<http://openvivo.org/a/orcid0000-0002-2127-1892> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-authorship2> a ns1:Authorship ;
ns1:rank 2 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6843818>,
<http://openvivo.org/a/vcardPico--Alexander--> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-authorship3> a ns1:Authorship ;
ns1:rank 3 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6843818>,
<http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-authorship4> a ns1:Authorship ;
ns1:rank 4 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6843818>,
<http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-authorship5> a ns1:Authorship ;
ns1:rank 5 ;
ns1:relates <http://openvivo.org/a/doi10.6084/m9.figshare.6843818>,
<http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6411092-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6411092> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6411092-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6411092-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Scholars_Cornell_A_Journey_from_Data_in_Peace_to_Data_in_Use/6411092"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6429086-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6429086> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6429086-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6429086-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Uberization_Module_A_life_saver_for_the_manually_entered_dirt_citation_data_in_faculty_reporting_tool/6429086"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6463277-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6463277> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6463277-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6463277-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/SHACL_Present_pptx/6463277"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6465149> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6465149-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465149-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/User_perceptions_feedback_and_stories_pdf/6465149"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465161-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6465161> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6465161-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465161-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/VIVO_Community_Development_Aligning_Efforts_pdf/6465161"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6477899> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6477899-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/VIVO_Research_Analytics_Platform_Global_Data_Meets_Local_Demands/6477899"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6478586-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6478586> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6478586-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6478586-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Building_a_Nimble_User_Interface_for_VIVO/6478586"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480368-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6480368> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6480368-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480368-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/2018_VIVO_Progress_Report/6480368"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480380-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6480380> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6480380-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480380-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/In_Search_of_the_Golden_Query_Dimensions_and_VIVO/6480380"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6582986-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6582986> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6582986-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6582986-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Two_ways_to_integrate_Publons_peer_review_data_in_VIVO/6582986"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6583547-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6583547> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6583547-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6583547-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Integrating_peer_review_activities_into_VIVO_profiles_using_Publons/6583547"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6790739-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6790739> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6790739-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6790739-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/VIVO_-_Research_Engagement_Impact_pdf/6790739"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6819722> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6819722-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/VIVO-DE_Collaborative_ontology_editing_management_with_VoCol/6819722"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6819971> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6819971-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/VIVO_Conference_2018_BSI-IT-Security_pdf/6819971"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819992-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6819992> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6819992-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819992-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Scientific_Publication_Data_Sharing_Learning_Health_and_Incentives/6819992"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820079-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6820079> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6820079-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820079-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Scholars-ORCID_Connection_pptx/6820079"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820187-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6820187> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6820187-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820187-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/New_Partnerships_New_Practices/6820187"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6820217> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6820217-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Challenges_and_opportunities_of_using_VIVO_as_a_reporting_tool/6820217"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822437-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6822437> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6822437-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822437-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Stanford_RIALTO_-_VIVO_June_2018_pptx/6822437"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822446-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6822446> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6822446-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822446-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/Community_approaches_to_open_data_at_scale/6822446"^^xsd:anyURI .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-vcard> a ns2:Kind ;
ns3:ARG_2000029 <http://openvivo.org/a/doi10.6084/m9.figshare.6843818> ;
ns2:hasURL <http://openvivo.org/a/doi10.6084/m9.figshare.6843818-vcard-figshare> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818-vcard-figshare> a ns2:URL ;
rdfs:label "Figshare Page" ;
ns1:rank 1 ;
ns2:url "https://figshare.com/articles/ERNIE_A_Data_Platform_for_Research_Assessment/6843818"^^xsd:anyURI .
<http://openvivo.org/a/orcid0000-0001-8436-5346> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Sandfær, Mogens" ;
ns1:orcidId <http://orcid.org/0000-0001-8436-5346> .
<http://openvivo.org/a/orcid0000-0001-8530-8917> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Triggs, Graham" ;
ns1:orcidId <http://orcid.org/0000-0001-8530-8917> .
<http://openvivo.org/a/orcid0000-0002-0302-2761> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Fransen, Jan" ;
ns1:orcidId <http://orcid.org/0000-0002-0302-2761> .
<http://openvivo.org/a/orcid0000-0002-2127-1892> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Chacko, George" ;
ns1:orcidId <http://orcid.org/0000-0002-2127-1892> .
<http://openvivo.org/a/orcid0000-0002-2487-2554> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Blake, Jim" ;
ns1:orcidId <http://orcid.org/0000-0002-2487-2554> .
<http://openvivo.org/a/orcid0000-0002-6151-8423> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Porter, Simon" ;
ns1:orcidId <http://orcid.org/0000-0002-6151-8423> .
<http://openvivo.org/a/orcid0000-0002-8229-0392> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Ibanez, Karen Hytteballe" ;
ns1:orcidId <http://orcid.org/0000-0002-8229-0392> .
<http://openvivo.org/a/orcid0000-0002-8318-4225> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Woods, Andrew" ;
ns1:orcidId <http://orcid.org/0000-0002-8318-4225> .
<http://openvivo.org/a/orcid0000-0003-1762-5202> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Correa, Hector" ;
ns1:orcidId <http://orcid.org/0000-0003-1762-5202> .
<http://openvivo.org/a/orcid0000-0003-2786-5234> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Brophy, Keith" ;
ns1:orcidId <http://orcid.org/0000-0003-2786-5234> .
<http://openvivo.org/a/vcardBarber--Martin--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardBarber--Martin--name> .
<http://openvivo.org/a/vcardBarber--Martin--name> a ns2:Name ;
ns2:familyName "Barber" ;
ns2:givenName "Martin" .
<http://openvivo.org/a/vcardErdmann--Chris--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardErdmann--Chris--name> .
<http://openvivo.org/a/vcardErdmann--Chris--name> a ns2:Name ;
ns2:familyName "Erdmann" ;
ns2:givenName "Chris" .
<http://openvivo.org/a/vcardIjaz-Ahmad--Qazi-Asim-> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardIjaz-Ahmad--Qazi-Asim-name> .
<http://openvivo.org/a/vcardIjaz-Ahmad--Qazi-Asim-name> a ns2:Name ;
ns2:additionalName "Asim" ;
ns2:familyName "Ijaz Ahmad" ;
ns2:givenName "Qazi" .
<http://openvivo.org/a/vcardJohns--Erica--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardJohns--Erica--name> .
<http://openvivo.org/a/vcardJohns--Erica--name> a ns2:Name ;
ns2:familyName "Johns" ;
ns2:givenName "Erica" .
<http://openvivo.org/a/vcardKasprzik--Anna--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardKasprzik--Anna--name> .
<http://openvivo.org/a/vcardKasprzik--Anna--name> a ns2:Name ;
ns2:familyName "Kasprzik" ;
ns2:givenName "Anna" .
<http://openvivo.org/a/vcardKibbe--Warren--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardKibbe--Warren--name> .
<http://openvivo.org/a/vcardKibbe--Warren--name> a ns2:Name ;
ns2:familyName "Kibbe" ;
ns2:givenName "Warren" .
<http://openvivo.org/a/vcardMangiafico--Peter--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardMangiafico--Peter--name> .
<http://openvivo.org/a/vcardMangiafico--Peter--name> a ns2:Name ;
ns2:familyName "Mangiafico" ;
ns2:givenName "Peter" .
<http://openvivo.org/a/vcardMayernik--Matthew--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardMayernik--Matthew--name> .
<http://openvivo.org/a/vcardMayernik--Matthew--name> a ns2:Name ;
ns2:familyName "Mayernik" ;
ns2:givenName "Matthew" .
<http://openvivo.org/a/vcardPico--Alexander--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardPico--Alexander--name> .
<http://openvivo.org/a/vcardPico--Alexander--name> a ns2:Name ;
ns2:familyName "Pico" ;
ns2:givenName "Alexander" .
<http://openvivo.org/a/vcardStott--Don--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardStott--Don--name> .
<http://openvivo.org/a/vcardStott--Don--name> a ns2:Name ;
ns2:familyName "Stott" ;
ns2:givenName "Don" .
<http://openvivo.org/a/vcardVision--Todd--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardVision--Todd--name> .
<http://openvivo.org/a/vcardVision--Todd--name> a ns2:Name ;
ns2:familyName "Vision" ;
ns2:givenName "Todd" .
<http://openvivo.org/a/vcardWalther--Tatiana--name> a ns2:Name ;
ns2:familyName "Walther" ;
ns2:givenName "Tatiana" .
<http://openvivo.org/a/[email protected]> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/[email protected]> a ns2:Name ;
ns2:familyName "[email protected]" .
<http://openvivo.org/a/vcardcannon--lamont--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardcannon--lamont--name> .
<http://openvivo.org/a/vcardcannon--lamont--name> a ns2:Name ;
ns2:familyName "cannon" ;
ns2:givenName "lamont" .
<http://openvivo.org/a/[email protected]> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/[email protected]> a ns2:Name ;
ns2:familyName "[email protected]" .
<http://openvivo.org/a/vcardhttp://orcid.org/0000-0001-5622-7659----> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardhttp://orcid.org/0000-0001-5622-7659----name> .
<http://openvivo.org/a/vcardhttp://orcid.org/0000-0001-5622-7659----name> a ns2:Name ;
ns2:familyName "http://orcid.org/0000-0001-5622-7659" .
<http://openvivo.org/a/vcardorcid.org/0000-0002-8783-0036----> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardorcid.org/0000-0002-8783-0036----name> .
<http://openvivo.org/a/vcardorcid.org/0000-0002-8783-0036----name> a ns2:Name ;
ns2:familyName "orcid.org/0000-0002-8783-0036" .
<http://openvivo.org/a/[email protected]> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/[email protected]> .
<http://openvivo.org/a/[email protected]> a ns2:Name ;
ns2:familyName "[email protected]" .
<http://orcid.org/0000-0001-5156-4621> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0001-8436-5346> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0001-8530-8917> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0001-9770-7640> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-0302-2761> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-1304-8447> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-2127-1892> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-2487-2554> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-6151-8423> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-7908-1987> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-8229-0392> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0002-8318-4225> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0003-1762-5202> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0003-2499-7741> a <http://www.w3.org/2002/07/owl#Thing> .
<http://orcid.org/0000-0003-2786-5234> a <http://www.w3.org/2002/07/owl#Thing> .
<http://openvivo.org/a/orcid0000-0001-9770-7640> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Javed, Muhammad" ;
ns1:orcidId <http://orcid.org/0000-0001-9770-7640> .
<http://openvivo.org/a/orcid0000-0002-1304-8447> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Conlon, Michael" ;
ns1:orcidId <http://orcid.org/0000-0002-1304-8447> .
<http://openvivo.org/a/vcardWalther--Tatiana--> a ns2:Individual ;
ns2:hasName <http://openvivo.org/a/vcardWalther--Tatiana--name> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6411092> a ns4:Slideshow ;
rdfs:label "Scholars@Cornell: A Journey from Data in Peace to Data in Use" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6411092-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "In 2016, the Scholars@Cornell project was initiated aiming to advance the visibility and accessibility of Cornell scholarship and to preserve them for future generations. However, in data life cycle, data preservation and providing access to the recorded data is not the final stage. Data stored in a database is merely a record and can be of use only if human experience and insight is applied to it, data analysis is performed and data is transformed into a knowledge. The faculty and publication data is capable of revealing much more about patterns and dynamics of scholarship and the institution. Such data can support universities in their systems for managing faculty information, scholar's websites, faculty reporting and strategic decisions in general. We explore the scholarship data from the lens of a scholar, academic unit and an institutions. Unlike systems that provide web pages of researcher profiles using lists and directory-style metaphors, our work explores the power of graph analytics and infographics for navigating a rich semantic graph of scholarly data. We believe that the scholarship data, accessible in RDF format through VIVO webpages, is not easy to reuse, specifically by the software developers who have limited knowledge of semantic technologies and the VIVO data model. In Scholars@Cornell, the scholarship data is open for reuse in different ways. The data can be accessed via Data Distribution API in RDF or in JSON format. The infographics built using D3 javascript libraries can be embedded on different institutional websites. Additionally, new web applications can be developed that use scholarship knowledge graph, showcasing research areas and expertise. In this presentation, I will present an overview of the project, lessons learnt and will emphasis on data reuse and data analysis. I will discuss about our journey, how we moved from counting list items to connected graph, from data list views to data analysis and from data in peace to data in use." ;
ns4:doi "10.6084/m9.figshare.6411092" ;
ns4:freetextKeyword "Data Analysis",
"Data Reuse",
"Scholars@Cornell",
"VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-04> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-04> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-04> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-04> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6429086> a ns4:Slideshow ;
rdfs:label "Uberization Module: A life saver for the manually entered dirt citation data in faculty reporting tool" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6429086-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "<div>Cornell University is a decentralized institution where every college and school uses its own means and procedures to record their faculty’s publications. Few of them rely on institutional repositories such as Digital Commons from bepress; while, others use faculty reporting tools such as Activity Insight from Digital Measures or Symplectic Elements from Digital Science. In this presentation, I will discuss a case study of College of Agriculture and Life Sciences (CALS) that currently use Activity Insight (AI) for their faculty reporting needs.</div><div><br></div><div>Every year during faculty reporting season, faculty report their research contributions of the past one year. In College of Agriculture and Life Sciences (CALS), different strategies are used to collect publication data from faculty. Faculty can either i) provide their up to date CVs and an admin staff from the college may read the CVs and manually enter publications data in the reporting system, ii) faculty can copy/paste publications list from their CVs and enter them as a single text blob in a free text template provided by the CALS administration, or iii) faculty can themselves log in to the reporting system and enter their publications in a publication template form. In all three options, publications are entered manually into the faculty reporting system. Such manually entered data is prone to errors and many examples have been found where manually entered citation data do not reflect the truth. Some of the noticed errors include incorrect journal name, incorrect ISSN/EISSN numbers, mistakes in DOIs, incorrect list/order of authors etc. Such dirty citation data cannot be used for data analysis or future strategic discussions. In Scholars@Cornell project, we use uberization module to clean such dirty data.</div><div><br></div><div>First, we load dirty publication data from Activity Insight (AI) to Symplectic Elements as an institutional feed. In cases where the loaded publication is already harvested by Symplectic Elements via upstream sources (such as WoS, Pubmed, Scopus), the AI publication become another record in the existing publication object. In scenarios where the AI publication is the first record in Elements, one may re-run the search for the faculty so that the citation data for the same publication is harvested from upstream sources as well. Once step two is completed, next step is to extract publication objects from Elements, merging data from different sources (i.e., one record from each source) and creating a single record – “uber record” for each article. For creation of an uber record, we ranked the citation data sources based on the experience and intuition of two senior Cornell librarians and started with the metadata from the source they considered best. The uberization module merges the citation data from different publication records (including AI record) in a way that it creates a single record which is clean and comprises best of the best citation data. After passing through the data validation, uber records are transformed into an RDF graph and loaded into Scholars@Cornell.</div>" ;
ns4:doi "10.6084/m9.figshare.6429086" ;
ns4:freetextKeyword "Scholars@Cornell",
"Uberization",
"VIVO18",
"data cleaning approach",
"dirty data" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-04> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-04> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-04> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-04> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6463277> a ns4:Slideshow ;
rdfs:label "SHACL_Present.pptx" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6463277-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presentation on SHACL and VitroLib<br>" ;
ns4:doi "10.6084/m9.figshare.6463277" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-08> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-08> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-08> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-08> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6478586> a ns4:Slideshow ;
rdfs:label "Building a Nimble User Interface for VIVO" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6478586-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presentation at the VIVO 2018 conference on Brown University's VIVO frontend. <br>" ;
ns4:doi "10.6084/m9.figshare.6478586" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-11> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-11> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-11> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-11> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480368> a ns4:Slideshow ;
rdfs:label "2018 VIVO Progress Report" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6480368-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presentation at the VIVO Leadership Group Meeting, Durham, NC, June 6, 2018." ;
ns4:doi "10.6084/m9.figshare.6480368" ;
ns4:freetextKeyword "VIVO18",
"open source",
"semantic web",
"vivo" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-11> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-11> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-11> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-11> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6582986> a ns4:Slideshow ;
rdfs:label "Two ways to integrate Publons peer review data in VIVO" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6582986-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presented at the VIVO Conference in Durham, NC, June 6-8. 2018<div>#vivo18</div><div><br></div><div><div>Publons (www.publons.com) is a rapidly growing online community where scholars track their peer review activity. More than 325,000 researchers have joined the site since its launch in 2012 in order to capture and highlight peer reviews, which have been traditionally undervalued when assessing the full breadth of scholarly activity. In this session, we will present on integrating Publons data into VIVO two different ways: as a javascript widget and via data ingest using the Publons’ API and Python scripts. </div><div><br></div><div>The Publons widget, currently in a limited release as a demo, allows a VIVO site to easily embed Publons data via a line of javascript. Enabling the widget requires the addition of a data property to the site’s local ontology to capture Publons IDs and editing a single Freemarker template. Once enabled, the widget will appear on the page for any person with a Publons ID. The widget shows a visual representation of the person’s recent peer review activity. The widget also links to the full Publons’ profile.</div><div><br></div><div>A more comprehensive integration of Publons data can also be achieved using the Publons’ API, Python scripts, and ontology extensions. A full ingest of Publons data enables peer review activity to be integrated throughout VIVO, i.e. on both a person’s page, on journal pages, and (when made available by publishers) on individual article records.</div><div><br></div><div>Publons was acquired by Clarivate in 2017, joining a portfolio of services that includes Web of Science and InCites. Instructions and code for the above are available at https://www.github.com/Clarivate-SAR.</div></div><div><br></div>" ;
ns4:doi "10.6084/m9.figshare.6582986" ;
ns4:freetextKeyword "api",
"bibliometrics",
"javascript",
"linked data",
"peer review",
"publons",
"python",
"semantic web",
"vivo",
"vivo18",
"web of science" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-18> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-18> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-18> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-18> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6583547> a ns1:ConferencePoster ;
rdfs:label "Integrating peer review activities into VIVO profiles using Publons" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6583547-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presented at the VIVO Conference in Durham, NC, June 6-8. 2018<div>#vivo18</div><div><br></div><div><div>Publons (www.publons.com) is a rapidly growing online community where scholars track their peer review activity. More than 325,000 researchers have joined the site since its launch in 2012 in order to capture and highlight peer reviews, which have been traditionally undervalued when assessing the full breadth of scholarly activity. In this session, we will present on integrating Publons data into VIVO two different ways: as a javascript widget and via data ingest using the Publons’ API and Python scripts.</div><div><br></div><div>The Publons widget, currently in a limited release as a demo, allows a VIVO site to easily embed Publons data via a line of javascript. Enabling the widget requires the addition of a data property to the site’s local ontology to capture Publons IDs and editing a single Freemarker template. Once enabled, the widget will appear on the page for any person with a Publons ID. The widget shows a visual representation of the person’s recent peer review activity. The widget also links to the full Publons’ profile.</div><div><br></div><div>A more comprehensive integration of Publons data can also be achieved using the Publons’ API, Python scripts, and ontology extensions. A full ingest of Publons data enables peer review activity to be integrated throughout VIVO, i.e. on both a person’s page, on journal pages, and (when made available by publishers) on individual article records.</div><div><br></div><div>Publons was acquired by Clarivate in 2017, joining a portfolio of services that includes Web of Science and InCites. Instructions and code for the above are available at https://www.github.com/Clarivate-SAR.</div></div><div><br></div>" ;
ns4:doi "10.6084/m9.figshare.6583547" ;
ns4:freetextKeyword "api",
"bibliometrics",
"linked data",
"peer review",
"publons",
"research",
"vivo",
"vivo18",
"web of science" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-18> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-18> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-18> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-18> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6790739> a ns4:Slideshow ;
rdfs:label "VIVO - Research Engagement & Impact.pdf" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6790739-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "An overview of how UOW extending VIVO to collect and present Impact Stories (mini case studies in line with the Research Engagement and Impact assessment)." ;
ns4:doi "10.6084/m9.figshare.6790739" ;
ns4:freetextKeyword "uowscholars",
"vivo18",
"vivo2018" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-09> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-09> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-09> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-09> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820079> a ns4:Slideshow ;
rdfs:label "Scholars-ORCID Connection.pptx" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6820079-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "From the VIVO 2018 conference" ;
ns4:doi "10.6084/m9.figshare.6820079" ;
ns4:freetextKeyword "information systems and technologies",
"vivo",
"vivo18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820187> a ns4:Slideshow ;
rdfs:label "New Partnerships, New Practices" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6820187-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "VIVO 2018 Keynote<div>Jan Fransen</div><div>June 7, 2016</div>" ;
ns4:doi "10.6084/m9.figshare.6820187" ;
ns4:freetextKeyword "vivo2018" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822437> a ns4:Slideshow ;
rdfs:label "Stanford RIALTO - VIVO June 2018.pptx" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6822437-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Stanford's presentation on the RIALTO system at VIVO Conf 2018" ;
ns4:doi "10.6084/m9.figshare.6822437" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/orcid0000-0001-5156-4621> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Khan, Huda" ;
ns1:orcidId <http://orcid.org/0000-0001-5156-4621> .
<http://openvivo.org/a/orcid0000-0002-7908-1987> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Gross, Benjamin" ;
ns1:orcidId <http://orcid.org/0000-0002-7908-1987> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6465161> a ns4:Slideshow ;
rdfs:label "VIVO Community Development Aligning Efforts.pdf" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6465161-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "VIVO community alignment <br>" ;
ns4:doi "10.6084/m9.figshare.6465161" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-09> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-09> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-09> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-09> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6480380> a ns4:Collection ;
rdfs:label "In Search of the Golden Query: Dimensions and VIVO" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6480380-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Poster presentation at the 9th annual VIVO Conference, June 7, 2018, Durham, NC." ;
ns4:doi "10.6084/m9.figshare.6480380" ;
ns4:freetextKeyword "apis",
"dimensions",
"python",
"vivo",
"vivo18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-11> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-11> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-11> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-11> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819992> a ns1:ConferencePaper ;
rdfs:label "Scientific Publication, Data Sharing, Learning Health and Incentives" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6819992-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "<div>• Pace of consumer computing</div><div>• Data generation is no longer the bottleneck</div><div>• 4th Industrial Revolution is here</div><div>• Biomedical research and medicine is a data enterprise</div><div>• Data sharing as an accelerant</div>" ;
ns4:doi "10.6084/m9.figshare.6819992" ;
ns4:freetextKeyword "data sharing",
"open data",
"scientific publication",
"vivo18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6822446> a ns4:Slideshow ;
rdfs:label "Community approaches to open data at scale" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6822446-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "The integrity of ‘the scholarly record’ is predicated on the accuracy and availability of the information describing that record. The value of this information (high quality metadata) is often underestimated by those who stand to benefit most from its use and reuse---publishers and authors. This moderated panel session will bring multiple perspectives together to discuss the scholarly record broadly defined, the value of the relationships among different kinds of research objects, and the extent to which workarounds, ingenuity and a possibly unreasonable degree of discussion are required to address and remediate the shortfalls in how metadata is created and distributed. Topics addressed will include the communication surrounding the value of rich, interlinked metadata; the necessity of variety in schema, standards and workflows,and the tradeoffs inherent in aggregating and distributing open data." ;
ns4:doi "10.6084/m9.figshare.6822446" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/orcid0000-0003-2499-7741> a <http://xmlns.com/foaf/0.1/Person> ;
rdfs:label "Hauschke, Christian" ;
ns1:orcidId <http://orcid.org/0000-0003-2499-7741> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6477899> a ns4:Slideshow ;
rdfs:label "VIVO Research Analytics Platform: Global Data Meets Local Demands" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6477899-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Presentation of VIVO Research Analytics Platform developed at the Technical University of Denmark." ;
ns4:doi "10.6084/m9.figshare.6477899" ;
ns4:freetextKeyword "VIVO18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-06-11> ;
ns1:dateModified <http://openvivo.org/a/date2018-06-11> ;
ns1:datePublished <http://openvivo.org/a/date2018-06-11> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-06-11> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819722> a ns4:Slideshow ;
rdfs:label "VIVO-DE: Collaborative ontology editing & management with VoCol" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6819722-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract """It is not sufficient to translate the labels of the VIVO-ISF ontology to
adopt VIVO to the needs of German research institutions. There is a
need for an ontology extension that is tailored to the specifics of the
German academic landscape, especially with regard to language and
(academic) culture. In order to involve as many stakeholders as
possible, a collaborative approach to ontology management is needed.
Basing the corresponding workflows solely on Git is an option, which is
currently chosen by the German VIVO community (VIVO-DE). However, there
is a demand for more user-friendly ways to work together. There is a
small number of tools which are specifically developed for collaborative
ontological work. One of them is VoCol. In this poster we would like to
describe possible use cases for VoCol in the VIVO-DE context,
challenges we anticipate, and our suggestions how to face them in the
future. VoCol has been originally developed at Fraunhofer Institute IAIS
in Bonn and from 2018 on will be evolved in collaboration by Fraunhofer
IAIS and the Technische Informationsbibliothek (TIB) – German National
Library of Science and Technology in Hannover. It is based on Open
Source software such as Java libraries and the Jena Fuseki SPARQL
server, and requires nothing from the user but a standard Git-based
repository. The application serves as a frontend in order to facilitate
collaborative ontology development. It supports the Semantic Web
standards OWL and SKOS, and features various functionalities such as a
Turtle editor, a syntax validation routine, options for an automated
documentation, tools for ontology visualization, evolution reports,
content negotiation, and a SPARQL endpoint. VoCol is currently being
tested at the TIB and by other VIVO-DE community members with the goal
to assess its suitability for collaborative editing and management of
the KDSF-VIVO-Alignment and VIVO-DE-Extension vocabularies. Despite the
aforementioned benefits of VoCol, there is still room for improvement,
for example regarding performance and a more intuitive user guidance.
Moreover, VoCol could be taken to the next level by adding more
functionalities such as more sophisticated structural validation and
verification routines, and alignment tools that allow to establish
mappings between several vocabularies.""" ;
ns4:doi "10.6084/m9.figshare.6819722" ;
ns4:freetextKeyword "Collaborative tools",
"ontology management",
"vivo18",
"vocol" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6819971> a ns1:ConferencePoster ;
rdfs:label "Information Security Challenges in VIVO - Adapting the BSI IT Security Catalog Standards" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6819971-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract """According to the Global Application and Network Security Report
2007-2018 [1] cyber attacks spiked by 40 percent in the year 2017 and
half of the surveyed companies reported financially motivated cyber
attacks on them. Concerning information security, BSI - the German
federal institute for information security developed an advisory catalog
[<a>2</a>]
for IT security in Germany. The catalog highlights the necessary
policies and strategies for IT infrastructures to adopt in order to meet
the requirements of modern day world information security and
standardization. A study of the catalog revealed that VIVO lacks
implementation of some of the key security features like a) browser
session expiration b) secure and salted password hashing and c)
exclusive labeling of external URLs and adding tooltips to forms,
fields, and buttons. Furthermore, there are some suggestions that
institutions who use VIVO or plan to use it, should take into
consideration. This poster/presentation focuses on the security-related
technical challenges and their possible solutions the TIB Hannover needs
to implement in VIVO to meet the standards of the BSI IT security
catalog.""" ;
ns4:doi "10.6084/m9.figshare.6819971" ;
ns4:freetextKeyword "IT Security",
"vivo18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6820217> a ns1:ConferencePoster ;
rdfs:label "Challenges and opportunities of using VIVO as a reporting tool" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6820217-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract """<p>Due to a number of state and federal regulations and other
obligations, publicly funded institutions in Germany have to fulfil a
variety of reporting duties. One example of such a regulation is the
guideline for transparency in research in the German federal state Lower
Saxony. This guideline frames, which information about third party
founded research projects has to be made publicly available by the
universities in Lower Saxony. Besides the federal bodies, there are also
German governmental and European funding agencies like Leibniz
Association, European Commission, German Research Foundation (DFG,
Deutsche Forschungsgemeinschaft) which demand reports about staff,
research activities, infrastructure, and other information.</p><p>Compliance
with certain standards is another key feature for reporting. For
example, the German Science Council asks research institutions to
collect research information according to defined standardized criteria
(Research Core Data Set, KDSF). The TIB transformed the data model of
the KDSF to make it usable in VIVO. CERIF is another standard of high
importance for German research institutions.</p><p>The Technische
Informationsbibliothek (TIB) – German National Library of Science and
Technology has decided to use VIVO for reporting. In the scope of
VIVO-KDSF project, an internal VIVO is going to be used for generation
of reports in accordance with the KDSF. This poses some technical and
ontological challenges to a standard out-of-the-box VIVO.</p><p>To allow
the use of VIVO in such a context, it has to comply to a set of laws,
rules and regulations, e.g. regarding privacy, and protection of
employees. These require some information to be visible only to specific
user groups. Furthermore, to achieve a high quality of research
information, there is a need for validating and editing workflows. To
establish these workflows, some developmental work on VIVO has to be
done. This includes amongst others an advanced role and rights
management and a tool to track changes and who's responsible for them.</p><p>On
the technical side, for report production a reporting module integrated
into VIVO is needed. For now VIVO is not technically geared for
reporting, as its basic goal focuses on information representation in
the web. VIVO provides a SPARQL query editor which can be used for
reports, but it requires deep knowledge of SPARQL and the VIVO data
model. a convenient reporting component should include a user interface
which can be intuitively operated by administrative staff, normally not
familiar with SPARQL. The user interface should offer a number of
options to set a single report and offer export of data in different
formats like CSV and PDF. Visualization of data in charts and diagrams
has to be provided as well. </p><p>This poster describes the
developments (to be) conducted at the TIB, and the challenges, it has
been facing concerning the use of VIVO for reporting.</p>""" ;
ns4:doi "10.6084/m9.figshare.6820217" ;
ns4:freetextKeyword "SPARQl",
"VIVO",
"kibana",
"vivo18" ;
ns1:dateCreated <http://openvivo.org/a/date2018-07-16> ;
ns1:dateModified <http://openvivo.org/a/date2018-07-16> ;
ns1:datePublished <http://openvivo.org/a/date2018-07-16> ;
ns1:dateTimeValue <http://openvivo.org/a/date2018-07-16> .
<http://openvivo.org/a/doi10.6084/m9.figshare.6843818> a ns1:ConferencePaper ;
rdfs:label "ERNIE: A Data Platform for Research Assessment" ;
ns3:ARG_2000028 <http://openvivo.org/a/doi10.6084/m9.figshare.6843818-vcard> ;
ns3:RO_0002353 <http://openvivo.org/a/eventVIVO2018> ;
ns4:abstract "Slideset from a presentation at VIVO 2018 that summarizes development in Phase I of a database of linked research data mined from public and commercial sources that supports network analysis of citations, patents, clinical guidelines, clinical trials, therapeutics, and NIH funding records." ;
ns4:doi "10.6084/m9.figshare.6843818" ;
ns4:freetextKeyword "Linked Data",
"Network Analysis",