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

Citation #46

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ paramount**. `simpleCache` assumes that your name for an object is a perfect
identifier for that object; in other words, don't cache things that you plan to
change.

### Citation

Please consider citing `simpleCache` if you use it in your research or project.

Sheffield et al., (2018). simpleCache: R caching for reproducible, distributed, large-scale projects. Journal of Open Source Software, 3(21), 463, https://doi.org/10.21105/joss.00463

### Contributing

`simpleCache` is licensed under the [2-Clause BSD License](https://opensource.org/licenses/BSD-2-Clause). Questions, feature requests and bug reports are welcome via the [issue queue](https://github.com/databio/simpleCache/issues). The maintainer will review pull requests and incorporate contributions at his discretion.
Expand Down
21 changes: 21 additions & 0 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
citHeader("When using simpleCache in your work, please consider citing:")

citEntry(entry = "Article",
title = "{simpleCache}: R caching for reproducible, distributed, large-scale projects",
author = personList(as.person("VP Nagraj"),
as.person("Vince Reuter"),
as.person("Nathan Sheffield")),
journal = "Journal of Open Source Software",
year = "2018",
volume = "3",
number = "21",
pages = "463",
url = "https://doi.org/10.21105/joss.00463",

textVersion =
paste("VP Nagraj, Vince Reuter, Nathan Sheffield (2018).",
"simpleCache: R caching for reproducible, distributed, large-scale projects",
"Journal of Open Source Software, 3(21), 463.",
"URL https://doi.org/10.21105/joss.00463")
)