Skip to content

Commit

Permalink
fix of author dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewphamilton committed Feb 21, 2022
1 parent ec38b58 commit beb361d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
cff-version: 1.2.0
message: "Caroline Gao and Matthew Hamilton (2022). TTU: Implement Transfer to Utility Mapping Algorithms. Version 0.0.0.9337. Zenodo. https://doi.org/10.5281/zenodo.5646593"
message: "Caroline Gao and Matthew Hamilton (2022). TTU: Implement Transfer to Utility Mapping Algorithms. Version 0.0.0.9338. Zenodo. https://doi.org/10.5281/zenodo.5646593"
authors:
- family-names: "Gao"
given-names: "Caroline"
- family-names: "Hamilton"
given-names: "Matthew"
title: "TTU: Implement Transfer to Utility Mapping Algorithms"
version: 0.0.0.9337
version: 0.0.0.9338
doi: 10.5281/zenodo.5646593
date-released: 2022-02-22
url: "https://ready4-dev.github.io/TTU/"
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: TTU
Title: Implement Transfer to Utility Mapping Algorithms
Version: 0.0.0.9337
Version: 0.0.0.9338
Authors@R: c(
person("Caroline", "Gao", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0002-0987-2759")),
Expand Down
2 changes: 1 addition & 1 deletion R/mthd_author.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ methods::setMethod("author", "TTUReports", function (x, depnt_var_desc_1L_chr =
"/", what_1L_chr)
if (type_1L_chr == "Dependencies") {
df <- data.frame(Package = c("youthvars", "scorz",
"specific", "TTU", ) %>% purrr::map(~{
"specific", "TTU") %>% purrr::map(~{
utils::packageDescription(.x) %>% c("Depends",
"Imports")[] %>% purrr::map(~{
if (is.null(.x)) {
Expand Down
2 changes: 1 addition & 1 deletion data-raw/s4_fns/author.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ author_TTUReports <- function(x,
"/",
what_1L_chr)
if(type_1L_chr == "Dependencies"){
df <- data.frame(Package = c("youthvars","scorz","specific","TTU",) %>%
df <- data.frame(Package = c("youthvars","scorz","specific","TTU") %>%
purrr::map(~ {
utils::packageDescription(.x) %>%
`[`(c("Depends", "Imports")) %>%
Expand Down

0 comments on commit beb361d

Please sign in to comment.