-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDESCRIPTION
More file actions
15 lines (15 loc) · 853 Bytes
/
DESCRIPTION
File metadata and controls
15 lines (15 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Package: cacheCall
Version: 0.1
Title: Calls to Cache
Description: Calls to cache in R. callCache() is a function wrapper, such that for every real function call, enclosing it with callCache() first checks whether the output of the function call exists in cachePath. If the file does not exist, it executes the function call and saves the output to cachePath. If the file does exist, it reads the file. The filename is generated here and the file naming convention is determined by the function name(s) and arguments provided.
Authors@R: person("Julie", "Laffy", email = "julie.laffy@weizmann.ac.il", role = c("aut", "cre"))
License: MIT
Encoding: UTF-8
LazyData: true
ByteCompile: true
RoxygenNote: 6.0.1
Imports:
stringr
URL: http://github.com/jlaffy/cacheCall
BugReports: http://github.com/jlaffy/cacheCall/issues
Roxygen: list(markdown = TRUE)