Hi all,
I am constantly hesitant of what I should do when I write a package implementing a specific method described in a single paper? Should my CITATION
file mention the original article alongside the package?
Here’s an actual example in my asymptor package:
citHeader("Please cite both the package and the original articles in your publications:")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s", meta$Version)
bibentry(
bibtype = "Misc",
title = "{asymptor}: Estimate the lower and upper bound of asymptomatic
cases in an epidemic using the capture/recapture methods",
author = person("Hugo", "Gruson"),
year = year,
note = note,
url = "https://CRAN.R-project.org/package=asymptor"
)
bibentry(
bibtype = "Article",
title = "Estimating the undetected infections in the Covid-19 outbreak by
harnessing capture–recapture methods",
author = c("D. Böhning ", "I. Rocchetti ", "A. Maruotti", "H. Holling"),
journal = "International Journal of Infectious Diseases",
year = "2020",
volume = "97",
pages = "197--201",
doi = "10.1016/j.ijid.2020.06.009"
)
bibentry(
bibtype = "Article",
title = "Estimating the size of undetected cases of the SARS-CoV-2 outbreak
in Europe: An upperbound estimator",
author = c("I. Rocchetti", "D. Böhning", "H. Holling", "A. Maruotti"),
journal = "medRxiv",
year = "2020",
doi = "10.1101/2020.07.14.20153445"
)
In other words, how far goes my role in making sure users properly acknowledge the original creators of the method (who are different from the package author in this case)? Is mentioning it in the README
and function help enough? Or am I right to add it to the CITATION
file as well?