Skip to content

Commit

Permalink
Merge pull request #117 from mitre/main
Browse files Browse the repository at this point in the history
Update citation interface
  • Loading branch information
dchud authored Feb 16, 2023
2 parents 832ed0d + a2c027f commit 39e3b85
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 10 deletions.
20 changes: 20 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,29 @@ There were no ERRORs, WARNINGs, or NOTEs.
## Downstream dependencies
There are currently no downstream dependencies for this package.

## CRAN manual test

We have addressed each of the notes in the manual test as below:

* Package CITATION file contains call(s) to old-style personList() or
as.personList(). Please use c() on person objects instead.
Package CITATION file contains call(s) to old-style citEntry() or
citHeader()/citFooter(). Please use bibentry() instead, possibly with
arguments 'header' and 'footer'.


We have updated the citation accordingly.

# Previous Submissions

# CRAN submission growthcleanr 2.1.0 (1)

## R CMD check results
There were no ERRORs, WARNINGs, or NOTEs.

## Downstream dependencies
There are currently no downstream dependencies for this package.

# CRAN submission growthcleanr 2.0.3

## R CMD check results
Expand Down
18 changes: 8 additions & 10 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
citHeader("To cite growthcleanr in publications use:")

citEntry(entry = "Article",
bibentry(bibtype = "Article",
title = "Automated identification of implausible values in growth data from pediatric electronic health records",
author = personList(
as.person("Carrie Daymont"),
as.person("Michelle E Ross"),
author = c(
person("Carrie Daymont"),
person("Michelle E Ross"),
person(given="A", family = "Russell Localio"),
as.person("Alexander G Fiks"),
as.person("Richard C Wasserman"),
as.person("Robert W Grundmeier")),
person("Alexander G Fiks"),
person("Richard C Wasserman"),
person("Robert W Grundmeier")),
journal = "Journal of the American Medical Informatics Association",
year = "2017",
doi = "10.1093/jamia/ocx037",
Expand All @@ -22,4 +20,4 @@ citEntry(entry = "Article",

textVersion =
paste("Carrie Daymont, Michelle E Ross, A Russell Localio, Alexander G Fiks, Richard C Wasserman, Robert W Grundmeier, Automated identification of implausible values in growth data from pediatric electronic health records, Journal of the American Medical Informatics Association, Volume 24, Issue 6, November 2017, Pages 1080–1087, https://doi.org/10.1093/jamia/ocx037")
)
)

0 comments on commit 39e3b85

Please sign in to comment.