forked from by-covid/BY-COVID_WP5_T5.2_baseline-use-case
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
3068 lines (2737 loc) · 148 KB
/
index.html
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
<html>
<head>
<script type="application/ld+json">
{
"@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"
},
"about": {
"@id": "./"
},
"author": {
"@id": "https://orcid.org/0000-0001-9842-9718"
},
"isBasedOn": {
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json"
}
},
{
"@id": "./",
"@type": "Dataset",
"conformsTo": {
"@id": "https://w3id.org/ro/wfrun/process/0.1"
},
"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": "README.md"
}
],
"identifier": "https://doi.org/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",
"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://orcid.org/0000-0001-9842-9718",
"@type": "Person",
"name": "Stian Soiland-Reyes",
"affiliation": {
"@id": "https://ror.org/027m9bs27"
}
},
{
"@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": "https://w3id.org/ro/wfrun/process/0.1",
"@type": "CreativeWork",
"name": "Process Run Crate",
"version": "0.1"
},
{
"@id": "https://orcid.org/0000-0002-6285-8120",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/05p0enq35"
},
"email": "festupinnan.iacs@aragon.es",
"name": "Francisco Estupiñán-Romero"
},
{
"@id": "https://orcid.org/0000-0001-7316-6990",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/04ejags36"
},
"email": "Nina.VanGoethem@sciensano.be",
"name": "Nina Van Goethem"
},
{
"@id": "https://orcid.org/0000-0002-4409-0664",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/04ejags36"
},
"email": "Marjan.Meurisse@sciensano.be",
"name": "Marjan Meurisse"
},
{
"@id": "https://orcid.org/0000-0002-8783-5478",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/05p0enq35"
},
"email": "jgonzalezga.iacs@aragon.es",
"name": "Javier González-Galindo"
},
{
"@id": "https://orcid.org/0000-0002-0961-3298",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/05p0enq35"
},
"email": "ebernal.iacs@aragon.es",
"name": "Enrique Bernal-Delgado"
},
{
"@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_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_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": "CC BY 4.0"
},
"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_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_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/"
}
],
"name": "BY-COVID - WP5 - Baseline Use Case: SARS-CoV-2 vaccine effectiveness assessment - Study protocol"
},
{
"@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": "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": "https://spdx.org/licenses/CC-BY-4.0",
"identifier": "CC-BY-4.0",
"name": "Creative Commons Attribution 4.0 International",
"url": "https://creativecommons.org/licenses/by/4.0/",
"@type": "Thing"
},
{
"@id": "https://by-covid.eu/",
"@type": "Project",
"name": "BY-COVID",
"description": "BeYond-COVID, make data from COVID-19 and other infectious diseases open and accessible to everyone",
"url": "https://by-covid.eu/",
"funding": {
"@id": "https://doi.org/10.3030/101046203"
}
},
{
"@id": "https://doi.org/10.3030/101046203",
"@type": "Grant",
"name": "HORIZON-INFRA-2021-EMERGENCY-01 101046203",
"funder": {
"@id": "https://ror.org/00k4n6c32"
},
"identifier": "https://doi.org/10.3030/101046203"
},
{
"@id": "https://ror.org/00k4n6c32",
"@type": "Organization",
"name": "European Commission"
},
{
"@id": "#qmd-generation",
"@type": "CreateAction",
"endTime": "2022-07-27T12:00:00+01:00",
"instrument": {
"@id": "https://github.com/quarto-dev/quarto-cli/releases/tag/v1.0.8"
},
"name": "Generating HTML from QMD",
"object": {
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.qmd"
},
"result": {
"@id": "vaccine_effectiveness_causal_model/vaccine_effectiveness_causal_model_v.1.1.0.html"
}
},
{
"@id": "#panda-analysis",
"@type": "CreateAction",
"endTime": "2022-05-27T09:52:32.926250",
"instrument": {
"@id": "https://github.com/pandas-profiling/pandas-profiling"
},
"name": "Execution of pandas-profiling for exploratory data analysis",
"object": [
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_dataset_pop_650k_v.1.1.0.csv"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/config.json"
}
],
"result": [
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.json"
},
{
"@id": "vaccine_effectiveness_synthetic_dataset/vaccine_effectiveness_synthetic_dataset_eda_v.1.1.0.html"
}
],
"startTime": "2022-05-27T09:52:29.847284"
},
{
"@id": "#dataspice-creation",
"@type": "CreateAction",
"endTime": "2022-07-27",
"instrument": {
"@id": "https://docs.ropensci.org/dataspice/"
},
"name": "dataspice JSON-LD created from CSV templates",
"object": [
{
"@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/vaccine_effectiveness_synthetic_pop_10k_v.1.1.0.csv"
}
],
"result": [
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json"
},
{
"@id": "vaccine_effectiveness_common_data_model_specification/docs/vaccine_effectiveness_synthetic_dataset_spice.html"
}
]
},
{
"@id": "#notebook-execution-650k",
"@type": "CreateAction",
"description": "Note that this CSV has only 650k entries, but the Notebook code is meant to crate 1M entries. A modified notebook must have been executed.",
"endTime": "2022-05-24",
"instrument": {
"@id": "vaccine_effectiveness_synthetic_dataset/by-covid_wp5_baseline_generate_synthetic_data_v.1.1.0.ipynb"
},
"name": "Second (?) execution of Jupyter Notebook to generate 650k synthetic dataset",
"result": {
"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_dataset_pop_650k_v.1.1.0.csv"
}
},
{
"@id": "#notebook-execution-1M",
"@type": "CreateAction",
"endTime": "2022-05-24",
"instrument": {
"@id": "vaccine_effectiveness_synthetic_dataset/by-covid_wp5_baseline_generate_synthetic_data_v.1.1.0.ipynb"
},
"name": "Execution of Jupyter Notebook to generate 10k synthetic dataset",
"result": {
"@id": "vaccine_effectiveness_synthetic_dataset/vaccines_effectiveness_synthetic_pop_10k_v.1.1.0.csv"
}
},
{
"@id": "#metadata-creation",
"@type": "CreateAction",
"actionStatus": {
"@id": "http://schema.org/CompletedActionStatus"
},
"agent": {
"@id": "https://orcid.org/0000-0001-9842-9718"
},
"endTime": "2023-01-06",
"name": "RO-Crate metadata created based on README and dataspice JSON-LD",
"object": [
{
"@id": "vaccine_effectiveness_common_data_model_specification/data/metadata/dataspice.json"
},
{
"@id": "README.md"
}
],
"result": {
"@id": "ro-crate-metadata.json"
}
},
{
"@id": "https://orcid.org/0000-0002-9586-7955",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/05p0enq35"
},
"name": "Martínez-Lizaga, Natalia"
},
{
"@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/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": "https://orcid.org/0000-0002-1145-7829",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/008pnp284"
},
"name": "Simon Saldner"
},
{
"@id": "https://orcid.org/0000-0002-7873-6152",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/02m68mv75"
},
"name": "Lorenz Dolanski-Aghamanoukjan"
},
{
"@id": "https://orcid.org/0000-0002-0493-4711",
"@type": "Person",
"affiliation": {
"@id": "https://ror.org/02m68mv75"
},
"name": "Alexander Degelsegger-Marquez"
},
{
"@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": "https://quarto.org/docs/authoring/markdown-basics.html",
"@type": "WebPage",
"name": "Quarto Markdown"
},
{
"@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/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/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/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": "_:b0",
"@type": "Place",
"geo": {
"@id": "_:b42"
},
"name": "Europe"
},
{
"@id": "_:b1",
"@type": "PropertyValue",
"description": "Pseudoid of the person included in the cohort",
"name": "person_id"
},
{
"@id": "_:b2",
"@type": "PropertyValue",
"description": "Age of the person included in the cohort (at the time of entering the cohort)",
"maxValue": 115,
"minValue": 5,
"name": "age_nm",
"unitText": "years"
},
{
"@id": "_:b3",
"@type": "PropertyValue",
"description": "Sex of the person included in the cohort (at the time of entering the cohort)",
"name": "sex_cd"
},
{
"@id": "_:b4",
"@type": "PropertyValue",
"description": "Socioeconomic level of the person in the cohort (at the time of entering the cohort)",
"name": "socecon_lvl_cd"
},
{
"@id": "_:b5",
"@type": "PropertyValue",
"description": "Area of residence of the person included in the cohort (NUTS 3) (at the time of entering the cohort)",
"name": "residence_area_cd"
},
{
"@id": "_:b6",
"@type": "PropertyValue",
"description": "Country of residence of the person included in the cohort (at the time of entering the cohort)",
"name": "country_cd"
},
{
"@id": "_:b7",
"@type": "PropertyValue",
"description": "Is the country of residence different from the country that is doing the analyses?",
"name": "foreign_bl"
},
{
"@id": "_:b8",
"@type": "PropertyValue",
"description": "Date of death of the person (if the person has died)",
"name": "exitus_dt"
},
{
"@id": "_:b9",
"@type": "PropertyValue",
"description": "Date of death of the person (if the person has died during the period of study)",
"name": "exitus_bl"
},
{