-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathgithub_search.yml
14834 lines (14834 loc) · 506 KB
/
github_search.yml
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
- description: "Data on COVID-19 (coronavirus) cases, deaths, hospitalizations, tests\
\ \u2022 All countries \u2022 Updated daily by Our World in Data"
fork: false
forks: 3669
full_name: owid/covid-19-data
homepage: https://ourworldindata.org/coronavirus
stargazers_count: 5594
- description: "RNA vaccines have become a key tool in moving forward through the\
\ challenges raised both in the current pandemic and in numerous other public\
\ health and medical challenges. With the rollout of vaccines for COVID-19, these\
\ synthetic mRNAs have become broadly distributed RNA species in numerous human\
\ populations. Despite their ubiquity, sequences are not always available for\
\ such RNAs. Standard methods facilitate such sequencing. In this note, we provide\
\ experimental sequence information for the RNA components of the initial Moderna\
\ (https://pubmed.ncbi.nlm.nih.gov/32756549/) and Pfizer/BioNTech (https://pubmed.ncbi.nlm.nih.gov/33301246/)\
\ COVID-19 vaccines, allowing a working assembly of the former and a confirmation\
\ of previously reported sequence information for the latter RNA. Sharing of\
\ sequence information for broadly used therapeutics has the benefit of allowing\
\ any researchers or clinicians using sequencing approaches to rapidly identify\
\ such sequences as therapeutic-derived rather than host or infectious in origin.\
\ For this work, RNAs were obtained as discards from the small portions of vaccine\
\ doses that remained in vials after immunization; such portions would have been\
\ required to be otherwise discarded and were analyzed under FDA authorization\
\ for research use. To obtain the small amounts of RNA needed for characterization,\
\ vaccine remnants were phenol-chloroform extracted using TRIzol Reagent (Invitrogen),\
\ with intactness assessed by Agilent 2100 Bioanalyzer before and after extraction.\
\ Although our analysis mainly focused on RNAs obtained as soon as possible\
\ following discard, we also analyzed samples which had been refrigerated (~4\
\ \u2103) for up to 42 days with and without the addition of EDTA. Interestingly\
\ a substantial fraction of the RNA remained intact in these preparations. We\
\ note that the formulation of the vaccines includes numerous key chemical components\
\ which are quite possibly unstable under these conditions-- so these data certainly\
\ do not suggest that the vaccine as a biological agent is stable. But it is\
\ of interest that chemical stability of RNA itself is not sufficient to preclude\
\ eventual development of vaccines with a much less involved cold-chain storage\
\ and transportation. For further analysis, the initial RNAs were fragmented\
\ by heating to 94\u2103, primed with a random hexamer-tailed adaptor, amplified\
\ through a template-switch protocol (Takara SMARTerer Stranded RNA-seq kit),\
\ and sequenced using a MiSeq instrument (Illumina) with paired end 78-per end\
\ sequencing. As a reference material in specific assays, we included RNA of\
\ known concentration and sequence (from bacteriophage MS2). From these data,\
\ we obtained partial information on strandedness and a set of segments that could\
\ be used for assembly. This was particularly useful for the Moderna vaccine,\
\ for which the original vaccine RNA sequence was not available at the time our\
\ study was carried out. Contigs encoding full-length spikes were assembled from\
\ the Moderna and Pfizer datasets. The Pfizer/BioNTech data [Figure 1] verified\
\ the reported sequence for that vaccine (https://berthub.eu/articles/posts/reverse-engineering-source-code-of-the-biontech-pfizer-vaccine/),\
\ while the Moderna sequence [Figure 2] could not be checked against a published\
\ reference. RNA preparations lacking dsRNA are desirable in generating vaccine\
\ formulations as these will minimize an otherwise dramatic biological (and nonspecific)\
\ response that vertebrates have to double stranded character in RNA (https://www.nature.com/articles/nrd.2017.243).\
\ In the sequence data that we analyzed, we found that the vast majority of reads\
\ were from the expected sense strand. In addition, the minority of antisense\
\ reads appeared different from sense reads in lacking the characteristic extensions\
\ expected from the template switching protocol. Examining only the reads with\
\ an evident template switch (as an indicator for strand-of-origin), we observed\
\ that both vaccines overwhelmingly yielded sense reads (>99.99%). Independent\
\ sequencing assays and other experimental measurements are ongoing and will be\
\ needed to determine whether this template-switched sense read fraction in the\
\ SmarterSeq protocol indeed represents the actual dsRNA content in the original\
\ material. This work provides an initial assessment of two RNAs that are now\
\ a part of the human ecosystem and that are likely to appear in numerous other\
\ high throughput RNA-seq studies in which a fraction of the individuals may have\
\ previously been vaccinated. ProtoAcknowledgements: Thanks to our colleagues\
\ for help and suggestions (Nimit Jain, Emily Greenwald, Lamia Wahba, William\
\ Wang, Amisha Kumar, Sameer Sundrani, David Lipman, Bijoyita Roy). Figure 1:\
\ Spike-encoding contig assembled from BioNTech/Pfizer BNT-162b2 vaccine. Although\
\ the full coding region is included, the nature of the methodology used for sequencing\
\ and assembly is such that the assembled contig could lack some sequence from\
\ the ends of the RNA. Within the assembled sequence, this hypothetical sequence\
\ shows a perfect match to the corresponding sequence from documents available\
\ online derived from manufacturer communications with the World Health Organization\
\ [as reported by https://berthub.eu/articles/posts/reverse-engineering-source-code-of-the-biontech-pfizer-vaccine/].\
\ The 5\u2019 end for the assembly matches the start site noted in these documents,\
\ while the read-based assembly lacks an interrupted polyA tail (A30(GCATATGACT)A70)\
\ that is expected to be present in the mRNA. "
fork: false
forks: 505
full_name: NAalytics/Assemblies-of-putative-SARS-CoV2-spike-encoding-mRNA-sequences-for-vaccines-BNT-162b2-and-mRNA-1273
homepage: null
stargazers_count: 3398
- description: API for Current cases and more stuff about COVID-19 and Influenza
fork: false
forks: 662
full_name: disease-sh/API
homepage: https://disease.sh/
stargazers_count: 2419
- description: Exposure Notification Reference Server | Covid-19 Exposure Notifications
fork: false
forks: 305
full_name: google/exposure-notifications-server
homepage: https://www.google.com/covid19/exposurenotifications/
stargazers_count: 2196
- description: Python script to download all Springer books released for free during
the 2020 COVID-19 quarantine
fork: false
forks: 370
full_name: alexgand/springer_free_books
homepage: null
stargazers_count: 1639
- description: An awesome list of FREE resources for training, conferences, speaking,
labs, reading, etc that are free. Originally built during COVID-19 for cybersecurity
professionals with downtime can take advantage of to improve their skills and
marketability to come out on the other side ready to rock. Now its taken on a
life of its own and will persist, COVID be damned.
fork: false
forks: 235
full_name: gerryguy311/Free_CyberSecurity_Professional_Development_Resources
homepage: ''
stargazers_count: 1443
- description: A collection of work related to COVID-19
fork: false
forks: 442
full_name: k-sys/covid-19
homepage: null
stargazers_count: 1393
- description: This is the COVID-19 CovidSim microsimulation model developed by the
MRC Centre for Global Infectious Disease Analysis hosted at Imperial College,
London.
fork: false
forks: 255
full_name: mrc-ide/covid-sim
homepage: ''
stargazers_count: 1223
- description: Web app for adding EU Digital COVID Certificates to your wallet apps
fork: false
forks: 66
full_name: covidpass-org/covidpass
homepage: https://covidpass.marvinsextro.de
stargazers_count: 1221
- description: Official data on the COVID-19 epidemic in Malaysia. Powered by CPRC,
CPRC Hospital System, MKAK, and MySejahtera.
fork: false
forks: 650
full_name: MoH-Malaysia/covid19-public
homepage: ''
stargazers_count: 949
- description: null
fork: false
forks: 459
full_name: abuanwar072/Covid-19-Flutter-UI
homepage: null
stargazers_count: 943
- description: Exposure notification client application / Application client de notification
d'exposition
fork: false
forks: 110
full_name: cds-snc/covid-alert-app
homepage: ''
stargazers_count: 898
- description: Source code of the Beta of the NHS COVID-19 iOS app
fork: false
forks: 178
full_name: ukhsa-collaboration/COVID-19-app-iOS-BETA
homepage: https://covid19.nhs.uk/
stargazers_count: 803
- description: "\U0001FAC1 The world's first open-source ventilator tested on human\
\ patients. Mass-producible at a low cost (~2000\u20AC)."
fork: false
forks: 80
full_name: makers-for-life/makair
homepage: https://makair.life/
stargazers_count: 793
- description: Source code of the Beta of the NHS COVID-19 Android app
fork: false
forks: 150
full_name: ukhsa-collaboration/COVID-19-app-Android-BETA
homepage: https://covid19.nhs.uk/
stargazers_count: 783
- description: Systematic dataset of Covid-19 policy, from Oxford University
fork: false
forks: 435
full_name: OxCGRT/covid-policy-tracker
homepage: https://www.bsg.ox.ac.uk/covidtracker
stargazers_count: 748
- description: "COVID-19 Widget ( Inzidenz / Impfquoten / Hospitalisierungen ) f\xFC\
r iOS innerhalb Deutschlands \U0001F1E9\U0001F1EA (Kreis/Stadt + Bundesland +\
\ Trend)"
fork: false
forks: 98
full_name: rphl/corona-widget
homepage: ''
stargazers_count: 672
- description: Moved to https://github.com/covid19india/data/
fork: false
forks: 625
full_name: covid19india/api
homepage: https://api.covid19india.org
stargazers_count: 668
- description: "\uC794\uC5EC\uBC31\uC2E0 \uC870\uD68C \uBC0F \uC608\uC57D \uB9E4\uD06C\
\uB85C"
fork: false
forks: 250
full_name: SJang1/2021-korea-covid-19-remaining-vaccine-macro
homepage: ''
stargazers_count: 662
- description: Source code and data for The Economist's covid-19 excess deaths tracker
fork: false
forks: 162
full_name: TheEconomist/covid-19-excess-deaths-tracker
homepage: https://www.economist.com/graphic-detail/coronavirus-excess-deaths-tracker
stargazers_count: 643
- description: Models of SEIRS epidemic dynamics with extensions, including network-structured
populations, testing, contact tracing, and social distancing.
fork: false
forks: 208
full_name: ryansmcgee/seirsplus
homepage: ''
stargazers_count: 634
- description: React Native client application for COVID Shield on iOS and Android
fork: false
forks: 120
full_name: CovidShield/mobile
homepage: https://covidshield.app
stargazers_count: 603
- description: This very basic script can be used to automate some steps on Co-WIN
Platform.
fork: false
forks: 549
full_name: pallupz/covid-vaccine-booking
homepage: ''
stargazers_count: 601
- description: "LINEBOT\u804A\u5929\u6A5F\u5668\u4EBA | \u8FFD\u8E64\u5404\u570BCovid-19\u78BA\
\u8A3A\u72C0\u6CC1"
fork: false
forks: 0
full_name: Yubo0826/line-bot-covid19-tracker
homepage: ''
stargazers_count: 564
- description: Inisiatif warga untuk berbagi informasi seputar fasilitas kesehatan
dan alat kesehatan untuk COVID-19.
fork: false
forks: 171
full_name: kawalcovid19/wargabantuwarga.com
homepage: https://www.wargabantuwarga.com
stargazers_count: 548
- description: "Service de g\xE9n\xE9ration de l'attestation de d\xE9placement d\xE9\
rogatoire \xE0 pr\xE9senter dans le cadre du confinement li\xE9 au virus covid-19"
fork: false
forks: 189
full_name: LAB-MI/deplacement-covid-19
homepage: https://media.interieur.gouv.fr/deplacement-covid-19
stargazers_count: 536
- description: "Automatische Impfterminbuchung f\xFCr www.impfterminservice.de"
fork: false
forks: 118
full_name: timreibe/vaccipy
homepage: ''
stargazers_count: 536
- description: Open Data su consegna e somministrazione dei vaccini anti COVID-19
in Italia - Commissario straordinario per l'emergenza Covid-19
fork: false
forks: 205
full_name: italia/covid19-opendata-vaccini
homepage: ''
stargazers_count: 533
- description: null
fork: false
forks: 139
full_name: GUI/covid-vaccine-spotter
homepage: https://www.vaccinespotter.org
stargazers_count: 524
- description: 'BERTweet: A pre-trained language model for English Tweets (EMNLP-2020)'
fork: false
forks: 56
full_name: VinAIResearch/BERTweet
homepage: ''
stargazers_count: 512
- description: 'Weibo-COV: A Large-Scale COVID-19 Social Media Dataset from Weibo'
fork: false
forks: 93
full_name: nghuyong/weibo-cov
homepage: ''
stargazers_count: 510
- description: "Para se\xF1alar fuente de los datos se\xF1alar que vienen de este\
\ repositorio, junto con la fuente de or\xEDgen: \"Datos obtenidos desde el Ministerio\
\ de Ciencia y producidos por el Ministerio de Salud (o la fuente que corresponda)\
\ https://github.com/MinCiencia/Datos-COVID19\". Please attribute data provenance:\
\ produced by Chile Ministry of Health and obtained from Ministry of Science https://github.com/MinCiencia/Datos-COVID19\""
fork: false
forks: 998
full_name: MinCiencia/Datos-COVID19
homepage: http://www.minciencia.gob.cl/COVID19
stargazers_count: 504
- description: "Official data on Malaysia's National Covid-\u200B19 Immunisation Programme\
\ (PICK). Powered by MySejahtera."
fork: false
forks: 189
full_name: CITF-Malaysia/citf-public
homepage: ''
stargazers_count: 501
- description: 'Materials for MIT 6.S083 / 18.S190: Computational thinking with Julia
+ application to the COVID-19 pandemic'
fork: false
forks: 163
full_name: mitmath/6S083
homepage: ''
stargazers_count: 489
- description: COVID Tracker App Repository
fork: false
forks: 77
full_name: HSEIreland/covid-tracker-app
homepage: ''
stargazers_count: 476
- description: COVID Safe Paths (based on Private Kit) is an open and privacy preserving
system to use personal information to battle COVID
fork: false
forks: 289
full_name: Path-Check/safeplaces-dct-app
homepage: https://covidsafepaths.org
stargazers_count: 469
- description: 'Data archive of identifiable COVID-19 related public projects on GitHub '
fork: false
forks: 223
full_name: github/covid-19-repo-data
homepage: ''
stargazers_count: 460
- description: Datasets of daily time-series data related to COVID-19 for over 20,000
distinct locations around the world.
fork: false
forks: 129
full_name: GoogleCloudPlatform/covid-19-open-data
homepage: ''
stargazers_count: 460
- description: "\U0001F637\uFE0F\U0001F1F5\U0001F1F9 Dados relativos \xE0 pandemia\
\ COVID-19 em Portugal "
fork: false
forks: 186
full_name: dssg-pt/covid19pt-data
homepage: null
stargazers_count: 450
- description: Official repository for the STAYAWAY COVID mobile application
fork: false
forks: 46
full_name: stayawayinesctec/stayaway-app
homepage: https://stayaway.inesctec.pt
stargazers_count: 449
- description: The Economist's model to estimate excess deaths to the covid-19 pandemic
fork: false
forks: 79
full_name: TheEconomist/covid-19-the-economist-global-excess-deaths-model
homepage: https://www.economist.com/graphic-detail/coronavirus-excess-deaths-estimates
stargazers_count: 440
- description: 'COVID-19 data in Brazil: cases, deaths, and vaccination at municipal
(city) level. Description of the data: https://github.com/wcota/covid19br/blob/master/DESCRIPTION.en.md
and https://doi.org/10.1590/SciELOPreprints.362'
fork: false
forks: 137
full_name: wcota/covid19br
homepage: https://covid19br.wcota.me/
stargazers_count: 437
- description: This repository contains simple COVID19 data monitoring with android
stack MVVM, Live Data, Koin, RxJava, RxBinding, Offline first with simple caching,
etc
fork: false
forks: 115
full_name: rizmaulana/kotlin-mvvm-covid19
homepage: null
stargazers_count: 433
- description: This is the repository for the front-end of the NZ COVID Tracer app.
fork: false
forks: 46
full_name: minhealthnz/nzcovidtracer-app
homepage: https://www.health.govt.nz/nz-covid-tracer
stargazers_count: 430
- description: Projections of COVID-19, in standardized format
fork: false
forks: 328
full_name: reichlab/covid19-forecast-hub
homepage: https://covid19forecasthub.org
stargazers_count: 423
- description: "\u4E2D\u56FD\u65B0\u578B\u51A0\u72B6\u75C5\u6BD2\u80BA\u708E\u5730\
\u7EA7\u5E02\u75AB\u60C5\u56FE"
fork: false
forks: 110
full_name: lispc/covid19-citymap-china
homepage: https://lispc.github.io/covid19-citymap-china/
stargazers_count: 408
- description: A social distancing analyzer AI tool to regulate social distancing
protocol using video surveillance of CCTV cameras and drones. Social Distancing
Analyser to prevent COVID19
fork: false
forks: 203
full_name: Ank-Cha/Social-Distancing-Analyser-COVID-19
homepage: ''
stargazers_count: 407
- description: This is the code running in AWS Lambda powering covid-api.mmediagroup.fr/v1.
The API provides realtime and historical data on Coronavirus COVID-19 confirmed
cases, deaths, and recovered cases. This API has now been called over 40 million
times, thank you!
fork: false
forks: 29
full_name: M-Media-Group/Covid-19-API
homepage: https://covid-api.mmediagroup.fr/v1/cases
stargazers_count: 407
- description: "Native Android\_app using DP^3T Android sdk to handle Exposure Notifications\
\ API from Google"
fork: false
forks: 86
full_name: RadarCOVID/radar-covid-android
homepage: ''
stargazers_count: 391
- description: Documents related to covid certificate system in Switzerland
fork: false
forks: 19
full_name: admin-ch/CovidCertificate-Documents
homepage: ''
stargazers_count: 375
- description: COVID-19 Projections Using Machine Learning
fork: false
forks: 91
full_name: youyanggu/covid19_projections
homepage: https://covid19-projections.com
stargazers_count: 369
- description: COVID-19 Coronavirus data scraped from government and curated data
sources.
fork: false
forks: 184
full_name: covidatlas/coronadatascraper
homepage: https://coronadatascraper.com
stargazers_count: 369
- description: "App para ver el estado de la vacunaci\xF3n COVID-19 en Espa\xF1a"
fork: false
forks: 134
full_name: midudev/covid-vacuna
homepage: https://covid-vacuna.app
stargazers_count: 349
- description: Epidemiological Data from the COVID-19 Epidemic in Canada
fork: false
forks: 139
full_name: ccodwg/Covid19Canada
homepage: https://opencovid.ca/
stargazers_count: 328
- description: COVID-19 imaging-based AI paper collection
fork: false
forks: 94
full_name: HzFu/COVID19_imaging_AI_paper_list
homepage: null
stargazers_count: 328
- description: COVID Rest API for India data, using Cloudflare Workers
fork: false
forks: 82
full_name: amodm/api-covid19-in
homepage: ''
stargazers_count: 326
- description: Coronavirus - (COVID-19) Full Stack Application
fork: false
forks: 100
full_name: anshumanpattnaik/covid19-full-stack-application
homepage: ''
stargazers_count: 325
- description: Excess mortality during COVID-19 pandemic
fork: false
forks: 45
full_name: dkobak/excess-mortality
homepage: ''
stargazers_count: 318
- description: How does COVID-19 spread around the world? Charts, data, dashboards
and interpretations...
fork: false
forks: 35
full_name: rozierguillaume/covid-19
homepage: null
stargazers_count: 310
- description: 'Inf-Net: Automatic COVID-19 Lung Infection Segmentation from CT Images,
IEEE TMI 2020.'
fork: false
forks: 97
full_name: DengPingFan/Inf-Net
homepage: http://dpfan.net/InfNet
stargazers_count: 306
- description: Script to check the available slots for Covid-19 Vaccination Centers
from CoWIN API in India.
fork: false
forks: 273
full_name: bhattbhavesh91/cowin-vaccination-slot-availability
homepage: ''
stargazers_count: 303
- description: Tracking the growth of COVID-19 Cases worldwide
fork: false
forks: 110
full_name: aatishb/covidtrends
homepage: https://aatishb.com/covidtrends/
stargazers_count: 302
- description: null
fork: false
forks: 54
full_name: covidgreen/covid-green-app
homepage: null
stargazers_count: 299
- description: "Exposure Notification: Diagnosis Server implementation / Notification\
\ d\u2019exposition : Mise en \u0153uvre du serveur de diagnostic"
fork: false
forks: 31
full_name: cds-snc/covid-alert-server
homepage: ''
stargazers_count: 299
- description: null
fork: false
forks: 90
full_name: rtcovidlive/covid-model
homepage: null
stargazers_count: 295
- description: null
fork: false
forks: 164
full_name: COVID19Tracking/covid-tracking-data
homepage: ''
stargazers_count: 293
- description: An agent-based simulation of corona and other viruses in python
fork: false
forks: 77
full_name: paulvangentcom/python_corona_simulation
homepage: ''
stargazers_count: 293
- description: "\U0001F9A0Corona Virus / Covid 19 Tracker Dashboard With Awesome UI\
\ + PWA + NodeJS Scraper"
fork: false
forks: 102
full_name: OssamaRafique/Covid-19-Statistics-Dashboard-Angular-9
homepage: https://corona-statistics-and-tracker-dashboard-angular-9.vercel.app
stargazers_count: 282
- description: "\U0001F30F An interactive 3D visualization of COVID-19."
fork: false
forks: 74
full_name: wobsoriano/covid3d
homepage: https://covid-3d.vercel.app/
stargazers_count: 280
- description: "\u4F7F\u7528 flask + pyecharts \u642D\u5EFA\u7684\u65B0\u51A0\u80BA\
\u708E\u75AB\u60C5\u6570\u636E\u53EF\u89C6\u5316\u4EA4\u4E92\u5206\u6790\u7F51\
\u7AD9\u5E73\u53F0\uFF0C\u5305\u542B\u75AB\u60C5\u6570\u636E\u83B7\u53D6\u3001\
\u6BCF\u65E5\u75AB\u60C5\u5730\u56FE\u3001\u66F2\u7EBF\u56FE\u5C55\u793A\uFF0C\
\u6570\u636E\u7EDF\u8BA1\u5206\u6790\u3001\u6001\u52BF\u611F\u77E5\u3001\u786E\
\u8BCA\u4EBA\u6570\u9884\u6D4B\u5206\u6790\u7B97\u6CD5\u8BBE\u8BA1\u3001NLP\u8206\
\u60C5\u76D1\u6D4B\u7B49\u4EFB\u52A1\uFF08\u90E8\u7F72\u5728http://covid.yunwei123.tech/\uFF09"
fork: false
forks: 70
full_name: yunwei37/COVID-19-NLP-vis
homepage: http://covid.yunwei123.tech/
stargazers_count: 280
- description: Daily time-series epidemiology and hospitalization data for all countries,
state/province data for 50+ countries and county/municipality data for CO, FR,
NL, PH, UK and US. Covariates for all available regions include demographics,
mobility reports, government interventions, weather and more.
fork: false
forks: 62
full_name: open-covid-19/data
homepage: https://open-covid-19.github.io/explorer
stargazers_count: 278
- description: "A console-oriented COVID-19 tracker with real-time updates for your\
\ favorite terminal. \U0001F4BB\U0001F30F\U0001F637"
fork: false
forks: 47
full_name: OSSPhilippines/covid19-tracker-cli
homepage: https://covid19-cli.wareneutron.com
stargazers_count: 277
- description: "\U0001F4C8 Coronavirus (COVID-19) dashboard to show the dynamics of\
\ \u0421oronavirus distribution per country"
fork: false
forks: 76
full_name: trekhleb/covid-19
homepage: https://trekhleb.dev/covid-19/
stargazers_count: 267
- description: "Speed-up Covid-19 vaccination campaigns \U0001F489"
fork: false
forks: 56
full_name: hostolab/covidliste
homepage: https://www.covidliste.com
stargazers_count: 262
- description: 'A repo for coronavirus related case count data from around the world.
The repo will be regularly updated. '
fork: false
forks: 106
full_name: microsoft/Bing-COVID-19-Data
homepage: null
stargazers_count: 261
- description: Estimating the COVID risk of ordinary activities
fork: false
forks: 55
full_name: microCOVID/microCOVID
homepage: https://www.microCOVID.org
stargazers_count: 260
- description: "\U0001F9A0\U0001F1E9\U0001F1EA\U0001F4C8 An API for the spread of\
\ covid-19 in Germany. Data from Robert-Koch-Institut."
fork: false
forks: 53
full_name: marlon360/rki-covid-api
homepage: https://api.corona-zahlen.org/
stargazers_count: 260
- description: "COVID-19 Mobility Data Aggregator. Scraper of Google, Apple, Waze\
\ and TomTom COVID-19 Mobility Reports\U0001F6B6\U0001F698\U0001F689"
fork: false
forks: 56
full_name: ActiveConclusion/COVID19_mobility
homepage: ''
stargazers_count: 256
- description: COVID-19 data for New Zealand
fork: false
forks: 69
full_name: minhealthnz/nz-covid-data
homepage: ''
stargazers_count: 254
- description: "\U0001F9A0 Automatically submit BUPT COVID-19 statistics through GitHub\
\ Actions / \u4F7F\u7528 GitHub Actions \u81EA\u52A8\u586B\u62A5\u5317\u90AE COVID-19\
\ \u75AB\u60C5\u4FE1\u606F"
fork: false
forks: 284
full_name: imtsuki/bupt-ncov-report-action
homepage: ''
stargazers_count: 251
- description: A worldwide epidemiological database for COVID-19 at fine-grained spatial
resolution
fork: false
forks: 92
full_name: covid19datahub/COVID19
homepage: https://covid19datahub.io
stargazers_count: 249
- description: Dashboard for tracking Coronavirus (COVID-19) across the UK
fork: false
forks: 43
full_name: UKHSA-Internal/coronavirus-dashboard
homepage: https://coronavirus.data.gov.uk
stargazers_count: 248
- description: "\U0001F469\U0001F3FB\u200D\u2695\uFE0FCovid-19 estimation and forecast\
\ using statistical model; \u65B0\u578B\u51A0\u72B6\u75C5\u6BD2\u80BA\u708E\u7EDF\
\u8BA1\u6A21\u578B\u9884\u6D4B (Jan 2020)"
fork: false
forks: 66
full_name: YiranJing/Coronavirus-Epidemic-COVID-19
homepage: ''
stargazers_count: 243
- description: Python script to decode the EU Covid-19 vaccine certificate
fork: false
forks: 93
full_name: hannob/vacdec
homepage: null
stargazers_count: 241
- description: Face Mask Detection using NVIDIA Transfer Learning Toolkit (TLT) and
DeepStream for COVID-19
fork: false
forks: 94
full_name: NVIDIA-AI-IOT/face-mask-detection
homepage: ''
stargazers_count: 237
- description: An easy-to-use PWA to monitor the user's wellness and learn about COVID-19.
fork: false
forks: 98
full_name: COVID-19-electronic-health-system/Corona-tracker
homepage: https://coronatracker.me/
stargazers_count: 236
- description: "Dieses Scriptable-Skript erzeugt ein Widget, das den Verlauf der 7-Tage-Inzidenz\
\ und die Auslastung der Intensivbetten am aktuellen Standort anzeigt. Zus\xE4\
tzlich angezeigt wird der aktuelle Wert der 7-Tage-Inzidenz des zugeh\xF6rigen\
\ Bundeslandes und der Impfstatus des Bundeslandes."
fork: false
forks: 14
full_name: marcusraitner/COVID-19-Dashboard
homepage: ''
stargazers_count: 232
- description: COVID-19 Futures, Explained With Playable Simulations
fork: false
forks: 108
full_name: ncase/covid-19
homepage: null
stargazers_count: 226
- description: "iOS App for Japanese Exposure Notification App to fight against COVID-19\
\ a.k.a. \"\u307E\u3082\u308A\u3042\u3044JAPAN\"."
fork: false
forks: 17
full_name: mamori-i-japan/mamori-i-japan-ios
homepage: ''
stargazers_count: 223
- description: "Extensive and accessible COVID-19 data + forecasting for counties\
\ and hospitals. \U0001F4C8"
fork: false
forks: 89
full_name: Yu-Group/covid19-severity-prediction
homepage: https://arxiv.org/abs/2005.07882
stargazers_count: 222
- description: null
fork: false
forks: 36
full_name: contactmodel/COVID19-Japan-Reff
homepage: null
stargazers_count: 221
- description: 'COVID-19 Agent-based Simulator (Covasim): a model for exploring coronavirus
dynamics and interventions'
fork: false
forks: 200
full_name: InstituteforDiseaseModeling/covasim
homepage: https://covasim.org
stargazers_count: 221
- description: Informationssammlung zum Thema CoVid-19
fork: false
forks: 38
full_name: cwoomi/cert-covid19
homepage: ''
stargazers_count: 220
- description: California COVID Assessment Tool
fork: false
forks: 100
full_name: StateOfCalifornia/CalCAT
homepage: ''
stargazers_count: 218
- description: "Ci\xEAncia de Dados aplicada \xE0 pandemia do novo coronav\xEDrus."
fork: false
forks: 58
full_name: 3778/COVID-19
homepage: https://covid-simulator.3778.care/
stargazers_count: 217
- description: Verification component for COVID-19 Exposure Notifications.
fork: false
forks: 96
full_name: google/exposure-notifications-verification-server
homepage: ''
stargazers_count: 216
- description: Plots and analysis relating to the pandemic
fork: false
forks: 55
full_name: VictimOfMaths/COVID-19
homepage: null
stargazers_count: 215
- description: "2019\u65B0\u578B\u51A0\u72B6\u75C5\u6BD2\u75AB\u60C5\u53EF\u89C6\u5316\
\u3002COVID-2019(\u539FNCOV)\uFF0C\u6B66\u6C49(WuHan)\u75AB\u60C5\u3001\u5168\u56FD\
\u75AB\u60C5\u5730\u56FE\u53CA\u65F6\u95F4\u8F74\u53D8\u5316\uFF0C\u5404\u7701\
\u5E02\u5730\u56FE\u53CA\u75AB\u60C5\u66F2\u7EBF\u3002\u75AB\u60C5\u6570\u636E\
\u5206\u6790\u7CFB\u7EDF\uFF0C\u75AB\u60C5\u5C0F\u533A\u53EF\u89C6\u5316\uFF0C\
COVID-2019 Data Visualization Analysis System (\u524D\u7AEF+\u540E\u7AEF+\u6570\
\u636E\u6E05\u6D17)"
fork: false
forks: 60
full_name: simonblowsnow/COVID-19-Visualization
homepage: http://106.54.48.46:8002
stargazers_count: 215
- description: The Los Angeles Times' open-source archive of California coronavirus
data
fork: false
forks: 136
full_name: datadesk/california-coronavirus-data
homepage: https://www.latimes.com/coronavirustracker
stargazers_count: 214
- description: Using HERE Technologies APIs, fork and build your own COVID-19 Tracker.
For a live version, see the website.
fork: false
forks: 115
full_name: heremaps/here-covid-19-tracker
homepage: https://developer.here.com/coronavirus/
stargazers_count: 209
- description: Fighting against COVID-19 via privacy-first Bluetooth tracing
fork: false
forks: 58
full_name: covid19cz/erouska-android
homepage: https://erouska.cz
stargazers_count: 205
- description: A repository for storing a list of awesome folks looking for their
next engineering gig. If you have been impacted by COVID layoffs, or just job
searching in these hard times, send a PR to include you
fork: false
forks: 213
full_name: shrutikapoor08/talent-for-hire
homepage: null
stargazers_count: 204
- description: null
fork: false
forks: 256
full_name: CleverProgrammers/react-covid-tracker
homepage: null
stargazers_count: 203
- description: COVID19 app backend
fork: false
forks: 52
full_name: ukhsa-collaboration/covid19-app-system-public
homepage: null
stargazers_count: 202
- description: Data analysis and visualizations of daily COVID cases report
fork: false
forks: 157
full_name: govex/COVID-19
homepage: null
stargazers_count: 201
- description: Design documentatie rondom Covid19 Notificatie App
fork: false
forks: 38
full_name: minvws/nl-covid19-notification-app-design
homepage: ''
stargazers_count: 199
- description: Create your own dashboard web app with free resources
fork: false
forks: 72
full_name: Unicorndy/covid19_dashboard
homepage: null
stargazers_count: 197
- description: An [IN PROGRESS] open source, low cost, low resource, quick deployment
ventilator design that utilizes a Ambu-bag as a core component. Another project
into the "war" against COVID-19. [Repo in Potuguese]
fork: false
forks: 53
full_name: Inspire-Poli-USP/Inspire-OpenLung
homepage: https://www.poli.usp.br/inspire
stargazers_count: 196
- description: "\U0001F9A0 Django + Plotly Coronavirus dashboard. Powerful data driven\
\ Python web-app, with an awesome UI. Contributions welcomed! Featured on \U0001F576\
Awesome-list "
fork: false
forks: 166
full_name: BrianRuizy/covid19-dashboard
homepage: https://covid-dashboard.herokuapp.com
stargazers_count: 195
- description: 'The COVID-19 Testing Gap: an interactive data visualization'
fork: false
forks: 18
full_name: lachlanjc/covidtesting
homepage: https://covidtesting.vercel.app
stargazers_count: 192
- description: Covid 2019 interactive mapping tool
fork: false
forks: 181
full_name: eparker12/nCoV_tracker
homepage: null
stargazers_count: 189
- description: "\u75AB\u60C5\u671F\u95F4\u7684\u56DE\u56FD\u822A\u73ED\u6C47\u603B"
fork: false
forks: 46
full_name: USCreditCardGuide/airlines-to-china-covid-19
homepage: null
stargazers_count: 189
- description: A two-week effort to help support indie developers shipping apps on
Apple's platforms who have been financially impacted by the COVID-19 pandemic.
fork: false
forks: 98
full_name: JohnSundell/IndieSupportWeeks
homepage: null
stargazers_count: 183
- description: 'DS4C: Data Science for COVID-19 in South Korea'
fork: false
forks: 64
full_name: jihoo-kim/Data-Science-for-COVID-19
homepage: ''
stargazers_count: 182
- description: The dashboard provides information on the outbreak and prevalence of
COVID-19 in The Netherlands
fork: false
forks: 45
full_name: minvws/nl-covid19-data-dashboard
homepage: https://coronadashboard.rijksoverheid.nl/
stargazers_count: 178
- description: null
fork: false
forks: 51
full_name: Priesemann-Group/covid19_inference_forecast
homepage: null
stargazers_count: 177
- description: 'A certificate generator for France quarantine due to COVID-19 '
fork: false
forks: 40
full_name: nesk/covid-19-certificate
homepage: https://johann.pardanaud.com/covid-19-certificate/
stargazers_count: 177
- description: CovidCertificate Apps for Android
fork: false
forks: 45
full_name: admin-ch/CovidCertificate-App-Android
homepage: ''
stargazers_count: 176
- description: Project website
fork: false
forks: 50
full_name: minvws/nl-covid19-notification-app-website
homepage: https://coronamelder.nl
stargazers_count: 176
- description: 1st place solution for SIIM-FISABIO-RSNA COVID-19 Detection Challenge
fork: false
forks: 61
full_name: dungnb1333/SIIM-COVID19-Detection
homepage: null
stargazers_count: 173
- description: A list projects to make emergency ventilators in response to COVID-19,
focusing on free-libre open source
fork: false
forks: 42
full_name: PubInv/covid19-vent-list
homepage: null
stargazers_count: 173
- description: "\u8BF7\u5173\u6CE8\u7AEF\u70B9\u661F\u6848\u548C\u5F20\u5C55\u3002\
// \u4EE5\u793E\u4F1A\u5B66\u5E74\u9274\u6A21\u5F0F\u4F53\u4F8B\u89C4\u8303\u5730\
\u7EDF\u7F16\u81EA2019\u5E74\u672B\u8D77\u6B66\u6C49\u65B0\u51A0\u80BA\u708E\u75AB\
\u60C5\u8FDB\u5C55\u7684\u65F6\u95F4\u7EBF(2019\u5E7412\u67081\u65E5-2020\u5E74\
4\u670824\u65E5)\u3002\u611F\u8C22\u5FD7\u613F\u8005\u7684\u8F9B\u52B3\u64CD\u4F5C\
\u3002A sociology timeline (2019.12.1-2020.4.24) on how Wuhan Coronavirus break\
\ and spread, edited by anonymous volunteers."
fork: false
forks: 91
full_name: lestweforget/COVID-19-Timeline
homepage: https://covid19.forget.eu.org
stargazers_count: 173
- description: null
fork: false
forks: 25
full_name: rtcovidlive/covid-dash
homepage: https://rtlive-web.now.sh
stargazers_count: 171
- description: Pretrained BERT model for analysing COVID-19 Twitter data
fork: false
forks: 23
full_name: digitalepidemiologylab/covid-twitter-bert
homepage: ''
stargazers_count: 171
- description: "REST API Server for Japanese Exposure Notification App to fight against\
\ COVID-19 a.k.a. \"\u307E\u3082\u308A\u3042\u3044JAPAN\"."
fork: false
forks: 13
full_name: mamori-i-japan/mamori-i-japan-api
homepage: ''
stargazers_count: 171
- description: Go decoder and verifier for EU Digital COVID Certificate (EUDCC) QR
code data
fork: false
forks: 14
full_name: stapelberg/coronaqr
homepage: ''
stargazers_count: 170
- description: 'An Android Application written in Kotlin :iphone: with MVVM Architecture
using latest Android Development tools like Dagger Hilt, Room, ViewModel, LiveData,
Retrofit and Coroutines to display CoVID-19 Data'
fork: false
forks: 41
full_name: sidhuparas/Coronavirus-Tracker
homepage: ''
stargazers_count: 170
- description: Viral genome alignment, mutation calling, clade assignment, quality
checks and phylogenetic placement
fork: false
forks: 57
full_name: nextstrain/nextclade
homepage: https://clades.nextstrain.org
stargazers_count: 167
- description: A tracking app for tracking covid-19 cases around the world
fork: false
forks: 67
full_name: tayormi/covid_tracker
homepage: ''
stargazers_count: 166
- description: Unified COVID-19 Dataset
fork: false
forks: 61
full_name: CSSEGISandData/COVID-19_Unified-Dataset
homepage: ''
stargazers_count: 165
- description: "Tableau de bord officiel de suivi de l'\xE9pid\xE9mie de COVID-19"
fork: false
forks: 51
full_name: etalab/covid19-dashboard
homepage: https://dashboard.covid19.data.gouv.fr
stargazers_count: 165
- description: COVID19 iOS App
fork: false
forks: 24
full_name: ukhsa-collaboration/covid-19-app-ios-ag-public
homepage: null
stargazers_count: 165
- description: Menghubungkan para Software Engineer kece di tanah air yang terpaksa
harus terkena pemutusan hubungan kerja karena pandemi COVID-19 dengan perusahaan
yang sedang mencari talenta digital.
fork: false
forks: 115
full_name: rizafahmi/carikerja
homepage: https://carikerja.deeptech.id
stargazers_count: 165
- description: Coronavirus (COVID-19) UK Historical Data
fork: false
forks: 79
full_name: tomwhite/covid-19-uk-data
homepage: http://tom-e-white.com/covid-19-uk-data/
stargazers_count: 164
- description: Artificial Intelligence Distinguishes COVID-19 from Community Acquired
Pneumonia on Chest CT
fork: false
forks: 67
full_name: bkong999/COVNet
homepage: ''
stargazers_count: 164
- description: Social Distancing Monitoring and Infection Risk Assessment in COVID-19
Pandemic and Beyond
fork: false
forks: 39
full_name: DrMahdiRezaei/DeepSOCIAL
homepage: null
stargazers_count: 164
- description: An open source COVID-19 autoevaluation test that gives you the same
results as coronamadrid.com but does not store your valuable data.
fork: false
forks: 28
full_name: celiavelmar/open-covid19-test
homepage: https://celiavelmar.github.io/open-covid19-test/
stargazers_count: 163
- description: Android sources for the Dutch Covid19 Notification App
fork: false
forks: 26
full_name: minvws/nl-covid19-notification-app-android
homepage: ''