-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNAMESPACE
More file actions
98 lines (72 loc) · 2.44 KB
/
Copy pathNAMESPACE
File metadata and controls
98 lines (72 loc) · 2.44 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import(methods)
importFrom(stats, setNames)
importFrom(tools, file_path_as_absolute)
import(BiocGenerics)
import(S4Vectors)
import(IRanges)
import(S4Arrays)
import(SparseArray)
import(DelayedArray)
importFrom(Rarr, read_zarr_array, create_empty_zarr_array, update_zarr_array,
read_zarr_attributes)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 classes
###
exportClasses(
ZarrArraySeed,
ZarrArray, ZarrMatrix,
ZarrRealizationSink,
ZarrSparseMatrixSeed, CSC_ZarrSparseMatrixSeed, CSR_ZarrSparseMatrixSeed,
ZarrSparseMatrix
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S3 methods
###
S3method(t, CSC_ZarrSparseMatrixSeed)
S3method(t, CSR_ZarrSparseMatrixSeed)
### We also export them thru the export() directive so that (a) they can be
### called directly, (b) tab-completion on the name of the generic shows them,
### and (c) methods() doesn't asterisk them.
export(
t.CSC_ZarrSparseMatrixSeed,
t.CSR_ZarrSparseMatrixSeed
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export S4 methods for generics not defined in ZarrArray
###
exportMethods(
## Methods for generics defined in the base package:
dim, t,
## Methods for generics defined in the methods package:
show, coerce,
## Methods for generics defined in the BiocGenerics package:
path, group, type,
## Methods for generics defined in the S4Arrays package:
extract_array, write_block, is_sparse,
## Methods for generics defined in the SparseArray package:
nzcount, extract_sparse_array,
## Methods for generics defined in the DelayedArray package:
chunkdim,
matrixClass, DelayedArray
)
### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
### Export non-generic functions
###
export(
## ZarrArraySeed-class.R:
ZarrArraySeed,
## ZarrArray-class.R:
ZarrArray,
## writeZarrArray-auto-args.R:
get_writeZarrArray_dump_dir, set_writeZarrArray_dump_dir,
get_writeZarrArray_auto_path,
get_writeZarrArray_chunk_maxlen, set_writeZarrArray_chunk_maxlen,
get_writeZarrArray_chunk_shape, set_writeZarrArray_chunk_shape,
get_writeZarrArray_auto_chunkdim,
## writeZarrArray.R:
ZarrRealizationSink, writeZarrArray,
## ZarrSparseMatrixSeed-class.R:
ZarrSparseMatrixSeed,
## ZarrSparseMatrix-class.R:
ZarrSparseMatrix
)