-
Notifications
You must be signed in to change notification settings - Fork 14
/
DESCRIPTION
129 lines (129 loc) · 3.7 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
Package: reproducible
Type: Package
Title: Enhance Reproducibility of R Code
Description: A collection of high-level, machine- and OS-independent tools
for making reproducible and reusable content in R.
The two workhorse functions are Cache() and prepInputs(). Cache()
allows for nested caching, is robust to environments and objects with
environments (like functions), and has deals with some classes of
file-backed R objects e.g., from terra and raster packages.
Both functions have been developed to
be foundational components of data retrieval
and processing in continuous workflow situations. In both functions,
efforts are made to make the first and subsequent calls of functions have
the same result, but faster at subsequent times by way of checksums
and digesting. Several features are still under development, including
cloud storage of cached objects, allowing for sharing between users. Several
advanced options are available, see ?reproducibleOptions().
SystemRequirements: 'unrar' (Linux/macOS) or '7-Zip' (Windows) to work with '.rar' files.
URL:
https://reproducible.predictiveecology.org,
https://github.com/PredictiveEcology/reproducible
Date: 2024-05-27
Version: 2.1.0
Authors@R:
c(person(given = "Eliot J B",
family = "McIntire",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-6914-8316")),
person(given = "Alex M",
family = "Chubaty",
role = c("aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-7146-8135")),
person(given = "Tati",
family = "Micheletti",
role = "ctb",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4838-8342")),
person(given = "Ceres",
family = "Barros",
role = "ctb",
email = "[email protected]",
comment = c(ORCID = "0000-0003-4036-977X")),
person(given = "Ian",
family = "Eddy",
role = "ctb",
email = "[email protected]",
comment = c(ORCID = "0000-0001-7397-2116")),
person(given = "His Majesty the King in Right of Canada, as represented by the Minister of Natural Resources Canada",
role = "cph"))
Depends:
R (>= 4.1)
Imports:
data.table (>= 1.10.4),
digest,
filelock,
fpCompare,
fs,
lobstr,
methods,
stats,
utils
Suggests:
archive,
covr,
crayon,
DBI,
future,
geodata,
glue,
googledrive,
httr,
knitr,
parallel,
qs,
raster (>= 3.5-15),
RCurl (>= 1.95-4.8),
rlang,
rmarkdown,
RSQLite,
R.utils,
sf,
sp (>= 1.4-2),
terra (>= 1.7-20),
testthat,
withr
Additional_repositories: https://predictiveecology.r-universe.dev/
Encoding: UTF-8
Language: en-CA
License: GPL-3
VignetteBuilder: knitr, rmarkdown
BugReports: https://github.com/PredictiveEcology/reproducible/issues
ByteCompile: yes
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Collate:
'DBI.R'
'cache-helpers.R'
'cache-internals.R'
'robustDigest.R'
'cache.R'
'cacheGeo.R'
'checksums.R'
'cloud.R'
'convertPaths.R'
'copy.R'
'download.R'
'messages.R'
'exportedMethods.R'
'gis.R'
'helpers.R'
'listNamed.R'
'objectSize.R'
'options.R'
'packages.R'
'paths.R'
'pipe.R'
'postProcess.R'
'postProcessTo.R'
'preProcess.R'
'prepInputs.R'
'reproducible-deprecated.R'
'reproducible-package.R'
'search.R'
'showCacheEtc.R'
'spatialObjects-class.R'
'terra-migration.R'
'zzz.R'