-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtest-roundtrip-layers.R
More file actions
179 lines (151 loc) · 4.32 KB
/
test-roundtrip-layers.R
File metadata and controls
179 lines (151 loc) · 4.32 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
skip_if_no_anndata()
skip_if_no_dummy_anndata()
library(reticulate)
ad <- reticulate::import("anndata", convert = FALSE)
da <- reticulate::import("dummy_anndata", convert = FALSE)
bi <- reticulate::import_builtins()
known_issues <- read_known_issues()
test_names <- names(da$matrix_generators)
for (name in test_names) {
# first generate a python h5ad
adata_py <- da$generate_dataset(
x_type = NULL,
obs_types = list(),
var_types = list(),
layer_types = list(name),
obsm_types = list(),
varm_types = list(),
obsp_types = list(),
varp_types = list(),
uns_types = list(),
nested_uns_types = list()
)
# create a couple of paths
file_py <- withr::local_file(
tempfile(paste0("anndata_py_", name), fileext = ".h5ad")
)
file_r <- withr::local_file(
tempfile(paste0("anndata_r_", name), fileext = ".h5ad")
)
file_r2 <- withr::local_file(
tempfile(paste0("anndata_r2_", name), fileext = ".h5ad")
)
# write to file
adata_py$write_h5ad(file_py)
# Read it back in to get the version as read from disk
adata_py <- ad$read_h5ad(file_py)
test_that(paste0("Reading an AnnData with layer '", name, "' works"), {
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("layers"),
dtype = name,
process = "read",
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- read_h5ad(file_py, as = "HDF5AnnData")
expect_equal(
adata_r$shape(),
unlist(reticulate::py_to_r(adata_py$shape))
)
expect_equal(
adata_r$layers_keys(),
bi$list(adata_py$layers$keys())
)
# check that the print output is the same
str_r <- capture.output(print(adata_r))
str_py <- capture.output(print(adata_py))
expect_equal(str_r, str_py)
})
gc()
test_that(
paste0(
"Comparing an anndata with layer '",
name,
"' with reticulate works"
),
{
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("layers"),
dtype = name,
process = c("read", "reticulate"),
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- read_h5ad(file_py, as = "HDF5AnnData")
expect_equal(
adata_r$layers[[name]],
py_to_r(py_get_item(adata_py$layers, name)),
tolerance = 1e-6
)
}
)
gc()
test_that(paste0("Writing an AnnData with layer '", name, "' works"), {
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("layers"),
dtype = name,
process = c("read", "write"),
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- read_h5ad(file_py, as = "InMemoryAnnData")
write_h5ad(adata_r, file_r)
# read from file
adata_py2 <- ad$read_h5ad(file_r)
# expect name is one of the keys
expect_contains(
bi$list(adata_py2$layers$keys()),
name
)
# expect that the objects are the same
expect_equal_py(
py_get_item(adata_py2$layers, name),
py_get_item(adata_py$layers, name)
)
})
gc()
skip_if_no_h5diff()
# Get all R datatypes that are equivalent to the python datatype (name)
res <- Filter(function(x) x[[1]] == name, matrix_equivalences)
r_datatypes <- vapply(res, function(x) x[[2]], character(1))
for (r_name in r_datatypes) {
test_msg <- paste0(
"Comparing a python generated .h5ad with layer '",
name,
"' with an R generated .h5ad '",
r_name,
"' works"
)
test_that(test_msg, {
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("X"),
dtype = c(name, r_name),
process = c("h5diff"),
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
# generate an R h5ad
adata_r <- r_generate_dataset(10L, 20L, layer_types = list(r_name))
write_h5ad(adata_r, file_r2, mode = "w")
# Remove the rhdf5-NA.OK for comparison
hdf5_clear_rhdf5_attributes(file_r2, paste0("/layers/", r_name))
# run h5diff
res <- processx::run(
"h5diff",
c(
"-v2",
file_py,
file_r2,
paste0("/layers/", name),
paste0("/layers/", r_name)
),
error_on_status = FALSE
)
expect_equal(res$status, 0, info = res$stdout)
})
}
}