epiverse-trace / episoap

[Not published - under active development] A Store of Outbreak Analytics Pipelines Provided as Rmarkdown Report Templates
https://epiverse-trace.github.io/episoap/
Other
4 stars 2 forks source link

Add missing packages to renv #92

Closed joshwlambert closed 1 year ago

joshwlambert commented 1 year ago

This PR closes #90.

I have added the packages used in the transmissibility rmd documents as well as {episoap} to the renv::use() call in the skeleton document.

Bisaloo commented 1 year ago

The proper fix seems to be using grateful::cite_packages(output = "paragraph", out.dir = ".", pkgs = "Session") to only cite packages actually loaded in the session.

joshwlambert commented 1 year ago

@Bisaloo thanks for the fix. I've tested it and it seems to work well. I've made the update in the last commit.

codecov-commenter commented 1 year ago

Codecov Report

Merging #92 (f8b894a) into main (a913d79) will not change coverage. The diff coverage is n/a.

:exclamation: Current head f8b894a differs from pull request most recent head a676ae1. Consider uploading reports for the commit a676ae1 to get more accurate results

@@           Coverage Diff           @@
##             main      #92   +/-   ##
=======================================
  Coverage   73.91%   73.91%           
=======================================
  Files           4        4           
  Lines          23       23           
=======================================
  Hits           17       17           
  Misses          6        6           

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

Bisaloo commented 1 year ago

Thanks!