-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from NIEHS/isong-hucvars
0.2.0 dev
- Loading branch information
Showing
77 changed files
with
3,369 additions
and
1,862 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
args <- commandArgs(trailingOnly = TRUE) | ||
runnertemp <- args[[1]] | ||
ghworkspace <- args[[2]] | ||
|
||
dir.create(file.path(runnertemp, "package"), showWarnings = FALSE, recursive = TRUE) | ||
sink(paste0(runnertemp, '/package/testthat.Rout.res')) | ||
cov <- covr::package_coverage() | ||
sink() | ||
covd <- covr::coverage_to_list(cov)$totalcoverage | ||
write.table( | ||
covd[length(covd)], | ||
file = file.path(ghworkspace, 'local_cov.Rout'), | ||
row.names = FALSE, | ||
col.names = FALSE | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: amadeus | ||
Title: AMADEUS: A Machine for Data, Environments, and User Setup for common environmental and climate health datasets | ||
Version: 0.1.7 | ||
Version: 0.2.0 | ||
Authors@R: c( | ||
person("Kyle", "Messier", , "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-9508-9623")), | ||
person("Mitchell", "Manware", role = c("aut", "ctb"), comment = c(ORCID = "0009-0003-6440-6106")), | ||
|
@@ -12,7 +12,7 @@ Authors@R: c( | |
) | ||
Description: A Mechanism/Machine for Data, Environments, and User Setup package for health and climate research. It is fully tested, versioned, and open source and open access. | ||
Depends: R (>= 4.1.0) | ||
Imports: dplyr, sf, sftime, stats, terra, methods, data.table, httr, rvest, exactextractr, utils, stringi, testthat (>= 3.0.0), doParallel, parallelly, stars, foreach, future, tidyr, rlang, rstac, nhdplusTools, archive | ||
Imports: dplyr, sf, sftime, stats, terra, methods, data.table, httr, rvest, exactextractr, utils, stringi, testthat (>= 3.0.0), parallelly, stars, future, future.apply, tidyr, rlang, rstac, nhdplusTools, archive, collapse, devtools | ||
Suggests: covr, withr, knitr, rmarkdown, lwgeom, FNN, doRNG | ||
Encoding: UTF-8 | ||
VignetteBuilder: knitr, rmarkdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.