Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experimental parallelisation of Ebola model #214

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 41 additions & 15 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,21 @@ keywords:
- scenario-analysis
- vaccination
references:
- type: software
title: purrr
abstract: 'purrr: Functional Programming Tools'
notes: Depends
url: https://purrr.tidyverse.org/
repository: https://CRAN.R-project.org/package=purrr
authors:
- family-names: Wickham
given-names: Hadley
email: [email protected]
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Henry
given-names: Lionel
email: [email protected]
year: '2024'
- type: software
title: checkmate
abstract: 'checkmate: Fast and Versatile Argument Checks'
Expand Down Expand Up @@ -98,6 +113,20 @@ references:
given-names: Toby
orcid: https://orcid.org/0000-0002-3146-0865
year: '2024'
- type: software
title: furrr
abstract: 'furrr: Apply Mapping Functions in Parallel using Futures'
notes: Imports
url: https://furrr.futureverse.org/
repository: https://CRAN.R-project.org/package=furrr
authors:
- family-names: Vaughan
given-names: Davis
email: [email protected]
- family-names: Dancho
given-names: Matt
email: [email protected]
year: '2024'
- type: software
title: glue
abstract: 'glue: Interpreted String Literals'
Expand Down Expand Up @@ -320,6 +349,18 @@ references:
email: [email protected]
orcid: https://orcid.org/0000-0001-8814-9421
year: '2024'
- type: software
title: future
abstract: 'future: Unified Parallel and Distributed Processing in R for Everyone'
notes: Suggests
url: https://future.futureverse.org
repository: https://CRAN.R-project.org/package=future
authors:
- family-names: Bengtsson
given-names: Henrik
email: [email protected]
orcid: https://orcid.org/0000-0002-7579-5165
year: '2024'
- type: software
title: ggdist
abstract: 'ggdist: Visualizations of Distributions and Uncertainty'
Expand Down Expand Up @@ -382,21 +423,6 @@ references:
email: [email protected]
orcid: https://orcid.org/0000-0003-0645-5666
year: '2024'
- type: software
title: purrr
abstract: 'purrr: Functional Programming Tools'
notes: Suggests
url: https://purrr.tidyverse.org/
repository: https://CRAN.R-project.org/package=purrr
authors:
- family-names: Wickham
given-names: Hadley
email: [email protected]
orcid: https://orcid.org/0000-0003-4757-117X
- family-names: Henry
given-names: Lionel
email: [email protected]
year: '2024'
- type: software
title: rmarkdown
abstract: 'rmarkdown: Dynamic Documents for R'
Expand Down
4 changes: 4 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ License: MIT + file LICENSE
URL: https://github.com/epiverse-trace/epidemics,
https://epiverse-trace.github.io/epidemics/
BugReports: https://github.com/epiverse-trace/epidemics/issues
Depends:
purrr
Imports:
checkmate,
cli,
data.table,
furrr,
glue,
Rcpp,
RcppEigen,
Expand All @@ -45,6 +48,7 @@ Suggests:
dplyr,
EpiEstim,
finalsize,
future,
ggdist,
ggplot2,
knitr,
Expand Down
Loading
Loading