-
Notifications
You must be signed in to change notification settings - Fork 2
/
ro-crate-metadata.json
1647 lines (1645 loc) · 56.4 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",
"@graph": [
{
"@id": "ro-crate-metadata.json",
"@type": "CreativeWork",
"conformsTo": [
{
"@id": "https://w3id.org/ro/crate/1.1"
},
{ "@id": "https://w3id.org/workflowhub/workflow-ro-crate/1.0"}
],
"about": {
"@id": "./"
},
"author": {
"@id": "https://orcid.org/0000-0001-9842-9718"
},
"isBasedOn": {
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json"
}
},
{ "@id": "https://w3id.org/ro/wfrun/process/0.1",
"@type": "CreativeWork",
"name": "Process Run Crate",
"version": "0.1"
},
{
"@id": "./",
"@type": "Dataset",
"conformsTo": [
{"@id": "https://w3id.org/ro/wfrun/process/0.1"},
{"@id": "https://w3id.org/ro/wfrun/workflow/0.1"},
{"@id": "https://w3id.org/workflowhub/workflow-ro-crate/1.0"}
],
"author": [
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"codeRepository": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case",
"hasPart": [
{
"@id": "vaccine_effectiveness_analytical_pipeline/"
},
{
"@id": "vaccine_effectiveness_causal_model/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
{
"@id": "vaccine_effectiveness_data_management_plan/"
},
{
"@id": "vaccine_effectiveness_study_protocol/"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/"
},
{
"@id": "analytical-pipeline.png"
},
{
"@id": "conceptual-phase.png"
},
{
"@id": "README.md"
}
],
"distribution": {
"@id": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case/archive/refs/heads/main.zip"
},
"identifier": "https://doi.org/10.5281/zenodo.6913045",
"cite-as": {
"@id": "https://w3id.org/ro/doi/10.5281/zenodo.6913045"
},
"isBasedOn": [
{ "@id": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case/releases/tag/1.0.1" },
{ "@id": "https://doi.org/10.5281/zenodo.6913045" },
{ "@id": "https://doi.org/10.5281/zenodo.7551181" },
{ "@id": "https://doi.org/10.5281/zenodo.7625783" }
],
"keywords": "COVID-19, vaccines, comparative effectiveness, causal inference, international comparison, SARS-CoV-2, common data model, directed acyclic graph, synthetic data",
"license": {
"@id": "https://spdx.org/licenses/CC-BY-4.0"
},
"datePublished": "2023-04-19",
"dateModified": "2023-10-05",
"publisher": {"@id": "https://by-covid.eu/"},
"funding": {
"@id": "https://doi.org/10.3030/101046203"
},
"funder": {
"@id": "https://ror.org/00k4n6c32"
},
"mentions": [
{
"@id": "#qmd-generation"
},
{
"@id": "#panda-analysis"
},
{
"@id": "#dataspice-creation"
},
{
"@id": "#notebook-execution-650k"
},
{
"@id": "#notebook-execution-1M"
},
{
"@id": "#metadata-creation"
}
],
"url": "https://by-covid.github.io/BY-COVID_WP5_T5.2_baseline-use-case/",
"name": "BY-COVID WP5 T5.2 Baseline Use Case",
"version": "1.2.0",
"description": "This publication corresponds to the Research Objects (RO) of the Baseline Use Case proposed in T.5.2 (WP5) in the BY-COVID project on “COVID-19 Vaccine(s) effectiveness in preventing SARS-CoV-2 infection”.",
"assesses": "Research Question: How effective have the SARS-CoV-2 vaccination programmes been in preventing SARS-CoV-2 infections?",
"material": "Cohort definition: All individuals (from 5 to 115 years old, included) vaccinated with at least one dose of the SARS-CoV-2 vaccine (any of the available brands) and all individuals eligible to be vaccinated with a documented positive diagnosis (irrespective of the type of test) for a SARS-CoV-2 infection during the data extraction period.",
"materialExtent": "Inclusion criteria: \n All people vaccinated with at least one dose of the COVID-19 vaccine (any of the available brands) in an area of residence. Any person eligible to be vaccinated (from 5 to 115 years old, included) with a positive diagnosis (irrespective of the type of test) for SARS-CoV-2 infection (COVID-19) during the period of data extraction. \n\n Exclusion criteria: \n People not eligible for the vaccine (from 0 to 4 years old, included)",
"publishingPrinciples": "Study Design: An observational retrospective longitudinal study to assess the effectiveness of the SARS-CoV-2 vaccines in preventing SARS-CoV-2 infections using routinely collected social, health and care data from several countries.\n\nA causal model was established using Directed Acyclic Graphs (DAGs) to map domain knowledge, theories and assumptions about the causal relationship between exposure and outcome. ",
"temporalCoverage": "Study Period: From the date of the first documented SARS-CoV-2 infection in each country to the most recent date in which data is available at the time of analysis. Roughly from 01-03-2020 to 30-06-2022, depending on the country.",
"usageInfo": "The scripts (software) included in the publication are offered \"as-is\", without warranty, and disclaiming liability for damages resulting from using it. The software is released under the CC-BY-4.0 licence, which gives you permission to use the content for almost any purpose (but does not grant you any trademark permissions), so long as you note the license and give credit.",
"releaseNotes": "- Updated Causal model to eliminate the consideration of 'vaccination_schedule_cd' as a mediator\n- Adjusted the study period to be consistent with the Study Protocol\n- Updated 'sex_cd' as a required variable\n- Added 'chronic_liver_disease_bl' as a comorbidity at the individual level\n- Updated 'socecon_lvl_cd' at the area level as a recommended variable\n -Added crosswalks for the definition of 'chronic_liver_disease_bl' in a separate sheet\n -Updated the 'vaccination_schedule_cd' reference to the 'Vaccine' node in the updated DAG\n -Updated the description of the 'confirmed_case_dt' and 'previous_infection_dt' variables to clarify the definition and the need for a single registry per person"
},
{ "@id": "https://w3id.org/ro/wfrun/process/0.1",
"@type": "CreativeWork",
"name": "Process Run Crate",
"version": "0.1"
},
{ "@id": "https://w3id.org/ro/wfrun/workflow/0.1",
"@type": "CreativeWork",
"name": "Workflow Run Crate",
"version": "0.1"
},
{ "@id": "https://w3id.org/workflowhub/workflow-ro-crate/1.0",
"@type": "CreativeWork",
"name": "Workflow RO-Crate",
"version": "1.0"
},
{
"@id": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case/archive/refs/heads/main.zip",
"@type": "DataDownload",
"encodingFormat": "application/zip",
"contentSize": "10978259",
"contentUrl": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case/archive/refs/heads/main.zip"
},
{
"@id": "README.md",
"@type": "File",
"about": {
"@id": "./"
},
"encodingFormat": "text/markdown",
"author": [
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
}
]
},
{
"@id": "vaccine_effectiveness_data_management_plan/",
"@type": "Dataset",
"description": "Data management plan",
"version": "0.0.1",
"datePublished": "2023-02-09",
"identifier": "https://doi.org/10.5281/zenodo.7625783",
"url":"https://zenodo.org/record/7625784",
"creator": [
{
"@id": "https://orcid.org/0000-0002-9586-7955"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"hasPart": [
{
"@id": "vaccine_effectiveness_data_management_plan/DMPBeyond_COVID0.json"
},
{
"@id": "vaccine_effectiveness_data_management_plan/DMP_Beyond COVID_0.pdf"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/"
},
{
"@id": "vaccine_effectiveness_causal_model/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
{
"@id": "vaccine_effectiveness_study_protocol/"
}
],
"name": "BY-COVID - WP5 - Baseline Use Case: SARS-CoV-2 vaccine effectiveness assessment - Data Management Plan"
},
{
"@id": "vaccine_effectiveness_data_management_plan/DMPBeyond_COVID0.json",
"@type": "File",
"description": "SARS-CoV-2 vaccine effectiveness assessment data management plan (machine-readable)",
"encodingFormat": "text/json",
"name": "Data management plan v.0.0.1 (JSON)"
},
{
"@id": "vaccine_effectiveness_data_management_plan/DMP_Beyond COVID_0.pdf",
"@type": "File",
"description": "SARS-CoV-2 vaccine effectiveness assessment data management plan (human-readable)",
"encodingFormat": "text/pdf",
"name": "Data management plan v.0.0.1 (PDF)"
},
{
"@id": "vaccine_effectiveness_study_protocol/",
"@type": "Dataset",
"description": "Study protocol",
"version": "1.0.3",
"datePublished": "2023-04-13",
"identifier": "https://doi.org/10.5281/zenodo.7551181",
"url":"https://zenodo.org/record/7825979",
"creator": [
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478"
},
{
"@id": "https://orcid.org/0000-0002-0048-4370"
},
{
"@id": "https://orcid.org/0000-0002-9586-7955"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"hasPart": [
{
"@id": "vaccine_effectiveness_study_protocol/BY-COVID_WP5.2_baseline-use-case_study-protocol.pdf"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/"
},
{
"@id": "vaccine_effectiveness_causal_model/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/"
}
],
"name": "BY-COVID - WP5 - Baseline Use Case: SARS-CoV-2 vaccine effectiveness assessment - Study protocol"
},
{
"@id": "vaccine_effectiveness_study_protocol/BY-COVID_WP5.2_baseline-use-case_study-protocol.pdf",
"@type": "File",
"description": "SARS-CoV-2 vaccine effectiveness assessment study protocol",
"encodingFormat": "text/pdf",
"name": "Study protocol v.1.0.3 (PDF)"
},
{
"@id": "vaccine_effectiveness_causal_model/",
"@type": "File",
"description": "Causal model responding to the research question, using a Directed Acyclic Graph",
"version": "1.1.0",
"datePublished": "2023-01-26",
"identifier": "https://doi.org/10.5281/zenodo.6913045",
"url": "https://zenodo.org/record/7572373",
"creator": [
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"contributor": [
{
"@id": "https://orcid.org/0000-0002-1145-7829"
},
{
"@id": "https://orcid.org/0000-0002-7873-6152"
},
{
"@id": "https://orcid.org/0000-0002-0493-4711"
},
{
"@id": "https://orcid.org/0000-0002-9586-7955"
}
],
"hasPart": [
{
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.html"
},
{
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.qmd"
}
],
"name": "BY-COVID - WP5 - Baseline Use Case: SARS-CoV-2 vaccine effectiveness assessment - Causal Model"
},
{
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.html",
"@type": "File",
"description": "Interactive report showcasing the structural causal model (DAG) to answer the research question",
"encodingFormat": "text/html",
"name": "COVID-19 vaccine effectiveness causal model v.1.1.0 (HTML)"
},
{
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.qmd",
"@type": "File",
"description": "Quarto RMarkdown script to produce the structural causal model",
"encodingFormat": [
"text/markdown",
{
"@id": "https://quarto.org/docs/authoring/markdown-basics.html"
}
],
"name": "COVID-19 vaccine effectiveness causal model v.1.1.0 (QMD)"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/",
"@type": "Dataset",
"version": "1.1.0",
"datePublished": "2023-01-26",
"identifier": "https://doi.org/10.5281/zenodo.6913045",
"url": "https://zenodo.org/record/7572373",
"creator": [
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"contributor": [
{
"@id": "https://orcid.org/0000-0002-1145-7829"
},
{
"@id": "https://orcid.org/0000-0002-7873-6152"
},
{
"@id": "https://orcid.org/0000-0002-0493-4711"
},
{
"@id": "https://orcid.org/0000-0002-9586-7955"
}
],
"description": "Synthetic data set to test the causal model proposed by the baseline use case in BY-COVID WP5 assessing the effectiveness of the COVID-19 vaccine(s)",
"distribution": {
"@id": "vaccine_effectiveness_common_data_model_specification/data/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv"
},
"hasPart": [
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/docs/"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/vaccine_effectiveness_data_model_specification_v.1.1.0.xlsx"
}
],
"keywords": [
"synthetic data",
"dataset",
"covid-19",
"vaccines",
"effectiveness",
"causal model"
],
"license": {
"@id": "https://spdx.org/licenses/CC-BY-4.0"
},
"mainEntity": {
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/analytical-pipeline.QMD"
},
"name": "COVID-19 vaccine(s) effectiveness assessment (synthetic dataset)",
"spatialCoverage": {
"@id": "_:b0"
},
"subjectOf": {
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/"
},
"temporalCoverage": "01-01-2020/31-12-2024",
"variableMeasured": [
{
"@id": "_:b1"
},
{
"@id": "_:b2"
},
{
"@id": "_:b3"
},
{
"@id": "_:b4"
},
{
"@id": "_:b5"
},
{
"@id": "_:b6"
},
{
"@id": "_:b7"
},
{
"@id": "_:b8"
},
{
"@id": "_:b9"
},
{
"@id": "_:b10"
},
{
"@id": "_:b11"
},
{
"@id": "_:b12"
},
{
"@id": "_:b13"
},
{
"@id": "_:b14"
},
{
"@id": "_:b15"
},
{
"@id": "_:b16"
},
{
"@id": "_:b17"
},
{
"@id": "_:b18"
},
{
"@id": "_:b19"
},
{
"@id": "_:b20"
},
{
"@id": "_:b21"
},
{
"@id": "_:b22"
},
{
"@id": "_:b23"
},
{
"@id": "_:b24"
},
{
"@id": "_:b25"
},
{
"@id": "_:b26"
},
{
"@id": "_:b27"
},
{
"@id": "_:b28"
},
{
"@id": "_:b29"
},
{
"@id": "_:b30"
},
{
"@id": "_:b31"
},
{
"@id": "_:b32"
},
{
"@id": "_:b33"
},
{
"@id": "_:b34"
},
{
"@id": "_:b35"
},
{
"@id": "_:b36"
},
{
"@id": "_:b37"
},
{
"@id": "_:b38"
},
{
"@id": "_:b39"
},
{
"@id": "_:b40"
},
{
"@id": "_:b41"
}
]
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/",
"@type": "Dataset",
"about": {
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
"hasPart": [
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/access.csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/attributes.csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/biblio.csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/creators.csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json"
}
],
"name": "Metadata for Common data model specification"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/access.csv",
"@type": "File",
"conformsTo": {
"@id": "https://docs.ropensci.org/dataspice/#completed-metadata-files"
},
"encodingFormat": "text/csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/attributes.csv",
"@type": "File",
"conformsTo": {
"@id": "https://docs.ropensci.org/dataspice/#create-spice"
},
"encodingFormat": "text/csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/biblio.csv",
"@type": "File",
"conformsTo": {
"@id": "https://docs.ropensci.org/dataspice/#create-spice"
},
"encodingFormat": "text/csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/creators.csv",
"@type": "File",
"conformsTo": {
"@id": "https://docs.ropensci.org/dataspice/#create-spice"
},
"encodingFormat": "text/csv"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json",
"@type": "File",
"description": "Machine-readable version",
"encodingFormat": "application/ld+json",
"mainEntity": {
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
"name": "COVID-19 vaccine effectiveness data model specification dataspice (JSON)"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv",
"@type": [
"DataDownload",
"File"
],
"description": "synthetic data set to test the causal model proposed by the baseline use case in BY-COVID WP5 assessing the effectiveness of the COVID-19 vaccine(s)",
"encodingFormat": "text/csv",
"name": "vaccine_effectiveness_synthetic_pop_10k_v.1.1.0",
"sameAs": [
{"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_pop_10k_v.1.1.0.csv"},
{"@id": "vaccine_effectiveness_analytical_pipeline/input/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv"}
]
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/docs/",
"@type": "Dataset",
"about": {
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
"hasPart": {
"@id": "vaccine_effectiveness_common_data_model_specification/docs/vaccine_effectiveness_synthetic_dataset_spice.html"
},
"name": "Documentation for Common data model specification"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/docs/vaccine_effectiveness_synthetic_dataset_spice.html",
"@type": "File",
"about": {
"@id": "vaccine_effectiveness_common_data_model_specification/"
},
"description": "Human-readable version (interactive report)",
"encodingFormat": "text/html",
"name": "COVID-19 vaccine effectiveness data model specification dataspice (HTML)"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/vaccine_effectiveness_data_model_specification_v.1.1.0.xlsx",
"@type": "File",
"description": "Human-readable version (Excel)",
"encodingFormat": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"name": "vaccine effectiveness data model specification (XLXS)"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/",
"@type": "Dataset",
"version": "1.1.0",
"datePublished": "2023-01-26",
"identifier": "https://doi.org/10.5281/zenodo.6913045",
"url": "https://zenodo.org/record/7572373",
"description": "following the causal model",
"hasPart": [
{
"@id": "vaccine_effectiveness_synthetic_dataset/by-covid_wp5_baseline_generate_synthetic_data_v.1.1.0.ipynb"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.html"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.json"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_dataset_pop_650k_v.1.1.0.csv"
}
],
"name": "Common data model specification"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/by-covid_wp5_baseline_generate_synthetic_data_v.1.1.0.ipynb",
"@type": [
"File",
"SoftwareSourceCode",
"ComputationalWorkflow"
],
"conformsTo": {
"@id": "https://bioschemas.org/profiles/ComputationalWorkflow/1.0-RELEASE"
},
"conditionsOfAccess": "The scripts (software) accompanying the data model specification are offered \"as-is\", without warranty, and disclaiming liability for damages resulting from using it.",
"description": "Jupyter notebook with Python scripting and commenting to generate the synthetic dataset",
"name": "COVID-19 vaccine effectiveness synthetic dataset generation script (IPYNB)",
"programmingLanguage": {
"@id": "https://jupyter.org/"
},
"input": [],
"output": {
"@id": "#960ec5b6-7c87-4feb-966d-c79557ebe8f8"
},
"url": ""
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/config.json",
"@type": "File",
"encodingFormat": "application/json",
"name": "pandas-profiling config"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.html",
"@type": "File",
"description": "Interactive report of the exploratory data analysis (EDA) of the synthetic dataset",
"encodingFormat": "text/html",
"version": "1.1.0",
"name": "COVID-19 vaccine effectiveness synthetic dataset EDA (HTML)"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.json",
"@type": "File",
"description": "Machine-readable version of the exploratory data analysis (EDA) of the synthetic dataset",
"version": "1.1.0",
"encodingFormat": "application/json",
"name": "COVID-19 vaccine effectiveness synthetic dataset EDA (JSON)"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_dataset_pop_650k_v.1.1.0.csv",
"@type": "File",
"version": "1.1.1",
"encodingFormat": "text/csv",
"name": "Synthetic dataset with 650k entries"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/",
"@type": "Dataset",
"version": "1.0.0",
"datePublished": "2023-04-26",
"url": "https://github.com/by-covid/BY-COVID_WP5_T5.2_baseline-use-case/tree/main/vaccine_effectiveness_analytical_pipeline",
"description": "Reproducable analytical pipeline to apply causal inference techniques using distributed observational data",
"author": [
{
"@id": "https://orcid.org/0000-0002-6285-8120"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298"
}
],
"hasPart": [
{
"@id": "vaccine_effectiveness_analytical_pipeline/docker/"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/documentation/BY-COVID-WP5-BaselineUseCase-VE-documentation-analytical-pipeline.pdf"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/input/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/Dockerfile"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/analytical-pipeline.Rproj"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/environment.yml"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/install.R"
}
],
"name": "BY-COVID - WP5 - Baseline Use Case: SARS-CoV-2 vaccine effectiveness assessment - Analytical pipeline"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/Dockerfile",
"@type": "File",
"encodingFormat": "",
"name": "Dockerfile"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/analytical-pipeline.Rproj",
"@type": "File",
"encodingFormat": "text/rproj",
"name": "Analytical pipeline R project file (RPROJ)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/environment.yml",
"@type": "File",
"encodingFormat": "text/yml",
"name": ".yml file listing dependencies (YML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/install.R",
"@type": "File",
"encodingFormat": "text/r",
"name": "Installation required R packages (R)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/install.R",
"@type": "File",
"encodingFormat": "text/r",
"name": "Installation required R packages (R)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/documentation/BY-COVID-WP5-BaselineUseCase-VE-documentation-analytical-pipeline.pdf",
"@type": "File",
"encodingFormat": "text/pdf",
"name": "Documentation analytical pipeline (PDF)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/input/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv",
"@type": "File",
"encodingFormat": "text/csv",
"name": "Synthetic dataset with 10k entries (CSV)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/",
"@type": "Dataset",
"description": "Analytical pipeline output using synthetic data with 10k entries",
"name": "Output analytical pipeline",
"hasPart":[
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/1_DQA.html"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/2_validation.html"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/3_imputation.html"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/4_matching.html"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/5_descriptive.html"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/6_survival-analysis.html"
}, {
"@id": "vaccine_effectiveness_analytical_pipeline/output/results-survival-analysis-ESP.xlsx"
}
]
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/1_DQA.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report with dataset statistics, missing data profiles, potential alerts, and detailed per-variable information (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/2_validation.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report summarizing compliance with the logic validation rules (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/3_imputation.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report summarizing used imputation methods and number of imputed values (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/4_matching.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report to assess matching balance in the obtained study population (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/5_descriptive.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report including the results of survival analysis in the unmatched study population, a table with baseline characteristics of the matched study population and CONSORT diagram (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/6_survival-analysis.html",
"@type": "File",
"encodingFormat": "text/html",
"name": "Interactive report including the analytic results for the meta-analysis (HTML)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/results-survival-analysis-ESP.xlsx",
"@type": "File",
"encodingFormat": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"name": "Aggregated non-sensitive results for meta-analysis (Excel sheet)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/",
"@type": "Dataset",
"description": "Consecutive scripts of the analytical pipeline",
"name": "Scripts analytical pipeline",
"hasPart":[
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/0_global.R"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/1_DQA.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/2_validation.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/3_imputation.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/4_matching.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/4_matching.R"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/5_descriptives.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/6_survival-analysis.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/analytical-pipeline.QMD"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/scripts/analytical-pipeline.html"
}
]
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/0_global.R",
"@type": "File",
"encodingFormat": "text/r",
"name": "Upload the csv file and create a DuckDB database file (R)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/1_DQA.QMD.R",
"@type": "File",
"encodingFormat": "text/qmd",
"name": "Exploration and Data Quality Assessment (DQA) of the original data mapped at each Data Hub (QMD)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/2_validation.QMD",
"@type": "File",
"encodingFormat": "text/qmd",
"name": "Validation (applying logic validation rules) of the original data mapped at each Data Hub (QMD)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/3_imputation.QMD",
"@type": "File",
"encodingFormat": "text/qmd",
"name": "Imputation of missing values in the original data mapped at each Data Hub (QMD)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/4_matching.QMD",
"@type": "File",
"encodingFormat": "text/qmd",
"name": "Iterative matching of the exposed and unexposed, and assessing covariate balance in matched population (QMD)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/4_matching.R.R",
"@type": "File",
"encodingFormat": "text/r",
"name": "Iterative matching of the exposed and unexposed (R)"
},
{
"@id": "vaccine_effectiveness_analytical_pipeline/output/scripts/5_descriptives.QMD",
"@type": "File",
"encodingFormat": "text/qmd",
"name": "Descriptive analysis of the matched and unmatched study population (QMD)"
},
{