forked from scverse/anndataR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-roundtrip-X.R
More file actions
181 lines (154 loc) · 5.03 KB
/
test-roundtrip-X.R
File metadata and controls
181 lines (154 loc) · 5.03 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
180
181
skip_if_no_anndata_py()
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)
# X must always be 2-dimensional in AnnData
# -> https://github.com/scverse/anndata/blob/2a2c0e3198c298a5c80a73ac343c63203b5ca133/src/anndata/_core/anndata.py#L2164-L2172 # nolint
test_names <- test_names[!endsWith(test_names, "_3d")]
for (fmt in c("h5ad", "zarr")) {
fmt_config <- get_fmt_config(fmt)
for (name in test_names) {
# first generate a python adata
adata_py <- da$generate_dataset(
x_type = name,
obs_types = list(),
var_types = list(),
layer_types = list(),
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 = fmt_config$ext)
)
file_r <- withr::local_file(
tempfile(paste0("anndata_r_", name), fileext = fmt_config$ext)
)
file_r2 <- withr::local_file(
tempfile(paste0("anndata_r2_", name), fileext = fmt_config$ext)
)
# write to file
adata_py[[fmt_config$py_write_method]](file_py)
# Read it back in to get the version as read from disk
adata_py <- ad[[fmt_config$py_read_method]](file_py)
test_that(
paste0("Reading an AnnData with X '", name, "' (", fmt, ") works"),
{
msg <- message_if_known(
backend = fmt_config$backend,
slot = c("X"),
dtype = name,
process = "read",
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- fmt_config$r_read_fun(file_py, as = fmt_config$backend)
expect_equal(
adata_r$shape(),
unlist(reticulate::py_to_r(adata_py$shape))
)
# check that the print output is the same (normalize class names)
expect_anndata_print_equal(adata_r, adata_py)
}
)
test_that(
paste0(
"Comparing an anndata with X '",
name,
"' (",
fmt,
") with reticulate works"
),
{
msg <- message_if_known(
backend = fmt_config$backend,
slot = c("X"),
dtype = name,
process = c("read", "reticulate"),
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- fmt_config$r_read_fun(file_py, as = fmt_config$backend)
# Extract X matrices, removing dimnames for comparison since
# R AnnData adds dimnames on-the-fly but Python doesn't preserve them
actual_x <- adata_r$X
expected_x <- py_to_r(adata_py$X)
dimnames(actual_x) <- NULL
dimnames(expected_x) <- NULL
expect_equal(
actual_x,
expected_x,
tolerance = 1e-6
)
}
)
gc()
test_that(
paste0("Writing an AnnData with X '", name, "' (", fmt, ") works"),
{
msg <- message_if_known(
backend = fmt_config$backend,
slot = c("X"),
dtype = name,
process = c("read", "write"),
known_issues = known_issues
)
skip_if(!is.null(msg), message = msg)
adata_r <- fmt_config$r_read_fun(file_py, as = "InMemoryAnnData")
fmt_config$r_write_fun(adata_r, file_r)
# read from file
adata_py2 <- ad[[fmt_config$py_read_method]](file_r)
# expect that the objects are the same
expect_equal_py(
adata_py2$X,
adata_py$X
)
}
)
if (fmt == "h5ad") {
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 X '",
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, x_type = list(r_name))
write_h5ad(adata_r, file_r2, mode = "w")
# Remove the rhdf5-NA.OK for comparison
hdf5_clear_rhdf5_attributes(file_r2, "X")
# run h5diff
res <- processx::run(
"h5diff",
c("-v2", file_py, file_r2, "/X"),
error_on_status = FALSE
)
expect_equal(res$status, 0, info = res$stdout)
})
}
}
}
}