-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtest-roundtrip-X.R
More file actions
154 lines (130 loc) · 3.83 KB
/
test-roundtrip-X.R
File metadata and controls
154 lines (130 loc) · 3.83 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
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 = 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 = ".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 X '", name, "' works"), {
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("X"),
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))
)
# 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)
})
test_that(
paste0("Comparing an anndata with X '", name, "' with reticulate works"),
{
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("X"),
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$X,
py_to_r(adata_py$X),
tolerance = 1e-6
)
}
)
gc()
test_that(paste0("Writing an AnnData with X '", name, "' works"), {
msg <- message_if_known(
backend = "HDF5AnnData",
slot = c("X"),
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 that the objects are the same
expect_equal_py(
adata_py2$X,
adata_py$X
)
})
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)
})
}
}