Code Monkey home page Code Monkey logo

covid-rt-estimates's Introduction

National and subnational estimates of the time-varying reproduction number for Covid-19

MIT license Status Website epiforecasts.io/covid

This repository contains estimates of the time-varying reproduction number for every country in the world listed in the ECDC Covid-19 data source and subnational estimates for 9 countries.

Summarised estimates as csv's can be found in the **/summary folders. National estimates can be found in the national folder and subnational estimates in the subnational/country subfolder depending on the country of interest.

All regions have Rt estimates based on case counts. In some regions, we also separately estimate Rt using counts of hospital admissions or deaths. The differences between each of these estimates might suggest uneven or changing transmission by age and/or severity in the general population. For more on the influence and different uses of data source on Rt, see here.

Latest results

Estimates are generated using {EpiNow2} and presented on epiforecasts.io/covid (which also outlines the method used). If using these estimates please consider citing our associated paper. All the datasets are published on Harvard Dataverse providing a citable source for a particular version of a data set. For the technically inclined this provides a full API to allow interacting with datasets or pulling the latest version of a particular file.

To confirm the latest version check the production date in the metadata tab on the relevant harvard dataverse link. Alternatively check the Version tab to see how recently it was produced (Note EST timezone).

Dataset Produced? Dataverse Location rt / summary files
regional-cases ✔️ doi:10.7910/DVN/K2PXLV summary_table
regional-deaths ✔️ doi:10.7910/DVN/A12ADQ rt / summary_table
cases ✔️ doi:10.7910/DVN/TTLQRN summary_table
deaths ✔️ doi:10.7910/DVN/RBZVJE summary_table
afghanistan
belgium ✔️ doi:10.7910/DVN/B4UO2L rt / summary_table
brazil ✔️ doi:10.7910/DVN/METDW2 rt / summary_table
canada ✔️ doi:10.7910/DVN/2CNKZJ rt / summary_table
colombia ✔️ doi:10.7910/DVN/GI8EVP rt / summary_table
germany ✔️ doi:10.7910/DVN/LNMJYJ rt / summary_table
india ✔️ doi:10.7910/DVN/PRP6CY rt / summary_table
italy ✔️ doi:10.7910/DVN/8DUSHZ rt / summary_table
russia ✔️ doi:10.7910/DVN/XPULZP rt / summary_table
united-kingdom ✔️ doi:10.7910/DVN/S07EZB rt / summary_table
united-kingdom-deaths ✔️ doi:10.7910/DVN/QVWUJ5 rt / summary_table
united-kingdom-admissions ✔️ doi:10.7910/DVN/CCE4XT rt / summary_table
united-states ✔️ doi:10.7910/DVN/K2PXLV rt / summary_table

Updating the estimates

  1. Clone the repository (This results in shallow clone with just the HEAD commit, remove the --depth flag for a full clone but note that this will take some time as the full history is large).
git clone --depth 1 https://github.com/epiforecasts/covid-rt-estimates.git

Using a remote server

Run the following on the command line replacing path-to-key, username@public-ip-of-server, github-username, and github-pat with your information. Note this is not a secure way of transferring your GitHub PAT.

curl --fail https://raw.githubusercontent.com/epiforecasts/covid-rt-estimates/master/bin/update-via-ssh.sh > update-via-ssh.sh
sudo bash update-via-ssh.sh path-to-key username@public-ip-of-server github-username github-pat

See bin/update-via-ssh.sh for details on what this script is doing and the more detailed step by step instructions below.

Using Docker

  1. Log in to GitHub Docker package repository.
docker login docker.pkg.github.com

Script approach

  1. (Optional - must be done at least once) Update the docker container (by default this pulls a built image passing "build" instead triggers a build based on local files).
sudo bash bin/update-docker.sh
  1. Run the following in a bash terminal (see docker logs covidrtestimates for runtime information).
sudo bash bin/update-via-docker.sh

Step by step

  1. (Optional) Build the docker container locally.
docker build . -t covidrtestimates
  1. (Optional). Alternatively pull the built docker container.
docker pull docker.pkg.github.com/epiforecasts/covid-rt-estimates/covidrtestimates:latest
docker tag docker.pkg.github.com/epiforecasts/covid-rt-estimates/covidrtestimates:latest covidrtestimates
  1. Update the estimates (see docker logs covidrtestimates for runtime information).
# This command uses the code that ships with in the docker image. You can use
# your own version by mounting it in the container
sudo docker run -d --user rstudio --name covidrtestimates covidrtestimates /bin/bash bin/update-estimates.sh

Using R

  1. Install dependencies.
devtools::install_dev_deps()
  1. Run Rscript R/run-region-updates.R.

Adding --help will show documentation and the command options. This can run all or some regions and subregions, control logging, exclude unstable regions and set the maximum execution time for each set of analysis.

Note: Currently regions are either global or country level but the region/subregion pattern could be reused on any level of parent/child geographic dataset.

A timing log will be output and updated in runtimes.csv. Times of -1 = error and 999999 = killed by timeout

Development environment

This analysis was developed in a docker container based on the epinow2 docker image.

To build the docker image run (from the covid-rt-estimates directory):

docker build . -t covidrtestimates

Alternatively to use the prebuilt image first login into the GitHub package repository using your GitHub credentials (if you have not already done so) and then run the following:

# docker login docker.pkg.github.com
docker pull docker.pkg.github.com/epiforecasts/covid-rt-estimates/covidrtestimates:latest
docker tag docker.pkg.github.com/epiforecasts/covid-rt-estimates/covidrtestimates:latest covidrtestimates

To run the docker image run:

docker run -d -p 8787:8787 --name covidrtestimates -e USER=covidrtestimates -e PASSWORD=covidrtestimates covidrtestimates

The rstudio client can be found on port :8787 at your local machines ip. The default username:password is covidrtestimates:covidrtestimates, set the user with -e USER=username, and the password with - e PASSWORD=newpasswordhere. The default is to save the analysis files into the user directory.

To mount a folder (from your current working directory - here assumed to be tmp) in the docker container to your local system use the following in the above docker run command (as given mounts the whole covidrtestimates directory to tmp).

--mount type=bind,source=$(pwd)/tmp,target=/home/covidrtestimates

To access the command line run the following:

docker exec -ti covidrtestimates bash

To add another country see SMG.md

covid-rt-estimates's People

Contributors

chrispaulbennett avatar joehickson avatar seabbs avatar sbfnk avatar kathsherratt avatar jallen42 avatar hamishgibbs avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.