diff --git a/cran-comments.md b/cran-comments.md index d79f3924..d94554f8 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -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 diff --git a/inst/CITATION b/inst/CITATION index d4dbeb3d..18bfd106 100644 --- a/inst/CITATION +++ b/inst/CITATION @@ -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", @@ -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") -) \ No newline at end of file +)