forked from Jiefei-Wang/Travel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
executable file
·40 lines (39 loc) · 1.26 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
Package: Travel
Title: An utility to create an ALTREP object with a virtual pointer
Version: 0.99.5
Authors@R: person("Jiefei", "Wang", email = "[email protected]",
role = c("aut", "cre"))
Description:
Creates a virtual pointer for R's ALTREP object which does not
have the data allocates in memory. The pointer is made by the file
mapping of a virtual file so it behaves exactly the same as a regular
pointer. All the requests to access the pointer will be sent to the
underlying file system and eventually handled by a customized
data-reading function.
The main purpose of the package is to reduce the memory consumption when
using R's vector to represent a large data. The use cases of the package
include on-disk data representation, compressed vector(e.g. RLE) and etc.
License: GPL-3
biocViews: Infrastructure
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
SystemRequirements:
C++11
Windows: Dokan
Linux&Mac: fuse, pkg-config
LinkingTo:
Rcpp
Imports:
Rcpp
Suggests:
testthat,
BiocStyle,
knitr,
rmarkdown,
inline,
parallel
VignetteBuilder: knitr
URL: https://github.com/Jiefei-Wang/Travel
BugReports: https://github.com/Jiefei-Wang/Travel/issues