-
Notifications
You must be signed in to change notification settings - Fork 0
/
ro-crate-metadata.json
2821 lines (2819 loc) · 118 KB
/
ro-crate-metadata.json
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
{
"@context": [
"https://w3id.org/ro/crate/1.1/context",
"https://schema.org/",
{ "DatasetDescription": "http://rdfs.org/ns/void#DatasetDescription",
"Linkset": "http://rdfs.org/ns/void#Linkset"
}
],
"@graph": [
{
"@id": "#b056546b-46f1-4204-8e42-8625f07c1294",
"@type": "ContactPoint",
"email": "[email protected]",
"name": "Email Stian Soiland-Reyes",
"contactType": "email"
},
{
"@id": "./",
"@type": "Dataset",
"author": {
"@id": "https://orcid.org/0000-0001-9842-9718"
},
"citation": [
{
"@id": "https://doi.org/10.3233/SW-2012-0088"
},
{
"@id": "http://ceur-ws.org/Vol-951/paper5.pdf"
}
],
"contactPoint": [
{
"@id": "#b056546b-46f1-4204-8e42-8625f07c1294"
},
{
"@id": "https://github.com/openphacts/ops-linksets/issues"
}
],
"datePublished": "2021-04-25T10:00:00.000Z",
"description": "Research Object RO-Crate of aggregated linksets used by Open PHACTS 2.1 IMS. \n\n2.1.1 is republished, previously on http://data.openphacts.org/2.1/ims/linksets/ by VU, which as of 2021-04-20 is offline. \n\nThe linksets can in theory be loaded in an Identity Mapping Service (IMS) instance using the modified load-relative.xml which has relative URIs within this RO-Crate, but this has not been tested.\n\nThe content of this RO-Crate has mixed licenses, deemed comparable with its own license CC-BY-SA-4.0 or as part of a collection. See this RO-Crate metadata for each nested Dataset entity, which attempts to reflect their authorative VoID files. Note the CC-BY-ND 3.0 restriction of derivative works for linksets/drugbank, linksets/disgenet, linksets/nextprot. ops-surechembl-linksets is licensed CC-BY-NC-SA-3.0 (not for commercial use), and therefore linked by reference through separate Zenodo DOI.",
"distribution": {
"@id": "https://zenodo.org/record/4704867/files/ops-linksets-2.1.1.ro-crate.zip"
},
"funder": {
"@id": "https://ror.org/019af4n30"
},
"hasPart": [
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data"
},
{
"@id": "linksets/"
},
{
"@id": "https://doi.org/10.5281/zenodo.4707733"
}
],
"identifier": "https://doi.org/10.5281/zenodo.4704867",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-SA-4.0"
},
"name": "OpenPHACTS Linksets 2.1.1",
"publisher": {
"@id": "https://ror.org/027m9bs27"
},
"url": "https://openphacts.github.io/ops-linksets/"
},
{
"@id": "http://ceur-ws.org/Vol-951/",
"@type": "PublicationVolume",
"alternateName": "Proceedings of the Second International Workshop on Linked Science 2012 - Tackling Big Data",
"datePublished": "2012-11-12T10:00:00.000Z",
"name": "LISC 2012: Linked Science 2012 - Tackling Big Data",
"volumeNumber": "951"
},
{
"@id": "http://ceur-ws.org/Vol-951/paper5.pdf",
"@type": "ScholarlyArticle",
"datePublished": "2012-11-12T10:00:00.000Z",
"description": "Within complex scientific domains such as pharmacology, operational equivalence between two concepts is often context-, user- and task-specific. Existing Linked Data integration procedures and equivalence services do not take the context and task of the user into account. We present a vision for enabling users to control the notion of operational equivalence by applying scientific lenses over Linked Data. The scientific lenses vary the links that are activated between the datasets which affects the data returned to the user.\n\nFrom Proceedings of the Second International Workshop on Linked Science 2012 - Tackling Big Data.",
"isPartOf": {
"@id": "http://ceur-ws.org/Vol-951/"
},
"name": "Scientific Lenses over Linked Data: An approach to support task specific views of the data. A vision."
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/ims-linksets-2.1.tar.gz",
"identifier": "http://data.openphacts.org/2.1/ims/ims-linksets-2.1.tar.gz",
"@type": "DataDownload",
"contentSize": 418941181,
"path": "https://repository.mygrid.org.uk/artifactory/data.openphacts.org/2.1/ims/ims-linksets-2.1.tar.gz",
"datePublished": "2016-06-10T11:00:00.000Z",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-SA-4.0"
},
"name": "ims-linksets-2.1.tar.gz",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://doi.org/10.1093/nar/gks1065",
"@type": "ScholarlyArticle",
"datePublished": "2012-11-17T11:00:00.000Z",
"name": "HMDB 3.0--The Human Metabolome Database in 2013"
},
{
"@id": "https://doi.org/10.1093/nar/gkv1253",
"@type": "ScholarlyArticle",
"datePublished": "2015-11-17T10:00:00.000Z",
"description": "SureChEMBL is a publicly available large-scale resource containing compounds extracted from the full text, images and attachments of patent documents. The data are extracted from the patent literature according to an automated text and image-mining pipeline on a daily basis. SureChEMBL provides access to a previously unavailable, open and timely set of annotated compound-patent associations, complemented with sophisticated combined structure and keyword-based search capabilities against the compound repository and patent document corpus; given the wealth of knowledge hidden in patent documents, analysis of SureChEMBL data has immediate applications in drug discovery, medicinal chemistry and other commercial areas of chemical science. Currently, the database contains 17 million compounds extracted from 14 million patent documents. Access is available through a dedicated web-based interface and data downloads at: https://www.surechembl.org/.",
"name": "SureChEMBL: a large-scale, chemically annotated patent document database"
},
{
"@id": "https://doi.org/10.3233/SW-2012-0088",
"@type": "ScholarlyArticle",
"datePublished": "2014-01-01T11:00:00.000Z",
"description": "The discovery of new medicines requires pharmacologists to interact with a number of information sources ranging from tabular data to scientific papers, and other specialized formats. In this application report, we describe a linked data platform for integrating multiple pharmacology datasets that form the basis for several drug discovery applications. The functionality offered by the platform has been drawn from a collection of prioritised drug discovery business questions created as part of the Open PHACTS project, a collaboration of research institutions and major pharmaceutical companies. We describe the architecture of the platform focusing on seven design decisions that drove its development with the aim of informing others developing similar software in this or other domains. The utility of the platform is demonstrated by the variety of drug discovery applications being built to access the integrated data.\n",
"name": "Applying linked data approaches to pharmacology: Architectural decisions and implementation"
},
{
"@id": "https://doi.org/10.5281/zenodo.4707733",
"@type": "Dataset",
"citation": {
"@id": "https://doi.org/10.1093/nar/gkv1253"
},
"dateModified": "2021-04-20T10:04:27.061Z",
"distribution": {
"@id": "https://zenodo.org/record/4707733/files/ops-surechembl-linksets-0.1.0.data.zip"
},
"hasPart": [
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_hgnc.ttl.gz"
},
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_mesh.ttl.gz"
},
{
"@id": "https://zenodo.org/record/4707733/files/void.ttl"
}
],
"license": {
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0"
},
"name": "ops-surechembl-linksets",
"url": "https://github.com/openphacts/ops-surechembl-linksets"
},
{
"@id": "https://github.com/openphacts/ops-linksets/issues",
"@type": "ContactPoint",
"name": "Raise GitHub issue in openphacts/ops-linksets",
"contactType": "issue"
},
{
"@id": "https://hmdb.ca/citing",
"@type": "CreativeWork",
"description": "HMDB is offered to the public as a freely available resource. Use and re-distribution of the data, in whole or in part, for commercial purposes requires explicit permission of the authors and explicit acknowledgment of the source material (HMDB) and the original publication (see below). We ask that users who download significant portions of the database cite the HMDB paper in any resulting publications. For commercial licences, please consult with [email protected] (Jennifer).\n\nPlease cite:\n\n Wishart DS, Tzur D, Knox C, et al., HMDB: the Human Metabolome Database. Nucleic Acids Res. 2007 Jan;35(Database issue):D521-6. 17202168\n Wishart DS, Knox C, Guo AC, et al., HMDB: a knowledgebase for the human metabolome. Nucleic Acids Res. 2009 37(Database issue):D603-610. 18953024\n Wishart DS, Jewison T, Guo AC, Wilson M, Knox C, et al., HMDB 3.0 — The Human Metabolome Database in 2013. Nucleic Acids Res. 2013. Jan 1;41(D1):D801-7. 23161693\n Wishart DS, Feunang YD, Marcu A, Guo AC, Liang K, et al., HMDB 4.0 — The Human Metabolome Database for 2018. Nucleic Acids Res. 2018. Jan 4;46(D1):D608-17. 29140435",
"name": "Citing the HMDB",
"citation": {"@id": "https://doi.org/10.1093/nar/gks1065"},
"url": "https://hmdb.ca/citing"
},
{
"@id": "https://orcid.org/0000-0001-9842-9718",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/027m9bs27"
},
"email": "[email protected]",
"familyName": "Soiland-Reyes",
"givenName": "Stian",
"name": "Stian Soiland-Reyes"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/mysql-for-ims-2.1-20160419.sql.gz",
"@type": "File",
"encodingFormat": "",
"name": "mysql-for-ims-2.1-20160419.sql.gz"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar",
"@type": "DataDownload",
"contentSize": 235847,
"encodingFormat": "application/java-archive",
"name": "ops-chembl-linksets-20.1.1.jar",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-ensembl-homosapiens-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar",
"@type": "DataDownload",
"contentSize": 6256190,
"encodingFormat": "application/java-archive",
"name": "ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-ensembl-musmusculus-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar",
"@type": "DataDownload",
"contentSize": 3375446,
"encodingFormat": "application/java-archive",
"name": "ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-hmdb-linksets/3.6.0-SNAPSHOT/ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip",
"@type": "DataDownload",
"contentSize": 462652,
"encodingFormat": [
"application/vnd.wf4ever.robundle+zip",
{
"@id": "https://w3id.org/bundle/"
}
],
"name": "ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-rsc-linksets/0.20151104.0-SNAPSHOT/ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip",
"@type": "DataDownload",
"contentSize": 44705311,
"encodingFormat": [
"application/vnd.wf4ever.robundle+zip",
{
"@id": "https://w3id.org/bundle/"
}
],
"name": "ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-rsc-surechembl-linksets/0.20160224.0-SNAPSHOT/ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip",
"@type": "DataDownload",
"contentSize": 184062705,
"encodingFormat": [
"application/vnd.wf4ever.robundle+zip",
{
"@id": "https://w3id.org/bundle/"
}
],
"name": "ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops",
"@type": "RepositoryCollection",
"hasMember": [
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-ensembl-homosapiens-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-ensembl-musmusculus-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-hmdb-linksets/3.6.0-SNAPSHOT/ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-rsc-surechembl-linksets/0.20160224.0-SNAPSHOT/ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-rsc-linksets/0.20151104.0-SNAPSHOT/ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip"
}
],
"name": "ops Maven repository",
"title": "ops Maven repository"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data",
"@type": "RepositoryCollection",
"hasMember": [
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/ims-linksets-2.1.tar.gz"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/mysql-for-ims-2.1-20160419.sql.gz"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/linksets"
}
],
"description": "The Open PHACTS data repository was previously hosted on data.openphacts.org, now partially mirrored at https://repository.mygrid.org.uk/",
"name": "data.openphacts.org repository",
"publisher": [
{
"@id": "https://ror.org/027m9bs27"
},
{
"@id": "https://ror.org/008xxew50"
},
{
"@id": "https://www.openphactsfoundation.org/"
}
],
"title": "data.openphacts.org repository"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/ims-linksets-2.1.tar.gz",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/ims-linksets-2.1.tar.gz"
},
"name": "ims-linksets-2.1.tar.gz",
"title": "ims-linksets-2.1.tar.gz"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/linksets",
"@type": "RepositoryObject",
"name": "2.1/ims/linksets",
"title": "2.1/ims/linksets"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops-data/2.1/ims/mysql-for-ims-2.1-20160419.sql.gz",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/mysql-for-ims-2.1-20160419.sql.gz"
},
"name": "mysql-for-ims-2.1-20160419.sql.gz",
"title": "mysql-for-ims-2.1-20160419.sql.gz"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar"
},
"name": "ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar",
"title": "ops-chembl-linksets/20.1.1/ops-chembl-linksets-20.1.1.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-ensembl-homosapiens-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-ensembl-homosapiens-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar"
},
"name": "ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar",
"title": "ops-ensembl-homosapiens-linksets-77.2015-08-20-20150911.112934-3.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-ensembl-musmusculus-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-ensembl-musmusculus-linksets/77.2015-08-20-SNAPSHOT/ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar"
},
"name": "ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar",
"title": "ops-ensembl-musmusculus-linksets-77.2015-08-20-20150911.112934-3.jar"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-hmdb-linksets/3.6.0-SNAPSHOT/ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-hmdb-linksets/3.6.0-SNAPSHOT/ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip"
},
"name": "ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip",
"title": "ops-hmdb-linksets-3.6.0-20151118.114353-4.data.zip"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-rsc-linksets/0.20151104.0-SNAPSHOT/ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-rsc-linksets/0.20151104.0-SNAPSHOT/ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip"
},
"name": "ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip",
"title": "ops-rsc-linksets-0.20151104.0-20151214.143837-1.data.zip"
},
{
"@id": "https://repository.mygrid.org.uk/artifactory/webapp/#/artifacts/browse/tree/General/ops/org/openphacts/data/ops-rsc-surechembl-linksets/0.20160224.0-SNAPSHOT/ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip",
"@type": "RepositoryObject",
"hasFile": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops/org/openphacts/data/ops-rsc-surechembl-linksets/0.20160224.0-SNAPSHOT/ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip"
},
"name": "ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip",
"title": "ops-rsc-surechembl-linksets-0.20160224.0-20160303.160141-2.data.zip"
},
{
"@id": "https://ror.org/008xxew50",
"@type": "Organization",
"name": "VU Amsterdam"
},
{
"@id": "https://ror.org/019af4n30",
"@type": "Organization",
"name": "Innovative Medicines Initiative"
},
{
"@id": "https://ror.org/027m9bs27",
"@type": "Organization",
"name": "The University of Manchester"
},
{
"@id": "https://spdx.org/licenses/Apache-2.0",
"@type": "CreativeWork",
"identifier": "Apache-2.0",
"name": "Apache License 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
},
{
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0",
"@type": "CreativeWork",
"identifier": "CC-BY-NC-SA-3.0",
"name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported",
"url": "https://creativecommons.org/licenses/by-nc-sa/3.0/"
},
{
"@id": "https://spdx.org/licenses/CC-BY-ND-3.0",
"@type": "CreativeWork",
"identifier": "CC-BY-ND-3.0",
"name": "Creative Commons Attribution No Derivatives 3.0 Unported",
"url": "https://creativecommons.org/licenses/by-nd/3.0/"
},
{
"@id": "https://spdx.org/licenses/CC-BY-SA-3.0",
"@type": "CreativeWork",
"identifier": "CC-BY-SA-3.0",
"name": " Creative Commons Attribution Share Alike 3.0 Unported",
"url": "https://creativecommons.org/licenses/by-sa/3.0/"
},
{
"@id": "https://spdx.org/licenses/CC-BY-SA-4.0",
"@type": "CreativeWork",
"identifier": "CC-BY-SA-4.0",
"name": "Creative Commons Attribution Share Alike 4.0 International"
},
{
"@id": "https://spdx.org/licenses/CC0-1.0",
"@type": "CreativeWork",
"identifier": "CC0-1.0",
"name": "Creative Commons Zero v1.0 Universal",
"url": "https://creativecommons.org/publicdomain/zero/1.0/"
},
{
"@id": "https://w3id.org/bundle/",
"@type": "CreativeWork",
"identifier": "https://doi.org/10.5281/zenodo.12586",
"name": "Research Object Bundle 1.0"
},
{
"@id": "https://www.genenames.org/about/",
"@type": "CreativeWork",
"description": "Data release policy\nNo restrictions are imposed on access to, or use of, the data provided by the HGNC, which are provided to enhance knowledge and encourage progress in the scientific community. The HGNC provide these data in good faith, but make no warranty, express or implied, nor assume any legal liability or responsibility for any purpose for which they are used.\n\nGuidelines on use of data in publications (copyright and licensing)\nIt is a condition of our funding from NIH and the Wellcome Trust that the nomenclature and information we provide is freely available to all. Anyone may use the HGNC data, but we request that they reference the \"HUGO Gene Nomenclature Committee at the European Bioinformatics Institute\" and the website where possible.",
"name": "About the HGNC",
"url": "https://www.genenames.org/about/"
},
{
"@id": "https://www.openphactsfoundation.org/",
"@type": "Organization",
"name": "Open PHACTS Foundation"
},
{
"@id": "https://zenodo.org/",
"@type": "Organization",
"name": "Zenodo"
},
{
"@id": "https://zenodo.org/record/4704867/files/ops-linksets-2.1.1.ro-crate.zip",
"@type": "DataDownload",
"contentSize": 413624342,
"path": "https://zenodo.org/record/4704867/files/ops-linksets-2.1.1.ro-crate.zip",
"datePublished": "2021-04-19T23:00:00.000Z",
"description": "BagIt ZIP archive of the Research Object ops-linksets-2.1.1",
"encodingFormat": "application/zip",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-SA-4.0"
},
"name": "ops-linksets-2.1.1.ro-crate.zip",
"publisher": {
"@id": "https://zenodo.org/"
},
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://zenodo.org/record/4707733/files/ops-surechembl-linksets-0.1.0.data.zip",
"@type": "DataDownload",
"contentSize": 158900,
"path": "https://zenodo.org/record/4707733/files/ops-surechembl-linksets-0.1.0.data.zip",
"encodingFormat": [
"application/vnd.wf4ever.robundle+zip",
{
"@id": "https://w3id.org/bundle/"
}
],
"license": {
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0"
},
"name": "ops-surechembl-linksets-0.1.0.data.zip",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_hgnc.ttl.gz",
"@type": ["File", "Linkset"],
"contentSize": 118297,
"dateModified": "2016-04-18T16:59:36+0100",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0"
},
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"name": "surechembl_hgnc.ttl.gz",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_mesh.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"contentSize": 42681,
"dateModified": "2016-04-18T16:59:36+0100",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0"
},
"name": "surechembl_mesh.ttl.gz",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "https://zenodo.org/record/4707733/files/void.ttl",
"@type": ["File", "DatasetDescription"],
"about": [
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_hgnc.ttl.gz"
},
{
"@id": "https://zenodo.org/record/4707733/files/surechembl_mesh.ttl.gz"
}
],
"contentSize": 10134,
"dateModified": "2016-04-18T16:59:36+0100",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-NC-SA-3.0"
},
"conformsTo": { "@id": "http://www.openphacts.org/specs/2013/WD-datadesc-20130912/" },
"encodingFormat": [
"text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" }
],
"name": "void.ttl",
"sdDatePublished": "2021-04-25T10:45:00+0100"
},
{
"@id": "http://www.openphacts.org/specs/2013/WD-datadesc-20130912",
"@type": "WebSite",
"name": "Dataset Descriptions for the Open Pharmacological Space",
"description": "This is a specification for the metadata to described datasets, and the linksets that relate them, to enable their use within the Open PHACTS discovery platform. The specification defines the metadata properties that are expected to describe datasets and linksets; detailing the creation and publication of the dataset. Details of deploying dataset descriptions and an exchange format for linkset files are also given.",
"datePublished": "2013-09-12T10:00:00Z"
},
{
"@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874",
"@type": "WebSite",
"name": "Turtle",
"description": "Turtle (Terse RDF Triple Language) is a format for expressing data in the Resource Description Framework (RDF) data model.",
"url": "https://www.w3.org/TR/turtle/"
},
{
"@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266",
"@type": "WebSite",
"name": "GZIP Format",
"description": "Compressed single file or file archive",
"url": "https://www.gnu.org/software/gzip/"
},
{
"@id": "linksets/",
"@type": "Dataset",
"dateModified": "2021-04-20T14:55:31.387Z",
"description": "Open PHACTS 2.1 Linksets, unpacked from https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/ims-linksets-2.1.tar.gz",
"distribution": {
"@id": "https://repository.mygrid.org.uk/artifactory/ops-data/2.1/ims/ims-linksets-2.1.tar.gz"
},
"hasPart": [
{
"@id": "linksets/aers/"
},
{
"@id": "linksets/conceptwiki/"
},
{
"@id": "linksets/data/"
},
{
"@id": "linksets/disgenet/"
},
{
"@id": "linksets/drugbank/"
},
{
"@id": "linksets/nextprot/"
},
{
"@id": "linksets/uniprot/"
},
{
"@id": "linksets/wikipathways/"
},
{
"@id": "linksets/load.xml"
},
{
"@id": "linksets/load-github.xml"
},
{
"@id": "linksets/load-relative.xml"
}
],
"identifier": "http://data.openphacts.org/2.1/ims/linksets/",
"name": "linksets",
"publisher": {
"@id": "https://ror.org/027m9bs27"
}
},
{
"@id": "linksets/aers/",
"@type": "Dataset",
"dateModified": "2016-04-19T10:10:15.000Z",
"hasPart": {
"@id": "linksets/aers/aers_drugbank_linkset.ttl.gz"
},
"name": "aers"
},
{
"@id": "linksets/aers/aers_drugbank_linkset.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:15.000Z",
"name": "aers_drugbank_linkset.ttl.gz"
},
{
"@id": "linksets/conceptwiki/",
"@type": "Dataset",
"dateModified": "2016-04-19T10:10:18.000Z",
"hasPart": [
{
"@id": "linksets/conceptwiki/CW-Void_v13.ttl"
},
{
"@id": "linksets/conceptwiki/chemspider.ttl.gz"
},
{
"@id": "linksets/conceptwiki/drugbank_ca_drugs-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/enzyme_expasy_org.ttl.gz"
},
{
"@id": "linksets/conceptwiki/hack.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-gene.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-gene.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_obolibrary_org_obo-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_org_obo_owl_GO.ttl.gz"
},
{
"@id": "linksets/conceptwiki/rdf_ebi_ac_uk_resource_chembl_molecule-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/void_2013-12-12.ttl"
},
{
"@id": "linksets/conceptwiki/wikipathways.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www4_wiwiss_fu_berlin_de_drugbank_resource_drugs-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www4_wiwiss_fu_berlin_de_drugbank_resource_targets-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_drugbank_ca_drugs-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_ebi_ac_uk_chembldb_index_php_compound_inspect-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_hmdb_ca_metabolites-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_pdb_org_pdb_explore-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_pdb_org_pdb_explore-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_pdb_org_pdb_ligand-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_uniprot_org_uniprot-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_uniprot_org_uniprot-gene.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_uniprot_org_uniprot-protein.ttl.gz"
}
],
"license": {
"@id": "https://spdx.org/licenses/CC-BY-SA-3.0"
},
"name": "conceptwiki"
},
{
"@id": "linksets/conceptwiki/CW-Void_v13.ttl",
"@type": ["File", "DatasetDescription"],
"about": "linkset/conceptwiki/",
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "CW-Void_v13.ttl",
"conformsTo": { "@id": "http://www.openphacts.org/specs/2013/WD-datadesc-20130912/" },
"encodingFormat": [
"text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" }
]
},
{
"@id": "linksets/conceptwiki/chemspider.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "chemspider.ttl.gz",
"url": "https://github.com/openphacts/ops-linksets/raw/2.1.1/linksets/linksets/conceptwiki/chemspider.ttl.gz"
},
{
"@id": "linksets/conceptwiki/drugbank_ca_drugs-protein.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "drugbank_ca_drugs-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/enzyme_expasy_org.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "enzyme_expasy_org.ttl.gz"
},
{
"@id": "linksets/conceptwiki/hack.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "hack.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "purl_bioontology_org_ontology_MSH-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-gene.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "purl_bioontology_org_ontology_MSH-gene.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH-protein.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "purl_bioontology_org_ontology_MSH-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_MSH.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:18.000Z",
"name": "purl_bioontology_org_ontology_MSH.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "purl_bioontology_org_ontology_NCIM-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-gene.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "purl_bioontology_org_ontology_NCIM-gene.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM-protein.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "purl_bioontology_org_ontology_NCIM-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_bioontology_org_ontology_NCIM.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "purl_bioontology_org_ontology_NCIM.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_obolibrary_org_obo-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "purl_obolibrary_org_obo-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/purl_org_obo_owl_GO.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "purl_org_obo_owl_GO.ttl.gz"
},
{
"@id": "linksets/conceptwiki/rdf_ebi_ac_uk_resource_chembl_molecule-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:18.000Z",
"name": "rdf_ebi_ac_uk_resource_chembl_molecule-compound.ttl.gz",
"url": "https://github.com/openphacts/ops-linksets/raw/2.1.1/linksets/conceptwiki/rdf_ebi_ac_uk_resource_chembl_molecule-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/void_2013-12-12.ttl",
"@type": ["File", "DatasetDescription"],
"about": {"@id": "linksets/conceptwiki/"},
"dateModified": "2016-04-19T10:10:18.000Z",
"name": "void_2013-12-12.ttl",
"conformsTo": { "@id": "http://www.openphacts.org/specs/2013/WD-datadesc-20130912/" },
"encodingFormat": [
"text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" }
]
},
{
"@id": "linksets/conceptwiki/wikipathways.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "wikipathways.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www4_wiwiss_fu_berlin_de_drugbank_resource_drugs-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:18.000Z",
"name": "www4_wiwiss_fu_berlin_de_drugbank_resource_drugs-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www4_wiwiss_fu_berlin_de_drugbank_resource_targets-protein.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "www4_wiwiss_fu_berlin_de_drugbank_resource_targets-protein.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_drugbank_ca_drugs-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "www_drugbank_ca_drugs-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_ebi_ac_uk_chembldb_index_php_compound_inspect-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "www_ebi_ac_uk_chembldb_index_php_compound_inspect-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_hmdb_ca_metabolites-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:16.000Z",
"name": "www_hmdb_ca_metabolites-compound.ttl.gz"
},
{
"@id": "linksets/conceptwiki/www_pdb_org_pdb_explore-compound.ttl.gz",
"@type": ["File", "Linkset"],
"encodingFormat": [
"application/gzip", "text/turtle",
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/fmt/874" },
{ "@id": "https://www.nationalarchives.gov.uk/PRONOM/x-fmt/266" }
],
"dateModified": "2016-04-19T10:10:17.000Z",
"name": "www_pdb_org_pdb_explore-compound.ttl.gz"