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

improved support for readSource family of functions #178

Merged
merged 2 commits into from
Jul 25, 2023
Merged
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
2 changes: 1 addition & 1 deletion .buildlibrary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ValidationKey: '7062243'
ValidationKey: '7081806'
AcceptedWarnings:
- 'Warning: package ''.*'' was built under R version'
- 'Warning: namespace ''.*'' is not available and has been replaced'
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cff-version: 1.2.0
message: If you use this software, please cite it using the metadata from this file.
type: software
title: 'madrat: May All Data be Reproducible and Transparent (MADRaT) *'
version: 3.6.1
version: 3.6.2
date-released: '2023-07-25'
abstract: Provides a framework which should improve reproducibility and transparency
in data processing. It provides functionality such as automatic meta data creation
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: madrat
Title: May All Data be Reproducible and Transparent (MADRaT) *
Version: 3.6.1
Version: 3.6.2
Date: 2023-07-25
Authors@R: c(
person("Jan Philipp", "Dietrich", , "[email protected]", role = c("aut", "cre")),
Expand Down
11 changes: 10 additions & 1 deletion R/getMadratMessage.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@
getMadratMessage <- function(name = NULL, fname = NULL) {
x <- getOption("madratMessage")
if (!is.null(x) && !is.null(fname)) {
deps <- try(suppressWarnings(getDependencies(sub("^.*:::", "", fname),
fname <- sub("^.*:::", "", fname)
fnameBase <- sub("^(download|correct|convert)", "read", fname)
deps <- try(suppressWarnings(getDependencies(fnameBase,
packages = getConfig("packages"), self = TRUE)$func))
if (inherits(deps, "try-error")) return(NULL)
readDeps <- sub("^read", "", grep("^read", deps, value = TRUE))
if (length(readDeps) > 0) {
convertDeps <- paste0("convert", readDeps)
correctDeps <- paste0("correct", readDeps)
downloadDeps <- paste0("download", readDeps)
deps <- c(deps, convertDeps, correctDeps, downloadDeps)
}
for (n in names(x)) {
x[[n]] <- x[[n]][sub("^.*:::", "", names(x[[n]])) %in% deps]
}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# May All Data be Reproducible and Transparent (MADRaT) *

R package **madrat**, version **3.6.1**
R package **madrat**, version **3.6.2**

[![CRAN status](https://www.r-pkg.org/badges/version/madrat)](https://cran.r-project.org/package=madrat) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1115490.svg)](https://doi.org/10.5281/zenodo.1115490) [![R build status](https://github.com/pik-piam/madrat/workflows/check/badge.svg)](https://github.com/pik-piam/madrat/actions) [![codecov](https://codecov.io/gh/pik-piam/madrat/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/madrat) [![r-universe](https://pik-piam.r-universe.dev/badges/madrat)](https://pik-piam.r-universe.dev/builds)

Expand Down Expand Up @@ -55,7 +55,7 @@ In case of questions / problems please contact Jan Philipp Dietrich <dietrich@pi

To cite package **madrat** in publications use:

Dietrich J, Baumstark L, Wirth S, Giannousakis A, Rodrigues R, Bodirsky B, Leip D, Kreidenweis U, Klein D, Führlich P (2023). _madrat: May All Data be Reproducible and Transparent (MADRaT)_. doi: 10.5281/zenodo.1115490 (URL: https://doi.org/10.5281/zenodo.1115490), R package version 3.6.1, <URL: https://github.com/pik-piam/madrat>.
Dietrich J, Baumstark L, Wirth S, Giannousakis A, Rodrigues R, Bodirsky B, Leip D, Kreidenweis U, Klein D, Führlich P (2023). _madrat: May All Data be Reproducible and Transparent (MADRaT)_. doi: 10.5281/zenodo.1115490 (URL: https://doi.org/10.5281/zenodo.1115490), R package version 3.6.2, <URL: https://github.com/pik-piam/madrat>.

A BibTeX entry for LaTeX users is

Expand All @@ -64,7 +64,7 @@ A BibTeX entry for LaTeX users is
title = {madrat: May All Data be Reproducible and Transparent (MADRaT)},
author = {Jan Philipp Dietrich and Lavinia Baumstark and Stephen Wirth and Anastasis Giannousakis and Renato Rodrigues and Benjamin Leon Bodirsky and Debbora Leip and Ulrich Kreidenweis and David Klein and Pascal Führlich},
year = {2023},
note = {R package version 3.6.1},
note = {R package version 3.6.2},
doi = {10.5281/zenodo.1115490},
url = {https://github.com/pik-piam/madrat},
}
Expand Down
5 changes: 5 additions & 0 deletions tests/testthat/test-getputMadratMessage.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ test_that("getMadratMessage and putMadratMessage work", {
expect_identical(getMadratMessage("test", fname = "calcTauTotal"), list(readTau = "This is a toast"))
expect_silent(resetMadratMessages())
expect_null(getMadratMessage())
expect_silent(putMadratMessage("test2", "another test", fname = "convertTau"))
expect_identical(getMadratMessage(fname = "calcTauTotal"), list(test2 = list(convertTau = "another test")))
expect_identical(getMadratMessage(fname = "readTau"), list(test2 = list(convertTau = "another test")))
expect_identical(getMadratMessage(fname = "convertTau"), list(test2 = list(convertTau = "another test")))
resetMadratMessages()
test <- function() {
putMadratMessage("level", "level 1")
.tmp <- function() {
Expand Down
Loading