-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDESCRIPTION
More file actions
76 lines (76 loc) · 2.63 KB
/
Copy pathDESCRIPTION
File metadata and controls
76 lines (76 loc) · 2.63 KB
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
Package: futurize
Version: 1.0.0-9000
Title: Parallelize Common Functions via One Magic Function
Description: The futurize() function turns sequential map-reduce functions such as base::lapply(), purrr::map(), 'foreach::foreach() %do% { ... }' into concurrent alternatives, providing you with a simple, straightforward path to scalable parallel computing via the 'future' ecosystem <doi:10.32614/RJ-2021-048>. By combining this transpiler function with R's native pipe operator, you have a convenient way for speeding up iterative computations with minimal refactoring, e.g. 'lapply(xs, fcn) |> futurize()', 'purrr::map(xs, fcn) |> futurize()', and 'foreach::foreach(x = xs) %do% { fcn(x) } |> futurize()'. Other map-reduce packages that can be "futurized" are 'BiocParallel', 'plyr', 'crossmap', 'pbapply' packages. There is also support for a growing set of domain-specific packages on CRAN (e.g. 'boot', 'caret', 'DiceKriging', 'ez', 'fgsea', 'fwb', 'gamlss', 'glmmTMB', 'glmnet', 'kernelshap', 'lme4', 'metafor', 'mgcv', 'modelsummary', 'parameters', 'partykit', 'pls', 'pvclust', 'riskRegression', 'rugarch', 'sandwich', 'seriation', 'shapr', 'Sim.DiffProc', 'SimDesign', 'stars', 'strucchange', 'SuperLearner', 'tm', 'TSP', and 'vegan') and on Bioconductor (e.g. 'DESeq2', 'GenomicAlignments', 'GSVA', 'Rsamtools', 'scater', 'scuttle', 'SingleCellExperiment', and 'sva').
Authors@R: c(
person("Henrik", "Bengtsson", role=c("aut", "cre", "cph"),
email = "henrikb@braju.com",
comment = c(ORCID = "0000-0002-7579-5165")))
License: Apache License (>= 2)
URL: https://futurize.futureverse.org, https://github.com/futureverse/futurize
BugReports: https://github.com/futureverse/futurize/issues
Depends:
R (>= 4.1.0),
future (>= 1.69.0)
Imports:
utils
Suggests:
methods,
future.apply (>= 1.20.2),
foreach,
doFuture (>= 1.2.1),
purrr,
furrr,
crossmap,
plyr,
pbapply,
BiocParallel,
boot,
survival,
caret,
randomForest,
DESeq2,
DiceKriging,
ez,
fgsea,
GenomicAlignments,
Rsamtools,
fwb,
gamlss,
glmmTMB,
glmnet,
GSVA,
kernelshap,
lme4,
metafor,
mgcv,
modelsummary,
parameters (>= 0.29.1),
partykit,
pls,
pvclust,
riskRegression,
rugarch,
sandwich,
scater,
scuttle,
seriation,
shapr,
Sim.DiffProc,
SimDesign,
SingleCellExperiment,
stars,
strucchange,
SuperLearner,
sva,
tm,
vegan,
tools,
commonmark,
base64enc
VignetteBuilder:
futurize
Language: en-US
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
Config/roxygen2/version: 8.0.0